diff --git a/Django_Blog/01-Getting-Started/django_project/db.sqlite3 b/Django_Blog/01-Getting-Started/django_project/db.sqlite3
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/01-Getting-Started/django_project/django_project/__init__.py b/Django_Blog/01-Getting-Started/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/01-Getting-Started/django_project/django_project/settings.py b/Django_Blog/01-Getting-Started/django_project/django_project/settings.py
new file mode 100644
index 000000000..72dff7a5b
--- /dev/null
+++ b/Django_Blog/01-Getting-Started/django_project/django_project/settings.py
@@ -0,0 +1,120 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
diff --git a/Django_Blog/01-Getting-Started/django_project/django_project/urls.py b/Django_Blog/01-Getting-Started/django_project/django_project/urls.py
new file mode 100644
index 000000000..a5086cd29
--- /dev/null
+++ b/Django_Blog/01-Getting-Started/django_project/django_project/urls.py
@@ -0,0 +1,21 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+]
diff --git a/Django_Blog/01-Getting-Started/django_project/django_project/wsgi.py b/Django_Blog/01-Getting-Started/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/01-Getting-Started/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/01-Getting-Started/django_project/manage.py b/Django_Blog/01-Getting-Started/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/01-Getting-Started/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/__init__.py b/Django_Blog/02-Application-And-Routes/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/admin.py b/Django_Blog/02-Application-And-Routes/django_project/blog/admin.py
new file mode 100644
index 000000000..8c38f3f3d
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/blog/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/apps.py b/Django_Blog/02-Application-And-Routes/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/migrations/__init__.py b/Django_Blog/02-Application-And-Routes/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/models.py b/Django_Blog/02-Application-And-Routes/django_project/blog/models.py
new file mode 100644
index 000000000..71a836239
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/blog/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/tests.py b/Django_Blog/02-Application-And-Routes/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/urls.py b/Django_Blog/02-Application-And-Routes/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/02-Application-And-Routes/django_project/blog/views.py b/Django_Blog/02-Application-And-Routes/django_project/blog/views.py
new file mode 100644
index 000000000..b8773d180
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/blog/views.py
@@ -0,0 +1,10 @@
+from django.shortcuts import render
+from django.http import HttpResponse
+
+
+def home(request):
+ return HttpResponse('
Blog Home ')
+
+
+def about(request):
+ return HttpResponse('Blog About ')
diff --git a/Django_Blog/02-Application-And-Routes/django_project/db.sqlite3 b/Django_Blog/02-Application-And-Routes/django_project/db.sqlite3
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/02-Application-And-Routes/django_project/django_project/__init__.py b/Django_Blog/02-Application-And-Routes/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/02-Application-And-Routes/django_project/django_project/settings.py b/Django_Blog/02-Application-And-Routes/django_project/django_project/settings.py
new file mode 100644
index 000000000..72dff7a5b
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/django_project/settings.py
@@ -0,0 +1,120 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
diff --git a/Django_Blog/02-Application-And-Routes/django_project/django_project/urls.py b/Django_Blog/02-Application-And-Routes/django_project/django_project/urls.py
new file mode 100644
index 000000000..0ba084517
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/django_project/urls.py
@@ -0,0 +1,22 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('', include('blog.urls')),
+]
diff --git a/Django_Blog/02-Application-And-Routes/django_project/django_project/wsgi.py b/Django_Blog/02-Application-And-Routes/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/02-Application-And-Routes/django_project/manage.py b/Django_Blog/02-Application-And-Routes/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/02-Application-And-Routes/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/03-Templates/django_project/blog/__init__.py b/Django_Blog/03-Templates/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/03-Templates/django_project/blog/admin.py b/Django_Blog/03-Templates/django_project/blog/admin.py
new file mode 100644
index 000000000..8c38f3f3d
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/Django_Blog/03-Templates/django_project/blog/apps.py b/Django_Blog/03-Templates/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/03-Templates/django_project/blog/migrations/__init__.py b/Django_Blog/03-Templates/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/03-Templates/django_project/blog/models.py b/Django_Blog/03-Templates/django_project/blog/models.py
new file mode 100644
index 000000000..71a836239
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/Django_Blog/03-Templates/django_project/blog/static/blog/main.css b/Django_Blog/03-Templates/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/03-Templates/django_project/blog/templates/blog/about.html b/Django_Blog/03-Templates/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/03-Templates/django_project/blog/templates/blog/base.html b/Django_Blog/03-Templates/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..315a1fb57
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/templates/blog/base.html
@@ -0,0 +1,70 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/03-Templates/django_project/blog/templates/blog/home.html b/Django_Blog/03-Templates/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..dec10a5cf
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/templates/blog/home.html
@@ -0,0 +1,15 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/03-Templates/django_project/blog/tests.py b/Django_Blog/03-Templates/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/03-Templates/django_project/blog/urls.py b/Django_Blog/03-Templates/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/03-Templates/django_project/blog/views.py b/Django_Blog/03-Templates/django_project/blog/views.py
new file mode 100644
index 000000000..6a4e9de30
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/blog/views.py
@@ -0,0 +1,27 @@
+from django.shortcuts import render
+
+posts = [
+ {
+ 'author': 'CoreyMS',
+ 'title': 'Blog Post 1',
+ 'content': 'First post content',
+ 'date_posted': 'August 27, 2018'
+ },
+ {
+ 'author': 'Jane Doe',
+ 'title': 'Blog Post 2',
+ 'content': 'Second post content',
+ 'date_posted': 'August 28, 2018'
+ }
+]
+
+
+def home(request):
+ context = {
+ 'posts': posts
+ }
+ return render(request, 'blog/home.html', context)
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/03-Templates/django_project/db.sqlite3 b/Django_Blog/03-Templates/django_project/db.sqlite3
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/03-Templates/django_project/django_project/__init__.py b/Django_Blog/03-Templates/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/03-Templates/django_project/django_project/settings.py b/Django_Blog/03-Templates/django_project/django_project/settings.py
new file mode 100644
index 000000000..c5d59b13c
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/django_project/settings.py
@@ -0,0 +1,121 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
diff --git a/Django_Blog/03-Templates/django_project/django_project/urls.py b/Django_Blog/03-Templates/django_project/django_project/urls.py
new file mode 100644
index 000000000..0ba084517
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/django_project/urls.py
@@ -0,0 +1,22 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('', include('blog.urls')),
+]
diff --git a/Django_Blog/03-Templates/django_project/django_project/wsgi.py b/Django_Blog/03-Templates/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/03-Templates/django_project/manage.py b/Django_Blog/03-Templates/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/03-Templates/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/__init__.py b/Django_Blog/04-Admin-Page/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/admin.py b/Django_Blog/04-Admin-Page/django_project/blog/admin.py
new file mode 100644
index 000000000..8c38f3f3d
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/apps.py b/Django_Blog/04-Admin-Page/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/migrations/__init__.py b/Django_Blog/04-Admin-Page/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/models.py b/Django_Blog/04-Admin-Page/django_project/blog/models.py
new file mode 100644
index 000000000..71a836239
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/static/blog/main.css b/Django_Blog/04-Admin-Page/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/about.html b/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/base.html b/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..315a1fb57
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/base.html
@@ -0,0 +1,70 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/home.html b/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..dec10a5cf
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/templates/blog/home.html
@@ -0,0 +1,15 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/tests.py b/Django_Blog/04-Admin-Page/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/urls.py b/Django_Blog/04-Admin-Page/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/04-Admin-Page/django_project/blog/views.py b/Django_Blog/04-Admin-Page/django_project/blog/views.py
new file mode 100644
index 000000000..6a4e9de30
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/blog/views.py
@@ -0,0 +1,27 @@
+from django.shortcuts import render
+
+posts = [
+ {
+ 'author': 'CoreyMS',
+ 'title': 'Blog Post 1',
+ 'content': 'First post content',
+ 'date_posted': 'August 27, 2018'
+ },
+ {
+ 'author': 'Jane Doe',
+ 'title': 'Blog Post 2',
+ 'content': 'Second post content',
+ 'date_posted': 'August 28, 2018'
+ }
+]
+
+
+def home(request):
+ context = {
+ 'posts': posts
+ }
+ return render(request, 'blog/home.html', context)
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/04-Admin-Page/django_project/db.sqlite3 b/Django_Blog/04-Admin-Page/django_project/db.sqlite3
new file mode 100644
index 000000000..8186c7d70
Binary files /dev/null and b/Django_Blog/04-Admin-Page/django_project/db.sqlite3 differ
diff --git a/Django_Blog/04-Admin-Page/django_project/django_project/__init__.py b/Django_Blog/04-Admin-Page/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/04-Admin-Page/django_project/django_project/settings.py b/Django_Blog/04-Admin-Page/django_project/django_project/settings.py
new file mode 100644
index 000000000..c5d59b13c
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/django_project/settings.py
@@ -0,0 +1,121 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
diff --git a/Django_Blog/04-Admin-Page/django_project/django_project/urls.py b/Django_Blog/04-Admin-Page/django_project/django_project/urls.py
new file mode 100644
index 000000000..0ba084517
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/django_project/urls.py
@@ -0,0 +1,22 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('', include('blog.urls')),
+]
diff --git a/Django_Blog/04-Admin-Page/django_project/django_project/wsgi.py b/Django_Blog/04-Admin-Page/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/04-Admin-Page/django_project/manage.py b/Django_Blog/04-Admin-Page/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/04-Admin-Page/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/05-Database-Models/django_project/blog/__init__.py b/Django_Blog/05-Database-Models/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/05-Database-Models/django_project/blog/admin.py b/Django_Blog/05-Database-Models/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/05-Database-Models/django_project/blog/apps.py b/Django_Blog/05-Database-Models/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/05-Database-Models/django_project/blog/migrations/0001_initial.py b/Django_Blog/05-Database-Models/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/05-Database-Models/django_project/blog/migrations/__init__.py b/Django_Blog/05-Database-Models/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/05-Database-Models/django_project/blog/models.py b/Django_Blog/05-Database-Models/django_project/blog/models.py
new file mode 100644
index 000000000..f34277c7c
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/models.py
@@ -0,0 +1,13 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
diff --git a/Django_Blog/05-Database-Models/django_project/blog/static/blog/main.css b/Django_Blog/05-Database-Models/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/05-Database-Models/django_project/blog/templates/blog/about.html b/Django_Blog/05-Database-Models/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/05-Database-Models/django_project/blog/templates/blog/base.html b/Django_Blog/05-Database-Models/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..315a1fb57
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/templates/blog/base.html
@@ -0,0 +1,70 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/05-Database-Models/django_project/blog/templates/blog/home.html b/Django_Blog/05-Database-Models/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..dedc49aaa
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/templates/blog/home.html
@@ -0,0 +1,15 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/05-Database-Models/django_project/blog/tests.py b/Django_Blog/05-Database-Models/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/05-Database-Models/django_project/blog/urls.py b/Django_Blog/05-Database-Models/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/05-Database-Models/django_project/blog/views.py b/Django_Blog/05-Database-Models/django_project/blog/views.py
new file mode 100644
index 000000000..12fca8f21
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/blog/views.py
@@ -0,0 +1,13 @@
+from django.shortcuts import render
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/05-Database-Models/django_project/db.sqlite3 b/Django_Blog/05-Database-Models/django_project/db.sqlite3
new file mode 100644
index 000000000..1dcacd6f5
Binary files /dev/null and b/Django_Blog/05-Database-Models/django_project/db.sqlite3 differ
diff --git a/Django_Blog/05-Database-Models/django_project/django_project/__init__.py b/Django_Blog/05-Database-Models/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/05-Database-Models/django_project/django_project/settings.py b/Django_Blog/05-Database-Models/django_project/django_project/settings.py
new file mode 100644
index 000000000..c5d59b13c
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/django_project/settings.py
@@ -0,0 +1,121 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
diff --git a/Django_Blog/05-Database-Models/django_project/django_project/urls.py b/Django_Blog/05-Database-Models/django_project/django_project/urls.py
new file mode 100644
index 000000000..0ba084517
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/django_project/urls.py
@@ -0,0 +1,22 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('', include('blog.urls')),
+]
diff --git a/Django_Blog/05-Database-Models/django_project/django_project/wsgi.py b/Django_Blog/05-Database-Models/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/05-Database-Models/django_project/manage.py b/Django_Blog/05-Database-Models/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/05-Database-Models/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/__init__.py b/Django_Blog/06-User-Registration-Form/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/admin.py b/Django_Blog/06-User-Registration-Form/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/apps.py b/Django_Blog/06-User-Registration-Form/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/migrations/0001_initial.py b/Django_Blog/06-User-Registration-Form/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/migrations/__init__.py b/Django_Blog/06-User-Registration-Form/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/models.py b/Django_Blog/06-User-Registration-Form/django_project/blog/models.py
new file mode 100644
index 000000000..f34277c7c
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/models.py
@@ -0,0 +1,13 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/static/blog/main.css b/Django_Blog/06-User-Registration-Form/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/about.html b/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/base.html b/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..66e6216c9
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/base.html
@@ -0,0 +1,77 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/home.html b/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..dedc49aaa
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/templates/blog/home.html
@@ -0,0 +1,15 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/tests.py b/Django_Blog/06-User-Registration-Form/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/urls.py b/Django_Blog/06-User-Registration-Form/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/06-User-Registration-Form/django_project/blog/views.py b/Django_Blog/06-User-Registration-Form/django_project/blog/views.py
new file mode 100644
index 000000000..12fca8f21
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/blog/views.py
@@ -0,0 +1,13 @@
+from django.shortcuts import render
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/06-User-Registration-Form/django_project/db.sqlite3 b/Django_Blog/06-User-Registration-Form/django_project/db.sqlite3
new file mode 100644
index 000000000..298e3d759
Binary files /dev/null and b/Django_Blog/06-User-Registration-Form/django_project/db.sqlite3 differ
diff --git a/Django_Blog/06-User-Registration-Form/django_project/django_project/__init__.py b/Django_Blog/06-User-Registration-Form/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/06-User-Registration-Form/django_project/django_project/settings.py b/Django_Blog/06-User-Registration-Form/django_project/django_project/settings.py
new file mode 100644
index 000000000..8df8664b7
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/django_project/settings.py
@@ -0,0 +1,125 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
diff --git a/Django_Blog/06-User-Registration-Form/django_project/django_project/urls.py b/Django_Blog/06-User-Registration-Form/django_project/django_project/urls.py
new file mode 100644
index 000000000..c43a4a5c6
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/django_project/urls.py
@@ -0,0 +1,24 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('', include('blog.urls')),
+]
diff --git a/Django_Blog/06-User-Registration-Form/django_project/django_project/wsgi.py b/Django_Blog/06-User-Registration-Form/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/06-User-Registration-Form/django_project/manage.py b/Django_Blog/06-User-Registration-Form/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/__init__.py b/Django_Blog/06-User-Registration-Form/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/admin.py b/Django_Blog/06-User-Registration-Form/django_project/users/admin.py
new file mode 100644
index 000000000..8c38f3f3d
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/users/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/apps.py b/Django_Blog/06-User-Registration-Form/django_project/users/apps.py
new file mode 100644
index 000000000..4ce1fabc0
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/users/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/forms.py b/Django_Blog/06-User-Registration-Form/django_project/users/forms.py
new file mode 100644
index 000000000..0989ffa73
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/users/forms.py
@@ -0,0 +1,11 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/migrations/__init__.py b/Django_Blog/06-User-Registration-Form/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/models.py b/Django_Blog/06-User-Registration-Form/django_project/users/models.py
new file mode 100644
index 000000000..71a836239
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/users/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/templates/users/register.html b/Django_Blog/06-User-Registration-Form/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..1ab82fa16
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/tests.py b/Django_Blog/06-User-Registration-Form/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/06-User-Registration-Form/django_project/users/views.py b/Django_Blog/06-User-Registration-Form/django_project/users/views.py
new file mode 100644
index 000000000..ee22e2fda
--- /dev/null
+++ b/Django_Blog/06-User-Registration-Form/django_project/users/views.py
@@ -0,0 +1,16 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from .forms import UserRegisterForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Account created for {username}!')
+ return redirect('blog-home')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/__init__.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/admin.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/apps.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/migrations/0001_initial.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/migrations/__init__.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/models.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/models.py
new file mode 100644
index 000000000..f34277c7c
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/models.py
@@ -0,0 +1,13 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/static/blog/main.css b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/about.html b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/base.html b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..69421c852
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/base.html
@@ -0,0 +1,82 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/home.html b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..dedc49aaa
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/templates/blog/home.html
@@ -0,0 +1,15 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/tests.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/urls.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/blog/views.py b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/views.py
new file mode 100644
index 000000000..12fca8f21
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/blog/views.py
@@ -0,0 +1,13 @@
+from django.shortcuts import render
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/db.sqlite3 b/Django_Blog/07-Login-Logout-Authentication/django_project/db.sqlite3
new file mode 100644
index 000000000..f86e3957e
Binary files /dev/null and b/Django_Blog/07-Login-Logout-Authentication/django_project/db.sqlite3 differ
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/__init__.py b/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/settings.py b/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/settings.py
new file mode 100644
index 000000000..218f2cb32
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/settings.py
@@ -0,0 +1,131 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/urls.py b/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/urls.py
new file mode 100644
index 000000000..37b6e5456
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/urls.py
@@ -0,0 +1,34 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/wsgi.py b/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/manage.py b/Django_Blog/07-Login-Logout-Authentication/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/media/default.jpg b/Django_Blog/07-Login-Logout-Authentication/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/07-Login-Logout-Authentication/django_project/media/default.jpg differ
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/media/profile_pics/pic.jpg b/Django_Blog/07-Login-Logout-Authentication/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/07-Login-Logout-Authentication/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/__init__.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/admin.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/apps.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/forms.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/forms.py
new file mode 100644
index 000000000..0989ffa73
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/forms.py
@@ -0,0 +1,11 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/migrations/0001_initial.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/migrations/__init__.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/models.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/models.py
new file mode 100644
index 000000000..809eb77ae
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/models.py
@@ -0,0 +1,10 @@
+from django.db import models
+from django.contrib.auth.models import User
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/signals.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/login.html b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..f3404f11f
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/login.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/logout.html b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/profile.html b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..7f61e466d
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/profile.html
@@ -0,0 +1,14 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/register.html b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/tests.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/07-Login-Logout-Authentication/django_project/users/views.py b/Django_Blog/07-Login-Logout-Authentication/django_project/users/views.py
new file mode 100644
index 000000000..5e7696b89
--- /dev/null
+++ b/Django_Blog/07-Login-Logout-Authentication/django_project/users/views.py
@@ -0,0 +1,22 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ return render(request, 'users/profile.html')
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/__init__.py b/Django_Blog/08-Profile-And-Images/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/admin.py b/Django_Blog/08-Profile-And-Images/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/apps.py b/Django_Blog/08-Profile-And-Images/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/migrations/0001_initial.py b/Django_Blog/08-Profile-And-Images/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/migrations/__init__.py b/Django_Blog/08-Profile-And-Images/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/models.py b/Django_Blog/08-Profile-And-Images/django_project/blog/models.py
new file mode 100644
index 000000000..f34277c7c
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/models.py
@@ -0,0 +1,13 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/static/blog/main.css b/Django_Blog/08-Profile-And-Images/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/about.html b/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/base.html b/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..69421c852
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/base.html
@@ -0,0 +1,82 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/home.html b/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..dedc49aaa
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/templates/blog/home.html
@@ -0,0 +1,15 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/tests.py b/Django_Blog/08-Profile-And-Images/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/urls.py b/Django_Blog/08-Profile-And-Images/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/08-Profile-And-Images/django_project/blog/views.py b/Django_Blog/08-Profile-And-Images/django_project/blog/views.py
new file mode 100644
index 000000000..12fca8f21
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/blog/views.py
@@ -0,0 +1,13 @@
+from django.shortcuts import render
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/08-Profile-And-Images/django_project/db.sqlite3 b/Django_Blog/08-Profile-And-Images/django_project/db.sqlite3
new file mode 100644
index 000000000..f86e3957e
Binary files /dev/null and b/Django_Blog/08-Profile-And-Images/django_project/db.sqlite3 differ
diff --git a/Django_Blog/08-Profile-And-Images/django_project/django_project/__init__.py b/Django_Blog/08-Profile-And-Images/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/08-Profile-And-Images/django_project/django_project/settings.py b/Django_Blog/08-Profile-And-Images/django_project/django_project/settings.py
new file mode 100644
index 000000000..218f2cb32
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/django_project/settings.py
@@ -0,0 +1,131 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
diff --git a/Django_Blog/08-Profile-And-Images/django_project/django_project/urls.py b/Django_Blog/08-Profile-And-Images/django_project/django_project/urls.py
new file mode 100644
index 000000000..37b6e5456
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/django_project/urls.py
@@ -0,0 +1,34 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/08-Profile-And-Images/django_project/django_project/wsgi.py b/Django_Blog/08-Profile-And-Images/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/08-Profile-And-Images/django_project/manage.py b/Django_Blog/08-Profile-And-Images/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/08-Profile-And-Images/django_project/media/default.jpg b/Django_Blog/08-Profile-And-Images/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/08-Profile-And-Images/django_project/media/default.jpg differ
diff --git a/Django_Blog/08-Profile-And-Images/django_project/media/profile_pics/pic.jpg b/Django_Blog/08-Profile-And-Images/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/08-Profile-And-Images/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/__init__.py b/Django_Blog/08-Profile-And-Images/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/admin.py b/Django_Blog/08-Profile-And-Images/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/apps.py b/Django_Blog/08-Profile-And-Images/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/forms.py b/Django_Blog/08-Profile-And-Images/django_project/users/forms.py
new file mode 100644
index 000000000..0989ffa73
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/forms.py
@@ -0,0 +1,11 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/migrations/0001_initial.py b/Django_Blog/08-Profile-And-Images/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/migrations/__init__.py b/Django_Blog/08-Profile-And-Images/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/models.py b/Django_Blog/08-Profile-And-Images/django_project/users/models.py
new file mode 100644
index 000000000..809eb77ae
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/models.py
@@ -0,0 +1,10 @@
+from django.db import models
+from django.contrib.auth.models import User
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/signals.py b/Django_Blog/08-Profile-And-Images/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/login.html b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..f3404f11f
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/login.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/logout.html b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/profile.html b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..7f61e466d
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/profile.html
@@ -0,0 +1,14 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/register.html b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/tests.py b/Django_Blog/08-Profile-And-Images/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/08-Profile-And-Images/django_project/users/views.py b/Django_Blog/08-Profile-And-Images/django_project/users/views.py
new file mode 100644
index 000000000..5e7696b89
--- /dev/null
+++ b/Django_Blog/08-Profile-And-Images/django_project/users/views.py
@@ -0,0 +1,22 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ return render(request, 'users/profile.html')
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/__init__.py b/Django_Blog/09-Update-User-Profile/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/admin.py b/Django_Blog/09-Update-User-Profile/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/apps.py b/Django_Blog/09-Update-User-Profile/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/migrations/0001_initial.py b/Django_Blog/09-Update-User-Profile/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/migrations/__init__.py b/Django_Blog/09-Update-User-Profile/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/models.py b/Django_Blog/09-Update-User-Profile/django_project/blog/models.py
new file mode 100644
index 000000000..f34277c7c
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/models.py
@@ -0,0 +1,13 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/static/blog/main.css b/Django_Blog/09-Update-User-Profile/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/about.html b/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/base.html b/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..69421c852
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/base.html
@@ -0,0 +1,82 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/home.html b/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..46d5d35ed
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/templates/blog/home.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/tests.py b/Django_Blog/09-Update-User-Profile/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/urls.py b/Django_Blog/09-Update-User-Profile/django_project/blog/urls.py
new file mode 100644
index 000000000..2f2d16901
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/urls.py
@@ -0,0 +1,7 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.home, name='blog-home'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/09-Update-User-Profile/django_project/blog/views.py b/Django_Blog/09-Update-User-Profile/django_project/blog/views.py
new file mode 100644
index 000000000..12fca8f21
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/blog/views.py
@@ -0,0 +1,13 @@
+from django.shortcuts import render
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/09-Update-User-Profile/django_project/db.sqlite3 b/Django_Blog/09-Update-User-Profile/django_project/db.sqlite3
new file mode 100644
index 000000000..a337d7444
Binary files /dev/null and b/Django_Blog/09-Update-User-Profile/django_project/db.sqlite3 differ
diff --git a/Django_Blog/09-Update-User-Profile/django_project/django_project/__init__.py b/Django_Blog/09-Update-User-Profile/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/09-Update-User-Profile/django_project/django_project/settings.py b/Django_Blog/09-Update-User-Profile/django_project/django_project/settings.py
new file mode 100644
index 000000000..218f2cb32
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/django_project/settings.py
@@ -0,0 +1,131 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
diff --git a/Django_Blog/09-Update-User-Profile/django_project/django_project/urls.py b/Django_Blog/09-Update-User-Profile/django_project/django_project/urls.py
new file mode 100644
index 000000000..37b6e5456
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/django_project/urls.py
@@ -0,0 +1,34 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/09-Update-User-Profile/django_project/django_project/wsgi.py b/Django_Blog/09-Update-User-Profile/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/09-Update-User-Profile/django_project/manage.py b/Django_Blog/09-Update-User-Profile/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/09-Update-User-Profile/django_project/media/default.jpg b/Django_Blog/09-Update-User-Profile/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/09-Update-User-Profile/django_project/media/default.jpg differ
diff --git a/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/large.jpg b/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/large.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/large.jpg differ
diff --git a/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/large_rbSbk8j.jpg b/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/large_rbSbk8j.jpg
new file mode 100644
index 000000000..7c310fce5
Binary files /dev/null and b/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/large_rbSbk8j.jpg differ
diff --git a/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/pic.jpg b/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/09-Update-User-Profile/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/__init__.py b/Django_Blog/09-Update-User-Profile/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/admin.py b/Django_Blog/09-Update-User-Profile/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/apps.py b/Django_Blog/09-Update-User-Profile/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/forms.py b/Django_Blog/09-Update-User-Profile/django_project/users/forms.py
new file mode 100644
index 000000000..ee5757afe
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/forms.py
@@ -0,0 +1,26 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+from .models import Profile
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
+
+
+class UserUpdateForm(forms.ModelForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email']
+
+
+class ProfileUpdateForm(forms.ModelForm):
+ class Meta:
+ model = Profile
+ fields = ['image']
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/migrations/0001_initial.py b/Django_Blog/09-Update-User-Profile/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/migrations/__init__.py b/Django_Blog/09-Update-User-Profile/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/models.py b/Django_Blog/09-Update-User-Profile/django_project/users/models.py
new file mode 100644
index 000000000..8aec8554c
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/models.py
@@ -0,0 +1,21 @@
+from django.db import models
+from django.contrib.auth.models import User
+from PIL import Image
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
+
+ def save(self):
+ super().save()
+
+ img = Image.open(self.image.path)
+
+ if img.height > 300 or img.width > 300:
+ output_size = (300, 300)
+ img.thumbnail(output_size)
+ img.save(self.image.path)
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/signals.py b/Django_Blog/09-Update-User-Profile/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/login.html b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..f3404f11f
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/login.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/logout.html b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/profile.html b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..76fd4d2b8
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/profile.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/register.html b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/tests.py b/Django_Blog/09-Update-User-Profile/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/09-Update-User-Profile/django_project/users/views.py b/Django_Blog/09-Update-User-Profile/django_project/users/views.py
new file mode 100644
index 000000000..c9de3bb90
--- /dev/null
+++ b/Django_Blog/09-Update-User-Profile/django_project/users/views.py
@@ -0,0 +1,42 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ if request.method == 'POST':
+ u_form = UserUpdateForm(request.POST, instance=request.user)
+ p_form = ProfileUpdateForm(request.POST,
+ request.FILES,
+ instance=request.user.profile)
+ if u_form.is_valid() and p_form.is_valid():
+ u_form.save()
+ p_form.save()
+ messages.success(request, f'Your account has been updated!')
+ return redirect('profile')
+
+ else:
+ u_form = UserUpdateForm(instance=request.user)
+ p_form = ProfileUpdateForm(instance=request.user.profile)
+
+ context = {
+ 'u_form': u_form,
+ 'p_form': p_form
+ }
+
+ return render(request, 'users/profile.html', context)
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/__init__.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/admin.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/apps.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/migrations/0001_initial.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/migrations/__init__.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/models.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/models.py
new file mode 100644
index 000000000..6a5fa2950
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+from django.urls import reverse
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
+
+ def get_absolute_url(self):
+ return reverse('post-detail', kwargs={'pk': self.pk})
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/static/blog/main.css b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/about.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/base.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..bb7c9fd52
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/base.html
@@ -0,0 +1,83 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/home.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..26e521831
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/home.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_confirm_delete.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_confirm_delete.html
new file mode 100644
index 000000000..1bb861528
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_confirm_delete.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_detail.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_detail.html
new file mode 100644
index 000000000..fa4ba4ef7
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_detail.html
@@ -0,0 +1,20 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+
+
+
+
{{ object.author }}
+
{{ object.date_posted|date:"F d, Y" }}
+ {% if object.author == user %}
+
+ {% endif %}
+
+
{{ object.title }}
+
{{ object.content }}
+
+
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_form.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_form.html
new file mode 100644
index 000000000..fc90b64aa
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/templates/blog/post_form.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/tests.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/urls.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/urls.py
new file mode 100644
index 000000000..45c5285c0
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/urls.py
@@ -0,0 +1,18 @@
+from django.urls import path
+from .views import (
+ PostListView,
+ PostDetailView,
+ PostCreateView,
+ PostUpdateView,
+ PostDeleteView
+)
+from . import views
+
+urlpatterns = [
+ path('', PostListView.as_view(), name='blog-home'),
+ path('post//', PostDetailView.as_view(), name='post-detail'),
+ path('post/new/', PostCreateView.as_view(), name='post-create'),
+ path('post//update/', PostUpdateView.as_view(), name='post-update'),
+ path('post//delete/', PostDeleteView.as_view(), name='post-delete'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/views.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/views.py
new file mode 100644
index 000000000..0aa7a7487
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/blog/views.py
@@ -0,0 +1,67 @@
+from django.shortcuts import render
+from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
+from django.views.generic import (
+ ListView,
+ DetailView,
+ CreateView,
+ UpdateView,
+ DeleteView
+)
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+class PostListView(ListView):
+ model = Post
+ template_name = 'blog/home.html' # /_.html
+ context_object_name = 'posts'
+ ordering = ['-date_posted']
+
+
+class PostDetailView(DetailView):
+ model = Post
+
+
+class PostCreateView(LoginRequiredMixin, CreateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+
+class PostUpdateView(LoginRequiredMixin, UserPassesTestMixin, UpdateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+class PostDeleteView(LoginRequiredMixin, UserPassesTestMixin, DeleteView):
+ model = Post
+ success_url = '/'
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/db.sqlite3 b/Django_Blog/10-Posts-Create-Update-Delete/django_project/db.sqlite3
new file mode 100644
index 000000000..c826a4aeb
Binary files /dev/null and b/Django_Blog/10-Posts-Create-Update-Delete/django_project/db.sqlite3 differ
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/__init__.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/settings.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/settings.py
new file mode 100644
index 000000000..218f2cb32
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/settings.py
@@ -0,0 +1,131 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/urls.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/urls.py
new file mode 100644
index 000000000..37b6e5456
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/urls.py
@@ -0,0 +1,34 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/wsgi.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/manage.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/default.jpg b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/default.jpg differ
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/large.jpg b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/large.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/large.jpg differ
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/large_rbSbk8j.jpg b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/large_rbSbk8j.jpg
new file mode 100644
index 000000000..7c310fce5
Binary files /dev/null and b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/large_rbSbk8j.jpg differ
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/pic.jpg b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/10-Posts-Create-Update-Delete/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/__init__.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/admin.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/apps.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/forms.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/forms.py
new file mode 100644
index 000000000..ee5757afe
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/forms.py
@@ -0,0 +1,26 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+from .models import Profile
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
+
+
+class UserUpdateForm(forms.ModelForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email']
+
+
+class ProfileUpdateForm(forms.ModelForm):
+ class Meta:
+ model = Profile
+ fields = ['image']
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/migrations/0001_initial.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/migrations/__init__.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/models.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/models.py
new file mode 100644
index 000000000..8aec8554c
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/models.py
@@ -0,0 +1,21 @@
+from django.db import models
+from django.contrib.auth.models import User
+from PIL import Image
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
+
+ def save(self):
+ super().save()
+
+ img = Image.open(self.image.path)
+
+ if img.height > 300 or img.width > 300:
+ output_size = (300, 300)
+ img.thumbnail(output_size)
+ img.save(self.image.path)
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/signals.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/login.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..f3404f11f
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/login.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/logout.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/profile.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..76fd4d2b8
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/profile.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/register.html b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/tests.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/views.py b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/views.py
new file mode 100644
index 000000000..c9de3bb90
--- /dev/null
+++ b/Django_Blog/10-Posts-Create-Update-Delete/django_project/users/views.py
@@ -0,0 +1,42 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ if request.method == 'POST':
+ u_form = UserUpdateForm(request.POST, instance=request.user)
+ p_form = ProfileUpdateForm(request.POST,
+ request.FILES,
+ instance=request.user.profile)
+ if u_form.is_valid() and p_form.is_valid():
+ u_form.save()
+ p_form.save()
+ messages.success(request, f'Your account has been updated!')
+ return redirect('profile')
+
+ else:
+ u_form = UserUpdateForm(instance=request.user)
+ p_form = ProfileUpdateForm(instance=request.user.profile)
+
+ context = {
+ 'u_form': u_form,
+ 'p_form': p_form
+ }
+
+ return render(request, 'users/profile.html', context)
diff --git a/Django_Blog/11-Pagination/django_project/blog/__init__.py b/Django_Blog/11-Pagination/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/11-Pagination/django_project/blog/admin.py b/Django_Blog/11-Pagination/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/11-Pagination/django_project/blog/apps.py b/Django_Blog/11-Pagination/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/11-Pagination/django_project/blog/migrations/0001_initial.py b/Django_Blog/11-Pagination/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/11-Pagination/django_project/blog/migrations/__init__.py b/Django_Blog/11-Pagination/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/11-Pagination/django_project/blog/models.py b/Django_Blog/11-Pagination/django_project/blog/models.py
new file mode 100644
index 000000000..6a5fa2950
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+from django.urls import reverse
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
+
+ def get_absolute_url(self):
+ return reverse('post-detail', kwargs={'pk': self.pk})
diff --git a/Django_Blog/11-Pagination/django_project/blog/static/blog/main.css b/Django_Blog/11-Pagination/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/11-Pagination/django_project/blog/templates/blog/about.html b/Django_Blog/11-Pagination/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/blog/templates/blog/base.html b/Django_Blog/11-Pagination/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..bb7c9fd52
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/templates/blog/base.html
@@ -0,0 +1,83 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/11-Pagination/django_project/blog/templates/blog/home.html b/Django_Blog/11-Pagination/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..f2d8ac709
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/templates/blog/home.html
@@ -0,0 +1,37 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_confirm_delete.html b/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_confirm_delete.html
new file mode 100644
index 000000000..1bb861528
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_confirm_delete.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_detail.html b/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_detail.html
new file mode 100644
index 000000000..eb6c099fc
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_detail.html
@@ -0,0 +1,20 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+
+
+
+
{{ object.author }}
+
{{ object.date_posted|date:"F d, Y" }}
+ {% if object.author == user %}
+
+ {% endif %}
+
+
{{ object.title }}
+
{{ object.content }}
+
+
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_form.html b/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_form.html
new file mode 100644
index 000000000..fc90b64aa
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/templates/blog/post_form.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/blog/templates/blog/user_posts.html b/Django_Blog/11-Pagination/django_project/blog/templates/blog/user_posts.html
new file mode 100644
index 000000000..81ae7b183
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/templates/blog/user_posts.html
@@ -0,0 +1,38 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ Posts by {{ view.kwargs.username }} ({{ page_obj.paginator.count }})
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/blog/tests.py b/Django_Blog/11-Pagination/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/11-Pagination/django_project/blog/urls.py b/Django_Blog/11-Pagination/django_project/blog/urls.py
new file mode 100644
index 000000000..979254ed3
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/urls.py
@@ -0,0 +1,20 @@
+from django.urls import path
+from .views import (
+ PostListView,
+ PostDetailView,
+ PostCreateView,
+ PostUpdateView,
+ PostDeleteView,
+ UserPostListView
+)
+from . import views
+
+urlpatterns = [
+ path('', PostListView.as_view(), name='blog-home'),
+ path('user/', UserPostListView.as_view(), name='user-posts'),
+ path('post//', PostDetailView.as_view(), name='post-detail'),
+ path('post/new/', PostCreateView.as_view(), name='post-create'),
+ path('post//update/', PostUpdateView.as_view(), name='post-update'),
+ path('post//delete/', PostDeleteView.as_view(), name='post-delete'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/11-Pagination/django_project/blog/views.py b/Django_Blog/11-Pagination/django_project/blog/views.py
new file mode 100644
index 000000000..5751fbe38
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/blog/views.py
@@ -0,0 +1,80 @@
+from django.shortcuts import render, get_object_or_404
+from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
+from django.contrib.auth.models import User
+from django.views.generic import (
+ ListView,
+ DetailView,
+ CreateView,
+ UpdateView,
+ DeleteView
+)
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+class PostListView(ListView):
+ model = Post
+ template_name = 'blog/home.html' # /_.html
+ context_object_name = 'posts'
+ ordering = ['-date_posted']
+ paginate_by = 5
+
+
+class UserPostListView(ListView):
+ model = Post
+ template_name = 'blog/user_posts.html' # /_.html
+ context_object_name = 'posts'
+ paginate_by = 5
+
+ def get_queryset(self):
+ user = get_object_or_404(User, username=self.kwargs.get('username'))
+ return Post.objects.filter(author=user).order_by('-date_posted')
+
+
+class PostDetailView(DetailView):
+ model = Post
+
+
+class PostCreateView(LoginRequiredMixin, CreateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+
+class PostUpdateView(LoginRequiredMixin, UserPassesTestMixin, UpdateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+class PostDeleteView(LoginRequiredMixin, UserPassesTestMixin, DeleteView):
+ model = Post
+ success_url = '/'
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/11-Pagination/django_project/db.sqlite3 b/Django_Blog/11-Pagination/django_project/db.sqlite3
new file mode 100644
index 000000000..2ac47057e
Binary files /dev/null and b/Django_Blog/11-Pagination/django_project/db.sqlite3 differ
diff --git a/Django_Blog/11-Pagination/django_project/django_project/__init__.py b/Django_Blog/11-Pagination/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/11-Pagination/django_project/django_project/settings.py b/Django_Blog/11-Pagination/django_project/django_project/settings.py
new file mode 100644
index 000000000..218f2cb32
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/django_project/settings.py
@@ -0,0 +1,131 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
diff --git a/Django_Blog/11-Pagination/django_project/django_project/urls.py b/Django_Blog/11-Pagination/django_project/django_project/urls.py
new file mode 100644
index 000000000..37b6e5456
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/django_project/urls.py
@@ -0,0 +1,34 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/11-Pagination/django_project/django_project/wsgi.py b/Django_Blog/11-Pagination/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/11-Pagination/django_project/manage.py b/Django_Blog/11-Pagination/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/11-Pagination/django_project/media/default.jpg b/Django_Blog/11-Pagination/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/11-Pagination/django_project/media/default.jpg differ
diff --git a/Django_Blog/11-Pagination/django_project/media/profile_pics/large.jpg b/Django_Blog/11-Pagination/django_project/media/profile_pics/large.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Django_Blog/11-Pagination/django_project/media/profile_pics/large.jpg differ
diff --git a/Django_Blog/11-Pagination/django_project/media/profile_pics/large_rbSbk8j.jpg b/Django_Blog/11-Pagination/django_project/media/profile_pics/large_rbSbk8j.jpg
new file mode 100644
index 000000000..7c310fce5
Binary files /dev/null and b/Django_Blog/11-Pagination/django_project/media/profile_pics/large_rbSbk8j.jpg differ
diff --git a/Django_Blog/11-Pagination/django_project/media/profile_pics/pic.jpg b/Django_Blog/11-Pagination/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/11-Pagination/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/11-Pagination/django_project/posts.json b/Django_Blog/11-Pagination/django_project/posts.json
new file mode 100644
index 000000000..6eb7d7723
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/posts.json
@@ -0,0 +1,122 @@
+[
+ {
+ "title": "My Updated Post",
+ "content": "My first updated post!\r\n\r\nThis is exciting!",
+ "user_id": 1
+ },
+ {
+ "title": "A Second Post",
+ "content": "This is a post from a different user...",
+ "user_id": 2
+ },
+ {
+ "title": "Top 5 Programming Lanaguages",
+ "content": "Te melius apeirian postulant cum, labitur admodum cu eos! Tollit equidem constituto ut has. Et per ponderum sadipscing, eu vero dolores recusabo nec! Eum quas epicuri at, eam albucius phaedrum ad, no eum probo fierent singulis. Dicat corrumpit definiebas id usu, in facete scripserit eam.\r\n\r\nVim ei exerci nusquam. Agam detraxit an quo? Quo et partem bonorum sensibus, mutat minimum est ad. In paulo essent signiferumque his, quaestio sadipscing theophrastus ad has. Ancillae appareat qualisque ei has, usu ne assum zril disputationi, sed at gloriatur persequeris.",
+ "user_id": 1
+ },
+ {
+ "title": "Sublime Text Tips and Tricks",
+ "content": "Ea vix dico modus voluptatibus, mel iudico suavitate iracundia eu. Tincidunt voluptatibus pro eu? Nulla omittam eligendi his ne, suas putant ut pri. Ullum repudiare at duo, ut cum habeo minim laudem, dicit libris antiopam has ut! Ex movet feugait mea, eu vim impetus nostrud cotidieque.\r\n\r\nEi suas similique quo, his simul viris congue ex? Graeci possit in est, ne qui minim delectus invenire. Mei ad error homero maluisset, tacimates assentior per in, vix ut vocent accusata! Mei eu inermis pericula patrioque? Debet denique sea at, ad cibo reformidans theophrastus per, cu inermis maiestatis vim!\r\n\r\nUt odio feugiat voluptua est, euismod volutpat qualisque at sit, has ex dicit ornatus inimicus! Eu ferri laoreet vel, dicat corrumpit dissentias nec in. Illum dissentiunt eam ei, praesent voluptatum pri in? Ius in inani petentium, hinc elitr vivendum an vis, in vero dolores electram ius?",
+ "user_id": 1
+ },
+ {
+ "title": "Best Python IDEs",
+ "content": "Elit contentiones nam no, sea ut consul adipiscing. Etiam velit ei usu, sonet clita nonumy eu eum. Usu ea utroque facilisi, cu mel fugit tantas legimus, te vix quem nominavi. Prima deserunt evertitur ne qui, nam reprimique appellantur ne.",
+ "user_id": 1
+ },
+ {
+ "title": "Flask vs Django - Which Is Better?",
+ "content": "Ei dicta apeirian deterruisset eam, cu offendit invenire pri, cu possim vivendo vix? Nam nihil evertitur ad, ne vim nonumy legendos iracundia. Vix nulla dolorem intellegebat ea? Te per vide paulo dolor, eum ea erant placerat constituam? Dolores accumsan eum at.\r\n\r\nInteresset consequuntur id vix. Eam id decore latine, iusto imperdiet ei qui. In ludus consul reformidans eam. Nec in recusabo posidonium, cu tantas volumus mnesarchum pro. Nam ut docendi evertitur, possim menandri persecuti ne sed, cum saepe ornatus delenit ei?\r\n\r\nIn mel debet aliquam. In his etiam legere, doming nominavi consetetur has ad, decore reprimique ea usu. Eam magna graeci suavitate cu, facete delenit cum ne. Ponderum evertitur tincidunt ei mel, ius ei stet euismod docendi.",
+ "user_id": 2
+ },
+ {
+ "title": "You Won't Believe These Clickbait Titles!",
+ "content": "Cu justo honestatis mel, pro ei appareat mediocrem suavitate. No his omnis ridens. Ludus ornatus voluptatum mei ut, an mentitum noluisse forensibus cum. Eam affert pertinax consequuntur ei, nisl zril meliore te vis? Ad animal persius concludaturque vix, eu graece audiam mel.\r\n\r\nVitae libris mentitum pri in. Cu rebum veritus sea, ex usu consul dolorum, pro tale maluisset consulatu ut. Quo ad clita persius ancillae. Vel illud blandit at, vel eu hinc graeco, usu doctus praesent ea! Vim rebum deserunt ex.\r\n\r\nIus lorem omittam id, est suavitate definitionem ad! Id vim insolens tacimates, pri at decore causae. Ex duo bonorum repudiandae? Vix no vidit facete impedit. An oportere indoctum eam.",
+ "user_id": 2
+ },
+ {
+ "title": "These Beers Will Improve Your Programming",
+ "content": "Sanctus senserit vis id, ut eum iuvaret invidunt constituam? Nonumes facilis mei an, ad elit explicari persequeris pri, dico recusabo quo id? At mea lorem repudiandae. Sed causae sensibus forensibus ea, ne ornatus suscipiantur consectetuer mel, affert nostro nominati cu qui. Te sanctus constituto est, corrumpit pertinacia eos et, mei libris persequeris an.\r\n\r\nQuo fuisset sensibus in. Ad est assueverit adversarium, viris aperiri numquam est ad. Pro mediocrem iudicabit ei! Cu aperiam diceret sit.",
+ "user_id": 1
+ },
+ {
+ "title": "List of PyCon 2018 Talks",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "How Dogs in the Workplace Boosts Productivity",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "The Best Programming Podcasts",
+ "content": "Vidisse malorum platonem vel no. Persecuti adversarium ut sit, quo et stet velit mundi! Id per homero expetenda. Est brute adipisci et!\r\n\r\nLorem aliquip has in, quo debet ceteros sadipscing ne! An sea odio ornatus inermis, an per ipsum persecuti dissentiunt, no mea bonorum pertinacia delicatissimi? Ne sumo diceret mea, percipit repudiare eam no! Pro et lorem accommodare. At eius novum phaedrum mei?\r\n\r\nIgnota conclusionemque mei no, eam ut munere fierent pertinacia. Ea enim insolens gloriatur duo, quis vituperatoribus pro no! Ei sed bonorum reprehendunt, aliquam nominavi his et. Magna decore referrentur id nec. Cum rebum ludus inimicus no, id cum iusto labores maluisset!\r\n\r\nQui no omnis numquam apeirian, et vide interesset cum? Et nec nulla signiferumque. Enim instructior eos ei, solum tollit phaedrum his in? No vix malorum ornatus, cu quo hinc everti iracundia, essent eruditi efficiendi ut nam. Altera saperet usu eu, errem expetenda cu duo. Has dolor splendide et, no mel cibo ancillae voluptatum, mutat antiopam deterruisset ei qui. Dolores scripserit concludaturque est id, ea animal facilisi splendide qui, quo at animal voluptua instructior.\r\n\r\nMeis voluptatum eu eum.",
+ "user_id": 1
+ },
+ {
+ "title": "Tips for Public Speaking",
+ "content": "Ex eam doctus accommodare. Ut oratio vivendo intellegebat qui. Ius ne doming petentium. Pri congue delectus ad, accumsan molestiae disputando te mea. Nam case inani eligendi at, per te esse iudico. Feugiat patrioque mei ad, harum mundi adversarium an per!\r\n\r\nAncillae verterem eleifend his at? Nam vidit iusto petentium at, vis nusquam dissentias cu, etiam doctus adversarium eam no. At alterum definiebas efficiantur eos, pro labitur vituperatoribus ne, eu odio legere vim. Ad nec verear appellantur? Ad qui vulputate persequeris.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Programmers Throughout History",
+ "content": "Mel nulla legimus senserit id. Vim purto tractatos in, te vix error regione, erant laudem legere an vel. Falli fierent ius ex! In legere iriure est, id vis prima maluisset, purto numquam inimicus ut eos! In duo antiopam salutatus, an vel quodsi virtute definitiones.\r\n\r\nEst te sumo voluptaria, ius no putant argumentum, alienum ocurreret vim cu? Volumus democritum no vel, virtute commune an est. Vel te propriae lobortis rationibus, no eum odio neglegentur? Duo an sumo ignota latine! Nec mazim aperiam percipitur eu, id his dicit omnium.",
+ "user_id": 2
+ },
+ {
+ "title": "How To Create A YouTube Channel",
+ "content": "Sit et novum omnes. Nec ea quas minim tractatos, usu in aperiam mentitum necessitatibus, ut omnis equidem moderatius quo. Eos ad putent aeterno praesent. Eos omnium similique id, his accommodare philosophia at. Causae lucilius similique in mea, ut regione tritani voluptatibus mel! At possim offendit eum, aeque denique prodesset pro te?\r\n\r\nAt pro quem laudem. Et agam democritum eos? Ea quod probatus usu, no ferri fabulas cotidieque mei? Numquam nusquam quo in, quo et molestiae complectitur. Nihil semper ei qui.\r\n\r\nModo omnes forensibus duo ex, te est diceret bonorum labores! Magna ponderum eos ea. Cu vim diceret mnesarchum, graeci periculis in vis. Est no iriure suavitate!",
+ "user_id": 2
+ },
+ {
+ "title": "How I Record My Videos",
+ "content": "Ad vel possim delicatissimi, delectus detraxit per cu. Ad pri vidit modus altera! In erat complectitur sit, quo no nostro insolens? Aliquam patrioque scribentur quo ad, partem commune eos at. Eius vivendo comprehensam has ne, sea ne eros mazim oratio. Soluta populo te duo, ne pro causae fabulas percipitur, feugiat.",
+ "user_id": 1
+ },
+ {
+ "title": "Python and Physics",
+ "content": "Agam mediocritatem sed ex, fabellas recusabo dissentias vix te. No principes consequat inciderint pri, ea mundi affert persecuti mea, ne usu veri regione nostrum! An tibique dissentiet referrentur pro, ridens temporibus eu est! Ius ne omnes affert rationibus, ut detraxit qualisque usu. Accusamus reformidans sea id?\r\n\r\nEu aliquip gloriatur mei. Qui ad sint scripserit? Te instructior definitiones mel, sale mutat everti at his. Ea mea quot recusabo philosophia. Et nam quod adipisci, quo atqui appetere recusabo id, detraxit inimicus vim.",
+ "user_id": 1
+ },
+ {
+ "title": "Just A Few More Healines Should Do It",
+ "content": "Duo at tibique commune vulputate, ex facilis tacimates disputationi mei. Mel eu inani prompta labores! Audire omnesque offendit ex eos. An ferri accusata his, vel agam habeo maiestatis ex, eam mutat iisque concludaturque ut. Ut tamquam minimum partiendo vim. An nam vidit doming graecis.\r\n\r\nSingulis abhorreant his in, et altera audiam feugiat mei. Pri eius dolor persequeris id! Nam ea dolorem expetendis, idque everti suscipit qui te, noster repudiare dignissim per ex? No vim iriure tibique comprehensam, per utamur consequat.",
+ "user_id": 1
+ },
+ {
+ "title": "Music To Listen To While Coding",
+ "content": "Feugait reprimique eu mel, te eum dico electram. Nam no nemore cotidieque. Vim cu suas atqui dicunt. Id labitur dissentiunt per, ignota maiorum pri no? Clita altera sanctus ex his!\r\n\r\nAt alia electram reprehendunt eam, sea te volumus quaestio. Commodo voluptua senserit ius ne, eu enim disputationi eam? Id pri omnium blandit, nullam denique nec no? Sapientem vituperata sit et, nisl facilisis periculis in est. Elaboraret accommodare id vel? Cibo eripuit ut has, sed cu liber invidunt.\r\n\r\nEi pro vide quas dolorum, sea no fugit sanctus neglegentur. Sit feugait disputationi ne. Id diceret periculis nec, sint nonumes in sea, cum.",
+ "user_id": 1
+ },
+ {
+ "title": "5 Tips for Writing Catchy Headlines",
+ "content": "Ea homero possit epicuri est, debitis docendi tacimates cu duo? Ad lorem cetero disputando pri, veniam eruditi tacimates per te.",
+ "user_id": 2
+ },
+ {
+ "title": "The Rise of Data Science",
+ "content": "Per omittam placerat at. Eius aeque ei mei. Usu ex partiendo salutandi. Pro illud placerat molestiae ex, habeo vidisse voluptatum cu vel, efficiendi accommodare eum ea! Ne has case minimum facilisis, pertinax efficiendi eu vel!\r\n\r\nEt movet semper assueverit his. Mei at liber vitae. Vix et periculis definiebas, vero falli.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Videos For Learning Python",
+ "content": "Mei ei mazim dicunt feugait? Ludus mandamus ne est, per ne iusto facilisis moderatius! Has agam utamur ad! Ius reque aeterno cu, fabellas facilisi repudiare eu sit, te cibo convenire similique est. Ea cum viderer imperdiet liberavisse.\r\n\r\nPro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 10 Python Tips and Tricks",
+ "content": "Pro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 5 YouTube Channels For Learning Programming",
+ "content": "Quo inani quando ea, mel an vide adversarium suscipiantur. Et dicunt eleifend splendide pro. Nibh animal dolorem vim ex, nec te agam referrentur. Usu admodum ocurreret ne.\r\n\r\nEt dico audire cotidieque sed, cibo latine ut has, an case magna alienum.",
+ "user_id": 2
+ },
+ {
+ "title": "My Latest Updated Post",
+ "content": "Erat expetenda definitionem id eos. Semper suscipit eum ut, eum ex nemore copiosae. Nam probatus pertinacia eu! No alii voluptua abhorreant nec, te pro impedit concludaturque, in sea malis torquatos disputationi! Nam te alii nobis ponderum, ei fugit accusamus pro.\r\n\r\nCongue salutandi ex eam! Mei an prima consulatu, erat detracto eu quo? Vim ea esse utinam efficiantur, at noster dicunt.",
+ "user_id": 1
+ }
+]
diff --git a/Django_Blog/11-Pagination/django_project/users/__init__.py b/Django_Blog/11-Pagination/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/11-Pagination/django_project/users/admin.py b/Django_Blog/11-Pagination/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/11-Pagination/django_project/users/apps.py b/Django_Blog/11-Pagination/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/11-Pagination/django_project/users/forms.py b/Django_Blog/11-Pagination/django_project/users/forms.py
new file mode 100644
index 000000000..ee5757afe
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/forms.py
@@ -0,0 +1,26 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+from .models import Profile
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
+
+
+class UserUpdateForm(forms.ModelForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email']
+
+
+class ProfileUpdateForm(forms.ModelForm):
+ class Meta:
+ model = Profile
+ fields = ['image']
diff --git a/Django_Blog/11-Pagination/django_project/users/migrations/0001_initial.py b/Django_Blog/11-Pagination/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/11-Pagination/django_project/users/migrations/__init__.py b/Django_Blog/11-Pagination/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/11-Pagination/django_project/users/models.py b/Django_Blog/11-Pagination/django_project/users/models.py
new file mode 100644
index 000000000..8aec8554c
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/models.py
@@ -0,0 +1,21 @@
+from django.db import models
+from django.contrib.auth.models import User
+from PIL import Image
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
+
+ def save(self):
+ super().save()
+
+ img = Image.open(self.image.path)
+
+ if img.height > 300 or img.width > 300:
+ output_size = (300, 300)
+ img.thumbnail(output_size)
+ img.save(self.image.path)
diff --git a/Django_Blog/11-Pagination/django_project/users/signals.py b/Django_Blog/11-Pagination/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/11-Pagination/django_project/users/templates/users/login.html b/Django_Blog/11-Pagination/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..f3404f11f
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/templates/users/login.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/users/templates/users/logout.html b/Django_Blog/11-Pagination/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/users/templates/users/profile.html b/Django_Blog/11-Pagination/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..76fd4d2b8
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/templates/users/profile.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/users/templates/users/register.html b/Django_Blog/11-Pagination/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/11-Pagination/django_project/users/tests.py b/Django_Blog/11-Pagination/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/11-Pagination/django_project/users/views.py b/Django_Blog/11-Pagination/django_project/users/views.py
new file mode 100644
index 000000000..c9de3bb90
--- /dev/null
+++ b/Django_Blog/11-Pagination/django_project/users/views.py
@@ -0,0 +1,42 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ if request.method == 'POST':
+ u_form = UserUpdateForm(request.POST, instance=request.user)
+ p_form = ProfileUpdateForm(request.POST,
+ request.FILES,
+ instance=request.user.profile)
+ if u_form.is_valid() and p_form.is_valid():
+ u_form.save()
+ p_form.save()
+ messages.success(request, f'Your account has been updated!')
+ return redirect('profile')
+
+ else:
+ u_form = UserUpdateForm(instance=request.user)
+ p_form = ProfileUpdateForm(instance=request.user.profile)
+
+ context = {
+ 'u_form': u_form,
+ 'p_form': p_form
+ }
+
+ return render(request, 'users/profile.html', context)
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/__init__.py b/Django_Blog/12-Password-Reset/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/admin.py b/Django_Blog/12-Password-Reset/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/apps.py b/Django_Blog/12-Password-Reset/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/migrations/0001_initial.py b/Django_Blog/12-Password-Reset/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/migrations/__init__.py b/Django_Blog/12-Password-Reset/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/models.py b/Django_Blog/12-Password-Reset/django_project/blog/models.py
new file mode 100644
index 000000000..6a5fa2950
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+from django.urls import reverse
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
+
+ def get_absolute_url(self):
+ return reverse('post-detail', kwargs={'pk': self.pk})
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/static/blog/main.css b/Django_Blog/12-Password-Reset/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/about.html b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/base.html b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..bb7c9fd52
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/base.html
@@ -0,0 +1,83 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/home.html b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..f2d8ac709
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/home.html
@@ -0,0 +1,37 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_confirm_delete.html b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_confirm_delete.html
new file mode 100644
index 000000000..1bb861528
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_confirm_delete.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_detail.html b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_detail.html
new file mode 100644
index 000000000..eb6c099fc
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_detail.html
@@ -0,0 +1,20 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+
+
+
+
{{ object.author }}
+
{{ object.date_posted|date:"F d, Y" }}
+ {% if object.author == user %}
+
+ {% endif %}
+
+
{{ object.title }}
+
{{ object.content }}
+
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_form.html b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_form.html
new file mode 100644
index 000000000..fc90b64aa
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/post_form.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/user_posts.html b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/user_posts.html
new file mode 100644
index 000000000..81ae7b183
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/templates/blog/user_posts.html
@@ -0,0 +1,38 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ Posts by {{ view.kwargs.username }} ({{ page_obj.paginator.count }})
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/tests.py b/Django_Blog/12-Password-Reset/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/urls.py b/Django_Blog/12-Password-Reset/django_project/blog/urls.py
new file mode 100644
index 000000000..979254ed3
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/urls.py
@@ -0,0 +1,20 @@
+from django.urls import path
+from .views import (
+ PostListView,
+ PostDetailView,
+ PostCreateView,
+ PostUpdateView,
+ PostDeleteView,
+ UserPostListView
+)
+from . import views
+
+urlpatterns = [
+ path('', PostListView.as_view(), name='blog-home'),
+ path('user/', UserPostListView.as_view(), name='user-posts'),
+ path('post//', PostDetailView.as_view(), name='post-detail'),
+ path('post/new/', PostCreateView.as_view(), name='post-create'),
+ path('post//update/', PostUpdateView.as_view(), name='post-update'),
+ path('post//delete/', PostDeleteView.as_view(), name='post-delete'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/12-Password-Reset/django_project/blog/views.py b/Django_Blog/12-Password-Reset/django_project/blog/views.py
new file mode 100644
index 000000000..5751fbe38
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/blog/views.py
@@ -0,0 +1,80 @@
+from django.shortcuts import render, get_object_or_404
+from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
+from django.contrib.auth.models import User
+from django.views.generic import (
+ ListView,
+ DetailView,
+ CreateView,
+ UpdateView,
+ DeleteView
+)
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+class PostListView(ListView):
+ model = Post
+ template_name = 'blog/home.html' # /_.html
+ context_object_name = 'posts'
+ ordering = ['-date_posted']
+ paginate_by = 5
+
+
+class UserPostListView(ListView):
+ model = Post
+ template_name = 'blog/user_posts.html' # /_.html
+ context_object_name = 'posts'
+ paginate_by = 5
+
+ def get_queryset(self):
+ user = get_object_or_404(User, username=self.kwargs.get('username'))
+ return Post.objects.filter(author=user).order_by('-date_posted')
+
+
+class PostDetailView(DetailView):
+ model = Post
+
+
+class PostCreateView(LoginRequiredMixin, CreateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+
+class PostUpdateView(LoginRequiredMixin, UserPassesTestMixin, UpdateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+class PostDeleteView(LoginRequiredMixin, UserPassesTestMixin, DeleteView):
+ model = Post
+ success_url = '/'
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/12-Password-Reset/django_project/db.sqlite3 b/Django_Blog/12-Password-Reset/django_project/db.sqlite3
new file mode 100644
index 000000000..61903cde9
Binary files /dev/null and b/Django_Blog/12-Password-Reset/django_project/db.sqlite3 differ
diff --git a/Django_Blog/12-Password-Reset/django_project/django_project/__init__.py b/Django_Blog/12-Password-Reset/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/12-Password-Reset/django_project/django_project/settings.py b/Django_Blog/12-Password-Reset/django_project/django_project/settings.py
new file mode 100644
index 000000000..f18cc755b
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/django_project/settings.py
@@ -0,0 +1,138 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
+
+EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
+EMAIL_HOST = 'smtp.gmail.com'
+EMAIL_PORT = 587
+EMAIL_USE_TLS = True
+EMAIL_HOST_USER = os.environ.get('EMAIL_USER')
+EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_PASS')
diff --git a/Django_Blog/12-Password-Reset/django_project/django_project/urls.py b/Django_Blog/12-Password-Reset/django_project/django_project/urls.py
new file mode 100644
index 000000000..51dbb4b31
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/django_project/urls.py
@@ -0,0 +1,54 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('password-reset/',
+ auth_views.PasswordResetView.as_view(
+ template_name='users/password_reset.html'
+ ),
+ name='password_reset'),
+ path('password-reset/done/',
+ auth_views.PasswordResetDoneView.as_view(
+ template_name='users/password_reset_done.html'
+ ),
+ name='password_reset_done'),
+ path('password-reset-confirm///',
+ auth_views.PasswordResetConfirmView.as_view(
+ template_name='users/password_reset_confirm.html'
+ ),
+ name='password_reset_confirm'),
+ path('password-reset-complete/',
+ auth_views.PasswordResetCompleteView.as_view(
+ template_name='users/password_reset_complete.html'
+ ),
+ name='password_reset_complete'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/12-Password-Reset/django_project/django_project/wsgi.py b/Django_Blog/12-Password-Reset/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/12-Password-Reset/django_project/manage.py b/Django_Blog/12-Password-Reset/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/12-Password-Reset/django_project/media/default.jpg b/Django_Blog/12-Password-Reset/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/12-Password-Reset/django_project/media/default.jpg differ
diff --git a/Django_Blog/12-Password-Reset/django_project/media/profile_pics/large.jpg b/Django_Blog/12-Password-Reset/django_project/media/profile_pics/large.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Django_Blog/12-Password-Reset/django_project/media/profile_pics/large.jpg differ
diff --git a/Django_Blog/12-Password-Reset/django_project/media/profile_pics/large_rbSbk8j.jpg b/Django_Blog/12-Password-Reset/django_project/media/profile_pics/large_rbSbk8j.jpg
new file mode 100644
index 000000000..7c310fce5
Binary files /dev/null and b/Django_Blog/12-Password-Reset/django_project/media/profile_pics/large_rbSbk8j.jpg differ
diff --git a/Django_Blog/12-Password-Reset/django_project/media/profile_pics/pic.jpg b/Django_Blog/12-Password-Reset/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/12-Password-Reset/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/12-Password-Reset/django_project/posts.json b/Django_Blog/12-Password-Reset/django_project/posts.json
new file mode 100644
index 000000000..6eb7d7723
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/posts.json
@@ -0,0 +1,122 @@
+[
+ {
+ "title": "My Updated Post",
+ "content": "My first updated post!\r\n\r\nThis is exciting!",
+ "user_id": 1
+ },
+ {
+ "title": "A Second Post",
+ "content": "This is a post from a different user...",
+ "user_id": 2
+ },
+ {
+ "title": "Top 5 Programming Lanaguages",
+ "content": "Te melius apeirian postulant cum, labitur admodum cu eos! Tollit equidem constituto ut has. Et per ponderum sadipscing, eu vero dolores recusabo nec! Eum quas epicuri at, eam albucius phaedrum ad, no eum probo fierent singulis. Dicat corrumpit definiebas id usu, in facete scripserit eam.\r\n\r\nVim ei exerci nusquam. Agam detraxit an quo? Quo et partem bonorum sensibus, mutat minimum est ad. In paulo essent signiferumque his, quaestio sadipscing theophrastus ad has. Ancillae appareat qualisque ei has, usu ne assum zril disputationi, sed at gloriatur persequeris.",
+ "user_id": 1
+ },
+ {
+ "title": "Sublime Text Tips and Tricks",
+ "content": "Ea vix dico modus voluptatibus, mel iudico suavitate iracundia eu. Tincidunt voluptatibus pro eu? Nulla omittam eligendi his ne, suas putant ut pri. Ullum repudiare at duo, ut cum habeo minim laudem, dicit libris antiopam has ut! Ex movet feugait mea, eu vim impetus nostrud cotidieque.\r\n\r\nEi suas similique quo, his simul viris congue ex? Graeci possit in est, ne qui minim delectus invenire. Mei ad error homero maluisset, tacimates assentior per in, vix ut vocent accusata! Mei eu inermis pericula patrioque? Debet denique sea at, ad cibo reformidans theophrastus per, cu inermis maiestatis vim!\r\n\r\nUt odio feugiat voluptua est, euismod volutpat qualisque at sit, has ex dicit ornatus inimicus! Eu ferri laoreet vel, dicat corrumpit dissentias nec in. Illum dissentiunt eam ei, praesent voluptatum pri in? Ius in inani petentium, hinc elitr vivendum an vis, in vero dolores electram ius?",
+ "user_id": 1
+ },
+ {
+ "title": "Best Python IDEs",
+ "content": "Elit contentiones nam no, sea ut consul adipiscing. Etiam velit ei usu, sonet clita nonumy eu eum. Usu ea utroque facilisi, cu mel fugit tantas legimus, te vix quem nominavi. Prima deserunt evertitur ne qui, nam reprimique appellantur ne.",
+ "user_id": 1
+ },
+ {
+ "title": "Flask vs Django - Which Is Better?",
+ "content": "Ei dicta apeirian deterruisset eam, cu offendit invenire pri, cu possim vivendo vix? Nam nihil evertitur ad, ne vim nonumy legendos iracundia. Vix nulla dolorem intellegebat ea? Te per vide paulo dolor, eum ea erant placerat constituam? Dolores accumsan eum at.\r\n\r\nInteresset consequuntur id vix. Eam id decore latine, iusto imperdiet ei qui. In ludus consul reformidans eam. Nec in recusabo posidonium, cu tantas volumus mnesarchum pro. Nam ut docendi evertitur, possim menandri persecuti ne sed, cum saepe ornatus delenit ei?\r\n\r\nIn mel debet aliquam. In his etiam legere, doming nominavi consetetur has ad, decore reprimique ea usu. Eam magna graeci suavitate cu, facete delenit cum ne. Ponderum evertitur tincidunt ei mel, ius ei stet euismod docendi.",
+ "user_id": 2
+ },
+ {
+ "title": "You Won't Believe These Clickbait Titles!",
+ "content": "Cu justo honestatis mel, pro ei appareat mediocrem suavitate. No his omnis ridens. Ludus ornatus voluptatum mei ut, an mentitum noluisse forensibus cum. Eam affert pertinax consequuntur ei, nisl zril meliore te vis? Ad animal persius concludaturque vix, eu graece audiam mel.\r\n\r\nVitae libris mentitum pri in. Cu rebum veritus sea, ex usu consul dolorum, pro tale maluisset consulatu ut. Quo ad clita persius ancillae. Vel illud blandit at, vel eu hinc graeco, usu doctus praesent ea! Vim rebum deserunt ex.\r\n\r\nIus lorem omittam id, est suavitate definitionem ad! Id vim insolens tacimates, pri at decore causae. Ex duo bonorum repudiandae? Vix no vidit facete impedit. An oportere indoctum eam.",
+ "user_id": 2
+ },
+ {
+ "title": "These Beers Will Improve Your Programming",
+ "content": "Sanctus senserit vis id, ut eum iuvaret invidunt constituam? Nonumes facilis mei an, ad elit explicari persequeris pri, dico recusabo quo id? At mea lorem repudiandae. Sed causae sensibus forensibus ea, ne ornatus suscipiantur consectetuer mel, affert nostro nominati cu qui. Te sanctus constituto est, corrumpit pertinacia eos et, mei libris persequeris an.\r\n\r\nQuo fuisset sensibus in. Ad est assueverit adversarium, viris aperiri numquam est ad. Pro mediocrem iudicabit ei! Cu aperiam diceret sit.",
+ "user_id": 1
+ },
+ {
+ "title": "List of PyCon 2018 Talks",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "How Dogs in the Workplace Boosts Productivity",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "The Best Programming Podcasts",
+ "content": "Vidisse malorum platonem vel no. Persecuti adversarium ut sit, quo et stet velit mundi! Id per homero expetenda. Est brute adipisci et!\r\n\r\nLorem aliquip has in, quo debet ceteros sadipscing ne! An sea odio ornatus inermis, an per ipsum persecuti dissentiunt, no mea bonorum pertinacia delicatissimi? Ne sumo diceret mea, percipit repudiare eam no! Pro et lorem accommodare. At eius novum phaedrum mei?\r\n\r\nIgnota conclusionemque mei no, eam ut munere fierent pertinacia. Ea enim insolens gloriatur duo, quis vituperatoribus pro no! Ei sed bonorum reprehendunt, aliquam nominavi his et. Magna decore referrentur id nec. Cum rebum ludus inimicus no, id cum iusto labores maluisset!\r\n\r\nQui no omnis numquam apeirian, et vide interesset cum? Et nec nulla signiferumque. Enim instructior eos ei, solum tollit phaedrum his in? No vix malorum ornatus, cu quo hinc everti iracundia, essent eruditi efficiendi ut nam. Altera saperet usu eu, errem expetenda cu duo. Has dolor splendide et, no mel cibo ancillae voluptatum, mutat antiopam deterruisset ei qui. Dolores scripserit concludaturque est id, ea animal facilisi splendide qui, quo at animal voluptua instructior.\r\n\r\nMeis voluptatum eu eum.",
+ "user_id": 1
+ },
+ {
+ "title": "Tips for Public Speaking",
+ "content": "Ex eam doctus accommodare. Ut oratio vivendo intellegebat qui. Ius ne doming petentium. Pri congue delectus ad, accumsan molestiae disputando te mea. Nam case inani eligendi at, per te esse iudico. Feugiat patrioque mei ad, harum mundi adversarium an per!\r\n\r\nAncillae verterem eleifend his at? Nam vidit iusto petentium at, vis nusquam dissentias cu, etiam doctus adversarium eam no. At alterum definiebas efficiantur eos, pro labitur vituperatoribus ne, eu odio legere vim. Ad nec verear appellantur? Ad qui vulputate persequeris.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Programmers Throughout History",
+ "content": "Mel nulla legimus senserit id. Vim purto tractatos in, te vix error regione, erant laudem legere an vel. Falli fierent ius ex! In legere iriure est, id vis prima maluisset, purto numquam inimicus ut eos! In duo antiopam salutatus, an vel quodsi virtute definitiones.\r\n\r\nEst te sumo voluptaria, ius no putant argumentum, alienum ocurreret vim cu? Volumus democritum no vel, virtute commune an est. Vel te propriae lobortis rationibus, no eum odio neglegentur? Duo an sumo ignota latine! Nec mazim aperiam percipitur eu, id his dicit omnium.",
+ "user_id": 2
+ },
+ {
+ "title": "How To Create A YouTube Channel",
+ "content": "Sit et novum omnes. Nec ea quas minim tractatos, usu in aperiam mentitum necessitatibus, ut omnis equidem moderatius quo. Eos ad putent aeterno praesent. Eos omnium similique id, his accommodare philosophia at. Causae lucilius similique in mea, ut regione tritani voluptatibus mel! At possim offendit eum, aeque denique prodesset pro te?\r\n\r\nAt pro quem laudem. Et agam democritum eos? Ea quod probatus usu, no ferri fabulas cotidieque mei? Numquam nusquam quo in, quo et molestiae complectitur. Nihil semper ei qui.\r\n\r\nModo omnes forensibus duo ex, te est diceret bonorum labores! Magna ponderum eos ea. Cu vim diceret mnesarchum, graeci periculis in vis. Est no iriure suavitate!",
+ "user_id": 2
+ },
+ {
+ "title": "How I Record My Videos",
+ "content": "Ad vel possim delicatissimi, delectus detraxit per cu. Ad pri vidit modus altera! In erat complectitur sit, quo no nostro insolens? Aliquam patrioque scribentur quo ad, partem commune eos at. Eius vivendo comprehensam has ne, sea ne eros mazim oratio. Soluta populo te duo, ne pro causae fabulas percipitur, feugiat.",
+ "user_id": 1
+ },
+ {
+ "title": "Python and Physics",
+ "content": "Agam mediocritatem sed ex, fabellas recusabo dissentias vix te. No principes consequat inciderint pri, ea mundi affert persecuti mea, ne usu veri regione nostrum! An tibique dissentiet referrentur pro, ridens temporibus eu est! Ius ne omnes affert rationibus, ut detraxit qualisque usu. Accusamus reformidans sea id?\r\n\r\nEu aliquip gloriatur mei. Qui ad sint scripserit? Te instructior definitiones mel, sale mutat everti at his. Ea mea quot recusabo philosophia. Et nam quod adipisci, quo atqui appetere recusabo id, detraxit inimicus vim.",
+ "user_id": 1
+ },
+ {
+ "title": "Just A Few More Healines Should Do It",
+ "content": "Duo at tibique commune vulputate, ex facilis tacimates disputationi mei. Mel eu inani prompta labores! Audire omnesque offendit ex eos. An ferri accusata his, vel agam habeo maiestatis ex, eam mutat iisque concludaturque ut. Ut tamquam minimum partiendo vim. An nam vidit doming graecis.\r\n\r\nSingulis abhorreant his in, et altera audiam feugiat mei. Pri eius dolor persequeris id! Nam ea dolorem expetendis, idque everti suscipit qui te, noster repudiare dignissim per ex? No vim iriure tibique comprehensam, per utamur consequat.",
+ "user_id": 1
+ },
+ {
+ "title": "Music To Listen To While Coding",
+ "content": "Feugait reprimique eu mel, te eum dico electram. Nam no nemore cotidieque. Vim cu suas atqui dicunt. Id labitur dissentiunt per, ignota maiorum pri no? Clita altera sanctus ex his!\r\n\r\nAt alia electram reprehendunt eam, sea te volumus quaestio. Commodo voluptua senserit ius ne, eu enim disputationi eam? Id pri omnium blandit, nullam denique nec no? Sapientem vituperata sit et, nisl facilisis periculis in est. Elaboraret accommodare id vel? Cibo eripuit ut has, sed cu liber invidunt.\r\n\r\nEi pro vide quas dolorum, sea no fugit sanctus neglegentur. Sit feugait disputationi ne. Id diceret periculis nec, sint nonumes in sea, cum.",
+ "user_id": 1
+ },
+ {
+ "title": "5 Tips for Writing Catchy Headlines",
+ "content": "Ea homero possit epicuri est, debitis docendi tacimates cu duo? Ad lorem cetero disputando pri, veniam eruditi tacimates per te.",
+ "user_id": 2
+ },
+ {
+ "title": "The Rise of Data Science",
+ "content": "Per omittam placerat at. Eius aeque ei mei. Usu ex partiendo salutandi. Pro illud placerat molestiae ex, habeo vidisse voluptatum cu vel, efficiendi accommodare eum ea! Ne has case minimum facilisis, pertinax efficiendi eu vel!\r\n\r\nEt movet semper assueverit his. Mei at liber vitae. Vix et periculis definiebas, vero falli.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Videos For Learning Python",
+ "content": "Mei ei mazim dicunt feugait? Ludus mandamus ne est, per ne iusto facilisis moderatius! Has agam utamur ad! Ius reque aeterno cu, fabellas facilisi repudiare eu sit, te cibo convenire similique est. Ea cum viderer imperdiet liberavisse.\r\n\r\nPro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 10 Python Tips and Tricks",
+ "content": "Pro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 5 YouTube Channels For Learning Programming",
+ "content": "Quo inani quando ea, mel an vide adversarium suscipiantur. Et dicunt eleifend splendide pro. Nibh animal dolorem vim ex, nec te agam referrentur. Usu admodum ocurreret ne.\r\n\r\nEt dico audire cotidieque sed, cibo latine ut has, an case magna alienum.",
+ "user_id": 2
+ },
+ {
+ "title": "My Latest Updated Post",
+ "content": "Erat expetenda definitionem id eos. Semper suscipit eum ut, eum ex nemore copiosae. Nam probatus pertinacia eu! No alii voluptua abhorreant nec, te pro impedit concludaturque, in sea malis torquatos disputationi! Nam te alii nobis ponderum, ei fugit accusamus pro.\r\n\r\nCongue salutandi ex eam! Mei an prima consulatu, erat detracto eu quo? Vim ea esse utinam efficiantur, at noster dicunt.",
+ "user_id": 1
+ }
+]
diff --git a/Django_Blog/12-Password-Reset/django_project/users/__init__.py b/Django_Blog/12-Password-Reset/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/12-Password-Reset/django_project/users/admin.py b/Django_Blog/12-Password-Reset/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/12-Password-Reset/django_project/users/apps.py b/Django_Blog/12-Password-Reset/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/12-Password-Reset/django_project/users/forms.py b/Django_Blog/12-Password-Reset/django_project/users/forms.py
new file mode 100644
index 000000000..ee5757afe
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/forms.py
@@ -0,0 +1,26 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+from .models import Profile
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
+
+
+class UserUpdateForm(forms.ModelForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email']
+
+
+class ProfileUpdateForm(forms.ModelForm):
+ class Meta:
+ model = Profile
+ fields = ['image']
diff --git a/Django_Blog/12-Password-Reset/django_project/users/migrations/0001_initial.py b/Django_Blog/12-Password-Reset/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/12-Password-Reset/django_project/users/migrations/__init__.py b/Django_Blog/12-Password-Reset/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/12-Password-Reset/django_project/users/models.py b/Django_Blog/12-Password-Reset/django_project/users/models.py
new file mode 100644
index 000000000..8aec8554c
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/models.py
@@ -0,0 +1,21 @@
+from django.db import models
+from django.contrib.auth.models import User
+from PIL import Image
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
+
+ def save(self):
+ super().save()
+
+ img = Image.open(self.image.path)
+
+ if img.height > 300 or img.width > 300:
+ output_size = (300, 300)
+ img.thumbnail(output_size)
+ img.save(self.image.path)
diff --git a/Django_Blog/12-Password-Reset/django_project/users/signals.py b/Django_Blog/12-Password-Reset/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/login.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..e726d1a80
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/login.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/logout.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset.html
new file mode 100644
index 000000000..af6ca5dc6
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_complete.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_complete.html
new file mode 100644
index 000000000..9fa0746bb
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_complete.html
@@ -0,0 +1,7 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ Your password has been set.
+
+ Sign In Here
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_confirm.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_confirm.html
new file mode 100644
index 000000000..b855b9fd9
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_confirm.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_done.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_done.html
new file mode 100644
index 000000000..1f5f36f73
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/password_reset_done.html
@@ -0,0 +1,6 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ An email has been sent with instructions to reset your password
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/profile.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..76fd4d2b8
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/profile.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/templates/users/register.html b/Django_Blog/12-Password-Reset/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/12-Password-Reset/django_project/users/tests.py b/Django_Blog/12-Password-Reset/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/12-Password-Reset/django_project/users/views.py b/Django_Blog/12-Password-Reset/django_project/users/views.py
new file mode 100644
index 000000000..c9de3bb90
--- /dev/null
+++ b/Django_Blog/12-Password-Reset/django_project/users/views.py
@@ -0,0 +1,42 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ if request.method == 'POST':
+ u_form = UserUpdateForm(request.POST, instance=request.user)
+ p_form = ProfileUpdateForm(request.POST,
+ request.FILES,
+ instance=request.user.profile)
+ if u_form.is_valid() and p_form.is_valid():
+ u_form.save()
+ p_form.save()
+ messages.success(request, f'Your account has been updated!')
+ return redirect('profile')
+
+ else:
+ u_form = UserUpdateForm(instance=request.user)
+ p_form = ProfileUpdateForm(instance=request.user.profile)
+
+ context = {
+ 'u_form': u_form,
+ 'p_form': p_form
+ }
+
+ return render(request, 'users/profile.html', context)
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/__init__.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/admin.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/apps.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/migrations/0001_initial.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/migrations/__init__.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/models.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/models.py
new file mode 100644
index 000000000..6a5fa2950
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+from django.urls import reverse
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
+
+ def get_absolute_url(self):
+ return reverse('post-detail', kwargs={'pk': self.pk})
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/static/blog/main.css b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/about.html b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/base.html b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..bb7c9fd52
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/base.html
@@ -0,0 +1,83 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/home.html b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..f2d8ac709
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/home.html
@@ -0,0 +1,37 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_confirm_delete.html b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_confirm_delete.html
new file mode 100644
index 000000000..1bb861528
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_confirm_delete.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_detail.html b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_detail.html
new file mode 100644
index 000000000..eb6c099fc
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_detail.html
@@ -0,0 +1,20 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+
+
+
+
{{ object.author }}
+
{{ object.date_posted|date:"F d, Y" }}
+ {% if object.author == user %}
+
+ {% endif %}
+
+
{{ object.title }}
+
{{ object.content }}
+
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_form.html b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_form.html
new file mode 100644
index 000000000..fc90b64aa
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/post_form.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/user_posts.html b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/user_posts.html
new file mode 100644
index 000000000..81ae7b183
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/templates/blog/user_posts.html
@@ -0,0 +1,38 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ Posts by {{ view.kwargs.username }} ({{ page_obj.paginator.count }})
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/tests.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/urls.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/urls.py
new file mode 100644
index 000000000..979254ed3
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/urls.py
@@ -0,0 +1,20 @@
+from django.urls import path
+from .views import (
+ PostListView,
+ PostDetailView,
+ PostCreateView,
+ PostUpdateView,
+ PostDeleteView,
+ UserPostListView
+)
+from . import views
+
+urlpatterns = [
+ path('', PostListView.as_view(), name='blog-home'),
+ path('user/', UserPostListView.as_view(), name='user-posts'),
+ path('post//', PostDetailView.as_view(), name='post-detail'),
+ path('post/new/', PostCreateView.as_view(), name='post-create'),
+ path('post//update/', PostUpdateView.as_view(), name='post-update'),
+ path('post//delete/', PostDeleteView.as_view(), name='post-delete'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/blog/views.py b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/views.py
new file mode 100644
index 000000000..5751fbe38
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/blog/views.py
@@ -0,0 +1,80 @@
+from django.shortcuts import render, get_object_or_404
+from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
+from django.contrib.auth.models import User
+from django.views.generic import (
+ ListView,
+ DetailView,
+ CreateView,
+ UpdateView,
+ DeleteView
+)
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+class PostListView(ListView):
+ model = Post
+ template_name = 'blog/home.html' # /_.html
+ context_object_name = 'posts'
+ ordering = ['-date_posted']
+ paginate_by = 5
+
+
+class UserPostListView(ListView):
+ model = Post
+ template_name = 'blog/user_posts.html' # /_.html
+ context_object_name = 'posts'
+ paginate_by = 5
+
+ def get_queryset(self):
+ user = get_object_or_404(User, username=self.kwargs.get('username'))
+ return Post.objects.filter(author=user).order_by('-date_posted')
+
+
+class PostDetailView(DetailView):
+ model = Post
+
+
+class PostCreateView(LoginRequiredMixin, CreateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+
+class PostUpdateView(LoginRequiredMixin, UserPassesTestMixin, UpdateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+class PostDeleteView(LoginRequiredMixin, UserPassesTestMixin, DeleteView):
+ model = Post
+ success_url = '/'
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/db.sqlite3 b/Django_Blog/13-AWS-S3-Uploads/django_project/db.sqlite3
new file mode 100644
index 000000000..db676111b
Binary files /dev/null and b/Django_Blog/13-AWS-S3-Uploads/django_project/db.sqlite3 differ
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/__init__.py b/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/settings.py b/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/settings.py
new file mode 100644
index 000000000..72a052a7c
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/settings.py
@@ -0,0 +1,148 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'storages'
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
+
+EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
+EMAIL_HOST = 'smtp.gmail.com'
+EMAIL_PORT = 587
+EMAIL_USE_TLS = True
+EMAIL_HOST_USER = os.environ.get('EMAIL_USER')
+EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_PASS')
+
+AWS_ACCESS_KEY_ID = os.environ.get('AWS_ACCESS_KEY_ID')
+AWS_SECRET_ACCESS_KEY = os.environ.get('AWS_SECRET_ACCESS_KEY')
+AWS_STORAGE_BUCKET_NAME = os.environ.get('AWS_STORAGE_BUCKET_NAME')
+
+AWS_S3_FILE_OVERWRITE = False
+AWS_DEFAULT_ACL = None
+
+DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/urls.py b/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/urls.py
new file mode 100644
index 000000000..51dbb4b31
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/urls.py
@@ -0,0 +1,54 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('password-reset/',
+ auth_views.PasswordResetView.as_view(
+ template_name='users/password_reset.html'
+ ),
+ name='password_reset'),
+ path('password-reset/done/',
+ auth_views.PasswordResetDoneView.as_view(
+ template_name='users/password_reset_done.html'
+ ),
+ name='password_reset_done'),
+ path('password-reset-confirm///',
+ auth_views.PasswordResetConfirmView.as_view(
+ template_name='users/password_reset_confirm.html'
+ ),
+ name='password_reset_confirm'),
+ path('password-reset-complete/',
+ auth_views.PasswordResetCompleteView.as_view(
+ template_name='users/password_reset_complete.html'
+ ),
+ name='password_reset_complete'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/wsgi.py b/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/manage.py b/Django_Blog/13-AWS-S3-Uploads/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/media/default.jpg b/Django_Blog/13-AWS-S3-Uploads/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/13-AWS-S3-Uploads/django_project/media/default.jpg differ
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/large.jpg b/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/large.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/large.jpg differ
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/large_rbSbk8j.jpg b/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/large_rbSbk8j.jpg
new file mode 100644
index 000000000..7c310fce5
Binary files /dev/null and b/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/large_rbSbk8j.jpg differ
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/pic.jpg b/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/13-AWS-S3-Uploads/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/posts.json b/Django_Blog/13-AWS-S3-Uploads/django_project/posts.json
new file mode 100644
index 000000000..6eb7d7723
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/posts.json
@@ -0,0 +1,122 @@
+[
+ {
+ "title": "My Updated Post",
+ "content": "My first updated post!\r\n\r\nThis is exciting!",
+ "user_id": 1
+ },
+ {
+ "title": "A Second Post",
+ "content": "This is a post from a different user...",
+ "user_id": 2
+ },
+ {
+ "title": "Top 5 Programming Lanaguages",
+ "content": "Te melius apeirian postulant cum, labitur admodum cu eos! Tollit equidem constituto ut has. Et per ponderum sadipscing, eu vero dolores recusabo nec! Eum quas epicuri at, eam albucius phaedrum ad, no eum probo fierent singulis. Dicat corrumpit definiebas id usu, in facete scripserit eam.\r\n\r\nVim ei exerci nusquam. Agam detraxit an quo? Quo et partem bonorum sensibus, mutat minimum est ad. In paulo essent signiferumque his, quaestio sadipscing theophrastus ad has. Ancillae appareat qualisque ei has, usu ne assum zril disputationi, sed at gloriatur persequeris.",
+ "user_id": 1
+ },
+ {
+ "title": "Sublime Text Tips and Tricks",
+ "content": "Ea vix dico modus voluptatibus, mel iudico suavitate iracundia eu. Tincidunt voluptatibus pro eu? Nulla omittam eligendi his ne, suas putant ut pri. Ullum repudiare at duo, ut cum habeo minim laudem, dicit libris antiopam has ut! Ex movet feugait mea, eu vim impetus nostrud cotidieque.\r\n\r\nEi suas similique quo, his simul viris congue ex? Graeci possit in est, ne qui minim delectus invenire. Mei ad error homero maluisset, tacimates assentior per in, vix ut vocent accusata! Mei eu inermis pericula patrioque? Debet denique sea at, ad cibo reformidans theophrastus per, cu inermis maiestatis vim!\r\n\r\nUt odio feugiat voluptua est, euismod volutpat qualisque at sit, has ex dicit ornatus inimicus! Eu ferri laoreet vel, dicat corrumpit dissentias nec in. Illum dissentiunt eam ei, praesent voluptatum pri in? Ius in inani petentium, hinc elitr vivendum an vis, in vero dolores electram ius?",
+ "user_id": 1
+ },
+ {
+ "title": "Best Python IDEs",
+ "content": "Elit contentiones nam no, sea ut consul adipiscing. Etiam velit ei usu, sonet clita nonumy eu eum. Usu ea utroque facilisi, cu mel fugit tantas legimus, te vix quem nominavi. Prima deserunt evertitur ne qui, nam reprimique appellantur ne.",
+ "user_id": 1
+ },
+ {
+ "title": "Flask vs Django - Which Is Better?",
+ "content": "Ei dicta apeirian deterruisset eam, cu offendit invenire pri, cu possim vivendo vix? Nam nihil evertitur ad, ne vim nonumy legendos iracundia. Vix nulla dolorem intellegebat ea? Te per vide paulo dolor, eum ea erant placerat constituam? Dolores accumsan eum at.\r\n\r\nInteresset consequuntur id vix. Eam id decore latine, iusto imperdiet ei qui. In ludus consul reformidans eam. Nec in recusabo posidonium, cu tantas volumus mnesarchum pro. Nam ut docendi evertitur, possim menandri persecuti ne sed, cum saepe ornatus delenit ei?\r\n\r\nIn mel debet aliquam. In his etiam legere, doming nominavi consetetur has ad, decore reprimique ea usu. Eam magna graeci suavitate cu, facete delenit cum ne. Ponderum evertitur tincidunt ei mel, ius ei stet euismod docendi.",
+ "user_id": 2
+ },
+ {
+ "title": "You Won't Believe These Clickbait Titles!",
+ "content": "Cu justo honestatis mel, pro ei appareat mediocrem suavitate. No his omnis ridens. Ludus ornatus voluptatum mei ut, an mentitum noluisse forensibus cum. Eam affert pertinax consequuntur ei, nisl zril meliore te vis? Ad animal persius concludaturque vix, eu graece audiam mel.\r\n\r\nVitae libris mentitum pri in. Cu rebum veritus sea, ex usu consul dolorum, pro tale maluisset consulatu ut. Quo ad clita persius ancillae. Vel illud blandit at, vel eu hinc graeco, usu doctus praesent ea! Vim rebum deserunt ex.\r\n\r\nIus lorem omittam id, est suavitate definitionem ad! Id vim insolens tacimates, pri at decore causae. Ex duo bonorum repudiandae? Vix no vidit facete impedit. An oportere indoctum eam.",
+ "user_id": 2
+ },
+ {
+ "title": "These Beers Will Improve Your Programming",
+ "content": "Sanctus senserit vis id, ut eum iuvaret invidunt constituam? Nonumes facilis mei an, ad elit explicari persequeris pri, dico recusabo quo id? At mea lorem repudiandae. Sed causae sensibus forensibus ea, ne ornatus suscipiantur consectetuer mel, affert nostro nominati cu qui. Te sanctus constituto est, corrumpit pertinacia eos et, mei libris persequeris an.\r\n\r\nQuo fuisset sensibus in. Ad est assueverit adversarium, viris aperiri numquam est ad. Pro mediocrem iudicabit ei! Cu aperiam diceret sit.",
+ "user_id": 1
+ },
+ {
+ "title": "List of PyCon 2018 Talks",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "How Dogs in the Workplace Boosts Productivity",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "The Best Programming Podcasts",
+ "content": "Vidisse malorum platonem vel no. Persecuti adversarium ut sit, quo et stet velit mundi! Id per homero expetenda. Est brute adipisci et!\r\n\r\nLorem aliquip has in, quo debet ceteros sadipscing ne! An sea odio ornatus inermis, an per ipsum persecuti dissentiunt, no mea bonorum pertinacia delicatissimi? Ne sumo diceret mea, percipit repudiare eam no! Pro et lorem accommodare. At eius novum phaedrum mei?\r\n\r\nIgnota conclusionemque mei no, eam ut munere fierent pertinacia. Ea enim insolens gloriatur duo, quis vituperatoribus pro no! Ei sed bonorum reprehendunt, aliquam nominavi his et. Magna decore referrentur id nec. Cum rebum ludus inimicus no, id cum iusto labores maluisset!\r\n\r\nQui no omnis numquam apeirian, et vide interesset cum? Et nec nulla signiferumque. Enim instructior eos ei, solum tollit phaedrum his in? No vix malorum ornatus, cu quo hinc everti iracundia, essent eruditi efficiendi ut nam. Altera saperet usu eu, errem expetenda cu duo. Has dolor splendide et, no mel cibo ancillae voluptatum, mutat antiopam deterruisset ei qui. Dolores scripserit concludaturque est id, ea animal facilisi splendide qui, quo at animal voluptua instructior.\r\n\r\nMeis voluptatum eu eum.",
+ "user_id": 1
+ },
+ {
+ "title": "Tips for Public Speaking",
+ "content": "Ex eam doctus accommodare. Ut oratio vivendo intellegebat qui. Ius ne doming petentium. Pri congue delectus ad, accumsan molestiae disputando te mea. Nam case inani eligendi at, per te esse iudico. Feugiat patrioque mei ad, harum mundi adversarium an per!\r\n\r\nAncillae verterem eleifend his at? Nam vidit iusto petentium at, vis nusquam dissentias cu, etiam doctus adversarium eam no. At alterum definiebas efficiantur eos, pro labitur vituperatoribus ne, eu odio legere vim. Ad nec verear appellantur? Ad qui vulputate persequeris.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Programmers Throughout History",
+ "content": "Mel nulla legimus senserit id. Vim purto tractatos in, te vix error regione, erant laudem legere an vel. Falli fierent ius ex! In legere iriure est, id vis prima maluisset, purto numquam inimicus ut eos! In duo antiopam salutatus, an vel quodsi virtute definitiones.\r\n\r\nEst te sumo voluptaria, ius no putant argumentum, alienum ocurreret vim cu? Volumus democritum no vel, virtute commune an est. Vel te propriae lobortis rationibus, no eum odio neglegentur? Duo an sumo ignota latine! Nec mazim aperiam percipitur eu, id his dicit omnium.",
+ "user_id": 2
+ },
+ {
+ "title": "How To Create A YouTube Channel",
+ "content": "Sit et novum omnes. Nec ea quas minim tractatos, usu in aperiam mentitum necessitatibus, ut omnis equidem moderatius quo. Eos ad putent aeterno praesent. Eos omnium similique id, his accommodare philosophia at. Causae lucilius similique in mea, ut regione tritani voluptatibus mel! At possim offendit eum, aeque denique prodesset pro te?\r\n\r\nAt pro quem laudem. Et agam democritum eos? Ea quod probatus usu, no ferri fabulas cotidieque mei? Numquam nusquam quo in, quo et molestiae complectitur. Nihil semper ei qui.\r\n\r\nModo omnes forensibus duo ex, te est diceret bonorum labores! Magna ponderum eos ea. Cu vim diceret mnesarchum, graeci periculis in vis. Est no iriure suavitate!",
+ "user_id": 2
+ },
+ {
+ "title": "How I Record My Videos",
+ "content": "Ad vel possim delicatissimi, delectus detraxit per cu. Ad pri vidit modus altera! In erat complectitur sit, quo no nostro insolens? Aliquam patrioque scribentur quo ad, partem commune eos at. Eius vivendo comprehensam has ne, sea ne eros mazim oratio. Soluta populo te duo, ne pro causae fabulas percipitur, feugiat.",
+ "user_id": 1
+ },
+ {
+ "title": "Python and Physics",
+ "content": "Agam mediocritatem sed ex, fabellas recusabo dissentias vix te. No principes consequat inciderint pri, ea mundi affert persecuti mea, ne usu veri regione nostrum! An tibique dissentiet referrentur pro, ridens temporibus eu est! Ius ne omnes affert rationibus, ut detraxit qualisque usu. Accusamus reformidans sea id?\r\n\r\nEu aliquip gloriatur mei. Qui ad sint scripserit? Te instructior definitiones mel, sale mutat everti at his. Ea mea quot recusabo philosophia. Et nam quod adipisci, quo atqui appetere recusabo id, detraxit inimicus vim.",
+ "user_id": 1
+ },
+ {
+ "title": "Just A Few More Healines Should Do It",
+ "content": "Duo at tibique commune vulputate, ex facilis tacimates disputationi mei. Mel eu inani prompta labores! Audire omnesque offendit ex eos. An ferri accusata his, vel agam habeo maiestatis ex, eam mutat iisque concludaturque ut. Ut tamquam minimum partiendo vim. An nam vidit doming graecis.\r\n\r\nSingulis abhorreant his in, et altera audiam feugiat mei. Pri eius dolor persequeris id! Nam ea dolorem expetendis, idque everti suscipit qui te, noster repudiare dignissim per ex? No vim iriure tibique comprehensam, per utamur consequat.",
+ "user_id": 1
+ },
+ {
+ "title": "Music To Listen To While Coding",
+ "content": "Feugait reprimique eu mel, te eum dico electram. Nam no nemore cotidieque. Vim cu suas atqui dicunt. Id labitur dissentiunt per, ignota maiorum pri no? Clita altera sanctus ex his!\r\n\r\nAt alia electram reprehendunt eam, sea te volumus quaestio. Commodo voluptua senserit ius ne, eu enim disputationi eam? Id pri omnium blandit, nullam denique nec no? Sapientem vituperata sit et, nisl facilisis periculis in est. Elaboraret accommodare id vel? Cibo eripuit ut has, sed cu liber invidunt.\r\n\r\nEi pro vide quas dolorum, sea no fugit sanctus neglegentur. Sit feugait disputationi ne. Id diceret periculis nec, sint nonumes in sea, cum.",
+ "user_id": 1
+ },
+ {
+ "title": "5 Tips for Writing Catchy Headlines",
+ "content": "Ea homero possit epicuri est, debitis docendi tacimates cu duo? Ad lorem cetero disputando pri, veniam eruditi tacimates per te.",
+ "user_id": 2
+ },
+ {
+ "title": "The Rise of Data Science",
+ "content": "Per omittam placerat at. Eius aeque ei mei. Usu ex partiendo salutandi. Pro illud placerat molestiae ex, habeo vidisse voluptatum cu vel, efficiendi accommodare eum ea! Ne has case minimum facilisis, pertinax efficiendi eu vel!\r\n\r\nEt movet semper assueverit his. Mei at liber vitae. Vix et periculis definiebas, vero falli.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Videos For Learning Python",
+ "content": "Mei ei mazim dicunt feugait? Ludus mandamus ne est, per ne iusto facilisis moderatius! Has agam utamur ad! Ius reque aeterno cu, fabellas facilisi repudiare eu sit, te cibo convenire similique est. Ea cum viderer imperdiet liberavisse.\r\n\r\nPro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 10 Python Tips and Tricks",
+ "content": "Pro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 5 YouTube Channels For Learning Programming",
+ "content": "Quo inani quando ea, mel an vide adversarium suscipiantur. Et dicunt eleifend splendide pro. Nibh animal dolorem vim ex, nec te agam referrentur. Usu admodum ocurreret ne.\r\n\r\nEt dico audire cotidieque sed, cibo latine ut has, an case magna alienum.",
+ "user_id": 2
+ },
+ {
+ "title": "My Latest Updated Post",
+ "content": "Erat expetenda definitionem id eos. Semper suscipit eum ut, eum ex nemore copiosae. Nam probatus pertinacia eu! No alii voluptua abhorreant nec, te pro impedit concludaturque, in sea malis torquatos disputationi! Nam te alii nobis ponderum, ei fugit accusamus pro.\r\n\r\nCongue salutandi ex eam! Mei an prima consulatu, erat detracto eu quo? Vim ea esse utinam efficiantur, at noster dicunt.",
+ "user_id": 1
+ }
+]
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/__init__.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/admin.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/apps.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/forms.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/forms.py
new file mode 100644
index 000000000..ee5757afe
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/forms.py
@@ -0,0 +1,26 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+from .models import Profile
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
+
+
+class UserUpdateForm(forms.ModelForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email']
+
+
+class ProfileUpdateForm(forms.ModelForm):
+ class Meta:
+ model = Profile
+ fields = ['image']
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/migrations/0001_initial.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/migrations/__init__.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/models.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/models.py
new file mode 100644
index 000000000..7a716639d
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/models.py
@@ -0,0 +1,21 @@
+from django.db import models
+from django.contrib.auth.models import User
+from PIL import Image
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
+
+ # def save(self, *args, **kwargs):
+ # super().save(*args, **kwargs)
+
+ # img = Image.open(self.image.path)
+
+ # if img.height > 300 or img.width > 300:
+ # output_size = (300, 300)
+ # img.thumbnail(output_size)
+ # img.save(self.image.path)
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/signals.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/login.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..e726d1a80
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/login.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/logout.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset.html
new file mode 100644
index 000000000..af6ca5dc6
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_complete.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_complete.html
new file mode 100644
index 000000000..9fa0746bb
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_complete.html
@@ -0,0 +1,7 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ Your password has been set.
+
+ Sign In Here
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_confirm.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_confirm.html
new file mode 100644
index 000000000..b855b9fd9
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_confirm.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_done.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_done.html
new file mode 100644
index 000000000..1f5f36f73
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/password_reset_done.html
@@ -0,0 +1,6 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ An email has been sent with instructions to reset your password
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/profile.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..76fd4d2b8
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/profile.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/register.html b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/tests.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/13-AWS-S3-Uploads/django_project/users/views.py b/Django_Blog/13-AWS-S3-Uploads/django_project/users/views.py
new file mode 100644
index 000000000..c9de3bb90
--- /dev/null
+++ b/Django_Blog/13-AWS-S3-Uploads/django_project/users/views.py
@@ -0,0 +1,42 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ if request.method == 'POST':
+ u_form = UserUpdateForm(request.POST, instance=request.user)
+ p_form = ProfileUpdateForm(request.POST,
+ request.FILES,
+ instance=request.user.profile)
+ if u_form.is_valid() and p_form.is_valid():
+ u_form.save()
+ p_form.save()
+ messages.success(request, f'Your account has been updated!')
+ return redirect('profile')
+
+ else:
+ u_form = UserUpdateForm(instance=request.user)
+ p_form = ProfileUpdateForm(instance=request.user.profile)
+
+ context = {
+ 'u_form': u_form,
+ 'p_form': p_form
+ }
+
+ return render(request, 'users/profile.html', context)
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/.gitignore b/Django_Blog/13-Deployment-Heroku/django_project/.gitignore
new file mode 100644
index 000000000..bc9f4006e
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/.gitignore
@@ -0,0 +1,119 @@
+# Mac
+.DS_Store
+
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+pip-wheel-metadata/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+.hypothesis/
+.pytest_cache/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IPython
+profile_default/
+ipython_config.py
+
+# pyenv
+.python-version
+
+# celery beat schedule file
+celerybeat-schedule
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/Procfile b/Django_Blog/13-Deployment-Heroku/django_project/Procfile
new file mode 100644
index 000000000..0fd9200f9
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/Procfile
@@ -0,0 +1 @@
+web: gunicorn django_project.wsgi
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/__init__.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/admin.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/apps.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/migrations/0001_initial.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/migrations/__init__.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/models.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/models.py
new file mode 100644
index 000000000..6a5fa2950
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+from django.urls import reverse
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
+
+ def get_absolute_url(self):
+ return reverse('post-detail', kwargs={'pk': self.pk})
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/static/blog/main.css b/Django_Blog/13-Deployment-Heroku/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/about.html b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/base.html b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..bb7c9fd52
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/base.html
@@ -0,0 +1,83 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/home.html b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..f2d8ac709
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/home.html
@@ -0,0 +1,37 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_confirm_delete.html b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_confirm_delete.html
new file mode 100644
index 000000000..1bb861528
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_confirm_delete.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_detail.html b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_detail.html
new file mode 100644
index 000000000..eb6c099fc
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_detail.html
@@ -0,0 +1,20 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+
+
+
+
{{ object.author }}
+
{{ object.date_posted|date:"F d, Y" }}
+ {% if object.author == user %}
+
+ {% endif %}
+
+
{{ object.title }}
+
{{ object.content }}
+
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_form.html b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_form.html
new file mode 100644
index 000000000..fc90b64aa
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/post_form.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/user_posts.html b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/user_posts.html
new file mode 100644
index 000000000..81ae7b183
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/templates/blog/user_posts.html
@@ -0,0 +1,38 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ Posts by {{ view.kwargs.username }} ({{ page_obj.paginator.count }})
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/tests.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/urls.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/urls.py
new file mode 100644
index 000000000..979254ed3
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/urls.py
@@ -0,0 +1,20 @@
+from django.urls import path
+from .views import (
+ PostListView,
+ PostDetailView,
+ PostCreateView,
+ PostUpdateView,
+ PostDeleteView,
+ UserPostListView
+)
+from . import views
+
+urlpatterns = [
+ path('', PostListView.as_view(), name='blog-home'),
+ path('user/', UserPostListView.as_view(), name='user-posts'),
+ path('post//', PostDetailView.as_view(), name='post-detail'),
+ path('post/new/', PostCreateView.as_view(), name='post-create'),
+ path('post//update/', PostUpdateView.as_view(), name='post-update'),
+ path('post//delete/', PostDeleteView.as_view(), name='post-delete'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/blog/views.py b/Django_Blog/13-Deployment-Heroku/django_project/blog/views.py
new file mode 100644
index 000000000..5751fbe38
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/blog/views.py
@@ -0,0 +1,80 @@
+from django.shortcuts import render, get_object_or_404
+from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
+from django.contrib.auth.models import User
+from django.views.generic import (
+ ListView,
+ DetailView,
+ CreateView,
+ UpdateView,
+ DeleteView
+)
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+class PostListView(ListView):
+ model = Post
+ template_name = 'blog/home.html' # /_.html
+ context_object_name = 'posts'
+ ordering = ['-date_posted']
+ paginate_by = 5
+
+
+class UserPostListView(ListView):
+ model = Post
+ template_name = 'blog/user_posts.html' # /_.html
+ context_object_name = 'posts'
+ paginate_by = 5
+
+ def get_queryset(self):
+ user = get_object_or_404(User, username=self.kwargs.get('username'))
+ return Post.objects.filter(author=user).order_by('-date_posted')
+
+
+class PostDetailView(DetailView):
+ model = Post
+
+
+class PostCreateView(LoginRequiredMixin, CreateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+
+class PostUpdateView(LoginRequiredMixin, UserPassesTestMixin, UpdateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+class PostDeleteView(LoginRequiredMixin, UserPassesTestMixin, DeleteView):
+ model = Post
+ success_url = '/'
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/django_project/__init__.py b/Django_Blog/13-Deployment-Heroku/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/django_project/settings.py b/Django_Blog/13-Deployment-Heroku/django_project/django_project/settings.py
new file mode 100644
index 000000000..8aa821180
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/django_project/settings.py
@@ -0,0 +1,153 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+import django_heroku
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+# SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+SECRET_KEY = os.environ.get('SECRET_KEY')
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = (os.environ.get('DEBUG_VALUE') == 'True')
+
+ALLOWED_HOSTS = ['myawesomedjangoapp.herokuapp.com']
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'storages'
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
+
+EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
+EMAIL_HOST = 'smtp.gmail.com'
+EMAIL_PORT = 587
+EMAIL_USE_TLS = True
+EMAIL_HOST_USER = os.environ.get('EMAIL_USER')
+EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_PASS')
+
+AWS_ACCESS_KEY_ID = os.environ.get('AWS_ACCESS_KEY_ID')
+AWS_SECRET_ACCESS_KEY = os.environ.get('AWS_SECRET_ACCESS_KEY')
+AWS_STORAGE_BUCKET_NAME = os.environ.get('AWS_STORAGE_BUCKET_NAME')
+
+AWS_S3_FILE_OVERWRITE = False
+AWS_DEFAULT_ACL = None
+
+DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
+
+django_heroku.settings(locals())
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/django_project/urls.py b/Django_Blog/13-Deployment-Heroku/django_project/django_project/urls.py
new file mode 100644
index 000000000..51dbb4b31
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/django_project/urls.py
@@ -0,0 +1,54 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('password-reset/',
+ auth_views.PasswordResetView.as_view(
+ template_name='users/password_reset.html'
+ ),
+ name='password_reset'),
+ path('password-reset/done/',
+ auth_views.PasswordResetDoneView.as_view(
+ template_name='users/password_reset_done.html'
+ ),
+ name='password_reset_done'),
+ path('password-reset-confirm///',
+ auth_views.PasswordResetConfirmView.as_view(
+ template_name='users/password_reset_confirm.html'
+ ),
+ name='password_reset_confirm'),
+ path('password-reset-complete/',
+ auth_views.PasswordResetCompleteView.as_view(
+ template_name='users/password_reset_complete.html'
+ ),
+ name='password_reset_complete'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/django_project/wsgi.py b/Django_Blog/13-Deployment-Heroku/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/manage.py b/Django_Blog/13-Deployment-Heroku/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/media/default.jpg b/Django_Blog/13-Deployment-Heroku/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/13-Deployment-Heroku/django_project/media/default.jpg differ
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/large.jpg b/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/large.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/large.jpg differ
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/large_rbSbk8j.jpg b/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/large_rbSbk8j.jpg
new file mode 100644
index 000000000..7c310fce5
Binary files /dev/null and b/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/large_rbSbk8j.jpg differ
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/pic.jpg b/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/13-Deployment-Heroku/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/posts.json b/Django_Blog/13-Deployment-Heroku/django_project/posts.json
new file mode 100644
index 000000000..6eb7d7723
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/posts.json
@@ -0,0 +1,122 @@
+[
+ {
+ "title": "My Updated Post",
+ "content": "My first updated post!\r\n\r\nThis is exciting!",
+ "user_id": 1
+ },
+ {
+ "title": "A Second Post",
+ "content": "This is a post from a different user...",
+ "user_id": 2
+ },
+ {
+ "title": "Top 5 Programming Lanaguages",
+ "content": "Te melius apeirian postulant cum, labitur admodum cu eos! Tollit equidem constituto ut has. Et per ponderum sadipscing, eu vero dolores recusabo nec! Eum quas epicuri at, eam albucius phaedrum ad, no eum probo fierent singulis. Dicat corrumpit definiebas id usu, in facete scripserit eam.\r\n\r\nVim ei exerci nusquam. Agam detraxit an quo? Quo et partem bonorum sensibus, mutat minimum est ad. In paulo essent signiferumque his, quaestio sadipscing theophrastus ad has. Ancillae appareat qualisque ei has, usu ne assum zril disputationi, sed at gloriatur persequeris.",
+ "user_id": 1
+ },
+ {
+ "title": "Sublime Text Tips and Tricks",
+ "content": "Ea vix dico modus voluptatibus, mel iudico suavitate iracundia eu. Tincidunt voluptatibus pro eu? Nulla omittam eligendi his ne, suas putant ut pri. Ullum repudiare at duo, ut cum habeo minim laudem, dicit libris antiopam has ut! Ex movet feugait mea, eu vim impetus nostrud cotidieque.\r\n\r\nEi suas similique quo, his simul viris congue ex? Graeci possit in est, ne qui minim delectus invenire. Mei ad error homero maluisset, tacimates assentior per in, vix ut vocent accusata! Mei eu inermis pericula patrioque? Debet denique sea at, ad cibo reformidans theophrastus per, cu inermis maiestatis vim!\r\n\r\nUt odio feugiat voluptua est, euismod volutpat qualisque at sit, has ex dicit ornatus inimicus! Eu ferri laoreet vel, dicat corrumpit dissentias nec in. Illum dissentiunt eam ei, praesent voluptatum pri in? Ius in inani petentium, hinc elitr vivendum an vis, in vero dolores electram ius?",
+ "user_id": 1
+ },
+ {
+ "title": "Best Python IDEs",
+ "content": "Elit contentiones nam no, sea ut consul adipiscing. Etiam velit ei usu, sonet clita nonumy eu eum. Usu ea utroque facilisi, cu mel fugit tantas legimus, te vix quem nominavi. Prima deserunt evertitur ne qui, nam reprimique appellantur ne.",
+ "user_id": 1
+ },
+ {
+ "title": "Flask vs Django - Which Is Better?",
+ "content": "Ei dicta apeirian deterruisset eam, cu offendit invenire pri, cu possim vivendo vix? Nam nihil evertitur ad, ne vim nonumy legendos iracundia. Vix nulla dolorem intellegebat ea? Te per vide paulo dolor, eum ea erant placerat constituam? Dolores accumsan eum at.\r\n\r\nInteresset consequuntur id vix. Eam id decore latine, iusto imperdiet ei qui. In ludus consul reformidans eam. Nec in recusabo posidonium, cu tantas volumus mnesarchum pro. Nam ut docendi evertitur, possim menandri persecuti ne sed, cum saepe ornatus delenit ei?\r\n\r\nIn mel debet aliquam. In his etiam legere, doming nominavi consetetur has ad, decore reprimique ea usu. Eam magna graeci suavitate cu, facete delenit cum ne. Ponderum evertitur tincidunt ei mel, ius ei stet euismod docendi.",
+ "user_id": 2
+ },
+ {
+ "title": "You Won't Believe These Clickbait Titles!",
+ "content": "Cu justo honestatis mel, pro ei appareat mediocrem suavitate. No his omnis ridens. Ludus ornatus voluptatum mei ut, an mentitum noluisse forensibus cum. Eam affert pertinax consequuntur ei, nisl zril meliore te vis? Ad animal persius concludaturque vix, eu graece audiam mel.\r\n\r\nVitae libris mentitum pri in. Cu rebum veritus sea, ex usu consul dolorum, pro tale maluisset consulatu ut. Quo ad clita persius ancillae. Vel illud blandit at, vel eu hinc graeco, usu doctus praesent ea! Vim rebum deserunt ex.\r\n\r\nIus lorem omittam id, est suavitate definitionem ad! Id vim insolens tacimates, pri at decore causae. Ex duo bonorum repudiandae? Vix no vidit facete impedit. An oportere indoctum eam.",
+ "user_id": 2
+ },
+ {
+ "title": "These Beers Will Improve Your Programming",
+ "content": "Sanctus senserit vis id, ut eum iuvaret invidunt constituam? Nonumes facilis mei an, ad elit explicari persequeris pri, dico recusabo quo id? At mea lorem repudiandae. Sed causae sensibus forensibus ea, ne ornatus suscipiantur consectetuer mel, affert nostro nominati cu qui. Te sanctus constituto est, corrumpit pertinacia eos et, mei libris persequeris an.\r\n\r\nQuo fuisset sensibus in. Ad est assueverit adversarium, viris aperiri numquam est ad. Pro mediocrem iudicabit ei! Cu aperiam diceret sit.",
+ "user_id": 1
+ },
+ {
+ "title": "List of PyCon 2018 Talks",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "How Dogs in the Workplace Boosts Productivity",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "The Best Programming Podcasts",
+ "content": "Vidisse malorum platonem vel no. Persecuti adversarium ut sit, quo et stet velit mundi! Id per homero expetenda. Est brute adipisci et!\r\n\r\nLorem aliquip has in, quo debet ceteros sadipscing ne! An sea odio ornatus inermis, an per ipsum persecuti dissentiunt, no mea bonorum pertinacia delicatissimi? Ne sumo diceret mea, percipit repudiare eam no! Pro et lorem accommodare. At eius novum phaedrum mei?\r\n\r\nIgnota conclusionemque mei no, eam ut munere fierent pertinacia. Ea enim insolens gloriatur duo, quis vituperatoribus pro no! Ei sed bonorum reprehendunt, aliquam nominavi his et. Magna decore referrentur id nec. Cum rebum ludus inimicus no, id cum iusto labores maluisset!\r\n\r\nQui no omnis numquam apeirian, et vide interesset cum? Et nec nulla signiferumque. Enim instructior eos ei, solum tollit phaedrum his in? No vix malorum ornatus, cu quo hinc everti iracundia, essent eruditi efficiendi ut nam. Altera saperet usu eu, errem expetenda cu duo. Has dolor splendide et, no mel cibo ancillae voluptatum, mutat antiopam deterruisset ei qui. Dolores scripserit concludaturque est id, ea animal facilisi splendide qui, quo at animal voluptua instructior.\r\n\r\nMeis voluptatum eu eum.",
+ "user_id": 1
+ },
+ {
+ "title": "Tips for Public Speaking",
+ "content": "Ex eam doctus accommodare. Ut oratio vivendo intellegebat qui. Ius ne doming petentium. Pri congue delectus ad, accumsan molestiae disputando te mea. Nam case inani eligendi at, per te esse iudico. Feugiat patrioque mei ad, harum mundi adversarium an per!\r\n\r\nAncillae verterem eleifend his at? Nam vidit iusto petentium at, vis nusquam dissentias cu, etiam doctus adversarium eam no. At alterum definiebas efficiantur eos, pro labitur vituperatoribus ne, eu odio legere vim. Ad nec verear appellantur? Ad qui vulputate persequeris.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Programmers Throughout History",
+ "content": "Mel nulla legimus senserit id. Vim purto tractatos in, te vix error regione, erant laudem legere an vel. Falli fierent ius ex! In legere iriure est, id vis prima maluisset, purto numquam inimicus ut eos! In duo antiopam salutatus, an vel quodsi virtute definitiones.\r\n\r\nEst te sumo voluptaria, ius no putant argumentum, alienum ocurreret vim cu? Volumus democritum no vel, virtute commune an est. Vel te propriae lobortis rationibus, no eum odio neglegentur? Duo an sumo ignota latine! Nec mazim aperiam percipitur eu, id his dicit omnium.",
+ "user_id": 2
+ },
+ {
+ "title": "How To Create A YouTube Channel",
+ "content": "Sit et novum omnes. Nec ea quas minim tractatos, usu in aperiam mentitum necessitatibus, ut omnis equidem moderatius quo. Eos ad putent aeterno praesent. Eos omnium similique id, his accommodare philosophia at. Causae lucilius similique in mea, ut regione tritani voluptatibus mel! At possim offendit eum, aeque denique prodesset pro te?\r\n\r\nAt pro quem laudem. Et agam democritum eos? Ea quod probatus usu, no ferri fabulas cotidieque mei? Numquam nusquam quo in, quo et molestiae complectitur. Nihil semper ei qui.\r\n\r\nModo omnes forensibus duo ex, te est diceret bonorum labores! Magna ponderum eos ea. Cu vim diceret mnesarchum, graeci periculis in vis. Est no iriure suavitate!",
+ "user_id": 2
+ },
+ {
+ "title": "How I Record My Videos",
+ "content": "Ad vel possim delicatissimi, delectus detraxit per cu. Ad pri vidit modus altera! In erat complectitur sit, quo no nostro insolens? Aliquam patrioque scribentur quo ad, partem commune eos at. Eius vivendo comprehensam has ne, sea ne eros mazim oratio. Soluta populo te duo, ne pro causae fabulas percipitur, feugiat.",
+ "user_id": 1
+ },
+ {
+ "title": "Python and Physics",
+ "content": "Agam mediocritatem sed ex, fabellas recusabo dissentias vix te. No principes consequat inciderint pri, ea mundi affert persecuti mea, ne usu veri regione nostrum! An tibique dissentiet referrentur pro, ridens temporibus eu est! Ius ne omnes affert rationibus, ut detraxit qualisque usu. Accusamus reformidans sea id?\r\n\r\nEu aliquip gloriatur mei. Qui ad sint scripserit? Te instructior definitiones mel, sale mutat everti at his. Ea mea quot recusabo philosophia. Et nam quod adipisci, quo atqui appetere recusabo id, detraxit inimicus vim.",
+ "user_id": 1
+ },
+ {
+ "title": "Just A Few More Healines Should Do It",
+ "content": "Duo at tibique commune vulputate, ex facilis tacimates disputationi mei. Mel eu inani prompta labores! Audire omnesque offendit ex eos. An ferri accusata his, vel agam habeo maiestatis ex, eam mutat iisque concludaturque ut. Ut tamquam minimum partiendo vim. An nam vidit doming graecis.\r\n\r\nSingulis abhorreant his in, et altera audiam feugiat mei. Pri eius dolor persequeris id! Nam ea dolorem expetendis, idque everti suscipit qui te, noster repudiare dignissim per ex? No vim iriure tibique comprehensam, per utamur consequat.",
+ "user_id": 1
+ },
+ {
+ "title": "Music To Listen To While Coding",
+ "content": "Feugait reprimique eu mel, te eum dico electram. Nam no nemore cotidieque. Vim cu suas atqui dicunt. Id labitur dissentiunt per, ignota maiorum pri no? Clita altera sanctus ex his!\r\n\r\nAt alia electram reprehendunt eam, sea te volumus quaestio. Commodo voluptua senserit ius ne, eu enim disputationi eam? Id pri omnium blandit, nullam denique nec no? Sapientem vituperata sit et, nisl facilisis periculis in est. Elaboraret accommodare id vel? Cibo eripuit ut has, sed cu liber invidunt.\r\n\r\nEi pro vide quas dolorum, sea no fugit sanctus neglegentur. Sit feugait disputationi ne. Id diceret periculis nec, sint nonumes in sea, cum.",
+ "user_id": 1
+ },
+ {
+ "title": "5 Tips for Writing Catchy Headlines",
+ "content": "Ea homero possit epicuri est, debitis docendi tacimates cu duo? Ad lorem cetero disputando pri, veniam eruditi tacimates per te.",
+ "user_id": 2
+ },
+ {
+ "title": "The Rise of Data Science",
+ "content": "Per omittam placerat at. Eius aeque ei mei. Usu ex partiendo salutandi. Pro illud placerat molestiae ex, habeo vidisse voluptatum cu vel, efficiendi accommodare eum ea! Ne has case minimum facilisis, pertinax efficiendi eu vel!\r\n\r\nEt movet semper assueverit his. Mei at liber vitae. Vix et periculis definiebas, vero falli.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Videos For Learning Python",
+ "content": "Mei ei mazim dicunt feugait? Ludus mandamus ne est, per ne iusto facilisis moderatius! Has agam utamur ad! Ius reque aeterno cu, fabellas facilisi repudiare eu sit, te cibo convenire similique est. Ea cum viderer imperdiet liberavisse.\r\n\r\nPro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 10 Python Tips and Tricks",
+ "content": "Pro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 5 YouTube Channels For Learning Programming",
+ "content": "Quo inani quando ea, mel an vide adversarium suscipiantur. Et dicunt eleifend splendide pro. Nibh animal dolorem vim ex, nec te agam referrentur. Usu admodum ocurreret ne.\r\n\r\nEt dico audire cotidieque sed, cibo latine ut has, an case magna alienum.",
+ "user_id": 2
+ },
+ {
+ "title": "My Latest Updated Post",
+ "content": "Erat expetenda definitionem id eos. Semper suscipit eum ut, eum ex nemore copiosae. Nam probatus pertinacia eu! No alii voluptua abhorreant nec, te pro impedit concludaturque, in sea malis torquatos disputationi! Nam te alii nobis ponderum, ei fugit accusamus pro.\r\n\r\nCongue salutandi ex eam! Mei an prima consulatu, erat detracto eu quo? Vim ea esse utinam efficiantur, at noster dicunt.",
+ "user_id": 1
+ }
+]
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/requirements.txt b/Django_Blog/13-Deployment-Heroku/django_project/requirements.txt
new file mode 100644
index 000000000..a1760bfa2
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/requirements.txt
@@ -0,0 +1,22 @@
+boto3==1.9.96
+botocore==1.12.96
+certifi==2018.10.15
+chardet==3.0.4
+dj-database-url==0.5.0
+Django==2.1
+django-crispy-forms==1.7.2
+django-heroku==0.3.1
+django-storages==1.7.1
+docutils==0.14
+gunicorn==19.9.0
+idna==2.7
+jmespath==0.9.3
+Pillow==5.2.0
+psycopg2==2.7.7
+python-dateutil==2.8.0
+pytz==2018.5
+requests==2.19.1
+s3transfer==0.2.0
+six==1.12.0
+urllib3==1.23
+whitenoise==4.1.2
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/__init__.py b/Django_Blog/13-Deployment-Heroku/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/admin.py b/Django_Blog/13-Deployment-Heroku/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/apps.py b/Django_Blog/13-Deployment-Heroku/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/forms.py b/Django_Blog/13-Deployment-Heroku/django_project/users/forms.py
new file mode 100644
index 000000000..ee5757afe
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/forms.py
@@ -0,0 +1,26 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+from .models import Profile
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
+
+
+class UserUpdateForm(forms.ModelForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email']
+
+
+class ProfileUpdateForm(forms.ModelForm):
+ class Meta:
+ model = Profile
+ fields = ['image']
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/migrations/0001_initial.py b/Django_Blog/13-Deployment-Heroku/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/migrations/__init__.py b/Django_Blog/13-Deployment-Heroku/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/models.py b/Django_Blog/13-Deployment-Heroku/django_project/users/models.py
new file mode 100644
index 000000000..7a716639d
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/models.py
@@ -0,0 +1,21 @@
+from django.db import models
+from django.contrib.auth.models import User
+from PIL import Image
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
+
+ # def save(self, *args, **kwargs):
+ # super().save(*args, **kwargs)
+
+ # img = Image.open(self.image.path)
+
+ # if img.height > 300 or img.width > 300:
+ # output_size = (300, 300)
+ # img.thumbnail(output_size)
+ # img.save(self.image.path)
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/signals.py b/Django_Blog/13-Deployment-Heroku/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/login.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..e726d1a80
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/login.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/logout.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset.html
new file mode 100644
index 000000000..af6ca5dc6
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_complete.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_complete.html
new file mode 100644
index 000000000..9fa0746bb
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_complete.html
@@ -0,0 +1,7 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ Your password has been set.
+
+ Sign In Here
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_confirm.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_confirm.html
new file mode 100644
index 000000000..b855b9fd9
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_confirm.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_done.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_done.html
new file mode 100644
index 000000000..1f5f36f73
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/password_reset_done.html
@@ -0,0 +1,6 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ An email has been sent with instructions to reset your password
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/profile.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..76fd4d2b8
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/profile.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/register.html b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/tests.py b/Django_Blog/13-Deployment-Heroku/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/13-Deployment-Heroku/django_project/users/views.py b/Django_Blog/13-Deployment-Heroku/django_project/users/views.py
new file mode 100644
index 000000000..c9de3bb90
--- /dev/null
+++ b/Django_Blog/13-Deployment-Heroku/django_project/users/views.py
@@ -0,0 +1,42 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ if request.method == 'POST':
+ u_form = UserUpdateForm(request.POST, instance=request.user)
+ p_form = ProfileUpdateForm(request.POST,
+ request.FILES,
+ instance=request.user.profile)
+ if u_form.is_valid() and p_form.is_valid():
+ u_form.save()
+ p_form.save()
+ messages.success(request, f'Your account has been updated!')
+ return redirect('profile')
+
+ else:
+ u_form = UserUpdateForm(instance=request.user)
+ p_form = ProfileUpdateForm(instance=request.user.profile)
+
+ context = {
+ 'u_form': u_form,
+ 'p_form': p_form
+ }
+
+ return render(request, 'users/profile.html', context)
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/__init__.py b/Django_Blog/13-Deployment-Linode/django_project/blog/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/admin.py b/Django_Blog/13-Deployment-Linode/django_project/blog/admin.py
new file mode 100644
index 000000000..47f03fdd3
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Post
+
+admin.site.register(Post)
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/apps.py b/Django_Blog/13-Deployment-Linode/django_project/blog/apps.py
new file mode 100644
index 000000000..793058786
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class BlogConfig(AppConfig):
+ name = 'blog'
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/migrations/0001_initial.py b/Django_Blog/13-Deployment-Linode/django_project/blog/migrations/0001_initial.py
new file mode 100644
index 000000000..1f3340495
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/migrations/0001_initial.py
@@ -0,0 +1,28 @@
+# Generated by Django 2.1 on 2018-08-28 02:32
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+import django.utils.timezone
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=100)),
+ ('content', models.TextField()),
+ ('date_posted', models.DateTimeField(default=django.utils.timezone.now)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/migrations/__init__.py b/Django_Blog/13-Deployment-Linode/django_project/blog/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/models.py b/Django_Blog/13-Deployment-Linode/django_project/blog/models.py
new file mode 100644
index 000000000..6a5fa2950
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+from django.utils import timezone
+from django.contrib.auth.models import User
+from django.urls import reverse
+
+
+class Post(models.Model):
+ title = models.CharField(max_length=100)
+ content = models.TextField()
+ date_posted = models.DateTimeField(default=timezone.now)
+ author = models.ForeignKey(User, on_delete=models.CASCADE)
+
+ def __str__(self):
+ return self.title
+
+ def get_absolute_url(self):
+ return reverse('post-detail', kwargs={'pk': self.pk})
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/static/blog/main.css b/Django_Blog/13-Deployment-Linode/django_project/blog/static/blog/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/static/blog/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/about.html b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/about.html
new file mode 100644
index 000000000..a6c3b90b6
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/about.html
@@ -0,0 +1,4 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/base.html b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/base.html
new file mode 100644
index 000000000..bb7c9fd52
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/base.html
@@ -0,0 +1,83 @@
+{% load static %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Django Blog - {{ title }}
+ {% else %}
+ Django Blog
+ {% endif %}
+
+
+
+
+
+
+ {% if messages %}
+ {% for message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/home.html b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/home.html
new file mode 100644
index 000000000..f2d8ac709
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/home.html
@@ -0,0 +1,37 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_confirm_delete.html b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_confirm_delete.html
new file mode 100644
index 000000000..1bb861528
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_confirm_delete.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_detail.html b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_detail.html
new file mode 100644
index 000000000..eb6c099fc
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_detail.html
@@ -0,0 +1,20 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+
+
+
+
{{ object.author }}
+
{{ object.date_posted|date:"F d, Y" }}
+ {% if object.author == user %}
+
+ {% endif %}
+
+
{{ object.title }}
+
{{ object.content }}
+
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_form.html b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_form.html
new file mode 100644
index 000000000..fc90b64aa
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/post_form.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/user_posts.html b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/user_posts.html
new file mode 100644
index 000000000..81ae7b183
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/templates/blog/user_posts.html
@@ -0,0 +1,38 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ Posts by {{ view.kwargs.username }} ({{ page_obj.paginator.count }})
+ {% for post in posts %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% if is_paginated %}
+
+ {% if page_obj.has_previous %}
+ First
+ Previous
+ {% endif %}
+
+ {% for num in page_obj.paginator.page_range %}
+ {% if page_obj.number == num %}
+ {{ num }}
+ {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %}
+ {{ num }}
+ {% endif %}
+ {% endfor %}
+
+ {% if page_obj.has_next %}
+ Next
+ Last
+ {% endif %}
+
+ {% endif %}
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/tests.py b/Django_Blog/13-Deployment-Linode/django_project/blog/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/urls.py b/Django_Blog/13-Deployment-Linode/django_project/blog/urls.py
new file mode 100644
index 000000000..979254ed3
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/urls.py
@@ -0,0 +1,20 @@
+from django.urls import path
+from .views import (
+ PostListView,
+ PostDetailView,
+ PostCreateView,
+ PostUpdateView,
+ PostDeleteView,
+ UserPostListView
+)
+from . import views
+
+urlpatterns = [
+ path('', PostListView.as_view(), name='blog-home'),
+ path('user/', UserPostListView.as_view(), name='user-posts'),
+ path('post//', PostDetailView.as_view(), name='post-detail'),
+ path('post/new/', PostCreateView.as_view(), name='post-create'),
+ path('post//update/', PostUpdateView.as_view(), name='post-update'),
+ path('post//delete/', PostDeleteView.as_view(), name='post-delete'),
+ path('about/', views.about, name='blog-about'),
+]
diff --git a/Django_Blog/13-Deployment-Linode/django_project/blog/views.py b/Django_Blog/13-Deployment-Linode/django_project/blog/views.py
new file mode 100644
index 000000000..5751fbe38
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/blog/views.py
@@ -0,0 +1,80 @@
+from django.shortcuts import render, get_object_or_404
+from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
+from django.contrib.auth.models import User
+from django.views.generic import (
+ ListView,
+ DetailView,
+ CreateView,
+ UpdateView,
+ DeleteView
+)
+from .models import Post
+
+
+def home(request):
+ context = {
+ 'posts': Post.objects.all()
+ }
+ return render(request, 'blog/home.html', context)
+
+
+class PostListView(ListView):
+ model = Post
+ template_name = 'blog/home.html' # /_.html
+ context_object_name = 'posts'
+ ordering = ['-date_posted']
+ paginate_by = 5
+
+
+class UserPostListView(ListView):
+ model = Post
+ template_name = 'blog/user_posts.html' # /_.html
+ context_object_name = 'posts'
+ paginate_by = 5
+
+ def get_queryset(self):
+ user = get_object_or_404(User, username=self.kwargs.get('username'))
+ return Post.objects.filter(author=user).order_by('-date_posted')
+
+
+class PostDetailView(DetailView):
+ model = Post
+
+
+class PostCreateView(LoginRequiredMixin, CreateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+
+class PostUpdateView(LoginRequiredMixin, UserPassesTestMixin, UpdateView):
+ model = Post
+ fields = ['title', 'content']
+
+ def form_valid(self, form):
+ form.instance.author = self.request.user
+ return super().form_valid(form)
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+class PostDeleteView(LoginRequiredMixin, UserPassesTestMixin, DeleteView):
+ model = Post
+ success_url = '/'
+
+ def test_func(self):
+ post = self.get_object()
+ if self.request.user == post.author:
+ return True
+ return False
+
+
+def about(request):
+ return render(request, 'blog/about.html', {'title': 'About'})
diff --git a/Django_Blog/13-Deployment-Linode/django_project/db.sqlite3 b/Django_Blog/13-Deployment-Linode/django_project/db.sqlite3
new file mode 100644
index 000000000..c7ac4ea24
Binary files /dev/null and b/Django_Blog/13-Deployment-Linode/django_project/db.sqlite3 differ
diff --git a/Django_Blog/13-Deployment-Linode/django_project/django_project/__init__.py b/Django_Blog/13-Deployment-Linode/django_project/django_project/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Linode/django_project/django_project/settings.py b/Django_Blog/13-Deployment-Linode/django_project/django_project/settings.py
new file mode 100644
index 000000000..f18cc755b
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/django_project/settings.py
@@ -0,0 +1,138 @@
+"""
+Django settings for django_project project.
+
+Generated by 'django-admin startproject' using Django 2.1.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/2.1/ref/settings/
+"""
+
+import os
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'exhlfdat&vfum(-34*c2uroi(($ww(yo$9pv98=e6p^gl(-eoj'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'blog.apps.BlogConfig',
+ 'users.apps.UsersConfig',
+ 'crispy_forms',
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'django_project.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'django_project.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/2.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/2.1/howto/static-files/
+
+STATIC_URL = '/static/'
+
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+MEDIA_URL = '/media/'
+
+CRISPY_TEMPLATE_PACK = 'bootstrap4'
+
+LOGIN_REDIRECT_URL = 'blog-home'
+LOGIN_URL = 'login'
+
+EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
+EMAIL_HOST = 'smtp.gmail.com'
+EMAIL_PORT = 587
+EMAIL_USE_TLS = True
+EMAIL_HOST_USER = os.environ.get('EMAIL_USER')
+EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_PASS')
diff --git a/Django_Blog/13-Deployment-Linode/django_project/django_project/urls.py b/Django_Blog/13-Deployment-Linode/django_project/django_project/urls.py
new file mode 100644
index 000000000..51dbb4b31
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/django_project/urls.py
@@ -0,0 +1,54 @@
+"""django_project URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.contrib.auth import views as auth_views
+from django.urls import path, include
+from django.conf import settings
+from django.conf.urls.static import static
+from users import views as user_views
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('register/', user_views.register, name='register'),
+ path('profile/', user_views.profile, name='profile'),
+ path('login/', auth_views.LoginView.as_view(template_name='users/login.html'), name='login'),
+ path('logout/', auth_views.LogoutView.as_view(template_name='users/logout.html'), name='logout'),
+ path('password-reset/',
+ auth_views.PasswordResetView.as_view(
+ template_name='users/password_reset.html'
+ ),
+ name='password_reset'),
+ path('password-reset/done/',
+ auth_views.PasswordResetDoneView.as_view(
+ template_name='users/password_reset_done.html'
+ ),
+ name='password_reset_done'),
+ path('password-reset-confirm///',
+ auth_views.PasswordResetConfirmView.as_view(
+ template_name='users/password_reset_confirm.html'
+ ),
+ name='password_reset_confirm'),
+ path('password-reset-complete/',
+ auth_views.PasswordResetCompleteView.as_view(
+ template_name='users/password_reset_complete.html'
+ ),
+ name='password_reset_complete'),
+ path('', include('blog.urls')),
+]
+
+
+if settings.DEBUG:
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
diff --git a/Django_Blog/13-Deployment-Linode/django_project/django_project/wsgi.py b/Django_Blog/13-Deployment-Linode/django_project/django_project/wsgi.py
new file mode 100644
index 000000000..14bd24ed6
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/django_project/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for django_project project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+
+application = get_wsgi_application()
diff --git a/Django_Blog/13-Deployment-Linode/django_project/manage.py b/Django_Blog/13-Deployment-Linode/django_project/manage.py
new file mode 100755
index 000000000..6b39db5c2
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/manage.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == '__main__':
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_project.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
diff --git a/Django_Blog/13-Deployment-Linode/django_project/media/default.jpg b/Django_Blog/13-Deployment-Linode/django_project/media/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Django_Blog/13-Deployment-Linode/django_project/media/default.jpg differ
diff --git a/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/large.jpg b/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/large.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/large.jpg differ
diff --git a/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/large_rbSbk8j.jpg b/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/large_rbSbk8j.jpg
new file mode 100644
index 000000000..7c310fce5
Binary files /dev/null and b/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/large_rbSbk8j.jpg differ
diff --git a/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/pic.jpg b/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/pic.jpg
new file mode 100644
index 000000000..24d2c5ecb
Binary files /dev/null and b/Django_Blog/13-Deployment-Linode/django_project/media/profile_pics/pic.jpg differ
diff --git a/Django_Blog/13-Deployment-Linode/django_project/posts.json b/Django_Blog/13-Deployment-Linode/django_project/posts.json
new file mode 100644
index 000000000..6eb7d7723
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/posts.json
@@ -0,0 +1,122 @@
+[
+ {
+ "title": "My Updated Post",
+ "content": "My first updated post!\r\n\r\nThis is exciting!",
+ "user_id": 1
+ },
+ {
+ "title": "A Second Post",
+ "content": "This is a post from a different user...",
+ "user_id": 2
+ },
+ {
+ "title": "Top 5 Programming Lanaguages",
+ "content": "Te melius apeirian postulant cum, labitur admodum cu eos! Tollit equidem constituto ut has. Et per ponderum sadipscing, eu vero dolores recusabo nec! Eum quas epicuri at, eam albucius phaedrum ad, no eum probo fierent singulis. Dicat corrumpit definiebas id usu, in facete scripserit eam.\r\n\r\nVim ei exerci nusquam. Agam detraxit an quo? Quo et partem bonorum sensibus, mutat minimum est ad. In paulo essent signiferumque his, quaestio sadipscing theophrastus ad has. Ancillae appareat qualisque ei has, usu ne assum zril disputationi, sed at gloriatur persequeris.",
+ "user_id": 1
+ },
+ {
+ "title": "Sublime Text Tips and Tricks",
+ "content": "Ea vix dico modus voluptatibus, mel iudico suavitate iracundia eu. Tincidunt voluptatibus pro eu? Nulla omittam eligendi his ne, suas putant ut pri. Ullum repudiare at duo, ut cum habeo minim laudem, dicit libris antiopam has ut! Ex movet feugait mea, eu vim impetus nostrud cotidieque.\r\n\r\nEi suas similique quo, his simul viris congue ex? Graeci possit in est, ne qui minim delectus invenire. Mei ad error homero maluisset, tacimates assentior per in, vix ut vocent accusata! Mei eu inermis pericula patrioque? Debet denique sea at, ad cibo reformidans theophrastus per, cu inermis maiestatis vim!\r\n\r\nUt odio feugiat voluptua est, euismod volutpat qualisque at sit, has ex dicit ornatus inimicus! Eu ferri laoreet vel, dicat corrumpit dissentias nec in. Illum dissentiunt eam ei, praesent voluptatum pri in? Ius in inani petentium, hinc elitr vivendum an vis, in vero dolores electram ius?",
+ "user_id": 1
+ },
+ {
+ "title": "Best Python IDEs",
+ "content": "Elit contentiones nam no, sea ut consul adipiscing. Etiam velit ei usu, sonet clita nonumy eu eum. Usu ea utroque facilisi, cu mel fugit tantas legimus, te vix quem nominavi. Prima deserunt evertitur ne qui, nam reprimique appellantur ne.",
+ "user_id": 1
+ },
+ {
+ "title": "Flask vs Django - Which Is Better?",
+ "content": "Ei dicta apeirian deterruisset eam, cu offendit invenire pri, cu possim vivendo vix? Nam nihil evertitur ad, ne vim nonumy legendos iracundia. Vix nulla dolorem intellegebat ea? Te per vide paulo dolor, eum ea erant placerat constituam? Dolores accumsan eum at.\r\n\r\nInteresset consequuntur id vix. Eam id decore latine, iusto imperdiet ei qui. In ludus consul reformidans eam. Nec in recusabo posidonium, cu tantas volumus mnesarchum pro. Nam ut docendi evertitur, possim menandri persecuti ne sed, cum saepe ornatus delenit ei?\r\n\r\nIn mel debet aliquam. In his etiam legere, doming nominavi consetetur has ad, decore reprimique ea usu. Eam magna graeci suavitate cu, facete delenit cum ne. Ponderum evertitur tincidunt ei mel, ius ei stet euismod docendi.",
+ "user_id": 2
+ },
+ {
+ "title": "You Won't Believe These Clickbait Titles!",
+ "content": "Cu justo honestatis mel, pro ei appareat mediocrem suavitate. No his omnis ridens. Ludus ornatus voluptatum mei ut, an mentitum noluisse forensibus cum. Eam affert pertinax consequuntur ei, nisl zril meliore te vis? Ad animal persius concludaturque vix, eu graece audiam mel.\r\n\r\nVitae libris mentitum pri in. Cu rebum veritus sea, ex usu consul dolorum, pro tale maluisset consulatu ut. Quo ad clita persius ancillae. Vel illud blandit at, vel eu hinc graeco, usu doctus praesent ea! Vim rebum deserunt ex.\r\n\r\nIus lorem omittam id, est suavitate definitionem ad! Id vim insolens tacimates, pri at decore causae. Ex duo bonorum repudiandae? Vix no vidit facete impedit. An oportere indoctum eam.",
+ "user_id": 2
+ },
+ {
+ "title": "These Beers Will Improve Your Programming",
+ "content": "Sanctus senserit vis id, ut eum iuvaret invidunt constituam? Nonumes facilis mei an, ad elit explicari persequeris pri, dico recusabo quo id? At mea lorem repudiandae. Sed causae sensibus forensibus ea, ne ornatus suscipiantur consectetuer mel, affert nostro nominati cu qui. Te sanctus constituto est, corrumpit pertinacia eos et, mei libris persequeris an.\r\n\r\nQuo fuisset sensibus in. Ad est assueverit adversarium, viris aperiri numquam est ad. Pro mediocrem iudicabit ei! Cu aperiam diceret sit.",
+ "user_id": 1
+ },
+ {
+ "title": "List of PyCon 2018 Talks",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "How Dogs in the Workplace Boosts Productivity",
+ "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.",
+ "user_id": 1
+ },
+ {
+ "title": "The Best Programming Podcasts",
+ "content": "Vidisse malorum platonem vel no. Persecuti adversarium ut sit, quo et stet velit mundi! Id per homero expetenda. Est brute adipisci et!\r\n\r\nLorem aliquip has in, quo debet ceteros sadipscing ne! An sea odio ornatus inermis, an per ipsum persecuti dissentiunt, no mea bonorum pertinacia delicatissimi? Ne sumo diceret mea, percipit repudiare eam no! Pro et lorem accommodare. At eius novum phaedrum mei?\r\n\r\nIgnota conclusionemque mei no, eam ut munere fierent pertinacia. Ea enim insolens gloriatur duo, quis vituperatoribus pro no! Ei sed bonorum reprehendunt, aliquam nominavi his et. Magna decore referrentur id nec. Cum rebum ludus inimicus no, id cum iusto labores maluisset!\r\n\r\nQui no omnis numquam apeirian, et vide interesset cum? Et nec nulla signiferumque. Enim instructior eos ei, solum tollit phaedrum his in? No vix malorum ornatus, cu quo hinc everti iracundia, essent eruditi efficiendi ut nam. Altera saperet usu eu, errem expetenda cu duo. Has dolor splendide et, no mel cibo ancillae voluptatum, mutat antiopam deterruisset ei qui. Dolores scripserit concludaturque est id, ea animal facilisi splendide qui, quo at animal voluptua instructior.\r\n\r\nMeis voluptatum eu eum.",
+ "user_id": 1
+ },
+ {
+ "title": "Tips for Public Speaking",
+ "content": "Ex eam doctus accommodare. Ut oratio vivendo intellegebat qui. Ius ne doming petentium. Pri congue delectus ad, accumsan molestiae disputando te mea. Nam case inani eligendi at, per te esse iudico. Feugiat patrioque mei ad, harum mundi adversarium an per!\r\n\r\nAncillae verterem eleifend his at? Nam vidit iusto petentium at, vis nusquam dissentias cu, etiam doctus adversarium eam no. At alterum definiebas efficiantur eos, pro labitur vituperatoribus ne, eu odio legere vim. Ad nec verear appellantur? Ad qui vulputate persequeris.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Programmers Throughout History",
+ "content": "Mel nulla legimus senserit id. Vim purto tractatos in, te vix error regione, erant laudem legere an vel. Falli fierent ius ex! In legere iriure est, id vis prima maluisset, purto numquam inimicus ut eos! In duo antiopam salutatus, an vel quodsi virtute definitiones.\r\n\r\nEst te sumo voluptaria, ius no putant argumentum, alienum ocurreret vim cu? Volumus democritum no vel, virtute commune an est. Vel te propriae lobortis rationibus, no eum odio neglegentur? Duo an sumo ignota latine! Nec mazim aperiam percipitur eu, id his dicit omnium.",
+ "user_id": 2
+ },
+ {
+ "title": "How To Create A YouTube Channel",
+ "content": "Sit et novum omnes. Nec ea quas minim tractatos, usu in aperiam mentitum necessitatibus, ut omnis equidem moderatius quo. Eos ad putent aeterno praesent. Eos omnium similique id, his accommodare philosophia at. Causae lucilius similique in mea, ut regione tritani voluptatibus mel! At possim offendit eum, aeque denique prodesset pro te?\r\n\r\nAt pro quem laudem. Et agam democritum eos? Ea quod probatus usu, no ferri fabulas cotidieque mei? Numquam nusquam quo in, quo et molestiae complectitur. Nihil semper ei qui.\r\n\r\nModo omnes forensibus duo ex, te est diceret bonorum labores! Magna ponderum eos ea. Cu vim diceret mnesarchum, graeci periculis in vis. Est no iriure suavitate!",
+ "user_id": 2
+ },
+ {
+ "title": "How I Record My Videos",
+ "content": "Ad vel possim delicatissimi, delectus detraxit per cu. Ad pri vidit modus altera! In erat complectitur sit, quo no nostro insolens? Aliquam patrioque scribentur quo ad, partem commune eos at. Eius vivendo comprehensam has ne, sea ne eros mazim oratio. Soluta populo te duo, ne pro causae fabulas percipitur, feugiat.",
+ "user_id": 1
+ },
+ {
+ "title": "Python and Physics",
+ "content": "Agam mediocritatem sed ex, fabellas recusabo dissentias vix te. No principes consequat inciderint pri, ea mundi affert persecuti mea, ne usu veri regione nostrum! An tibique dissentiet referrentur pro, ridens temporibus eu est! Ius ne omnes affert rationibus, ut detraxit qualisque usu. Accusamus reformidans sea id?\r\n\r\nEu aliquip gloriatur mei. Qui ad sint scripserit? Te instructior definitiones mel, sale mutat everti at his. Ea mea quot recusabo philosophia. Et nam quod adipisci, quo atqui appetere recusabo id, detraxit inimicus vim.",
+ "user_id": 1
+ },
+ {
+ "title": "Just A Few More Healines Should Do It",
+ "content": "Duo at tibique commune vulputate, ex facilis tacimates disputationi mei. Mel eu inani prompta labores! Audire omnesque offendit ex eos. An ferri accusata his, vel agam habeo maiestatis ex, eam mutat iisque concludaturque ut. Ut tamquam minimum partiendo vim. An nam vidit doming graecis.\r\n\r\nSingulis abhorreant his in, et altera audiam feugiat mei. Pri eius dolor persequeris id! Nam ea dolorem expetendis, idque everti suscipit qui te, noster repudiare dignissim per ex? No vim iriure tibique comprehensam, per utamur consequat.",
+ "user_id": 1
+ },
+ {
+ "title": "Music To Listen To While Coding",
+ "content": "Feugait reprimique eu mel, te eum dico electram. Nam no nemore cotidieque. Vim cu suas atqui dicunt. Id labitur dissentiunt per, ignota maiorum pri no? Clita altera sanctus ex his!\r\n\r\nAt alia electram reprehendunt eam, sea te volumus quaestio. Commodo voluptua senserit ius ne, eu enim disputationi eam? Id pri omnium blandit, nullam denique nec no? Sapientem vituperata sit et, nisl facilisis periculis in est. Elaboraret accommodare id vel? Cibo eripuit ut has, sed cu liber invidunt.\r\n\r\nEi pro vide quas dolorum, sea no fugit sanctus neglegentur. Sit feugait disputationi ne. Id diceret periculis nec, sint nonumes in sea, cum.",
+ "user_id": 1
+ },
+ {
+ "title": "5 Tips for Writing Catchy Headlines",
+ "content": "Ea homero possit epicuri est, debitis docendi tacimates cu duo? Ad lorem cetero disputando pri, veniam eruditi tacimates per te.",
+ "user_id": 2
+ },
+ {
+ "title": "The Rise of Data Science",
+ "content": "Per omittam placerat at. Eius aeque ei mei. Usu ex partiendo salutandi. Pro illud placerat molestiae ex, habeo vidisse voluptatum cu vel, efficiendi accommodare eum ea! Ne has case minimum facilisis, pertinax efficiendi eu vel!\r\n\r\nEt movet semper assueverit his. Mei at liber vitae. Vix et periculis definiebas, vero falli.",
+ "user_id": 2
+ },
+ {
+ "title": "Best Videos For Learning Python",
+ "content": "Mei ei mazim dicunt feugait? Ludus mandamus ne est, per ne iusto facilisis moderatius! Has agam utamur ad! Ius reque aeterno cu, fabellas facilisi repudiare eu sit, te cibo convenire similique est. Ea cum viderer imperdiet liberavisse.\r\n\r\nPro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 10 Python Tips and Tricks",
+ "content": "Pro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.",
+ "user_id": 1
+ },
+ {
+ "title": "Top 5 YouTube Channels For Learning Programming",
+ "content": "Quo inani quando ea, mel an vide adversarium suscipiantur. Et dicunt eleifend splendide pro. Nibh animal dolorem vim ex, nec te agam referrentur. Usu admodum ocurreret ne.\r\n\r\nEt dico audire cotidieque sed, cibo latine ut has, an case magna alienum.",
+ "user_id": 2
+ },
+ {
+ "title": "My Latest Updated Post",
+ "content": "Erat expetenda definitionem id eos. Semper suscipit eum ut, eum ex nemore copiosae. Nam probatus pertinacia eu! No alii voluptua abhorreant nec, te pro impedit concludaturque, in sea malis torquatos disputationi! Nam te alii nobis ponderum, ei fugit accusamus pro.\r\n\r\nCongue salutandi ex eam! Mei an prima consulatu, erat detracto eu quo? Vim ea esse utinam efficiantur, at noster dicunt.",
+ "user_id": 1
+ }
+]
diff --git a/Django_Blog/13-Deployment-Linode/django_project/requirements.txt b/Django_Blog/13-Deployment-Linode/django_project/requirements.txt
new file mode 100644
index 000000000..1769d1d90
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/requirements.txt
@@ -0,0 +1,9 @@
+certifi==2018.10.15
+chardet==3.0.4
+Django==2.1
+django-crispy-forms==1.7.2
+idna==2.7
+Pillow==5.2.0
+pytz==2018.5
+requests==2.19.1
+urllib3==1.23
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/__init__.py b/Django_Blog/13-Deployment-Linode/django_project/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/admin.py b/Django_Blog/13-Deployment-Linode/django_project/users/admin.py
new file mode 100644
index 000000000..d914f1fcc
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Profile
+
+admin.site.register(Profile)
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/apps.py b/Django_Blog/13-Deployment-Linode/django_project/users/apps.py
new file mode 100644
index 000000000..b8d67f1c3
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/apps.py
@@ -0,0 +1,8 @@
+from django.apps import AppConfig
+
+
+class UsersConfig(AppConfig):
+ name = 'users'
+
+ def ready(self):
+ import users.signals
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/forms.py b/Django_Blog/13-Deployment-Linode/django_project/users/forms.py
new file mode 100644
index 000000000..ee5757afe
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/forms.py
@@ -0,0 +1,26 @@
+from django import forms
+from django.contrib.auth.models import User
+from django.contrib.auth.forms import UserCreationForm
+from .models import Profile
+
+
+class UserRegisterForm(UserCreationForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email', 'password1', 'password2']
+
+
+class UserUpdateForm(forms.ModelForm):
+ email = forms.EmailField()
+
+ class Meta:
+ model = User
+ fields = ['username', 'email']
+
+
+class ProfileUpdateForm(forms.ModelForm):
+ class Meta:
+ model = Profile
+ fields = ['image']
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/migrations/0001_initial.py b/Django_Blog/13-Deployment-Linode/django_project/users/migrations/0001_initial.py
new file mode 100644
index 000000000..c549982d4
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 2.1 on 2018-08-28 21:29
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Profile',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('image', models.ImageField(default='default.jpg', upload_to='profile_pics')),
+ ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/migrations/__init__.py b/Django_Blog/13-Deployment-Linode/django_project/users/migrations/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/models.py b/Django_Blog/13-Deployment-Linode/django_project/users/models.py
new file mode 100644
index 000000000..6dbf6c2ba
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/models.py
@@ -0,0 +1,21 @@
+from django.db import models
+from django.contrib.auth.models import User
+from PIL import Image
+
+
+class Profile(models.Model):
+ user = models.OneToOneField(User, on_delete=models.CASCADE)
+ image = models.ImageField(default='default.jpg', upload_to='profile_pics')
+
+ def __str__(self):
+ return f'{self.user.username} Profile'
+
+ def save(self, *args, **kwargs):
+ super().save(*args, **kwargs)
+
+ img = Image.open(self.image.path)
+
+ if img.height > 300 or img.width > 300:
+ output_size = (300, 300)
+ img.thumbnail(output_size)
+ img.save(self.image.path)
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/signals.py b/Django_Blog/13-Deployment-Linode/django_project/users/signals.py
new file mode 100644
index 000000000..299e44a30
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/signals.py
@@ -0,0 +1,15 @@
+from django.db.models.signals import post_save
+from django.contrib.auth.models import User
+from django.dispatch import receiver
+from .models import Profile
+
+
+@receiver(post_save, sender=User)
+def create_profile(sender, instance, created, **kwargs):
+ if created:
+ Profile.objects.create(user=instance)
+
+
+@receiver(post_save, sender=User)
+def save_profile(sender, instance, **kwargs):
+ instance.profile.save()
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/login.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/login.html
new file mode 100644
index 000000000..e726d1a80
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/login.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/logout.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/logout.html
new file mode 100644
index 000000000..af94c65e9
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/logout.html
@@ -0,0 +1,9 @@
+{% extends "blog/base.html" %}
+{% block content %}
+ You have been logged out
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset.html
new file mode 100644
index 000000000..af6ca5dc6
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_complete.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_complete.html
new file mode 100644
index 000000000..9fa0746bb
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_complete.html
@@ -0,0 +1,7 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ Your password has been set.
+
+ Sign In Here
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_confirm.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_confirm.html
new file mode 100644
index 000000000..b855b9fd9
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_confirm.html
@@ -0,0 +1,16 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_done.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_done.html
new file mode 100644
index 000000000..1f5f36f73
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/password_reset_done.html
@@ -0,0 +1,6 @@
+{% extends "blog/base.html" %}
+{% block content %}
+
+ An email has been sent with instructions to reset your password
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/profile.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/profile.html
new file mode 100644
index 000000000..76fd4d2b8
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/profile.html
@@ -0,0 +1,24 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/register.html b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/register.html
new file mode 100644
index 000000000..cca592054
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/templates/users/register.html
@@ -0,0 +1,21 @@
+{% extends "blog/base.html" %}
+{% load crispy_forms_tags %}
+{% block content %}
+
+
+
+
+ Already Have An Account? Sign In
+
+
+
+{% endblock content %}
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/tests.py b/Django_Blog/13-Deployment-Linode/django_project/users/tests.py
new file mode 100644
index 000000000..7ce503c2d
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/Django_Blog/13-Deployment-Linode/django_project/users/views.py b/Django_Blog/13-Deployment-Linode/django_project/users/views.py
new file mode 100644
index 000000000..c9de3bb90
--- /dev/null
+++ b/Django_Blog/13-Deployment-Linode/django_project/users/views.py
@@ -0,0 +1,42 @@
+from django.shortcuts import render, redirect
+from django.contrib import messages
+from django.contrib.auth.decorators import login_required
+from .forms import UserRegisterForm, UserUpdateForm, ProfileUpdateForm
+
+
+def register(request):
+ if request.method == 'POST':
+ form = UserRegisterForm(request.POST)
+ if form.is_valid():
+ form.save()
+ username = form.cleaned_data.get('username')
+ messages.success(request, f'Your account has been created! You are now able to log in')
+ return redirect('login')
+ else:
+ form = UserRegisterForm()
+ return render(request, 'users/register.html', {'form': form})
+
+
+@login_required
+def profile(request):
+ if request.method == 'POST':
+ u_form = UserUpdateForm(request.POST, instance=request.user)
+ p_form = ProfileUpdateForm(request.POST,
+ request.FILES,
+ instance=request.user.profile)
+ if u_form.is_valid() and p_form.is_valid():
+ u_form.save()
+ p_form.save()
+ messages.success(request, f'Your account has been updated!')
+ return redirect('profile')
+
+ else:
+ u_form = UserUpdateForm(instance=request.user)
+ p_form = ProfileUpdateForm(instance=request.user.profile)
+
+ context = {
+ 'u_form': u_form,
+ 'p_form': p_form
+ }
+
+ return render(request, 'users/profile.html', context)
diff --git a/Django_Blog/requirements.txt b/Django_Blog/requirements.txt
new file mode 100644
index 000000000..1769d1d90
--- /dev/null
+++ b/Django_Blog/requirements.txt
@@ -0,0 +1,9 @@
+certifi==2018.10.15
+chardet==3.0.4
+Django==2.1
+django-crispy-forms==1.7.2
+idna==2.7
+Pillow==5.2.0
+pytz==2018.5
+requests==2.19.1
+urllib3==1.23
diff --git a/Django_Blog/snippets/add_posts.txt b/Django_Blog/snippets/add_posts.txt
new file mode 100644
index 000000000..d8c9c6e06
--- /dev/null
+++ b/Django_Blog/snippets/add_posts.txt
@@ -0,0 +1,14 @@
+
+# Run Django shell (python manage.py shell) and then run the following commands...
+
+>>> import json
+>>> from blog.models import Post
+>>> with open('posts.json') as f:
+... post_json = json.load(f)
+...
+>>> for post in post_json:
+... post = Post(title=post['title'], content=post['content'], author_id=post['user_id'])
+... post.save()
+...
+>>> exit()
+
diff --git a/Django_Blog/snippets/apache-ubuntu-certbot.txt b/Django_Blog/snippets/apache-ubuntu-certbot.txt
new file mode 100644
index 000000000..e7cb1732d
--- /dev/null
+++ b/Django_Blog/snippets/apache-ubuntu-certbot.txt
@@ -0,0 +1,10 @@
+sudo apt-get update
+sudo apt-get install software-properties-common
+sudo add-apt-repository universe
+sudo add-apt-repository ppa:certbot/certbot
+sudo apt-get update
+sudo apt-get install python-certbot-apache
+
+sudo certbot --apache
+
+sudo certbot renew --dry-run
diff --git a/Django_Blog/snippets/article.html b/Django_Blog/snippets/article.html
new file mode 100644
index 000000000..f88be635b
--- /dev/null
+++ b/Django_Blog/snippets/article.html
@@ -0,0 +1,10 @@
+
+
+
+
+
{{ post.content }}
+
+
\ No newline at end of file
diff --git a/Django_Blog/snippets/cors-config.txt b/Django_Blog/snippets/cors-config.txt
new file mode 100644
index 000000000..1260c267c
--- /dev/null
+++ b/Django_Blog/snippets/cors-config.txt
@@ -0,0 +1,10 @@
+
+
+
+ *
+ GET
+ POST
+ PUT
+ *
+
+
diff --git a/Django_Blog/snippets/django_project.conf b/Django_Blog/snippets/django_project.conf
new file mode 100644
index 000000000..c32ec9ceb
--- /dev/null
+++ b/Django_Blog/snippets/django_project.conf
@@ -0,0 +1,52 @@
+
+ # The ServerName directive sets the request scheme, hostname and port that
+ # the server uses to identify itself. This is used when creating
+ # redirection URLs. In the context of virtual hosts, the ServerName
+ # specifies what hostname must appear in the request's Host: header to
+ # match this virtual host. For the default virtual host (this file) this
+ # value is not decisive as it is used as a last resort host regardless.
+ # However, you must set it for any further virtual host explicitly.
+ #ServerName www.example.com
+
+ ServerAdmin webmaster@localhost
+ DocumentRoot /var/www/html
+
+ # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
+ # error, crit, alert, emerg.
+ # It is also possible to configure the loglevel for particular
+ # modules, e.g.
+ #LogLevel info ssl:warn
+
+ ErrorLog ${APACHE_LOG_DIR}/error.log
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
+
+ # For most configuration files from conf-available/, which are
+ # enabled or disabled at a global level, it is possible to
+ # include a line for only one particular virtual host. For example the
+ # following line enables the CGI configuration for this host only
+ # after it has been globally disabled with "a2disconf".
+ #Include conf-available/serve-cgi-bin.conf
+
+ Alias /static /home/YOURUSER/YOURPROJECT/static
+
+ Require all granted
+
+
+ Alias /media /home/YOURUSER/YOURPROJECT/media
+
+ Require all granted
+
+
+
+
+ Require all granted
+
+
+
+ WSGIScriptAlias / /home/YOURUSER/YOURPROJECT/YOURPROJECT/wsgi.py
+ WSGIDaemonProcess django_app python-path=/home/YOURUSER/YOURPROJECT python-home=/home/YOURUSER/YOURPROJECT/venv
+ WSGIProcessGroup django_app
+
+
+
+# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
diff --git a/Django_Blog/snippets/main.css b/Django_Blog/snippets/main.css
new file mode 100644
index 000000000..06c3af5f9
--- /dev/null
+++ b/Django_Blog/snippets/main.css
@@ -0,0 +1,84 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+ul {
+ margin: 0;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Django_Blog/snippets/main.html b/Django_Blog/snippets/main.html
new file mode 100644
index 000000000..60c6ae337
--- /dev/null
+++ b/Django_Blog/snippets/main.html
@@ -0,0 +1,20 @@
+
+
+
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
diff --git a/Django_Blog/snippets/navigation.html b/Django_Blog/snippets/navigation.html
new file mode 100644
index 000000000..e379ea785
--- /dev/null
+++ b/Django_Blog/snippets/navigation.html
@@ -0,0 +1,21 @@
+
\ No newline at end of file
diff --git a/Django_Blog/snippets/posts.json b/Django_Blog/snippets/posts.json
new file mode 100644
index 000000000..ec1b199ab
--- /dev/null
+++ b/Django_Blog/snippets/posts.json
@@ -0,0 +1 @@
+[{"title": "My Updated Post", "content": "My first updated post!\r\n\r\nThis is exciting!", "user_id": 1}, {"title": "A Second Post", "content": "This is a post from a different user...", "user_id": 2}, {"title": "Top 5 Programming Lanaguages", "content": "Te melius apeirian postulant cum, labitur admodum cu eos! Tollit equidem constituto ut has. Et per ponderum sadipscing, eu vero dolores recusabo nec! Eum quas epicuri at, eam albucius phaedrum ad, no eum probo fierent singulis. Dicat corrumpit definiebas id usu, in facete scripserit eam.\r\n\r\nVim ei exerci nusquam. Agam detraxit an quo? Quo et partem bonorum sensibus, mutat minimum est ad. In paulo essent signiferumque his, quaestio sadipscing theophrastus ad has. Ancillae appareat qualisque ei has, usu ne assum zril disputationi, sed at gloriatur persequeris.", "user_id": 1}, {"title": "Sublime Text Tips and Tricks", "content": "Ea vix dico modus voluptatibus, mel iudico suavitate iracundia eu. Tincidunt voluptatibus pro eu? Nulla omittam eligendi his ne, suas putant ut pri. Ullum repudiare at duo, ut cum habeo minim laudem, dicit libris antiopam has ut! Ex movet feugait mea, eu vim impetus nostrud cotidieque.\r\n\r\nEi suas similique quo, his simul viris congue ex? Graeci possit in est, ne qui minim delectus invenire. Mei ad error homero maluisset, tacimates assentior per in, vix ut vocent accusata! Mei eu inermis pericula patrioque? Debet denique sea at, ad cibo reformidans theophrastus per, cu inermis maiestatis vim!\r\n\r\nUt odio feugiat voluptua est, euismod volutpat qualisque at sit, has ex dicit ornatus inimicus! Eu ferri laoreet vel, dicat corrumpit dissentias nec in. Illum dissentiunt eam ei, praesent voluptatum pri in? Ius in inani petentium, hinc elitr vivendum an vis, in vero dolores electram ius?", "user_id": 1}, {"title": "Best Python IDEs", "content": "Elit contentiones nam no, sea ut consul adipiscing. Etiam velit ei usu, sonet clita nonumy eu eum. Usu ea utroque facilisi, cu mel fugit tantas legimus, te vix quem nominavi. Prima deserunt evertitur ne qui, nam reprimique appellantur ne.", "user_id": 1}, {"title": "Flask vs Django - Which Is Better?", "content": "Ei dicta apeirian deterruisset eam, cu offendit invenire pri, cu possim vivendo vix? Nam nihil evertitur ad, ne vim nonumy legendos iracundia. Vix nulla dolorem intellegebat ea? Te per vide paulo dolor, eum ea erant placerat constituam? Dolores accumsan eum at.\r\n\r\nInteresset consequuntur id vix. Eam id decore latine, iusto imperdiet ei qui. In ludus consul reformidans eam. Nec in recusabo posidonium, cu tantas volumus mnesarchum pro. Nam ut docendi evertitur, possim menandri persecuti ne sed, cum saepe ornatus delenit ei?\r\n\r\nIn mel debet aliquam. In his etiam legere, doming nominavi consetetur has ad, decore reprimique ea usu. Eam magna graeci suavitate cu, facete delenit cum ne. Ponderum evertitur tincidunt ei mel, ius ei stet euismod docendi.", "user_id": 2}, {"title": "You Won't Believe These Clickbait Titles!", "content": "Cu justo honestatis mel, pro ei appareat mediocrem suavitate. No his omnis ridens. Ludus ornatus voluptatum mei ut, an mentitum noluisse forensibus cum. Eam affert pertinax consequuntur ei, nisl zril meliore te vis? Ad animal persius concludaturque vix, eu graece audiam mel.\r\n\r\nVitae libris mentitum pri in. Cu rebum veritus sea, ex usu consul dolorum, pro tale maluisset consulatu ut. Quo ad clita persius ancillae. Vel illud blandit at, vel eu hinc graeco, usu doctus praesent ea! Vim rebum deserunt ex.\r\n\r\nIus lorem omittam id, est suavitate definitionem ad! Id vim insolens tacimates, pri at decore causae. Ex duo bonorum repudiandae? Vix no vidit facete impedit. An oportere indoctum eam.", "user_id": 2}, {"title": "These Beers Will Improve Your Programming", "content": "Sanctus senserit vis id, ut eum iuvaret invidunt constituam? Nonumes facilis mei an, ad elit explicari persequeris pri, dico recusabo quo id? At mea lorem repudiandae. Sed causae sensibus forensibus ea, ne ornatus suscipiantur consectetuer mel, affert nostro nominati cu qui. Te sanctus constituto est, corrumpit pertinacia eos et, mei libris persequeris an.\r\n\r\nQuo fuisset sensibus in. Ad est assueverit adversarium, viris aperiri numquam est ad. Pro mediocrem iudicabit ei! Cu aperiam diceret sit.", "user_id": 1}, {"title": "List of PyCon 2018 Talks", "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.", "user_id": 1}, {"title": "How Dogs in the Workplace Boosts Productivity", "content": "Has ea verear adolescens, elit justo constituam duo in, vix an copiosae contentiones. Eos persius consequuntur no, esse percipit cum ea, per modus harum praesent at. Et clita delenit luptatum usu? No cum interpretaris concludaturque. Congue pertinax ea mea.\r\n\r\nBrute iracundia philosophia ei quo, nam at adhuc idque, ex dolor homero mei. No mea affert tacimates pertinacia, in maluisset dissentias consectetuer mei, vel no aliquam splendide. In has nobis vocent adipisci? Pri clita delicata in, iusto viris scripserit vim in? Sit in lorem complectitur. Sanctus eloquentiam eum ut, et sumo apeirian mea? Vim te affert populo voluptaria, utinam consul ad duo.", "user_id": 1}, {"title": "The Best Programming Podcasts", "content": "Vidisse malorum platonem vel no. Persecuti adversarium ut sit, quo et stet velit mundi! Id per homero expetenda. Est brute adipisci et!\r\n\r\nLorem aliquip has in, quo debet ceteros sadipscing ne! An sea odio ornatus inermis, an per ipsum persecuti dissentiunt, no mea bonorum pertinacia delicatissimi? Ne sumo diceret mea, percipit repudiare eam no! Pro et lorem accommodare. At eius novum phaedrum mei?\r\n\r\nIgnota conclusionemque mei no, eam ut munere fierent pertinacia. Ea enim insolens gloriatur duo, quis vituperatoribus pro no! Ei sed bonorum reprehendunt, aliquam nominavi his et. Magna decore referrentur id nec. Cum rebum ludus inimicus no, id cum iusto labores maluisset!\r\n\r\nQui no omnis numquam apeirian, et vide interesset cum? Et nec nulla signiferumque. Enim instructior eos ei, solum tollit phaedrum his in? No vix malorum ornatus, cu quo hinc everti iracundia, essent eruditi efficiendi ut nam. Altera saperet usu eu, errem expetenda cu duo. Has dolor splendide et, no mel cibo ancillae voluptatum, mutat antiopam deterruisset ei qui. Dolores scripserit concludaturque est id, ea animal facilisi splendide qui, quo at animal voluptua instructior.\r\n\r\nMeis voluptatum eu eum.", "user_id": 1}, {"title": "Tips for Public Speaking", "content": "Ex eam doctus accommodare. Ut oratio vivendo intellegebat qui. Ius ne doming petentium. Pri congue delectus ad, accumsan molestiae disputando te mea. Nam case inani eligendi at, per te esse iudico. Feugiat patrioque mei ad, harum mundi adversarium an per!\r\n\r\nAncillae verterem eleifend his at? Nam vidit iusto petentium at, vis nusquam dissentias cu, etiam doctus adversarium eam no. At alterum definiebas efficiantur eos, pro labitur vituperatoribus ne, eu odio legere vim. Ad nec verear appellantur? Ad qui vulputate persequeris.", "user_id": 2}, {"title": "Best Programmers Throughout History", "content": "Mel nulla legimus senserit id. Vim purto tractatos in, te vix error regione, erant laudem legere an vel. Falli fierent ius ex! In legere iriure est, id vis prima maluisset, purto numquam inimicus ut eos! In duo antiopam salutatus, an vel quodsi virtute definitiones.\r\n\r\nEst te sumo voluptaria, ius no putant argumentum, alienum ocurreret vim cu? Volumus democritum no vel, virtute commune an est. Vel te propriae lobortis rationibus, no eum odio neglegentur? Duo an sumo ignota latine! Nec mazim aperiam percipitur eu, id his dicit omnium.", "user_id": 2}, {"title": "How To Create A YouTube Channel", "content": "Sit et novum omnes. Nec ea quas minim tractatos, usu in aperiam mentitum necessitatibus, ut omnis equidem moderatius quo. Eos ad putent aeterno praesent. Eos omnium similique id, his accommodare philosophia at. Causae lucilius similique in mea, ut regione tritani voluptatibus mel! At possim offendit eum, aeque denique prodesset pro te?\r\n\r\nAt pro quem laudem. Et agam democritum eos? Ea quod probatus usu, no ferri fabulas cotidieque mei? Numquam nusquam quo in, quo et molestiae complectitur. Nihil semper ei qui.\r\n\r\nModo omnes forensibus duo ex, te est diceret bonorum labores! Magna ponderum eos ea. Cu vim diceret mnesarchum, graeci periculis in vis. Est no iriure suavitate!", "user_id": 2}, {"title": "How I Record My Videos", "content": "Ad vel possim delicatissimi, delectus detraxit per cu. Ad pri vidit modus altera! In erat complectitur sit, quo no nostro insolens? Aliquam patrioque scribentur quo ad, partem commune eos at. Eius vivendo comprehensam has ne, sea ne eros mazim oratio. Soluta populo te duo, ne pro causae fabulas percipitur, feugiat.", "user_id": 1}, {"title": "Python and Physics", "content": "Agam mediocritatem sed ex, fabellas recusabo dissentias vix te. No principes consequat inciderint pri, ea mundi affert persecuti mea, ne usu veri regione nostrum! An tibique dissentiet referrentur pro, ridens temporibus eu est! Ius ne omnes affert rationibus, ut detraxit qualisque usu. Accusamus reformidans sea id?\r\n\r\nEu aliquip gloriatur mei. Qui ad sint scripserit? Te instructior definitiones mel, sale mutat everti at his. Ea mea quot recusabo philosophia. Et nam quod adipisci, quo atqui appetere recusabo id, detraxit inimicus vim.", "user_id": 1}, {"title": "Just A Few More Healines Should Do It", "content": "Duo at tibique commune vulputate, ex facilis tacimates disputationi mei. Mel eu inani prompta labores! Audire omnesque offendit ex eos. An ferri accusata his, vel agam habeo maiestatis ex, eam mutat iisque concludaturque ut. Ut tamquam minimum partiendo vim. An nam vidit doming graecis.\r\n\r\nSingulis abhorreant his in, et altera audiam feugiat mei. Pri eius dolor persequeris id! Nam ea dolorem expetendis, idque everti suscipit qui te, noster repudiare dignissim per ex? No vim iriure tibique comprehensam, per utamur consequat.", "user_id": 1}, {"title": "Music To Listen To While Coding", "content": "Feugait reprimique eu mel, te eum dico electram. Nam no nemore cotidieque. Vim cu suas atqui dicunt. Id labitur dissentiunt per, ignota maiorum pri no? Clita altera sanctus ex his!\r\n\r\nAt alia electram reprehendunt eam, sea te volumus quaestio. Commodo voluptua senserit ius ne, eu enim disputationi eam? Id pri omnium blandit, nullam denique nec no? Sapientem vituperata sit et, nisl facilisis periculis in est. Elaboraret accommodare id vel? Cibo eripuit ut has, sed cu liber invidunt.\r\n\r\nEi pro vide quas dolorum, sea no fugit sanctus neglegentur. Sit feugait disputationi ne. Id diceret periculis nec, sint nonumes in sea, cum.", "user_id": 1}, {"title": "5 Tips for Writing Catchy Headlines", "content": "Ea homero possit epicuri est, debitis docendi tacimates cu duo? Ad lorem cetero disputando pri, veniam eruditi tacimates per te.", "user_id": 2}, {"title": "The Rise of Data Science", "content": "Per omittam placerat at. Eius aeque ei mei. Usu ex partiendo salutandi. Pro illud placerat molestiae ex, habeo vidisse voluptatum cu vel, efficiendi accommodare eum ea! Ne has case minimum facilisis, pertinax efficiendi eu vel!\r\n\r\nEt movet semper assueverit his. Mei at liber vitae. Vix et periculis definiebas, vero falli.", "user_id": 2}, {"title": "Best Videos For Learning Python", "content": "Mei ei mazim dicunt feugait? Ludus mandamus ne est, per ne iusto facilisis moderatius! Has agam utamur ad! Ius reque aeterno cu, fabellas facilisi repudiare eu sit, te cibo convenire similique est. Ea cum viderer imperdiet liberavisse.\r\n\r\nPro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.", "user_id": 1}, {"title": "Top 10 Python Tips and Tricks", "content": "Pro minim iuvaret ad. No nam ornatus principes euripidis, at sale vituperatoribus eos, eros regione scripserit id mea. Has ne inermis nostrum, quo tantas melius dissentias at! Ut vim tibique omnesque. An mel modo ponderum, eum at probo appetere imperdiet? Natum quaeque intellegebat per ex. Cu viris clita sit?\r\n\r\nReque menandri dissentias sed ne, no tota nonumes eos, vix in tempor maiestatis erant.", "user_id": 1}, {"title": "Top 5 YouTube Channels For Learning Programming", "content": "Quo inani quando ea, mel an vide adversarium suscipiantur. Et dicunt eleifend splendide pro. Nibh animal dolorem vim ex, nec te agam referrentur. Usu admodum ocurreret ne.\r\n\r\nEt dico audire cotidieque sed, cibo latine ut has, an case magna alienum.", "user_id": 2}, {"title": "My Latest Updated Post", "content": "Erat expetenda definitionem id eos. Semper suscipit eum ut, eum ex nemore copiosae. Nam probatus pertinacia eu! No alii voluptua abhorreant nec, te pro impedit concludaturque, in sea malis torquatos disputationi! Nam te alii nobis ponderum, ei fugit accusamus pro.\r\n\r\nCongue salutandi ex eam! Mei an prima consulatu, erat detracto eu quo? Vim ea esse utinam efficiantur, at noster dicunt.", "user_id": 1}]
diff --git a/Django_Blog/snippets/profile.html b/Django_Blog/snippets/profile.html
new file mode 100644
index 000000000..956803978
--- /dev/null
+++ b/Django_Blog/snippets/profile.html
@@ -0,0 +1,10 @@
+
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 000000000..8aa26455d
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) [year] [fullname]
+
+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.
diff --git a/Object-Oriented/4-Inheritance/oop-finish.py b/Object-Oriented/4-Inheritance/oop-finish.py
index b5c51c1fd..8f0410816 100644
--- a/Object-Oriented/4-Inheritance/oop-finish.py
+++ b/Object-Oriented/4-Inheritance/oop-finish.py
@@ -45,6 +45,7 @@ def print_emps(self):
for emp in self.employees:
print('-->', emp.fullname())
+
dev_1 = Developer('Corey', 'Schafer', 50000, 'Python')
dev_2 = Developer('Test', 'Employee', 60000, 'Java')
@@ -53,6 +54,6 @@ def print_emps(self):
print(mgr_1.email)
mgr_1.add_emp(dev_2)
-mgr_1.remove_emp(dev_1)
+mgr_1.remove_emp(dev_2)
mgr_1.print_emps()
diff --git a/Object-Oriented/6-property-decorator/oop.py b/Object-Oriented/6-property-decorator/oop.py
index a536e93fb..3ba793e0b 100644
--- a/Object-Oriented/6-property-decorator/oop.py
+++ b/Object-Oriented/6-property-decorator/oop.py
@@ -12,10 +12,25 @@ def email(self):
@property
def fullname(self):
return '{} {}'.format(self.first, self.last)
+
+ @fullname.setter
+ def fullname(self, name):
+ first, last = name.split(' ')
+ self.first = first
+ self.last = last
+
+ @fullname.deleter
+ def fullname(self):
+ print('Delete Name!')
+ self.first = None
+ self.last = None
emp_1 = Employee('John', 'Smith')
+emp_1.fullname = "Corey Schafer"
print(emp_1.first)
print(emp_1.email)
print(emp_1.fullname)
+
+del emp_1.fullname
diff --git a/Python-Files/Files.py b/Python-Files/Files.py
new file mode 100644
index 000000000..a30674920
--- /dev/null
+++ b/Python-Files/Files.py
@@ -0,0 +1,114 @@
+#File Objects
+
+##The Basics:
+#f = open("test.txt", "r")
+#f = open("test.txt", "w")
+#f = open("test.txt", "a")
+#f = open("test.txt", "r+")
+#print(f.name)
+#print(f.mode)
+#f.close()
+
+##Reading Files:
+#with open("test.txt", "r") as f:
+ #pass
+
+ ##Small Files:
+ #f_contents = f.read()
+ #print(f_contents)
+
+ ##Big Files:
+ #f_contents = f.readlines()
+ #print(f_contents)
+
+ ###With the extra lines:
+ #f_contents = f.readline()
+ #print(f_contents)
+ #f_contents = f.readline()
+ #print(f_contents)
+
+ ###Without the extra lines:
+ #f_contents = f.readline()
+ #print(f_contents, end = '')
+ #f_contents = f.readline()
+ #print(f_contents, end = '')
+
+ ###Iterating through the file:
+ #for line in f:
+ #print(line, end = '')
+
+ ###Going Back....:
+ #f_contents = f.read()
+ #print(f_contents, end = '')
+
+ ###Printing by characters:
+ #f_contents = f.read(100)
+ #print(f_contents, end = '')
+ #f_contents = f.read(100)
+ #print(f_contents, end = '')
+ #f_contents = f.read(100)
+ #print(f_contents, end = '')
+
+ ###Iterating through small chunks:
+ #size_to_read = 100
+ #f_contents = f.read(size_to_read)
+ #while len(f_contents) > 0:
+ #print(f_contents)
+ #f_contents = f.read(size_to_read)
+
+ ###Iterating through small chunks, with 10 characters:
+ #size_to_read = 10
+ #f_contents = f.read(size_to_read)
+ #print(f_contents, end = '')
+ #f.seek(0)
+ #f_contents = f.read(size_to_read)
+ #print(f_contents, end = '')
+ #print(f.tell())
+ #while len(f_contents) > 0:
+ #print(f_contents, end = '*')
+ #f_contents = f.read(size_to_read)
+#print(f.mode)
+#print(f.closed)
+#print(f.read())
+
+
+##Writing Files:
+###The Error:
+#with open("test.txt", "r") as f:
+ #f.write("Test")
+
+###Writing Starts:
+#with open("test2.txt", "w") as f:
+ #pass
+ #f.write("Test")
+ #f.seek(0)
+ #f.write("Test")
+ #f.seek("R")
+
+##Copying Files:
+#with open("test.txt", "r") as rf:
+ #with open("test_copy.txt", "w") as wf:
+ #for line in rf:
+ #wf.write(line)
+
+#Copying the/your image:
+###The Error
+#with open("bronx.jpg", "r") as rf:
+ #with open("bronx_copy.jpg", "w") as wf:
+ #for line in rf:
+ #wf.write(line)
+
+###Copying the image starts, without chunks:
+#with open("bronx.jpg", "rb") as rf:
+ #with open("bronx_copy.jpg", "wb") as wf:
+ #for line in rf:
+ #wf.write(line)
+
+###Copying the image with chunks:
+#with open("bronx.jpg", "rb") as rf:
+ #with open("bronx_copy.jpg", "wb") as wf:
+ #chunk_size = 4096
+ #rf_chunk = rf.read(chunk_size)
+ #while len(rf_chunk) > 0:
+ #wf.write(rf_chunk)
+ #rf_chunk = rf.read(chunk_size)
diff --git a/Python-Files/README.txt b/Python-Files/README.txt
new file mode 100644
index 000000000..4909c3960
--- /dev/null
+++ b/Python-Files/README.txt
@@ -0,0 +1,8 @@
+The Files.py contains all the code snippets shown in
+the tutorial. To explicitly use them all through out the video tutorial, make sure to uncomment
+them to use it.
+
+In the image section, make sure to use your own image.
+
+
+Video Link: https://www.youtube.com/watch?v=Uh2ebFW8OYM&t=1295s
diff --git a/Python-Files/test.txt b/Python-Files/test.txt
new file mode 100644
index 000000000..11ca2e26c
--- /dev/null
+++ b/Python-Files/test.txt
@@ -0,0 +1,10 @@
+1) This is a test file
+2) With multiple lines of data...
+3) Third line
+4) Fourth line
+5) Fifth line
+6) Sixth line
+7) Seventh line
+8) Eighth line
+9) Ninth line
+10) Tenth line
\ No newline at end of file
diff --git a/Python/Emails/mail-demo.py b/Python/Emails/mail-demo.py
new file mode 100644
index 000000000..bafa515ea
--- /dev/null
+++ b/Python/Emails/mail-demo.py
@@ -0,0 +1,31 @@
+
+import os
+import smtplib
+import imghdr
+from email.message import EmailMessage
+
+EMAIL_ADDRESS = os.environ.get('EMAIL_USER')
+EMAIL_PASSWORD = os.environ.get('EMAIL_PASS')
+
+contacts = ['YourAddress@gmail.com', 'test@example.com']
+
+msg = EmailMessage()
+msg['Subject'] = 'Check out Bronx as a puppy!'
+msg['From'] = EMAIL_ADDRESS
+msg['To'] = 'YourAddress@gmail.com'
+
+msg.set_content('This is a plain text email')
+
+msg.add_alternative("""\
+
+
+
+ This is an HTML Email!
+
+
+""", subtype='html')
+
+
+with smtplib.SMTP_SSL('smtp.gmail.com', 465) as smtp:
+ smtp.login(EMAIL_ADDRESS, EMAIL_PASSWORD)
+ smtp.send_message(msg)
diff --git a/Python/Emails/simple.html b/Python/Emails/simple.html
new file mode 100644
index 000000000..dbead7bf6
--- /dev/null
+++ b/Python/Emails/simple.html
@@ -0,0 +1,6 @@
+
+
+
+ This is an HTML Email!
+
+
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/__init__.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/__init__.py
new file mode 100644
index 000000000..55b364847
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/__init__.py
@@ -0,0 +1,35 @@
+from flask import Flask
+from flask_sqlalchemy import SQLAlchemy
+from flask_bcrypt import Bcrypt
+from flask_login import LoginManager
+from flask_mail import Mail
+from flaskblog.config import Config
+
+
+db = SQLAlchemy()
+bcrypt = Bcrypt()
+login_manager = LoginManager()
+login_manager.login_view = 'users.login'
+login_manager.login_message_category = 'info'
+mail = Mail()
+
+
+def create_app(config_class=Config):
+ app = Flask(__name__)
+ app.config.from_object(Config)
+
+ db.init_app(app)
+ bcrypt.init_app(app)
+ login_manager.init_app(app)
+ mail.init_app(app)
+
+ from flaskblog.users.routes import users
+ from flaskblog.posts.routes import posts
+ from flaskblog.main.routes import main
+ from flaskblog.errors.handlers import errors
+ app.register_blueprint(users)
+ app.register_blueprint(posts)
+ app.register_blueprint(main)
+ app.register_blueprint(errors)
+
+ return app
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/config.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/config.py
new file mode 100644
index 000000000..df26ab5fe
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/config.py
@@ -0,0 +1,11 @@
+import os
+
+
+class Config:
+ SECRET_KEY = os.environ.get('SECRET_KEY')
+ SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI')
+ MAIL_SERVER = 'smtp.googlemail.com'
+ MAIL_PORT = 587
+ MAIL_USE_TLS = True
+ MAIL_USERNAME = os.environ.get('EMAIL_USER')
+ MAIL_PASSWORD = os.environ.get('EMAIL_PASS')
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/errors/__init__.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/errors/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/errors/handlers.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/errors/handlers.py
new file mode 100644
index 000000000..e4896a58e
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/errors/handlers.py
@@ -0,0 +1,18 @@
+from flask import Blueprint, render_template
+
+errors = Blueprint('errors', __name__)
+
+
+@errors.app_errorhandler(404)
+def error_404(error):
+ return render_template('errors/404.html'), 404
+
+
+@errors.app_errorhandler(403)
+def error_403(error):
+ return render_template('errors/403.html'), 403
+
+
+@errors.app_errorhandler(500)
+def error_500(error):
+ return render_template('errors/500.html'), 500
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/main/__init__.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/main/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/main/routes.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/main/routes.py
new file mode 100644
index 000000000..6e6b730a8
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/main/routes.py
@@ -0,0 +1,17 @@
+from flask import render_template, request, Blueprint
+from flaskblog.models import Post
+
+main = Blueprint('main', __name__)
+
+
+@main.route("/")
+@main.route("/home")
+def home():
+ page = request.args.get('page', 1, type=int)
+ posts = Post.query.order_by(Post.date_posted.desc()).paginate(page=page, per_page=5)
+ return render_template('home.html', posts=posts)
+
+
+@main.route("/about")
+def about():
+ return render_template('about.html', title='About')
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/models.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/models.py
new file mode 100644
index 000000000..d41172639
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/models.py
@@ -0,0 +1,46 @@
+from datetime import datetime
+from itsdangerous import TimedJSONWebSignatureSerializer as Serializer
+from flask import current_app
+from flaskblog import db, login_manager
+from flask_login import UserMixin
+
+
+@login_manager.user_loader
+def load_user(user_id):
+ return User.query.get(int(user_id))
+
+
+class User(db.Model, UserMixin):
+ id = db.Column(db.Integer, primary_key=True)
+ username = db.Column(db.String(20), unique=True, nullable=False)
+ email = db.Column(db.String(120), unique=True, nullable=False)
+ image_file = db.Column(db.String(20), nullable=False, default='default.jpg')
+ password = db.Column(db.String(60), nullable=False)
+ posts = db.relationship('Post', backref='author', lazy=True)
+
+ def get_reset_token(self, expires_sec=1800):
+ s = Serializer(current_app.config['SECRET_KEY'], expires_sec)
+ return s.dumps({'user_id': self.id}).decode('utf-8')
+
+ @staticmethod
+ def verify_reset_token(token):
+ s = Serializer(current_app.config['SECRET_KEY'])
+ try:
+ user_id = s.loads(token)['user_id']
+ except:
+ return None
+ return User.query.get(user_id)
+
+ def __repr__(self):
+ return f"User('{self.username}', '{self.email}', '{self.image_file}')"
+
+
+class Post(db.Model):
+ id = db.Column(db.Integer, primary_key=True)
+ title = db.Column(db.String(100), nullable=False)
+ date_posted = db.Column(db.DateTime, nullable=False, default=datetime.utcnow)
+ content = db.Column(db.Text, nullable=False)
+ user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False)
+
+ def __repr__(self):
+ return f"Post('{self.title}', '{self.date_posted}')"
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/__init__.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/forms.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/forms.py
new file mode 100644
index 000000000..a024d771d
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/forms.py
@@ -0,0 +1,9 @@
+from flask_wtf import FlaskForm
+from wtforms import StringField, SubmitField, TextAreaField
+from wtforms.validators import DataRequired
+
+
+class PostForm(FlaskForm):
+ title = StringField('Title', validators=[DataRequired()])
+ content = TextAreaField('Content', validators=[DataRequired()])
+ submit = SubmitField('Post')
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/routes.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/routes.py
new file mode 100644
index 000000000..ba5e4070c
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/posts/routes.py
@@ -0,0 +1,60 @@
+from flask import (render_template, url_for, flash,
+ redirect, request, abort, Blueprint)
+from flask_login import current_user, login_required
+from flaskblog import db
+from flaskblog.models import Post
+from flaskblog.posts.forms import PostForm
+
+posts = Blueprint('posts', __name__)
+
+
+@posts.route("/post/new", methods=['GET', 'POST'])
+@login_required
+def new_post():
+ form = PostForm()
+ if form.validate_on_submit():
+ post = Post(title=form.title.data, content=form.content.data, author=current_user)
+ db.session.add(post)
+ db.session.commit()
+ flash('Your post has been created!', 'success')
+ return redirect(url_for('main.home'))
+ return render_template('create_post.html', title='New Post',
+ form=form, legend='New Post')
+
+
+@posts.route("/post/")
+def post(post_id):
+ post = Post.query.get_or_404(post_id)
+ return render_template('post.html', title=post.title, post=post)
+
+
+@posts.route("/post//update", methods=['GET', 'POST'])
+@login_required
+def update_post(post_id):
+ post = Post.query.get_or_404(post_id)
+ if post.author != current_user:
+ abort(403)
+ form = PostForm()
+ if form.validate_on_submit():
+ post.title = form.title.data
+ post.content = form.content.data
+ db.session.commit()
+ flash('Your post has been updated!', 'success')
+ return redirect(url_for('posts.post', post_id=post.id))
+ elif request.method == 'GET':
+ form.title.data = post.title
+ form.content.data = post.content
+ return render_template('create_post.html', title='Update Post',
+ form=form, legend='Update Post')
+
+
+@posts.route("/post//delete", methods=['POST'])
+@login_required
+def delete_post(post_id):
+ post = Post.query.get_or_404(post_id)
+ if post.author != current_user:
+ abort(403)
+ db.session.delete(post)
+ db.session.commit()
+ flash('Your post has been deleted!', 'success')
+ return redirect(url_for('main.home'))
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/site.db b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/site.db
new file mode 100644
index 000000000..4189ba4c9
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/site.db differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/main.css b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/main.css
new file mode 100644
index 000000000..c05529fe9
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/main.css
@@ -0,0 +1,80 @@
+body {
+ background: #fafafa;
+ color: #333333;
+ margin-top: 5rem;
+}
+
+h1, h2, h3, h4, h5, h6 {
+ color: #444444;
+}
+
+.bg-steel {
+ background-color: #5f788a;
+}
+
+.site-header .navbar-nav .nav-link {
+ color: #cbd5db;
+}
+
+.site-header .navbar-nav .nav-link:hover {
+ color: #ffffff;
+}
+
+.site-header .navbar-nav .nav-link.active {
+ font-weight: 500;
+}
+
+.content-section {
+ background: #ffffff;
+ padding: 10px 20px;
+ border: 1px solid #dddddd;
+ border-radius: 3px;
+ margin-bottom: 20px;
+}
+
+.article-title {
+ color: #444444;
+}
+
+a.article-title:hover {
+ color: #428bca;
+ text-decoration: none;
+}
+
+.article-content {
+ white-space: pre-line;
+}
+
+.article-img {
+ height: 65px;
+ width: 65px;
+ margin-right: 16px;
+}
+
+.article-metadata {
+ padding-bottom: 1px;
+ margin-bottom: 4px;
+ border-bottom: 1px solid #e3e3e3
+}
+
+.article-metadata a:hover {
+ color: #333;
+ text-decoration: none;
+}
+
+.article-svg {
+ width: 25px;
+ height: 25px;
+ vertical-align: middle;
+}
+
+.account-img {
+ height: 125px;
+ width: 125px;
+ margin-right: 20px;
+ margin-bottom: 16px;
+}
+
+.account-heading {
+ font-size: 2.5rem;
+}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/2e32b4c96a8d8f10.jpg b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/2e32b4c96a8d8f10.jpg
new file mode 100644
index 000000000..e6104e489
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/2e32b4c96a8d8f10.jpg differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/7798432669b8b3ac.jpg b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/7798432669b8b3ac.jpg
new file mode 100644
index 000000000..5f23fc7a5
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/7798432669b8b3ac.jpg differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/7ef894751d31a45b.png b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/7ef894751d31a45b.png
new file mode 100644
index 000000000..e1b5bc021
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/7ef894751d31a45b.png differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/85ed1b444539873d.png b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/85ed1b444539873d.png
new file mode 100644
index 000000000..92221ad6d
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/85ed1b444539873d.png differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/b6e1c53325f88b74.png b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/b6e1c53325f88b74.png
new file mode 100644
index 000000000..e1b5bc021
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/b6e1c53325f88b74.png differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/ddd3ffe2e3271c40.jpg b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/ddd3ffe2e3271c40.jpg
new file mode 100644
index 000000000..5f23fc7a5
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/ddd3ffe2e3271c40.jpg differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/default.jpg b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/default.jpg
new file mode 100644
index 000000000..38f286f63
Binary files /dev/null and b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/static/profile_pics/default.jpg differ
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/about.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/about.html
new file mode 100644
index 000000000..edca7c0f4
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/about.html
@@ -0,0 +1,4 @@
+{% extends "layout.html" %}
+{% block content %}
+ About Page
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/account.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/account.html
new file mode 100644
index 000000000..6bee7f7b9
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/account.html
@@ -0,0 +1,57 @@
+{% extends "layout.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/create_post.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/create_post.html
new file mode 100644
index 000000000..faae64044
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/create_post.html
@@ -0,0 +1,40 @@
+{% extends "layout.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/403.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/403.html
new file mode 100644
index 000000000..38fc3c3d4
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/403.html
@@ -0,0 +1,7 @@
+{% extends "layout.html" %}
+{% block content %}
+
+
You don't have permission to do that (403)
+
Please check your account and try again
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/404.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/404.html
new file mode 100644
index 000000000..5ef2527b3
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/404.html
@@ -0,0 +1,7 @@
+{% extends "layout.html" %}
+{% block content %}
+
+
Oops. Page Not Found (404)
+
That page does not exist. Please try a different location
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/500.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/500.html
new file mode 100644
index 000000000..78a42a26c
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/errors/500.html
@@ -0,0 +1,7 @@
+{% extends "layout.html" %}
+{% block content %}
+
+
Something went wrong (500)
+
We're experiencing some trouble on our end. Please try again in the near future
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/home.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/home.html
new file mode 100644
index 000000000..65af77fff
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/home.html
@@ -0,0 +1,27 @@
+{% extends "layout.html" %}
+{% block content %}
+ {% for post in posts.items %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% for page_num in posts.iter_pages(left_edge=1, right_edge=1, left_current=1, right_current=2) %}
+ {% if page_num %}
+ {% if posts.page == page_num %}
+ {{ page_num }}
+ {% else %}
+ {{ page_num }}
+ {% endif %}
+ {% else %}
+ ...
+ {% endif %}
+ {% endfor %}
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/layout.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/layout.html
new file mode 100644
index 000000000..393da81c7
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/layout.html
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {% if title %}
+ Flask Blog - {{ title }}
+ {% else %}
+ Flask Blog
+ {% endif %}
+
+
+
+
+
+
+ {% with messages = get_flashed_messages(with_categories=true) %}
+ {% if messages %}
+ {% for category, message in messages %}
+
+ {{ message }}
+
+ {% endfor %}
+ {% endif %}
+ {% endwith %}
+ {% block content %}{% endblock %}
+
+
+
+
Our Sidebar
+
You can put any information here you'd like.
+
+ Latest Posts
+ Announcements
+ Calendars
+ etc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/login.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/login.html
new file mode 100644
index 000000000..2b5c21c7b
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/login.html
@@ -0,0 +1,52 @@
+{% extends "layout.html" %}
+{% block content %}
+
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/post.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/post.html
new file mode 100644
index 000000000..374300b06
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/post.html
@@ -0,0 +1,39 @@
+{% extends "layout.html" %}
+{% block content %}
+
+
+
+
+
{{ post.author.username }}
+
{{ post.date_posted.strftime('%Y-%m-%d') }}
+ {% if post.author == current_user %}
+
+ {% endif %}
+
+
{{ post.title }}
+
{{ post.content }}
+
+
+
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/register.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/register.html
new file mode 100644
index 000000000..41872a3a5
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/register.html
@@ -0,0 +1,72 @@
+{% extends "layout.html" %}
+{% block content %}
+
+
+
+ Already Have An Account? Sign In
+
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/reset_request.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/reset_request.html
new file mode 100644
index 000000000..bc3863c18
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/reset_request.html
@@ -0,0 +1,27 @@
+{% extends "layout.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/reset_token.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/reset_token.html
new file mode 100644
index 000000000..145f03929
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/reset_token.html
@@ -0,0 +1,40 @@
+{% extends "layout.html" %}
+{% block content %}
+
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/user_posts.html b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/user_posts.html
new file mode 100644
index 000000000..2d23230df
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/templates/user_posts.html
@@ -0,0 +1,28 @@
+{% extends "layout.html" %}
+{% block content %}
+ Posts by {{ user.username }} ({{ posts.total }})
+ {% for post in posts.items %}
+
+
+
+
+
+
{{ post.content }}
+
+
+ {% endfor %}
+ {% for page_num in posts.iter_pages(left_edge=1, right_edge=1, left_current=1, right_current=2) %}
+ {% if page_num %}
+ {% if posts.page == page_num %}
+ {{ page_num }}
+ {% else %}
+ {{ page_num }}
+ {% endif %}
+ {% else %}
+ ...
+ {% endif %}
+ {% endfor %}
+{% endblock content %}
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/__init__.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/forms.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/forms.py
new file mode 100644
index 000000000..e8c91cfe9
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/forms.py
@@ -0,0 +1,74 @@
+from flask_wtf import FlaskForm
+from flask_wtf.file import FileField, FileAllowed
+from wtforms import StringField, PasswordField, SubmitField, BooleanField
+from wtforms.validators import DataRequired, Length, Email, EqualTo, ValidationError
+from flask_login import current_user
+from flaskblog.models import User
+
+
+class RegistrationForm(FlaskForm):
+ username = StringField('Username',
+ validators=[DataRequired(), Length(min=2, max=20)])
+ email = StringField('Email',
+ validators=[DataRequired(), Email()])
+ password = PasswordField('Password', validators=[DataRequired()])
+ confirm_password = PasswordField('Confirm Password',
+ validators=[DataRequired(), EqualTo('password')])
+ submit = SubmitField('Sign Up')
+
+ def validate_username(self, username):
+ user = User.query.filter_by(username=username.data).first()
+ if user:
+ raise ValidationError('That username is taken. Please choose a different one.')
+
+ def validate_email(self, email):
+ user = User.query.filter_by(email=email.data).first()
+ if user:
+ raise ValidationError('That email is taken. Please choose a different one.')
+
+
+class LoginForm(FlaskForm):
+ email = StringField('Email',
+ validators=[DataRequired(), Email()])
+ password = PasswordField('Password', validators=[DataRequired()])
+ remember = BooleanField('Remember Me')
+ submit = SubmitField('Login')
+
+
+class UpdateAccountForm(FlaskForm):
+ username = StringField('Username',
+ validators=[DataRequired(), Length(min=2, max=20)])
+ email = StringField('Email',
+ validators=[DataRequired(), Email()])
+ picture = FileField('Update Profile Picture', validators=[FileAllowed(['jpg', 'png'])])
+ submit = SubmitField('Update')
+
+ def validate_username(self, username):
+ if username.data != current_user.username:
+ user = User.query.filter_by(username=username.data).first()
+ if user:
+ raise ValidationError('That username is taken. Please choose a different one.')
+
+ def validate_email(self, email):
+ if email.data != current_user.email:
+ user = User.query.filter_by(email=email.data).first()
+ if user:
+ raise ValidationError('That email is taken. Please choose a different one.')
+
+
+class RequestResetForm(FlaskForm):
+ email = StringField('Email',
+ validators=[DataRequired(), Email()])
+ submit = SubmitField('Request Password Reset')
+
+ def validate_email(self, email):
+ user = User.query.filter_by(email=email.data).first()
+ if user is None:
+ raise ValidationError('There is no account with that email. You must register first.')
+
+
+class ResetPasswordForm(FlaskForm):
+ password = PasswordField('Password', validators=[DataRequired()])
+ confirm_password = PasswordField('Confirm Password',
+ validators=[DataRequired(), EqualTo('password')])
+ submit = SubmitField('Reset Password')
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/routes.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/routes.py
new file mode 100644
index 000000000..c7ed7ea33
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/routes.py
@@ -0,0 +1,108 @@
+from flask import render_template, url_for, flash, redirect, request, Blueprint
+from flask_login import login_user, current_user, logout_user, login_required
+from flaskblog import db, bcrypt
+from flaskblog.models import User, Post
+from flaskblog.users.forms import (RegistrationForm, LoginForm, UpdateAccountForm,
+ RequestResetForm, ResetPasswordForm)
+from flaskblog.users.utils import save_picture, send_reset_email
+
+users = Blueprint('users', __name__)
+
+
+@users.route("/register", methods=['GET', 'POST'])
+def register():
+ if current_user.is_authenticated:
+ return redirect(url_for('main.home'))
+ form = RegistrationForm()
+ if form.validate_on_submit():
+ hashed_password = bcrypt.generate_password_hash(form.password.data).decode('utf-8')
+ user = User(username=form.username.data, email=form.email.data, password=hashed_password)
+ db.session.add(user)
+ db.session.commit()
+ flash('Your account has been created! You are now able to log in', 'success')
+ return redirect(url_for('users.login'))
+ return render_template('register.html', title='Register', form=form)
+
+
+@users.route("/login", methods=['GET', 'POST'])
+def login():
+ if current_user.is_authenticated:
+ return redirect(url_for('main.home'))
+ form = LoginForm()
+ if form.validate_on_submit():
+ user = User.query.filter_by(email=form.email.data).first()
+ if user and bcrypt.check_password_hash(user.password, form.password.data):
+ login_user(user, remember=form.remember.data)
+ next_page = request.args.get('next')
+ return redirect(next_page) if next_page else redirect(url_for('main.home'))
+ else:
+ flash('Login Unsuccessful. Please check email and password', 'danger')
+ return render_template('login.html', title='Login', form=form)
+
+
+@users.route("/logout")
+def logout():
+ logout_user()
+ return redirect(url_for('main.home'))
+
+
+@users.route("/account", methods=['GET', 'POST'])
+@login_required
+def account():
+ form = UpdateAccountForm()
+ if form.validate_on_submit():
+ if form.picture.data:
+ picture_file = save_picture(form.picture.data)
+ current_user.image_file = picture_file
+ current_user.username = form.username.data
+ current_user.email = form.email.data
+ db.session.commit()
+ flash('Your account has been updated!', 'success')
+ return redirect(url_for('users.account'))
+ elif request.method == 'GET':
+ form.username.data = current_user.username
+ form.email.data = current_user.email
+ image_file = url_for('static', filename='profile_pics/' + current_user.image_file)
+ return render_template('account.html', title='Account',
+ image_file=image_file, form=form)
+
+
+@users.route("/user/")
+def user_posts(username):
+ page = request.args.get('page', 1, type=int)
+ user = User.query.filter_by(username=username).first_or_404()
+ posts = Post.query.filter_by(author=user)\
+ .order_by(Post.date_posted.desc())\
+ .paginate(page=page, per_page=5)
+ return render_template('user_posts.html', posts=posts, user=user)
+
+
+@users.route("/reset_password", methods=['GET', 'POST'])
+def reset_request():
+ if current_user.is_authenticated:
+ return redirect(url_for('main.home'))
+ form = RequestResetForm()
+ if form.validate_on_submit():
+ user = User.query.filter_by(email=form.email.data).first()
+ send_reset_email(user)
+ flash('An email has been sent with instructions to reset your password.', 'info')
+ return redirect(url_for('users.login'))
+ return render_template('reset_request.html', title='Reset Password', form=form)
+
+
+@users.route("/reset_password/", methods=['GET', 'POST'])
+def reset_token(token):
+ if current_user.is_authenticated:
+ return redirect(url_for('main.home'))
+ user = User.verify_reset_token(token)
+ if user is None:
+ flash('That is an invalid or expired token', 'warning')
+ return redirect(url_for('users.reset_request'))
+ form = ResetPasswordForm()
+ if form.validate_on_submit():
+ hashed_password = bcrypt.generate_password_hash(form.password.data).decode('utf-8')
+ user.password = hashed_password
+ db.session.commit()
+ flash('Your password has been updated! You are now able to log in', 'success')
+ return redirect(url_for('users.login'))
+ return render_template('reset_token.html', title='Reset Password', form=form)
diff --git a/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/utils.py b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/utils.py
new file mode 100644
index 000000000..646094ce8
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/flaskblog/users/utils.py
@@ -0,0 +1,34 @@
+
+import os
+import secrets
+from PIL import Image
+from flask import url_for, current_app
+from flask_mail import Message
+from flaskblog import mail
+
+
+def save_picture(form_picture):
+ random_hex = secrets.token_hex(8)
+ _, f_ext = os.path.splitext(form_picture.filename)
+ picture_fn = random_hex + f_ext
+ picture_path = os.path.join(current_app.root_path, 'static/profile_pics', picture_fn)
+
+ output_size = (125, 125)
+ i = Image.open(form_picture)
+ i.thumbnail(output_size)
+ i.save(picture_path)
+
+ return picture_fn
+
+
+def send_reset_email(user):
+ token = user.get_reset_token()
+ msg = Message('Password Reset Request',
+ sender='noreply@demo.com',
+ recipients=[user.email])
+ msg.body = f'''To reset your password, visit the following link:
+{url_for('users.reset_token', token=token, _external=True)}
+
+If you did not make this request then simply ignore this email and no changes will be made.
+'''
+ mail.send(msg)
diff --git a/Python/Flask_Blog/13-Deployment-Linode/requirements.txt b/Python/Flask_Blog/13-Deployment-Linode/requirements.txt
new file mode 100644
index 000000000..b4b9df5ef
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/requirements.txt
@@ -0,0 +1,20 @@
+bcrypt==3.1.4
+blinker==1.4
+certifi==2016.2.28
+cffi==1.11.5
+click==6.7
+Flask==1.0
+Flask-Bcrypt==0.7.1
+Flask-Login==0.4.1
+Flask-Mail==0.9.1
+Flask-SQLAlchemy==2.3.2
+Flask-WTF==0.14.2
+itsdangerous==0.24
+Jinja2==2.10
+MarkupSafe==1.0
+Pillow==5.3.0
+pycparser==2.18
+six==1.11.0
+SQLAlchemy==1.2.7
+Werkzeug==0.14.1
+WTForms==2.1
diff --git a/Python/Flask_Blog/13-Deployment-Linode/run.py b/Python/Flask_Blog/13-Deployment-Linode/run.py
new file mode 100644
index 000000000..d715adcd6
--- /dev/null
+++ b/Python/Flask_Blog/13-Deployment-Linode/run.py
@@ -0,0 +1,6 @@
+from flaskblog import create_app
+
+app = create_app()
+
+if __name__ == '__main__':
+ app.run(debug=True)
diff --git a/Python/Flask_Blog/quickstart-windows.bat b/Python/Flask_Blog/quickstart-windows.bat
new file mode 100644
index 000000000..6cda9c693
--- /dev/null
+++ b/Python/Flask_Blog/quickstart-windows.bat
@@ -0,0 +1,3 @@
+set FLASK_APP=flaskblog.py
+set FLASK_ENV=development
+flask run
diff --git a/Python/Flask_Blog/requirements.txt b/Python/Flask_Blog/requirements.txt
new file mode 100644
index 000000000..b4b9df5ef
--- /dev/null
+++ b/Python/Flask_Blog/requirements.txt
@@ -0,0 +1,20 @@
+bcrypt==3.1.4
+blinker==1.4
+certifi==2016.2.28
+cffi==1.11.5
+click==6.7
+Flask==1.0
+Flask-Bcrypt==0.7.1
+Flask-Login==0.4.1
+Flask-Mail==0.9.1
+Flask-SQLAlchemy==2.3.2
+Flask-WTF==0.14.2
+itsdangerous==0.24
+Jinja2==2.10
+MarkupSafe==1.0
+Pillow==5.3.0
+pycparser==2.18
+six==1.11.0
+SQLAlchemy==1.2.7
+Werkzeug==0.14.1
+WTForms==2.1
diff --git a/Python/Flask_Blog/snippets/config.json b/Python/Flask_Blog/snippets/config.json
new file mode 100644
index 000000000..ff9a6e333
--- /dev/null
+++ b/Python/Flask_Blog/snippets/config.json
@@ -0,0 +1,6 @@
+{
+ "SECRET_KEY": "YOUR_SECRET_KEY",
+ "SQLALCHEMY_DATABASE_URI": "sqlite:///site.db",
+ "EMAIL_USER": "YOUR_EMAIL",
+ "EMAIL_PASS": "YOUR_EMAIL_PASS"
+}
diff --git a/Python/Flask_Blog/snippets/nginx-ubuntu-certbot.txt b/Python/Flask_Blog/snippets/nginx-ubuntu-certbot.txt
new file mode 100644
index 000000000..9b324cb27
--- /dev/null
+++ b/Python/Flask_Blog/snippets/nginx-ubuntu-certbot.txt
@@ -0,0 +1,10 @@
+sudo apt-get update
+sudo apt-get install software-properties-common
+sudo add-apt-repository universe
+sudo add-apt-repository ppa:certbot/certbot
+sudo apt-get update
+sudo apt-get install python-certbot-nginx
+
+sudo certbot --nginx
+
+sudo certbot renew --dry-run
diff --git a/Python/Flask_Blog/snippets/nginx.conf b/Python/Flask_Blog/snippets/nginx.conf
new file mode 100644
index 000000000..168b57551
--- /dev/null
+++ b/Python/Flask_Blog/snippets/nginx.conf
@@ -0,0 +1,14 @@
+server {
+ listen 80;
+ server_name YOUR_IP_OR_DOMAIN;
+
+ location /static {
+ alias /home/YOUR_USER/YOUR_PROJECT/flaskblog/static;
+ }
+
+ location / {
+ proxy_pass http://localhost:8000;
+ include /etc/nginx/proxy_params;
+ proxy_redirect off;
+ }
+}
diff --git a/Python/Flask_Blog/snippets/supervisor.conf b/Python/Flask_Blog/snippets/supervisor.conf
new file mode 100644
index 000000000..647d1ce9c
--- /dev/null
+++ b/Python/Flask_Blog/snippets/supervisor.conf
@@ -0,0 +1,10 @@
+[program:flaskblog]
+directory=/home/YOUR_USER/YOUR_PROJECT
+command=/home/YOUR_USER/YOUR_PROJECT/venv/bin/gunicorn -w 3 run:app
+user=YOUR_USER
+autostart=true
+autorestart=true
+stopasgroup=true
+killasgroup=true
+stderr_logfile=/var/log/flaskblog/flaskblog.err.log
+stdout_logfile=/var/log/flaskblog/flaskblog.out.log
diff --git a/Python/Iterators-Coding-Problem/iter-demo.py b/Python/Iterators-Coding-Problem/iter-demo.py
new file mode 100644
index 000000000..1aa477a7c
--- /dev/null
+++ b/Python/Iterators-Coding-Problem/iter-demo.py
@@ -0,0 +1,41 @@
+
+class Sentence:
+
+ def __init__(self, sentence):
+ self.sentence = sentence
+ self.index = 0
+ self.words = self.sentence.split()
+
+ def __iter__(self):
+ return self
+
+ def __next__(self):
+ if self.index >= len(self.words):
+ raise StopIteration
+ index = self.index
+ self.index += 1
+ return self.words[index]
+
+
+def sentence(sentence):
+ for word in sentence.split():
+ yield word
+
+
+my_sentence = sentence('This is a test')
+
+# for word in my_sentence:
+# print(word)
+
+print(next(my_sentence))
+print(next(my_sentence))
+print(next(my_sentence))
+print(next(my_sentence))
+print(next(my_sentence))
+
+
+# This should have the following output:
+# This
+# is
+# a
+# test
diff --git a/Python/Iterators/iter-demo.py b/Python/Iterators/iter-demo.py
new file mode 100644
index 000000000..e4fae6da2
--- /dev/null
+++ b/Python/Iterators/iter-demo.py
@@ -0,0 +1,29 @@
+
+class MyRange:
+
+ def __init__(self, start, end):
+ self.value = start
+ self.end = end
+
+ def __iter__(self):
+ return self
+
+ def __next__(self):
+ if self.value >= self.end:
+ raise StopIteration
+ current = self.value
+ self.value += 1
+ return current
+
+
+def my_range(start):
+ current = start
+ while True:
+ yield current
+ current += 1
+
+
+nums = my_range(1)
+
+for num in nums:
+ print(num)
diff --git a/Python/Itertools/iter-demo.py b/Python/Itertools/iter-demo.py
new file mode 100644
index 000000000..b66aef3d8
--- /dev/null
+++ b/Python/Itertools/iter-demo.py
@@ -0,0 +1,65 @@
+
+import itertools
+
+
+def get_state(person):
+ return person['state']
+
+
+people = [
+ {
+ 'name': 'John Doe',
+ 'city': 'Gotham',
+ 'state': 'NY'
+ },
+ {
+ 'name': 'Jane Doe',
+ 'city': 'Kings Landing',
+ 'state': 'NY'
+ },
+ {
+ 'name': 'Corey Schafer',
+ 'city': 'Boulder',
+ 'state': 'CO'
+ },
+ {
+ 'name': 'Al Einstein',
+ 'city': 'Denver',
+ 'state': 'CO'
+ },
+ {
+ 'name': 'John Henry',
+ 'city': 'Hinton',
+ 'state': 'WV'
+ },
+ {
+ 'name': 'Randy Moss',
+ 'city': 'Rand',
+ 'state': 'WV'
+ },
+ {
+ 'name': 'Nicole K',
+ 'city': 'Asheville',
+ 'state': 'NC'
+ },
+ {
+ 'name': 'Jim Doe',
+ 'city': 'Charlotte',
+ 'state': 'NC'
+ },
+ {
+ 'name': 'Jane Taylor',
+ 'city': 'Faketown',
+ 'state': 'NC'
+ }
+]
+
+person_group = itertools.groupby(people, get_state)
+
+copy1, copy2 = itertools.tee(person_group)
+
+for key, group in person_group:
+ print(key, len(list(group)))
+ # for person in group:
+ # print(person)
+ # print()
diff --git a/Python/Itertools/snippets.txt b/Python/Itertools/snippets.txt
new file mode 100644
index 000000000..7fbafe89f
--- /dev/null
+++ b/Python/Itertools/snippets.txt
@@ -0,0 +1,54 @@
+
+letters = ['a', 'b', 'c', 'd']
+numbers = [0, 1, 2, 3]
+names = ['Corey', 'Nicole']
+
+
+
+people = [
+ {
+ 'name': 'John Doe',
+ 'city': 'Gotham',
+ 'state': 'NY'
+ },
+ {
+ 'name': 'Jane Doe',
+ 'city': 'Kings Landing',
+ 'state': 'NY'
+ },
+ {
+ 'name': 'Corey Schafer',
+ 'city': 'Boulder',
+ 'state': 'CO'
+ },
+ {
+ 'name': 'Al Einstein',
+ 'city': 'Denver',
+ 'state': 'CO'
+ },
+ {
+ 'name': 'John Henry',
+ 'city': 'Hinton',
+ 'state': 'WV'
+ },
+ {
+ 'name': 'Randy Moss',
+ 'city': 'Rand',
+ 'state': 'WV'
+ },
+ {
+ 'name': 'Nicole K',
+ 'city': 'Asheville',
+ 'state': 'NC'
+ },
+ {
+ 'name': 'Jim Doe',
+ 'city': 'Charlotte',
+ 'state': 'NC'
+ },
+ {
+ 'name': 'Jane Taylor',
+ 'city': 'Faketown',
+ 'state': 'NC'
+ }
+]
diff --git a/Python/Itertools/test.log b/Python/Itertools/test.log
new file mode 100644
index 000000000..2351d09ba
--- /dev/null
+++ b/Python/Itertools/test.log
@@ -0,0 +1,8 @@
+Date: 2018-11-08
+Author: Corey
+Description: This is a sample log file
+
+Okay, so this is a sample entry.
+I'm going to write a few more lines here.
+For the sake of this video, let's pretend this log file is thousands and thousands of lines... okay?
+
diff --git a/Python/Matplotlib/01-Introduction/finished_code.py b/Python/Matplotlib/01-Introduction/finished_code.py
new file mode 100644
index 000000000..4a64343de
--- /dev/null
+++ b/Python/Matplotlib/01-Introduction/finished_code.py
@@ -0,0 +1,31 @@
+
+from matplotlib import pyplot as plt
+
+plt.xkcd()
+
+ages_x = [18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]
+
+py_dev_y = [20046, 17100, 20000, 24744, 30500, 37732, 41247, 45372, 48876, 53850, 57287, 63016, 65998, 70003, 70000, 71496, 75370, 83640, 84666,
+ 84392, 78254, 85000, 87038, 91991, 100000, 94796, 97962, 93302, 99240, 102736, 112285, 100771, 104708, 108423, 101407, 112542, 122870, 120000]
+plt.plot(ages_x, py_dev_y, label='Python')
+
+js_dev_y = [16446, 16791, 18942, 21780, 25704, 29000, 34372, 37810, 43515, 46823, 49293, 53437, 56373, 62375, 66674, 68745, 68746, 74583, 79000,
+ 78508, 79996, 80403, 83820, 88833, 91660, 87892, 96243, 90000, 99313, 91660, 102264, 100000, 100000, 91660, 99240, 108000, 105000, 104000]
+plt.plot(ages_x, js_dev_y, label='JavaScript')
+
+dev_y = [17784, 16500, 18012, 20628, 25206, 30252, 34368, 38496, 42000, 46752, 49320, 53200, 56000, 62316, 64928, 67317, 68748, 73752, 77232,
+ 78000, 78508, 79536, 82488, 88935, 90000, 90056, 95000, 90000, 91633, 91660, 98150, 98964, 100000, 98988, 100000, 108923, 105000, 103117]
+plt.plot(ages_x, dev_y, color='#444444', linestyle='--', label='All Devs')
+
+plt.xlabel('Ages')
+plt.ylabel('Median Salary (USD)')
+plt.title('Median Salary (USD) by Age')
+
+plt.legend()
+
+plt.tight_layout()
+
+plt.savefig('plot.png')
+
+plt.show()
diff --git a/Python/Matplotlib/01-Introduction/plot.png b/Python/Matplotlib/01-Introduction/plot.png
new file mode 100644
index 000000000..a24aa9027
Binary files /dev/null and b/Python/Matplotlib/01-Introduction/plot.png differ
diff --git a/Python/Matplotlib/01-Introduction/snippets.py b/Python/Matplotlib/01-Introduction/snippets.py
new file mode 100644
index 000000000..6406500f6
--- /dev/null
+++ b/Python/Matplotlib/01-Introduction/snippets.py
@@ -0,0 +1,31 @@
+
+# Median Developer Salaries by Age
+dev_x = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
+
+dev_y = [38496, 42000, 46752, 49320, 53200,
+ 56000, 62316, 64928, 67317, 68748, 73752]
+
+
+# Median Python Developer Salaries by Age
+py_dev_x = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
+py_dev_y = [45372, 48876, 53850, 57287, 63016,
+ 65998, 70003, 70000, 71496, 75370, 83640]
+
+
+# Median JavaScript Developer Salaries by Age
+js_dev_y = [37810, 43515, 46823, 49293, 53437,
+ 56373, 62375, 66674, 68745, 68746, 74583]
+
+
+# Ages 18 to 55
+ages_x = [18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55]
+
+py_dev_y = [20046, 17100, 20000, 24744, 30500, 37732, 41247, 45372, 48876, 53850, 57287, 63016, 65998, 70003, 70000, 71496, 75370, 83640, 84666,
+ 84392, 78254, 85000, 87038, 91991, 100000, 94796, 97962, 93302, 99240, 102736, 112285, 100771, 104708, 108423, 101407, 112542, 122870, 120000]
+
+js_dev_y = [16446, 16791, 18942, 21780, 25704, 29000, 34372, 37810, 43515, 46823, 49293, 53437, 56373, 62375, 66674, 68745, 68746, 74583, 79000,
+ 78508, 79996, 80403, 83820, 88833, 91660, 87892, 96243, 90000, 99313, 91660, 102264, 100000, 100000, 91660, 99240, 108000, 105000, 104000]
+
+dev_y = [17784, 16500, 18012, 20628, 25206, 30252, 34368, 38496, 42000, 46752, 49320, 53200, 56000, 62316, 64928, 67317, 68748, 73752, 77232,
+ 78000, 78508, 79536, 82488, 88935, 90000, 90056, 95000, 90000, 91633, 91660, 98150, 98964, 100000, 98988, 100000, 108923, 105000, 103117]
diff --git a/Python/Matplotlib/02-BarCharts/data.csv b/Python/Matplotlib/02-BarCharts/data.csv
new file mode 100644
index 000000000..e23c981ad
--- /dev/null
+++ b/Python/Matplotlib/02-BarCharts/data.csv
@@ -0,0 +1,87570 @@
+Responder_id,LanguagesWorkedWith
+1,HTML/CSS;Java;JavaScript;Python
+2,C++;HTML/CSS;Python
+3,HTML/CSS
+4,C;C++;C#;Python;SQL
+5,C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+6,Java;R;SQL
+7,HTML/CSS;JavaScript
+8,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+9,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript;WebAssembly;Other(s):
+10,C#;Go;JavaScript;Python;R;SQL
+11,Other(s):
+12,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL
+13,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14,C++
+15,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+16,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;VBA
+17,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+18,Python;R
+19,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+21,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Kotlin;Python;Rust;SQL;Swift
+22,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+23,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+24,HTML/CSS;JavaScript;PHP;TypeScript
+25,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+27,C++;JavaScript;Python;Ruby;SQL;TypeScript
+28,JavaScript;TypeScript
+29,Bash/Shell/PowerShell;JavaScript;SQL
+31,Python
+32,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+33,C++;Python;R
+34,HTML/CSS;JavaScript
+35,HTML/CSS;JavaScript
+36,Java;Kotlin;Python
+37,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+38,C#;HTML/CSS;JavaScript;SQL
+39,C#;JavaScript;SQL;TypeScript
+40,C#;HTML/CSS
+41,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+42,HTML/CSS;JavaScript;PHP;TypeScript
+43,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+44,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+45,Python
+46,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+47,Java;PHP;Ruby
+48,HTML/CSS;PHP;SQL
+49,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+50,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+52,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;TypeScript
+53,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+55,Java;Python;SQL
+56,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+57,JavaScript;Python
+58,C#;Java;SQL
+59,HTML/CSS;JavaScript;PHP;SQL
+60,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Ruby;SQL
+61,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+62,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript;VBA
+63,Bash/Shell/PowerShell;Clojure;Java;Python;Other(s):
+64,Bash/Shell/PowerShell;C;C++;C#
+65,Assembly;C;C++;C#;HTML/CSS;Java
+66,Clojure;Go;HTML/CSS;Java;JavaScript;R;SQL
+67,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+68,HTML/CSS;Java;JavaScript;Python
+69,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+70,C#;HTML/CSS;JavaScript;SQL
+71,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+72,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+73,SQL
+74,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+75,HTML/CSS;JavaScript
+76,PHP;SQL
+77,HTML/CSS;JavaScript;PHP;SQL
+78,HTML/CSS;Java;JavaScript;Kotlin;Python
+79,C#;HTML/CSS;JavaScript;TypeScript
+80,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81,Assembly;Bash/Shell/PowerShell;C;C++;Python
+82,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust
+83,HTML/CSS;JavaScript
+84,C;C++;C#;Java;Kotlin;PHP;SQL
+85,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+86,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+87,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+88,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+89,Bash/Shell/PowerShell;Python
+90,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+91,HTML/CSS;JavaScript;TypeScript
+92,HTML/CSS;Java;JavaScript;Kotlin;SQL;VBA
+93,Python;SQL
+94,C#;HTML/CSS;JavaScript;SQL
+95,C#;HTML/CSS;JavaScript;Python;R;SQL
+96,C;C++;Java;Python;R;Scala;SQL
+97,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+98,HTML/CSS;Java;JavaScript;SQL
+99,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+100,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+101,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+102,C#;HTML/CSS;JavaScript;SQL;TypeScript
+103,Clojure;Go;Java;Kotlin
+104,C#;HTML/CSS;TypeScript
+105,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+106,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+107,HTML/CSS;Java;Python
+108,C++;Python
+109,C#;HTML/CSS;JavaScript;SQL
+110,Python;SQL
+111,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+112,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;VBA
+113,Bash/Shell/PowerShell;C;C++
+114,Bash/Shell/PowerShell;C++;Erlang;JavaScript;PHP;Python
+115,Assembly;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+116,Scala;Other(s):
+117,C#;HTML/CSS;JavaScript;SQL;TypeScript
+118,Bash/Shell/PowerShell;C;C++
+119,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+120,Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+121,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+122,Assembly;Bash/Shell/PowerShell;C++;Python;SQL
+123,HTML/CSS;JavaScript;TypeScript
+124,HTML/CSS;Java;SQL
+125,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Scala
+126,C#;SQL
+127,Bash/Shell/PowerShell;C;Python
+128,Bash/Shell/PowerShell;Go;Ruby
+129,C++;Python;R
+130,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;Python;Ruby;SQL
+131,Java
+132,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;TypeScript
+133,JavaScript;PHP;SQL
+134,C;C++;HTML/CSS;JavaScript;SQL
+135,Go;HTML/CSS;JavaScript;TypeScript
+136,C#;Java;PHP;Python
+137,HTML/CSS;Java;JavaScript;PHP;SQL
+139,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+140,Java;JavaScript;Kotlin;PHP;SQL
+141,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+142,Bash/Shell/PowerShell;C#
+143,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+144,Java;SQL
+145,Assembly;C++;Python;VBA
+146,Bash/Shell/PowerShell;C;Python;Scala
+147,HTML/CSS;Java;JavaScript;Kotlin
+148,HTML/CSS;JavaScript;TypeScript
+149,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+150,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+151,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+152,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift;Other(s):
+153,C;C++;Python
+154,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+156,Bash/Shell/PowerShell;Python
+157,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+158,Java;SQL;Other(s):
+159,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+160,C#
+161,HTML/CSS;JavaScript;PHP
+162,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+163,C#;HTML/CSS;JavaScript;SQL;Other(s):
+164,C#;HTML/CSS;JavaScript;SQL
+165,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;SQL
+166,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+167,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+168,Bash/Shell/PowerShell;Python
+169,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+170,Clojure;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+171,Assembly;C;C++;C#;HTML/CSS;Java;Objective-C;PHP;Python;R;SQL;Swift
+172,HTML/CSS;JavaScript;Objective-C;SQL
+173,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+174,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R
+175,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+176,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+177,C#;Python;SQL
+178,JavaScript;PHP;Python;Ruby;SQL;TypeScript
+179,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+181,HTML/CSS;JavaScript
+182,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+183,Dart;Go;Java;Kotlin;Swift
+184,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Objective-C;Python;Rust;Swift
+185,Bash/Shell/PowerShell;Java;Kotlin
+186,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+187,HTML/CSS;JavaScript;Ruby;Scala;SQL
+188,C#;Python;R;SQL;VBA
+189,C++;HTML/CSS;JavaScript;Python;SQL
+190,Java;Scala;SQL;TypeScript
+191,C#;HTML/CSS;JavaScript;SQL;TypeScript
+192,Bash/Shell/PowerShell;JavaScript;Python
+193,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+194,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+195,C#;TypeScript;Other(s):
+196,C#;HTML/CSS;JavaScript;SQL;TypeScript
+197,HTML/CSS;R;VBA
+198,HTML/CSS;Java;JavaScript;Python;SQL
+199,R;SQL
+200,Java;JavaScript;SQL;VBA
+201,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala
+202,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+203,C;C++;HTML/CSS;JavaScript;PHP;SQL
+204,Python;Other(s):
+205,C#;HTML/CSS;JavaScript;PHP
+206,Scala;SQL
+207,Java
+208,Other(s):
+209,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+210,C++;Go;Java;JavaScript;Python;Rust;WebAssembly
+211,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+212,C#;HTML/CSS;Java;JavaScript;PHP
+213,Go;Python
+214,R;Other(s):
+215,Python;Rust
+216,Go;Java;Python
+217,Go;HTML/CSS;JavaScript;PHP;TypeScript
+218,HTML/CSS;JavaScript;PHP;SQL
+219,C#;HTML/CSS;JavaScript;SQL
+220,C#;HTML/CSS;JavaScript;SQL
+221,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+222,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Other(s):
+223,Java;Kotlin
+224,Go
+225,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+226,HTML/CSS;JavaScript;PHP;Python;SQL
+227,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+228,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+229,HTML/CSS;Java;JavaScript;Python;TypeScript
+230,Bash/Shell/PowerShell;Go;Python
+231,Elixir;Go;JavaScript;Ruby;SQL
+232,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript
+233,C++;Python
+234,Bash/Shell/PowerShell;C;Python
+235,HTML/CSS;Java;Python;SQL
+236,HTML/CSS;JavaScript
+237,C++;JavaScript;Rust
+238,HTML/CSS;JavaScript;Objective-C;PHP;Python
+239,C#;HTML/CSS;JavaScript;TypeScript
+240,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+241,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+242,HTML/CSS;Java;JavaScript;SQL;TypeScript
+243,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+244,Assembly;Bash/Shell/PowerShell;C;Python;VBA
+245,C#;JavaScript;TypeScript
+246,C#;HTML/CSS;JavaScript;SQL;TypeScript
+247,C++;C#
+248,HTML/CSS;Java;JavaScript;Python;SQL
+249,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+250,Python;Other(s):
+251,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;VBA
+252,HTML/CSS;JavaScript;Rust;Swift;Other(s):
+253,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+254,C#;Python;SQL;TypeScript
+255,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+256,C;C++;Java
+257,Bash/Shell/PowerShell;Other(s):
+258,C;HTML/CSS;Java;JavaScript;PHP;Python
+259,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+260,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+261,HTML/CSS;JavaScript
+262,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+263,HTML/CSS;JavaScript;Kotlin;Python
+264,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+265,HTML/CSS;JavaScript
+266,HTML/CSS;JavaScript;TypeScript;Other(s):
+267,HTML/CSS;JavaScript;Python;Ruby
+268,C;Java;PHP;Ruby
+269,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+270,C++;HTML/CSS;JavaScript
+271,C#;JavaScript;SQL
+272,HTML/CSS;JavaScript;PHP
+273,Bash/Shell/PowerShell;C++;Clojure;Erlang;HTML/CSS;Java;JavaScript;Ruby;Scala
+274,Java;JavaScript
+275,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Rust;SQL;TypeScript
+276,HTML/CSS;Java;JavaScript;Scala;SQL
+277,Bash/Shell/PowerShell;C;C++;Python
+278,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+279,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+280,C#;HTML/CSS;JavaScript;SQL;TypeScript
+281,C#;HTML/CSS;Java;JavaScript;TypeScript
+282,Python;SQL;Swift
+283,HTML/CSS;JavaScript;TypeScript
+284,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java
+285,C#;HTML/CSS;JavaScript;PHP;SQL
+286,Dart;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+287,Java;Kotlin
+288,HTML/CSS;JavaScript;PHP;SQL
+289,C++;C#;PHP;Rust;TypeScript
+290,HTML/CSS;PHP;Python
+291,Go;HTML/CSS;Python;SQL;TypeScript
+292,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+293,HTML/CSS;Java;JavaScript;SQL
+295,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript;WebAssembly
+296,HTML/CSS;Java;JavaScript;SQL
+297,HTML/CSS;Java;JavaScript;SQL;TypeScript
+298,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+299,Assembly;C;C++;Java;Python;SQL
+300,HTML/CSS;Java;JavaScript;SQL
+301,C++;C#;Clojure;JavaScript;PHP;Python;SQL;VBA
+302,Bash/Shell/PowerShell;C#;Python;Other(s):
+303,JavaScript
+304,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+305,C#;HTML/CSS;JavaScript;SQL
+306,C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+307,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;R;SQL
+308,HTML/CSS;JavaScript;Ruby
+309,Java
+310,C#;HTML/CSS;JavaScript;SQL;Swift
+311,Assembly;C;C++;C#;HTML/CSS;Java;Python;Scala;SQL
+312,Bash/Shell/PowerShell;Python;Ruby;SQL
+313,C;C#;HTML/CSS;PHP;Python
+314,C;Python
+315,C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+316,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+317,Java;SQL
+318,Bash/Shell/PowerShell;Java
+319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+320,C#;HTML/CSS;JavaScript;SQL;TypeScript
+321,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+322,C#;HTML/CSS;Java;Python
+323,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+324,C#;HTML/CSS;JavaScript;SQL;TypeScript
+325,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+326,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+327,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+328,HTML/CSS;Java;JavaScript;TypeScript
+329,C;C++;C#;F#;HTML/CSS;JavaScript;Rust;SQL;TypeScript;Other(s):
+330,Java;Kotlin
+331,Bash/Shell/PowerShell;C++;C#;Python
+332,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+333,Python;Rust;Scala
+334,Bash/Shell/PowerShell;C;C++;Python
+335,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+336,Bash/Shell/PowerShell;JavaScript;Python;Rust;SQL;TypeScript
+337,Python;R
+338,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+339,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Swift
+340,C#;HTML/CSS;SQL
+341,C++;C#;SQL
+342,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+343,C++
+344,Assembly;C#;HTML/CSS;JavaScript;SQL
+345,Java;JavaScript
+346,Java
+347,Java
+348,HTML/CSS;PHP
+349,C;C++;HTML/CSS;Python
+350,C;C++;Elixir;HTML/CSS;Java;Kotlin;PHP;Ruby;SQL;Other(s):
+351,Assembly;C;C++;Java;JavaScript;Python;SQL
+352,HTML/CSS;JavaScript;Ruby;TypeScript
+353,HTML/CSS;JavaScript;TypeScript
+354,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+355,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+356,HTML/CSS;JavaScript;PHP;Python;SQL
+357,HTML/CSS;TypeScript
+358,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+359,Java;JavaScript;Python
+360,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+361,Elixir;Erlang;F#;Go;HTML/CSS;JavaScript;PHP;SQL
+362,HTML/CSS;Java;JavaScript;SQL
+363,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+364,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+365,Java;SQL
+366,HTML/CSS;PHP;SQL
+367,HTML/CSS;JavaScript
+368,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+369,Python
+370,R;SQL
+371,Bash/Shell/PowerShell;SQL
+372,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+373,C#;HTML/CSS;Java;JavaScript;Python
+374,HTML/CSS;Python;SQL;TypeScript
+375,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+376,C++;Python
+377,HTML/CSS;JavaScript;PHP;SQL
+378,C#;HTML/CSS;JavaScript;SQL;TypeScript
+379,Bash/Shell/PowerShell;C;C#;Java;Python
+380,Bash/Shell/PowerShell;JavaScript;Python
+381,C#;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+382,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+383,Bash/Shell/PowerShell
+384,Bash/Shell/PowerShell;Go;SQL;TypeScript
+385,HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+386,HTML/CSS;JavaScript;PHP
+387,Java;Python
+388,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+389,Bash/Shell/PowerShell;JavaScript;Objective-C;Ruby;Swift
+390,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;Scala
+391,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+392,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+393,Java;Kotlin;PHP;SQL
+394,C#;HTML/CSS;TypeScript;Other(s):
+395,HTML/CSS;Java;JavaScript;SQL
+396,HTML/CSS;JavaScript
+397,HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL
+398,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+399,C++
+400,Bash/Shell/PowerShell;C++;Java;Kotlin;PHP
+401,JavaScript;Python;Ruby;SQL;TypeScript
+402,C#
+403,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL
+404,C#;SQL;TypeScript
+405,Java;JavaScript;TypeScript
+406,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+407,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+408,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL;TypeScript;WebAssembly
+409,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP
+410,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+411,C;C++;JavaScript;Python;R;SQL
+412,HTML/CSS;JavaScript;PHP;Python;SQL
+413,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+414,Bash/Shell/PowerShell;JavaScript;Python;SQL
+415,HTML/CSS;JavaScript;Ruby
+416,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+417,HTML/CSS;JavaScript
+418,HTML/CSS;JavaScript;SQL;VBA
+419,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+420,HTML/CSS;JavaScript;Python
+421,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+422,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;Other(s):
+423,C++;C#
+424,C;C++
+425,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;VBA
+426,Java
+427,C#;HTML/CSS;JavaScript;SQL;TypeScript
+428,Bash/Shell/PowerShell;Java;Python
+429,C#
+430,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+431,VBA;Other(s):
+432,HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA;Other(s):
+433,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+434,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+435,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Swift
+436,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+438,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;R;SQL
+439,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+440,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;SQL
+441,C#;HTML/CSS;Java;JavaScript;PHP
+442,HTML/CSS;JavaScript
+443,HTML/CSS;JavaScript;TypeScript
+444,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+445,C#;SQL
+446,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+447,Bash/Shell/PowerShell;Java;Python
+448,Bash/Shell/PowerShell;Java;SQL;Other(s):
+449,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+450,C#;HTML/CSS;JavaScript;TypeScript
+451,Bash/Shell/PowerShell;C;C++;C#;Java;Python;Rust
+452,SQL;VBA
+453,C++;C#;SQL
+454,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+455,C++;Python;Ruby
+456,Bash/Shell/PowerShell;JavaScript;Python;SQL
+457,HTML/CSS;JavaScript
+458,Assembly;C;Python;Rust
+459,C#;SQL
+460,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+461,HTML/CSS;JavaScript;PHP;SQL
+462,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+463,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+464,C;Python
+465,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+466,HTML/CSS;JavaScript;TypeScript
+467,Java;Kotlin;Python;SQL
+468,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Other(s):
+469,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+470,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+471,Java;JavaScript
+472,HTML/CSS;JavaScript;PHP;Python;SQL
+473,C#;JavaScript
+474,Java;JavaScript;Other(s):
+475,C#;HTML/CSS;JavaScript;PHP;TypeScript
+476,HTML/CSS;JavaScript;PHP;Scala
+477,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+478,C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+479,C#;HTML/CSS;JavaScript;SQL;Other(s):
+480,C;C++;Dart;Java;Python
+481,Bash/Shell/PowerShell;Kotlin
+482,Bash/Shell/PowerShell;HTML/CSS;PHP
+483,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+484,HTML/CSS;Java;PHP;Python;SQL
+485,Java;JavaScript;Scala
+486,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+487,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+488,C;C++;C#;Java
+489,C++;Python
+490,HTML/CSS;JavaScript;Ruby
+491,Java;Objective-C
+492,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+493,C#;Java;SQL;Other(s):
+494,Assembly;C;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+495,R
+496,Bash/Shell/PowerShell;Python;SQL
+497,Dart;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+498,C++;HTML/CSS;JavaScript;Python
+499,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+500,C++;C#
+501,HTML/CSS
+502,C++;C#
+503,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+504,Bash/Shell/PowerShell;Python;SQL
+505,C;C++;HTML/CSS;Java;SQL
+506,Java
+507,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+508,C;C++;HTML/CSS;JavaScript
+509,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+510,Python
+511,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+512,Bash/Shell/PowerShell;Python;Other(s):
+513,C++;Rust
+514,HTML/CSS;JavaScript;Python;Ruby;TypeScript
+515,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+516,Bash/Shell/PowerShell;C++;Python
+517,Assembly;C++;F#;HTML/CSS;PHP;Python;R;Rust;TypeScript;Other(s):
+518,C;HTML/CSS;Java;JavaScript;SQL
+519,HTML/CSS;PHP
+520,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+521,HTML/CSS;JavaScript
+522,HTML/CSS;Python
+523,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+524,Python;Other(s):
+525,C#;SQL;VBA
+526,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+527,HTML/CSS;JavaScript;Objective-C;Swift
+528,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+529,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+530,C;C++;C#
+531,C#
+532,Bash/Shell/PowerShell;C;C++;Java;Python
+533,C#;Java;JavaScript;SQL
+535,Elixir;VBA
+536,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+537,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+538,HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+539,Bash/Shell/PowerShell;JavaScript;Python;SQL
+540,JavaScript;Python
+541,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+542,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+543,C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+544,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+545,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+546,C;Java;SQL
+547,C#;HTML/CSS;JavaScript;SQL
+548,Python;SQL;VBA
+550,C#;HTML/CSS;JavaScript;SQL
+551,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+552,HTML/CSS;Java;JavaScript;PHP
+553,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+554,Go;JavaScript;PHP;Ruby;SQL;TypeScript
+555,C#;HTML/CSS;JavaScript;SQL
+556,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+557,C;C++;PHP;Python;SQL;VBA
+558,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+559,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL;VBA
+560,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+561,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+562,C#;JavaScript;SQL
+563,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+564,C;C++;Python;R;SQL;Other(s):
+565,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+566,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+567,Bash/Shell/PowerShell;C;Java;JavaScript;Objective-C;Rust;Swift;Other(s):
+568,C++;C#;Clojure;HTML/CSS;JavaScript;Python;SQL
+569,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+571,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;R;Rust;Scala
+572,Assembly;C;C++;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript
+573,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;SQL
+574,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+575,Bash/Shell/PowerShell;Go;Python;SQL
+576,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+577,Bash/Shell/PowerShell;Python;Other(s):
+578,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Swift
+579,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+580,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+581,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+582,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+583,Java;Ruby;Scala;SQL;Other(s):
+584,Java;Python
+585,C#;Java;Python;R;VBA
+586,Java;Python;Ruby
+587,Bash/Shell/PowerShell;C#;Java;Other(s):
+588,C#
+589,C#;HTML/CSS;JavaScript;SQL;VBA
+590,C#;SQL
+591,C#;JavaScript
+592,C;C++;HTML/CSS;PHP;Python;SQL
+594,HTML/CSS;Java;JavaScript;Kotlin;PHP
+595,C#;HTML/CSS;JavaScript;SQL;TypeScript
+596,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+597,Java;JavaScript;PHP;Python;SQL
+598,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+599,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+600,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+601,HTML/CSS;PHP;SQL
+602,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+603,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+604,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+605,Java;Kotlin
+606,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+607,C#;JavaScript;SQL
+608,Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;Python;SQL
+609,HTML/CSS;JavaScript;Python
+610,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;Other(s):
+611,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+612,Python;Other(s):
+613,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;TypeScript
+614,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL;TypeScript
+615,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+616,Ruby;SQL
+617,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+618,C;C++;C#;Java;PHP;SQL
+619,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+620,HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+621,Bash/Shell/PowerShell;SQL;Other(s):
+622,Java;Objective-C;SQL;Swift
+623,Objective-C;Swift
+624,C++;HTML/CSS;JavaScript;PHP;Python
+625,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+626,HTML/CSS;Java;JavaScript;SQL
+627,Assembly;Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+628,Bash/Shell/PowerShell;JavaScript;SQL;TypeScript
+629,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;SQL
+630,C#;HTML/CSS;JavaScript;SQL;TypeScript
+631,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+632,C#;HTML/CSS;JavaScript;SQL
+633,C;C++;Python;Rust
+634,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Scala;SQL;Swift;TypeScript
+635,Bash/Shell/PowerShell;JavaScript;Python
+636,Bash/Shell/PowerShell;C;C++;Go;Java
+637,C++;C#;HTML/CSS;Java;JavaScript;SQL
+638,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust
+639,HTML/CSS;JavaScript;Kotlin;SQL;Swift
+640,HTML/CSS;JavaScript;SQL
+641,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+642,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;TypeScript
+643,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+645,C++;C#;HTML/CSS;SQL
+646,JavaScript;PHP;Python;SQL;VBA
+647,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Rust;SQL;TypeScript
+648,C#;HTML/CSS;JavaScript;SQL;VBA
+649,Java;JavaScript;Python;SQL
+650,Bash/Shell/PowerShell;C++;JavaScript;Python
+651,Python
+652,HTML/CSS;Java
+653,C#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+654,Clojure;HTML/CSS;Java;JavaScript
+655,Assembly;C++;C#;Java;Scala;Other(s):
+656,C++;Python;R;Other(s):
+657,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+658,C++;HTML/CSS;Java;JavaScript;TypeScript
+659,Python
+660,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+661,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+662,Python;SQL;VBA
+663,HTML/CSS;JavaScript;Python;SQL
+664,HTML/CSS;Java;JavaScript;PHP
+665,Ruby;SQL
+666,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+667,HTML/CSS;JavaScript
+668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+669,Bash/Shell/PowerShell;C;Python;Rust;SQL
+670,C#;HTML/CSS;JavaScript;SQL;Swift
+671,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+672,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+673,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+674,C#;HTML/CSS;JavaScript;Python
+675,C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+676,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+677,Other(s):
+678,Java;JavaScript;Scala;SQL
+679,C#;HTML/CSS;Python;SQL
+680,C#;HTML/CSS;JavaScript;SQL
+681,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+682,HTML/CSS;Objective-C;Swift
+683,HTML/CSS;JavaScript;PHP;Python;SQL
+684,C#;HTML/CSS;JavaScript;TypeScript
+685,C#;HTML/CSS;Java;SQL
+686,C#;SQL
+687,C;C++;Java;Python;SQL;Other(s):
+688,HTML/CSS;JavaScript;PHP;Python;SQL
+689,C++;C#;HTML/CSS;Java;JavaScript;Other(s):
+690,Assembly
+691,HTML/CSS;JavaScript;PHP;SQL
+692,HTML/CSS;Java;JavaScript;SQL
+693,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+694,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+695,C#;HTML/CSS;JavaScript;TypeScript
+696,C#;SQL
+697,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+698,HTML/CSS;Java;JavaScript;Python
+699,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+700,HTML/CSS;JavaScript;Python;SQL;TypeScript
+701,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Rust;SQL
+702,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+703,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+704,Dart;HTML/CSS;Java;PHP;SQL
+705,Go;JavaScript
+706,Java;Python;Scala;SQL
+707,C#;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL
+708,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;SQL
+709,JavaScript;TypeScript
+710,Assembly;C;HTML/CSS;Java;JavaScript;Python;R
+711,Java
+712,HTML/CSS;JavaScript
+713,HTML/CSS;JavaScript;PHP;SQL
+714,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+715,HTML/CSS;JavaScript;PHP;SQL
+716,HTML/CSS;JavaScript;PHP;Other(s):
+717,C#;HTML/CSS;Java;PHP;SQL
+718,C#;HTML/CSS;JavaScript;SQL;TypeScript
+719,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+720,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+721,Bash/Shell/PowerShell;Go;SQL;TypeScript
+723,JavaScript;Python;R;Other(s):
+724,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+725,C#;HTML/CSS;JavaScript;SQL
+726,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+727,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+728,Python
+729,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+730,C;HTML/CSS;JavaScript;PHP;SQL
+731,C;C++;HTML/CSS;JavaScript;PHP;SQL
+732,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+733,C#;HTML/CSS;JavaScript;SQL
+734,C#;SQL
+735,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+736,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+737,C;C++;Python
+738,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+739,Bash/Shell/PowerShell;Java;JavaScript;Swift
+740,Bash/Shell/PowerShell;Java;PHP;Python
+741,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+742,Go;JavaScript;Python;SQL;TypeScript
+743,HTML/CSS;JavaScript;PHP;Ruby
+744,C;C++;C#;HTML/CSS;JavaScript;Kotlin;Swift
+745,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+746,Go;HTML/CSS;Python
+747,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+748,Java;JavaScript
+749,C#;HTML/CSS;JavaScript;SQL
+750,Dart;HTML/CSS;Java;Kotlin;Python
+751,HTML/CSS;JavaScript;PHP;Python;SQL
+752,C#
+753,C#;HTML/CSS;JavaScript;TypeScript
+754,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+755,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+756,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+757,C;SQL
+758,Java;Python
+759,Bash/Shell/PowerShell;Java;Python;Scala
+760,C#;JavaScript;SQL;TypeScript
+761,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+762,C#;HTML/CSS;JavaScript;SQL
+763,Python;Rust;TypeScript
+764,C#;HTML/CSS;JavaScript;SQL
+765,Java;JavaScript;Ruby
+766,HTML/CSS;JavaScript;PHP
+767,HTML/CSS;JavaScript;PHP;SQL
+768,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+769,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+770,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+771,Bash/Shell/PowerShell;Go;Java;SQL
+772,C;C++;C#;TypeScript
+773,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+774,Ruby;Scala;SQL;Other(s):
+775,Java
+776,HTML/CSS;JavaScript;Python;SQL
+777,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+778,Assembly;C++;Java;JavaScript;VBA
+779,C;Python;SQL
+780,HTML/CSS;JavaScript;TypeScript
+781,HTML/CSS;Java;JavaScript;SQL;TypeScript
+782,HTML/CSS;JavaScript;SQL;VBA
+783,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+784,HTML/CSS
+785,HTML/CSS;JavaScript;PHP;SQL
+786,Java;JavaScript;Ruby
+787,C#;SQL;TypeScript
+788,C++;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+789,C#;F#;Python
+790,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+791,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;Python;SQL;TypeScript
+792,C;C#;Dart;JavaScript;PHP;Python;Rust;SQL;TypeScript
+793,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;Ruby;Other(s):
+794,SQL;VBA;Other(s):
+795,C#;HTML/CSS;JavaScript;Python;R;SQL
+796,C#;HTML/CSS;JavaScript;SQL
+797,HTML/CSS;JavaScript
+798,Java
+799,C;C++;Python
+800,JavaScript;PHP;SQL
+801,HTML/CSS;Java;JavaScript;SQL
+802,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+803,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+804,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+805,Java;JavaScript
+806,Python;SQL
+807,Bash/Shell/PowerShell;C++;JavaScript
+808,HTML/CSS;Java;JavaScript;SQL
+810,HTML/CSS;Java;JavaScript;Kotlin;Python
+811,Bash/Shell/PowerShell;C;C++;C#;JavaScript
+812,C#;HTML/CSS;JavaScript;SQL;TypeScript
+813,HTML/CSS;Java
+814,Bash/Shell/PowerShell;C#;JavaScript;SQL;Other(s):
+815,HTML/CSS;Objective-C
+816,HTML/CSS;JavaScript;PHP;SQL;Swift
+817,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL
+818,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+819,Assembly;C;C++;C#;HTML/CSS;Python;TypeScript;Other(s):
+820,Assembly;C++;HTML/CSS;JavaScript;Python
+821,C#
+822,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+823,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+824,Python
+825,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+826,Java;Python;R
+827,C;HTML/CSS;Java;JavaScript;PHP;SQL
+828,Bash/Shell/PowerShell;C#;SQL
+829,Java;JavaScript
+830,C#;HTML/CSS;Java;JavaScript;PHP;Scala
+831,C;C++;JavaScript
+832,C;C#;Java;Kotlin;PHP;Python;SQL
+833,Other(s):
+834,HTML/CSS;JavaScript;PHP;SQL
+835,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+836,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+837,Java;PHP
+838,Java;Python
+839,C
+841,Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+842,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+843,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+844,HTML/CSS;Java;JavaScript;Ruby
+845,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+846,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+847,C;Java;Python;SQL
+848,HTML/CSS;JavaScript;PHP;SQL
+849,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+850,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+851,Python;R;Other(s):
+852,Java;Python;SQL
+853,HTML/CSS;JavaScript;TypeScript
+854,C#;HTML/CSS;Java;JavaScript;Python;R
+855,HTML/CSS;JavaScript;PHP;SQL
+856,C#;Java;SQL
+857,C#;Java;JavaScript;Python
+858,C;HTML/CSS;Java;JavaScript;Python;SQL
+859,C#;F#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+860,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Swift
+861,C#;HTML/CSS;JavaScript;Python;SQL
+862,Bash/Shell/PowerShell;C++;C#
+863,HTML/CSS;PHP;VBA
+864,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+865,C#;Java;JavaScript;TypeScript
+866,C++;Python;Scala
+867,C#;HTML/CSS;JavaScript
+868,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+869,Java;JavaScript;Kotlin
+870,Python;SQL
+871,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+872,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+873,C++;C#
+874,Bash/Shell/PowerShell;Go;JavaScript;Python;Rust;SQL
+875,Dart;HTML/CSS;JavaScript;Kotlin;Rust
+876,Java;SQL;Other(s):
+877,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+878,HTML/CSS;JavaScript;Python;TypeScript
+879,C;C++
+880,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+881,C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+882,C++;HTML/CSS;JavaScript;Rust;SQL;TypeScript;Other(s):
+883,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+884,C;Go;JavaScript;SQL;TypeScript
+885,Java;JavaScript;PHP;Python
+886,C++;Java;SQL;Swift
+887,C#;HTML/CSS;JavaScript;SQL
+888,HTML/CSS;Java;PHP;SQL
+889,C#;Clojure;JavaScript;PHP;Python;R;SQL
+890,C#;Java;JavaScript;SQL
+891,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python
+892,Bash/Shell/PowerShell;Java;SQL
+893,Java
+894,C#;Clojure;JavaScript;TypeScript
+895,Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+896,C#;HTML/CSS;Java;JavaScript;SQL
+897,Bash/Shell/PowerShell;C;C++;Python
+898,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+899,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+900,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+901,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+902,C;C++;C#;HTML/CSS
+903,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+904,Bash/Shell/PowerShell;C++;R;Other(s):
+906,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+907,Bash/Shell/PowerShell;Python;R;Other(s):
+908,Dart;Java;JavaScript;Kotlin;Swift
+909,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+910,Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+911,C#;Java;SQL
+912,HTML/CSS;JavaScript
+913,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP
+914,C#;HTML/CSS;JavaScript;SQL
+915,Bash/Shell/PowerShell;C#;F#;Java;Kotlin;Scala;SQL;TypeScript
+916,C#
+917,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+918,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+919,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+920,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+921,C#
+922,C++;HTML/CSS;JavaScript;R;Ruby;SQL
+923,Bash/Shell/PowerShell;Java;JavaScript;Python;R;Ruby
+924,C#
+925,C;C++
+926,HTML/CSS;Java;Python;Rust;SQL
+927,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+928,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;Ruby
+929,C#;HTML/CSS;JavaScript;Objective-C;Python;Swift
+930,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Ruby;SQL;TypeScript
+931,Bash/Shell/PowerShell;C;C++;JavaScript
+932,Bash/Shell/PowerShell;HTML/CSS;PHP
+933,Bash/Shell/PowerShell;C;C++;Python;R;SQL;Other(s):
+934,JavaScript;PHP;SQL
+935,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+936,Python;Other(s):
+937,Dart;Java;Swift
+938,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+939,C#;SQL;Other(s):
+940,HTML/CSS;Java;PHP;SQL
+941,C;C++;C#;Python
+942,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL;Other(s):
+943,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift
+944,C;C++;HTML/CSS;Objective-C;Swift
+945,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+946,HTML/CSS;JavaScript;TypeScript
+947,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+948,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+949,C++;HTML/CSS;Python;R;SQL
+950,C#;HTML/CSS;JavaScript;SQL
+951,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+952,C#;HTML/CSS;JavaScript;SQL;TypeScript
+953,JavaScript;Ruby
+954,C;Python
+955,HTML/CSS;Java;JavaScript
+956,HTML/CSS;JavaScript;PHP;SQL
+957,C#;HTML/CSS;Java;JavaScript;SQL
+958,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL
+959,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+960,Assembly;HTML/CSS;Java;JavaScript;SQL
+961,JavaScript;Python
+962,HTML/CSS;JavaScript
+963,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+964,Python;R
+965,C;HTML/CSS;Java;Python;R;TypeScript;Other(s):
+966,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+967,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;WebAssembly
+968,Bash/Shell/PowerShell;C;Go;Python;SQL
+969,Java
+970,C#;HTML/CSS;Java;JavaScript;Python;SQL
+971,Bash/Shell/PowerShell;Go;Ruby
+972,Bash/Shell/PowerShell;C;Scala;SQL
+973,HTML/CSS;Java;JavaScript;R;SQL
+974,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Swift
+975,C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+976,Java
+977,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+978,Java;JavaScript;TypeScript
+979,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+980,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+981,C#;HTML/CSS;JavaScript;SQL;TypeScript
+982,C#;JavaScript;Python;TypeScript
+983,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+984,C++;Go;Other(s):
+985,C#;HTML/CSS;JavaScript;SQL
+986,Assembly;Bash/Shell/PowerShell;C;R;Ruby;SQL;Other(s):
+987,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+988,JavaScript;Ruby;SQL
+989,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+990,Python;SQL
+991,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+992,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+993,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;SQL;VBA
+994,Bash/Shell/PowerShell;JavaScript;Python;SQL
+995,PHP;Python;SQL
+996,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Other(s):
+997,Bash/Shell/PowerShell;Python;SQL
+998,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Swift
+999,HTML/CSS;Java;JavaScript;Python;SQL
+1000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+1001,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+1002,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+1003,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+1004,Objective-C;Swift
+1005,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+1006,Python
+1007,Clojure;Go;Python
+1008,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+1009,HTML/CSS;JavaScript;PHP;SQL
+1010,Dart;Java;Kotlin;Python;Scala;Swift
+1011,C#;HTML/CSS;SQL
+1012,Bash/Shell/PowerShell;C++;HTML/CSS;Swift
+1013,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1014,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+1015,HTML/CSS;JavaScript;PHP;Python;TypeScript
+1016,C#
+1017,Go;JavaScript
+1018,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+1020,Java;JavaScript;PHP;SQL;TypeScript
+1021,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+1022,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+1023,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+1024,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+1025,C++;C#;JavaScript;Objective-C;Rust
+1026,Bash/Shell/PowerShell;Java;JavaScript;Python
+1027,HTML/CSS;JavaScript
+1028,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+1029,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+1030,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1031,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+1032,Java;Kotlin;Swift
+1033,C#;HTML/CSS;JavaScript;SQL
+1034,Python;Ruby;SQL
+1035,HTML/CSS;Java;JavaScript;SQL;TypeScript
+1036,Java;SQL
+1037,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+1038,C;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+1039,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+1040,HTML/CSS;Java
+1041,Bash/Shell/PowerShell;Python;SQL
+1042,HTML/CSS;JavaScript;TypeScript
+1043,Python;Rust
+1044,C++;C#;Java;Python
+1045,C#;JavaScript;TypeScript
+1046,C++;HTML/CSS;Java;Python;Scala;SQL;TypeScript
+1047,C;Python
+1048,HTML/CSS;JavaScript;Python;SQL
+1049,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+1050,HTML/CSS;JavaScript;SQL;TypeScript
+1051,C#;HTML/CSS;JavaScript;TypeScript
+1052,HTML/CSS;JavaScript;TypeScript
+1053,Java;JavaScript
+1054,C#;HTML/CSS;JavaScript;Kotlin;SQL;Swift;TypeScript
+1055,Dart;JavaScript;Kotlin;Swift
+1056,C#;HTML/CSS;JavaScript;SQL
+1057,Bash/Shell/PowerShell
+1058,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1059,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Rust;TypeScript
+1060,JavaScript;Python
+1061,C#;SQL
+1062,HTML/CSS;JavaScript
+1063,Bash/Shell/PowerShell;Python;Ruby;SQL
+1064,Java
+1065,C#;HTML/CSS;Java;JavaScript;TypeScript
+1066,Java;Kotlin
+1067,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Other(s):
+1068,HTML/CSS;JavaScript;Python;SQL
+1069,C#;SQL
+1070,C#;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;VBA
+1071,C#;SQL
+1072,C++
+1073,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+1074,C#;JavaScript;SQL;TypeScript
+1075,HTML/CSS;JavaScript;TypeScript
+1076,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+1077,C#;HTML/CSS;Java;JavaScript;TypeScript
+1078,C#;HTML/CSS;JavaScript;SQL;Other(s):
+1079,HTML/CSS;Java;JavaScript
+1080,C++;C#;Java;JavaScript;SQL
+1081,Bash/Shell/PowerShell;Elixir;JavaScript;Python;SQL
+1082,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript;Other(s):
+1083,JavaScript;PHP;Python
+1084,Objective-C;Swift
+1085,HTML/CSS;JavaScript
+1086,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+1087,HTML/CSS;Java;JavaScript;Python
+1088,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+1089,HTML/CSS;JavaScript;PHP
+1090,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;WebAssembly
+1091,Assembly;C;C#;Java;Ruby;TypeScript
+1092,C++;HTML/CSS;Java;JavaScript;Python
+1093,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+1094,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+1095,HTML/CSS;JavaScript;Python
+1096,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Scala
+1097,Go;JavaScript;Python;SQL;TypeScript
+1098,JavaScript;Python
+1099,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+1100,HTML/CSS;JavaScript;TypeScript
+1101,HTML/CSS;JavaScript
+1102,HTML/CSS;JavaScript;PHP;VBA
+1103,C++;C#;JavaScript;Other(s):
+1104,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+1105,C;HTML/CSS;JavaScript;PHP;Python;SQL
+1106,Assembly;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+1107,HTML/CSS;Java;JavaScript;R;Ruby;SQL;TypeScript
+1108,C++;C#;Java;SQL
+1109,HTML/CSS;JavaScript;PHP;SQL
+1110,HTML/CSS;JavaScript;PHP;SQL
+1112,C#;JavaScript;Python
+1113,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+1114,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+1115,HTML/CSS;Java;PHP;SQL
+1116,HTML/CSS;JavaScript
+1117,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+1118,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C
+1119,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+1120,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+1121,C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python
+1122,PHP;Python;SQL
+1123,HTML/CSS;Java;SQL
+1124,C;C++;JavaScript;TypeScript;Other(s):
+1125,Bash/Shell/PowerShell;C#;Go;Java;Python
+1126,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+1127,C++;Python
+1128,HTML/CSS;Java;JavaScript;TypeScript
+1129,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1130,HTML/CSS;JavaScript;PHP
+1131,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+1132,C#;HTML/CSS;Java;JavaScript;SQL
+1133,C#;HTML/CSS;Java;JavaScript;TypeScript
+1134,HTML/CSS;JavaScript;SQL
+1135,Go;JavaScript;PHP;TypeScript
+1136,HTML/CSS;Java;JavaScript;Kotlin;Python;R;TypeScript
+1137,Assembly;Bash/Shell/PowerShell;C;Objective-C;Python;Ruby;Swift
+1138,C#;HTML/CSS;JavaScript;Python;Rust;TypeScript
+1139,C++;C#;JavaScript;PHP;Python;SQL;TypeScript
+1140,C;C++;Java;Python
+1141,Python;SQL
+1142,C#;HTML/CSS;Java;JavaScript
+1143,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;TypeScript;Other(s):
+1144,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1145,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+1146,C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+1147,JavaScript
+1148,Python;R;Other(s):
+1149,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Objective-C;Swift
+1150,Bash/Shell/PowerShell;Python;SQL;Other(s):
+1151,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1152,JavaScript;PHP;SQL
+1153,Assembly;Bash/Shell/PowerShell;Go;Python
+1154,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+1155,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+1156,C;C++
+1157,HTML/CSS;Java;JavaScript;PHP;SQL
+1158,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+1159,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+1160,C;C++;Python;SQL
+1161,HTML/CSS;JavaScript;Ruby;SQL
+1162,C#
+1163,Swift
+1164,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+1165,C++;Erlang;Python
+1166,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+1167,JavaScript
+1168,Assembly;C++;HTML/CSS
+1169,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL
+1170,JavaScript
+1171,HTML/CSS;JavaScript;PHP
+1172,PHP;Other(s):
+1173,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+1174,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1175,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1176,C#;SQL;VBA
+1177,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+1178,Java;Python
+1179,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1180,Assembly;Bash/Shell/PowerShell;C;Clojure;JavaScript;Kotlin;Python;TypeScript
+1181,C++;Go;HTML/CSS;JavaScript;Ruby
+1182,HTML/CSS;Java;JavaScript;SQL;TypeScript
+1183,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+1184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1185,Go;HTML/CSS;JavaScript;Python;R
+1186,HTML/CSS;JavaScript;PHP
+1187,Bash/Shell/PowerShell;C++;Python
+1188,C#;HTML/CSS;Java;JavaScript;TypeScript
+1189,C++;C#;HTML/CSS;Java;SQL;WebAssembly
+1190,C#;HTML/CSS;Java;JavaScript;Python
+1192,Bash/Shell/PowerShell;Java;SQL
+1193,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;JavaScript;Python
+1194,Bash/Shell/PowerShell;Erlang;JavaScript;R;Ruby
+1195,C#;Other(s):
+1196,C;C++;SQL
+1197,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust
+1198,C++;C#
+1199,C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+1200,Bash/Shell/PowerShell;Python;SQL
+1201,HTML/CSS;JavaScript;PHP;Python;SQL
+1202,HTML/CSS;JavaScript
+1203,Bash/Shell/PowerShell;C#;Python
+1204,Java;R
+1205,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+1206,C;C++;HTML/CSS;Java;JavaScript;SQL
+1207,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+1208,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+1209,Bash/Shell/PowerShell;C++;JavaScript;Python;R;SQL;VBA;Other(s):
+1210,Go;Python;Ruby;SQL
+1211,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+1212,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+1213,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript
+1214,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript;VBA
+1215,HTML/CSS;JavaScript;Python;R;SQL
+1216,C++;C#;HTML/CSS;Java;JavaScript
+1217,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+1218,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+1219,C;C++;SQL
+1220,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+1221,HTML/CSS;Java;Python;VBA
+1222,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+1223,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1224,Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+1225,C#;Java
+1226,Bash/Shell/PowerShell;C;C++;C#;Java;Python;Other(s):
+1227,HTML/CSS;JavaScript;Python
+1228,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+1229,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Rust
+1230,Bash/Shell/PowerShell;Java;Python;SQL
+1231,Java;JavaScript;PHP;TypeScript
+1232,HTML/CSS;JavaScript;SQL
+1233,JavaScript;PHP
+1234,C#;HTML/CSS;JavaScript;R;SQL
+1235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+1236,Elixir;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+1237,HTML/CSS;Python
+1238,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+1239,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+1240,C++;HTML/CSS;PHP;SQL
+1241,C#;HTML/CSS;JavaScript;TypeScript
+1242,C++;C#;HTML/CSS;PHP;SQL
+1243,Bash/Shell/PowerShell;Java
+1244,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+1245,HTML/CSS;Java;JavaScript
+1246,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+1247,Java;JavaScript;PHP
+1249,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+1250,C#;Java
+1251,HTML/CSS;Java;JavaScript
+1252,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+1253,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA;Other(s):
+1254,Go;HTML/CSS;JavaScript;Ruby;SQL
+1255,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+1256,C;C++;HTML/CSS;Python
+1257,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1258,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Scala;SQL;Swift;TypeScript;Other(s):
+1259,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+1260,C#;Swift
+1261,C;C++;Java;R
+1262,Bash/Shell/PowerShell;C;C++
+1263,C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+1264,C;C++;HTML/CSS;Java;Python
+1266,HTML/CSS;JavaScript;PHP;SQL
+1267,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1268,C++;Other(s):
+1269,HTML/CSS;JavaScript;PHP
+1270,Bash/Shell/PowerShell;HTML/CSS;Python
+1271,Java;Kotlin;Objective-C;Swift
+1272,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1273,HTML/CSS;JavaScript
+1274,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+1275,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+1276,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+1277,C;C++;C#;Dart;Java
+1278,C;Objective-C
+1279,Bash/Shell/PowerShell;C;C++;Python
+1280,Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+1281,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+1282,C++;C#;HTML/CSS;Java;JavaScript;PHP
+1283,HTML/CSS;JavaScript
+1284,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1285,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+1286,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+1287,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+1288,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;Swift;TypeScript
+1289,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;Swift
+1290,HTML/CSS;JavaScript;Python;Ruby;SQL
+1291,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+1292,HTML/CSS;PHP;SQL
+1293,Assembly;C#;SQL
+1294,C;HTML/CSS;JavaScript;Python;R;Ruby
+1295,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+1296,Java;Objective-C;PHP
+1297,HTML/CSS;JavaScript
+1298,HTML/CSS;JavaScript;PHP
+1299,HTML/CSS;Java;JavaScript;SQL;TypeScript
+1300,Python;SQL
+1301,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+1302,C;C++;Java;JavaScript;PHP;Python
+1303,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+1304,C++;JavaScript;Python;SQL
+1305,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL;Other(s):
+1306,C++;Dart;HTML/CSS;Java;PHP;Python;SQL
+1307,Bash/Shell/PowerShell;PHP;Python;SQL
+1308,Java;Scala
+1309,C;C++;Python
+1310,JavaScript;Ruby
+1311,Bash/Shell/PowerShell;C;C++;Clojure;Elixir;Erlang;Python
+1312,C#;JavaScript;SQL
+1313,Bash/Shell/PowerShell;HTML/CSS;Java;TypeScript
+1314,Assembly;HTML/CSS;Java;JavaScript;SQL
+1315,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1316,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Python;Ruby;SQL;Other(s):
+1317,C#;JavaScript
+1318,Assembly;C;C++;C#;Objective-C;PHP;SQL
+1319,Bash/Shell/PowerShell;C++;C#;Dart;Go;Java;Python;Other(s):
+1320,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+1321,C#;HTML/CSS;JavaScript;TypeScript
+1322,C#;HTML/CSS;JavaScript;SQL
+1323,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+1324,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;Rust;SQL;Swift
+1325,Java;SQL
+1326,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+1328,HTML/CSS;JavaScript;PHP;SQL
+1329,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;Other(s):
+1330,HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;TypeScript
+1331,C++;C#;Java;Python
+1332,C++
+1333,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+1334,Clojure;HTML/CSS;JavaScript;Kotlin;PHP;Ruby
+1335,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+1336,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1337,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+1338,C++;HTML/CSS;JavaScript;PHP;SQL
+1339,HTML/CSS;JavaScript;Python;SQL;TypeScript
+1340,Assembly;C;HTML/CSS;Java
+1341,HTML/CSS;JavaScript;PHP;SQL
+1342,HTML/CSS;JavaScript;TypeScript
+1343,HTML/CSS;JavaScript;PHP;SQL
+1344,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+1345,C#;HTML/CSS;JavaScript;SQL
+1346,Bash/Shell/PowerShell;Java;Kotlin;Python
+1347,HTML/CSS;Java;JavaScript;Python;R;Other(s):
+1348,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1349,Assembly;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+1350,C++;Dart;Java;Kotlin
+1351,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+1354,Objective-C
+1355,HTML/CSS;Java;JavaScript;SQL;TypeScript
+1356,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+1357,HTML/CSS;JavaScript;PHP
+1358,C#;HTML/CSS;JavaScript;Rust;SQL
+1359,Assembly;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1360,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1361,C++;C#
+1362,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+1363,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+1364,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL
+1365,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1366,Java
+1367,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+1368,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1369,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1370,C++;Java
+1371,C;C++;Swift
+1372,Bash/Shell/PowerShell;C++;SQL
+1373,HTML/CSS;JavaScript;TypeScript
+1374,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+1375,JavaScript
+1376,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+1377,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+1378,Bash/Shell/PowerShell;Dart;Go;Java;Kotlin;Python;Scala;SQL
+1379,HTML/CSS;JavaScript;Python;Other(s):
+1380,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1381,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL
+1382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+1383,C#;F#;JavaScript;TypeScript
+1384,C#;HTML/CSS;JavaScript;SQL
+1385,Python;R
+1386,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+1387,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+1388,HTML/CSS;Java;JavaScript
+1389,Bash/Shell/PowerShell
+1390,Kotlin;Objective-C;Swift
+1391,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+1392,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1393,HTML/CSS;Python;SQL;TypeScript;Other(s):
+1394,C#;JavaScript;SQL;Other(s):
+1395,C#;HTML/CSS;Java;JavaScript
+1396,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+1397,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+1398,HTML/CSS;JavaScript;SQL;TypeScript
+1399,Assembly;C;C++;C#;HTML/CSS;Java;Kotlin;Python;Ruby;SQL;Swift
+1400,C++;Python
+1401,C++;Python
+1402,SQL;Other(s):
+1403,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+1404,C#;HTML/CSS;JavaScript;SQL
+1405,Python
+1406,Bash/Shell/PowerShell;C;Python
+1407,Bash/Shell/PowerShell;C#;JavaScript;Rust
+1408,C++;Java;Kotlin;Objective-C;Swift
+1409,HTML/CSS;Java;JavaScript;Python;Scala
+1410,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+1411,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+1412,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1413,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+1414,C;C++;Java;SQL
+1415,C#;HTML/CSS;JavaScript;PHP;TypeScript
+1416,Java
+1417,HTML/CSS;JavaScript;TypeScript
+1418,C;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Swift
+1419,C++;C#;JavaScript;TypeScript
+1420,Java;JavaScript
+1421,C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+1422,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+1423,Clojure;JavaScript;Python;Other(s):
+1424,Java
+1425,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+1426,HTML/CSS;JavaScript;TypeScript
+1427,C#;HTML/CSS;JavaScript;SQL
+1428,HTML/CSS;Python;R;SQL
+1429,C++;C#;Java;SQL
+1430,Assembly;C;C++;JavaScript;Python;Rust;SQL;Other(s):
+1431,HTML/CSS;Java;JavaScript
+1432,C#;SQL;Other(s):
+1433,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+1434,HTML/CSS;JavaScript;Kotlin;Python;SQL
+1435,Java;Scala
+1436,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;Python;Scala
+1437,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1438,HTML/CSS;JavaScript;PHP;SQL
+1439,HTML/CSS;JavaScript;PHP;SQL
+1440,C++;C#;HTML/CSS;JavaScript
+1441,C#;Python;Rust
+1442,HTML/CSS;JavaScript;PHP;SQL
+1443,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+1444,C++;Java;Kotlin;Python;SQL
+1445,C;C++;C#;Java;SQL;VBA
+1446,HTML/CSS;JavaScript;PHP;SQL
+1447,C#;HTML/CSS;Java;JavaScript;PHP
+1448,HTML/CSS;JavaScript;PHP;Python;Swift
+1449,Bash/Shell/PowerShell;PHP
+1450,C#;JavaScript;SQL;TypeScript
+1451,HTML/CSS;Java;Kotlin;Python;SQL
+1452,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1453,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;VBA
+1454,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+1455,Python
+1456,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+1457,Python;R
+1458,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1459,HTML/CSS;JavaScript;Python
+1460,HTML/CSS;Java;JavaScript;SQL
+1461,Bash/Shell/PowerShell;Other(s):
+1462,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1463,HTML/CSS;JavaScript;Rust;SQL
+1464,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+1465,Java
+1466,Python;SQL
+1467,C++;JavaScript;TypeScript
+1468,Python;SQL
+1469,C#;HTML/CSS;JavaScript
+1470,C;C++;Java;JavaScript
+1471,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;TypeScript
+1472,C;HTML/CSS;PHP
+1473,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL;TypeScript
+1474,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+1475,C#;JavaScript
+1476,C++;Python;SQL
+1477,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+1478,HTML/CSS;JavaScript;PHP
+1479,C#;HTML/CSS;Java;JavaScript;Python
+1480,C++;C#;Java;JavaScript
+1481,HTML/CSS;JavaScript;PHP;Other(s):
+1482,Clojure;Java;Scala
+1483,HTML/CSS;Java
+1484,Java
+1485,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+1486,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+1487,C#;Dart;HTML/CSS;JavaScript;SQL
+1488,C;C++;HTML/CSS;JavaScript;SQL
+1489,C#;HTML/CSS;JavaScript;Python;SQL
+1490,HTML/CSS;JavaScript;Other(s):
+1491,C#;HTML/CSS;Java;Scala;SQL;TypeScript
+1492,C++;Go;JavaScript;Python
+1493,HTML/CSS;JavaScript;Python
+1494,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+1495,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+1496,JavaScript;R
+1497,HTML/CSS;Java;JavaScript;TypeScript
+1498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+1499,R
+1500,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+1501,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+1502,C;C++;C#;HTML/CSS;TypeScript
+1503,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Rust
+1504,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+1505,Bash/Shell/PowerShell;Java;Kotlin;Ruby;Scala
+1506,C;C++;Java
+1507,C++;C#;Java;Python;VBA
+1508,Bash/Shell/PowerShell;C;C++;HTML/CSS
+1509,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+1510,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+1511,HTML/CSS;JavaScript;R;SQL;TypeScript
+1512,Bash/Shell/PowerShell;Python;SQL
+1513,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Kotlin;SQL;TypeScript
+1514,HTML/CSS;JavaScript;PHP
+1515,Python
+1516,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+1517,Bash/Shell/PowerShell;C;Go;Java;Python;Scala;SQL
+1518,C#;SQL
+1519,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+1520,Bash/Shell/PowerShell;Python;Other(s):
+1521,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;VBA
+1522,Go;HTML/CSS;JavaScript
+1523,HTML/CSS;TypeScript
+1524,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;PHP;Swift
+1525,Go;HTML/CSS;JavaScript;SQL;Swift
+1526,Python;R
+1527,HTML/CSS;Python
+1528,C;C++;C#;HTML/CSS;Java;JavaScript;Swift
+1529,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+1530,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Swift
+1531,Bash/Shell/PowerShell;C;SQL
+1532,Bash/Shell/PowerShell;Python
+1533,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+1534,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1535,Bash/Shell/PowerShell;Elixir;Erlang;Go;Java;JavaScript;Python;Ruby;SQL
+1536,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+1537,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+1538,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1539,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+1540,Bash/Shell/PowerShell;Java;Ruby
+1541,C#;Go;HTML/CSS;Java;Kotlin;PHP;Python;Rust;Scala;SQL;Swift;TypeScript
+1542,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL
+1543,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+1544,HTML/CSS;JavaScript
+1545,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1546,Bash/Shell/PowerShell;C#;PHP;SQL
+1547,Assembly;C;C++;C#;Other(s):
+1548,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+1549,HTML/CSS;JavaScript;PHP;SQL
+1550,Assembly;Bash/Shell/PowerShell;C;C++;Python
+1551,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+1552,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Other(s):
+1553,Dart;HTML/CSS;JavaScript;Python;TypeScript
+1554,Bash/Shell/PowerShell;C;C++;Java
+1555,Java;SQL
+1556,HTML/CSS;JavaScript;PHP;Python
+1557,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+1558,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+1559,HTML/CSS;JavaScript;PHP;Ruby
+1560,Bash/Shell/PowerShell;C++;Java;Python;Scala;SQL;TypeScript
+1561,C++;HTML/CSS;JavaScript;SQL
+1562,C#;HTML/CSS;JavaScript;SQL;VBA
+1563,HTML/CSS;JavaScript;PHP;Python;SQL
+1564,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+1565,Bash/Shell/PowerShell;C++;Python;Scala
+1566,C;HTML/CSS;JavaScript;PHP;R;SQL;VBA
+1567,C#
+1568,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;VBA
+1569,Assembly;C;C++;C#;Python;Other(s):
+1570,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+1571,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+1572,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1573,Java;JavaScript;PHP;SQL
+1574,Java;JavaScript;Python
+1575,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+1576,JavaScript
+1577,Java
+1578,C++;JavaScript;Python
+1579,Go;HTML/CSS;JavaScript;PHP;SQL
+1580,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+1581,C#;HTML/CSS;Java;Python
+1582,Bash/Shell/PowerShell;C;C++;C#;Python;Swift
+1583,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1584,C#;JavaScript;SQL
+1585,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Swift;TypeScript
+1586,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+1587,HTML/CSS;Java;JavaScript;PHP;SQL
+1588,HTML/CSS;Java;JavaScript;SQL;TypeScript
+1589,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+1590,C++;C#;HTML/CSS;Java;JavaScript;SQL
+1591,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+1592,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+1593,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1594,C#;SQL
+1595,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;Other(s):
+1596,C++;HTML/CSS;JavaScript;Python
+1597,HTML/CSS;JavaScript;PHP;Scala;SQL
+1598,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+1599,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;Swift;TypeScript
+1600,HTML/CSS;JavaScript;PHP;SQL
+1601,C#;HTML/CSS;JavaScript;TypeScript
+1602,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;R
+1603,HTML/CSS;JavaScript;Python;Other(s):
+1604,Bash/Shell/PowerShell;C;C++;Python
+1605,C++;Python
+1606,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+1607,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;Other(s):
+1608,Bash/Shell/PowerShell;Go;Java;Kotlin;SQL
+1609,Java;JavaScript;TypeScript
+1610,C#;Java
+1611,Assembly;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+1612,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+1613,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;TypeScript
+1614,HTML/CSS;JavaScript;TypeScript
+1615,C#;HTML/CSS;JavaScript;Other(s):
+1616,HTML/CSS;JavaScript;Python
+1617,Bash/Shell/PowerShell;Clojure;Java;Kotlin;Scala;SQL
+1618,Java
+1619,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+1620,Assembly;HTML/CSS;JavaScript;Python;SQL;TypeScript
+1621,Bash/Shell/PowerShell;C++
+1622,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+1623,Scala
+1624,HTML/CSS;Python;R
+1625,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+1626,Objective-C;Swift
+1627,C#;HTML/CSS;JavaScript;Python
+1628,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+1629,C#;Java;JavaScript;PHP;SQL
+1630,C#;SQL
+1631,C#;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly;Other(s):
+1632,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+1633,Bash/Shell/PowerShell;C++;C#;JavaScript;Objective-C;Python;Swift
+1634,Assembly;Bash/Shell/PowerShell;C;Python
+1635,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+1636,Bash/Shell/PowerShell;Python;Ruby;SQL
+1637,Assembly;C++;C#;Java;JavaScript;Python;VBA
+1638,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+1639,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala
+1641,Assembly;Java;Scala;SQL
+1642,HTML/CSS;JavaScript;PHP;SQL
+1643,HTML/CSS;Java;JavaScript
+1644,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Swift
+1645,C#
+1646,Assembly;C;C++;C#;Python;Ruby
+1647,C++;C#;Java;Rust
+1648,HTML/CSS;JavaScript;Python;Other(s):
+1649,C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+1650,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;PHP;Python;TypeScript
+1651,Bash/Shell/PowerShell;Python;SQL
+1652,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+1653,HTML/CSS;JavaScript;Kotlin;PHP;Ruby;SQL
+1654,HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+1655,C;HTML/CSS;JavaScript;TypeScript
+1656,C#;HTML/CSS;Java;JavaScript
+1657,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+1658,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust
+1659,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+1660,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;Swift
+1661,Elixir;HTML/CSS;JavaScript;Python;SQL;Swift
+1662,Java;JavaScript
+1663,C#;HTML/CSS;JavaScript;PHP;SQL
+1664,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1665,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+1666,Bash/Shell/PowerShell;C#;Python;SQL
+1667,Java;JavaScript;SQL;Other(s):
+1668,HTML/CSS;JavaScript;TypeScript
+1669,HTML/CSS;Java;JavaScript;PHP;Python
+1670,C;Go;Java;JavaScript;Python;SQL
+1671,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+1672,Bash/Shell/PowerShell;Java;Python
+1673,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+1674,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+1675,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+1676,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+1677,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+1678,R
+1679,Dart;Java;JavaScript;Kotlin;TypeScript
+1680,Bash/Shell/PowerShell;C++;Rust;TypeScript
+1681,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+1682,HTML/CSS;JavaScript;Ruby
+1683,HTML/CSS;JavaScript;PHP;Python
+1684,HTML/CSS;JavaScript;PHP;Python
+1685,Elixir;HTML/CSS;JavaScript;PHP;Python
+1686,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1687,JavaScript;Python
+1688,Go;HTML/CSS;Java;JavaScript;Python
+1689,C#;HTML/CSS;JavaScript;TypeScript
+1690,Bash/Shell/PowerShell;C;Python
+1691,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1692,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+1693,Bash/Shell/PowerShell;C#;JavaScript;R
+1694,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+1695,HTML/CSS;JavaScript
+1696,Java;SQL
+1697,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust;SQL;TypeScript
+1698,VBA;Other(s):
+1699,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1700,C#;HTML/CSS;JavaScript
+1702,C;C++
+1703,HTML/CSS;JavaScript;PHP;SQL
+1704,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+1705,HTML/CSS;Java;JavaScript;Python;R
+1706,HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby
+1707,Python
+1708,Go;Java;JavaScript;Python;Scala
+1709,Java;Kotlin
+1710,HTML/CSS;JavaScript;TypeScript
+1711,Bash/Shell/PowerShell;C++;Java;Python;Scala;SQL
+1712,Bash/Shell/PowerShell;C#;Go
+1713,HTML/CSS;Java;JavaScript
+1714,Go;JavaScript;Python;SQL
+1715,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Other(s):
+1716,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+1717,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;SQL
+1719,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+1720,Bash/Shell/PowerShell;Java
+1721,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+1722,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+1723,C++;Java;JavaScript;Kotlin;PHP;SQL
+1724,PHP;Python
+1725,C;C++
+1726,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1727,C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+1728,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+1729,HTML/CSS;JavaScript
+1730,HTML/CSS;Java;JavaScript;SQL
+1731,PHP;Python
+1732,Python;R;SQL
+1733,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python;SQL
+1734,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+1735,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+1736,Bash/Shell/PowerShell;C#;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Swift;TypeScript
+1737,HTML/CSS;JavaScript;TypeScript
+1738,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+1739,HTML/CSS;Java;Other(s):
+1740,Java;Other(s):
+1741,HTML/CSS;Java;JavaScript;PHP;TypeScript
+1742,HTML/CSS;Java;JavaScript;SQL;TypeScript
+1743,C;C++;Java;Python
+1744,HTML/CSS;JavaScript;TypeScript
+1745,Java;Scala;SQL
+1746,Bash/Shell/PowerShell;Go;Java;Kotlin;Python
+1748,Bash/Shell/PowerShell;TypeScript
+1749,C++;Java
+1750,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+1751,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1752,C#;HTML/CSS;Java;JavaScript;SQL
+1753,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+1754,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+1755,C;C++;C#;JavaScript
+1756,C#;HTML/CSS;JavaScript;Kotlin;Python;SQL;Swift
+1757,C;C#;Python
+1758,HTML/CSS;JavaScript
+1759,Bash/Shell/PowerShell;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;Swift;TypeScript
+1761,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+1762,Bash/Shell/PowerShell;Python;R
+1763,Objective-C;Python;Swift
+1764,C#;HTML/CSS;JavaScript;SQL;Other(s):
+1765,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+1766,HTML/CSS;JavaScript;Python;VBA
+1767,Bash/Shell/PowerShell;C++;C#;Java;Kotlin;PHP
+1768,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+1769,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+1770,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+1771,Bash/Shell/PowerShell;Python;SQL;Other(s):
+1772,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+1773,Clojure;HTML/CSS;JavaScript;Python
+1774,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+1775,Assembly;C;C++;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+1776,JavaScript
+1777,C#;HTML/CSS;Java;PHP;Python;SQL
+1778,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+1779,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1780,Assembly;Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA;Other(s):
+1781,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Ruby;SQL
+1782,Assembly;C#;HTML/CSS;JavaScript;SQL
+1783,Python
+1784,C#;JavaScript;SQL;TypeScript
+1785,Bash/Shell/PowerShell;C++;C#;Python;Ruby
+1787,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+1788,Assembly;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin
+1789,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python
+1790,C#;HTML/CSS;JavaScript;SQL
+1791,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+1792,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+1793,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+1794,Python;SQL;VBA
+1795,Java;Kotlin
+1796,Assembly;Bash/Shell/PowerShell;JavaScript;Python
+1797,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+1798,HTML/CSS;Java;JavaScript;SQL
+1799,HTML/CSS;Java;SQL
+1800,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;VBA
+1801,C#;HTML/CSS;JavaScript;SQL
+1802,Assembly;Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;Scala;TypeScript
+1803,Assembly;C#;Java;Python;SQL
+1804,HTML/CSS;JavaScript;PHP;Python;SQL
+1805,C#;HTML/CSS;JavaScript;TypeScript
+1806,C#;HTML/CSS;Python
+1807,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+1808,C;C++;HTML/CSS;Java;JavaScript;PHP;R;VBA
+1809,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala
+1810,Bash/Shell/PowerShell;C;Elixir;Erlang;Go;JavaScript;TypeScript
+1811,HTML/CSS;JavaScript
+1812,Assembly;Bash/Shell/PowerShell;C;C#;F#;Swift
+1813,C#;HTML/CSS;JavaScript;Ruby
+1814,Bash/Shell/PowerShell;Go;Java;Python;Ruby;SQL
+1815,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+1816,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+1817,C;C++;SQL
+1818,C++;JavaScript;Python
+1819,JavaScript;TypeScript
+1820,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+1821,Bash/Shell/PowerShell;C#;Go
+1822,C++;C#;HTML/CSS;JavaScript;SQL
+1823,C#;HTML/CSS;JavaScript;PHP;SQL
+1824,C#;HTML/CSS;JavaScript;SQL
+1825,C++;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+1826,C++;Python
+1827,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+1828,HTML/CSS;JavaScript;VBA
+1829,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA;Other(s):
+1830,C#;R;SQL;Other(s):
+1831,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1832,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+1833,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+1834,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+1835,C#;HTML/CSS;JavaScript;SQL
+1836,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby
+1837,C#;Elixir;Erlang;HTML/CSS;JavaScript;Python;SQL;TypeScript
+1838,HTML/CSS;JavaScript
+1839,Bash/Shell/PowerShell;C;Go;PHP;Python
+1840,C#
+1841,JavaScript;TypeScript
+1842,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+1843,C#;JavaScript;SQL;TypeScript
+1844,C#;SQL
+1845,C#;HTML/CSS;JavaScript;SQL
+1846,Clojure;JavaScript;TypeScript
+1847,HTML/CSS;Java;JavaScript;Python;TypeScript
+1848,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+1849,Bash/Shell/PowerShell;Dart;Java;JavaScript;Objective-C;Swift
+1850,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+1851,C#;Scala;SQL
+1852,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+1853,Assembly;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+1854,C#;SQL;TypeScript
+1855,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+1856,C#;HTML/CSS;Java;JavaScript;Swift;Other(s):
+1857,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Other(s):
+1858,C;C++;C#;HTML/CSS;Objective-C;Python;SQL;TypeScript
+1859,C;C#;Java;Python;SQL;Swift
+1860,HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+1861,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+1862,C#
+1863,Java;SQL
+1864,Assembly;C;C++;C#;Java;Python;SQL
+1865,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+1866,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+1867,Bash/Shell/PowerShell;C#;Java;Python
+1868,Go;HTML/CSS;JavaScript;Kotlin
+1869,HTML/CSS;JavaScript;Python
+1870,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+1871,Clojure;Other(s):
+1872,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+1873,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+1874,Bash/Shell/PowerShell;C++
+1875,Java
+1876,C#
+1877,R
+1878,C#;HTML/CSS;JavaScript;SQL
+1879,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+1880,R
+1881,HTML/CSS;JavaScript;PHP;Ruby
+1882,Clojure;HTML/CSS;JavaScript;PHP;Swift
+1883,HTML/CSS;Java;JavaScript;SQL
+1884,Python;Other(s):
+1885,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Python;Ruby;SQL
+1886,Java;JavaScript;SQL
+1887,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+1888,C#
+1889,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+1890,C#;HTML/CSS;JavaScript;SQL
+1891,Bash/Shell/PowerShell;Python
+1892,HTML/CSS;Java;JavaScript;TypeScript
+1893,C;Java
+1894,HTML/CSS;Java;JavaScript;Kotlin;Scala
+1895,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+1896,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+1897,Assembly;C;C++;C#;HTML/CSS;JavaScript;SQL
+1898,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+1899,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+1900,HTML/CSS;Java
+1901,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+1902,HTML/CSS;JavaScript;Python;R;VBA
+1903,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+1904,C#;HTML/CSS;JavaScript;SQL;TypeScript
+1905,C++;C#;HTML/CSS;Java;JavaScript;SQL
+1906,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+1907,Java
+1908,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+1909,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA
+1910,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+1911,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+1912,Java
+1913,Java;SQL
+1914,C#;HTML/CSS;JavaScript;SQL
+1915,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+1917,C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+1918,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+1919,Assembly;C;C++;Python
+1920,C;C++;C#;HTML/CSS;Objective-C;SQL;Swift;TypeScript;Other(s):
+1921,Bash/Shell/PowerShell;C++;C#;JavaScript;SQL
+1922,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+1923,Go;JavaScript
+1924,C++;JavaScript;Python;SQL
+1925,Java;JavaScript;Kotlin;Objective-C;Rust;Swift;TypeScript
+1926,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;WebAssembly;Other(s):
+1927,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;VBA;Other(s):
+1928,C#;HTML/CSS;JavaScript;TypeScript
+1929,Dart;Java;JavaScript;Kotlin
+1930,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;Scala;SQL;TypeScript;WebAssembly;Other(s):
+1931,C#;HTML/CSS;JavaScript;Ruby;SQL
+1932,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+1933,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+1934,C#;F#;HTML/CSS;SQL;Other(s):
+1935,C#;Python
+1936,Java;Kotlin
+1937,C#;HTML/CSS;JavaScript;TypeScript
+1938,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+1939,C;C++;Java;Python;SQL;Swift;VBA
+1940,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+1941,Objective-C;Swift
+1942,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+1943,C#;Java;JavaScript;Kotlin
+1944,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;SQL
+1945,Assembly
+1946,C#;JavaScript;Python;SQL
+1947,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+1948,C++
+1949,HTML/CSS;Java;JavaScript;TypeScript
+1950,C#;HTML/CSS;Java;JavaScript;TypeScript;VBA
+1951,Python;Ruby
+1952,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+1953,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+1954,HTML/CSS;JavaScript;PHP
+1955,Python;Ruby;SQL;Other(s):
+1956,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Scala;TypeScript
+1957,HTML/CSS;JavaScript
+1958,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+1959,C#;HTML/CSS;Java;JavaScript;Objective-C;Scala;SQL;TypeScript
+1960,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+1961,Assembly;Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+1962,C#;HTML/CSS;Java;JavaScript;TypeScript
+1963,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+1964,C++;HTML/CSS;Python
+1965,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+1966,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;R;SQL
+1967,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+1968,C#;SQL;Other(s):
+1969,C#;Java;Objective-C;VBA
+1970,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+1971,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+1972,C++;Python
+1973,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1974,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+1975,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+1976,C#;HTML/CSS;JavaScript;SQL
+1977,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+1978,Python;Other(s):
+1979,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+1980,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+1981,HTML/CSS;JavaScript;PHP;SQL
+1982,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+1983,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+1984,Bash/Shell/PowerShell;Java
+1985,C#;JavaScript;SQL
+1986,C++;C#
+1987,C#;HTML/CSS;Java;JavaScript
+1988,HTML/CSS;JavaScript;Ruby
+1989,HTML/CSS;Java;PHP;SQL
+1990,C#;HTML/CSS;JavaScript;SQL
+1991,C++;JavaScript;SQL
+1992,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;VBA
+1993,Elixir;HTML/CSS;Java;JavaScript
+1994,Python
+1995,C#;PHP;SQL
+1996,C;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+1997,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+1999,C;C++
+2000,C++;Python
+2001,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+2002,C++;C#;Go;HTML/CSS;JavaScript;Python;SQL
+2003,HTML/CSS;JavaScript;Ruby;SQL
+2004,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2005,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+2006,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+2007,C;C#;HTML/CSS;Java;JavaScript;Ruby
+2008,C;C++;Java;PHP;Python;Ruby;SQL
+2009,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;VBA
+2010,C#;Python;SQL
+2011,R
+2012,JavaScript;TypeScript
+2013,C#;F#;JavaScript;Scala;TypeScript;Other(s):
+2014,C#;HTML/CSS;JavaScript;SQL
+2015,C#
+2016,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+2017,C;C++;Java;JavaScript;Other(s):
+2018,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+2020,C#;SQL
+2021,HTML/CSS;JavaScript;PHP;SQL
+2022,C#;HTML/CSS;JavaScript;PHP
+2023,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+2024,Go;Objective-C;Swift
+2025,Bash/Shell/PowerShell;JavaScript;Objective-C;Ruby;SQL;Swift
+2026,C;C++;HTML/CSS;JavaScript;Python
+2027,C;C++;HTML/CSS;Java;JavaScript;Python;R
+2028,Bash/Shell/PowerShell;Java
+2029,HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Swift;TypeScript
+2030,C#;HTML/CSS;SQL
+2031,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+2032,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+2033,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+2034,Objective-C;Swift
+2035,Bash/Shell/PowerShell;C;Clojure;Java;Python;Rust;Scala;SQL
+2036,C#;Java;PHP;Python
+2037,Dart;HTML/CSS;Java;JavaScript
+2038,HTML/CSS;JavaScript;Python;SQL
+2039,Assembly;Bash/Shell/PowerShell;C++
+2040,C++;C#;HTML/CSS;Python
+2041,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+2042,Java;Python
+2043,C;C++;C#;Go
+2044,C#;SQL;Other(s):
+2045,C#;HTML/CSS;JavaScript;SQL
+2046,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+2047,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+2048,C++;C#
+2049,JavaScript;TypeScript
+2050,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;SQL
+2051,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+2052,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Swift
+2053,JavaScript;PHP
+2054,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+2055,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+2056,HTML/CSS;Java;JavaScript;TypeScript
+2057,Assembly;Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+2058,Java;JavaScript;SQL
+2059,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2060,C#
+2061,Bash/Shell/PowerShell;C;C++;Go;Kotlin;Python
+2062,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+2063,C#;JavaScript;Python
+2064,C#
+2065,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+2067,C;HTML/CSS;JavaScript;Python;SQL
+2068,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+2069,JavaScript;Other(s):
+2070,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+2071,Bash/Shell/PowerShell;C++;Dart;Python
+2072,Bash/Shell/PowerShell;Java;JavaScript;SQL;Swift;TypeScript
+2073,C#;HTML/CSS;JavaScript;SQL
+2074,C#;HTML/CSS;JavaScript;SQL
+2075,Bash/Shell/PowerShell;Dart;Java;JavaScript
+2076,Java;Python
+2077,HTML/CSS;JavaScript;PHP;Python
+2078,Java
+2079,HTML/CSS;JavaScript;Ruby;SQL
+2080,C#;HTML/CSS;JavaScript;Kotlin;SQL;Swift;TypeScript
+2081,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+2082,Go;Java;Python
+2083,HTML/CSS;JavaScript;TypeScript
+2084,Assembly;C;C++;HTML/CSS;JavaScript
+2085,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+2086,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+2087,SQL;Other(s):
+2088,C#;HTML/CSS;JavaScript
+2089,Bash/Shell/PowerShell;C;Python
+2090,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+2091,Bash/Shell/PowerShell;C++;JavaScript;Python
+2092,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+2093,Bash/Shell/PowerShell;C++;Python;R
+2094,HTML/CSS;JavaScript
+2095,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+2096,C++;HTML/CSS;Java;JavaScript;Python
+2097,C#;HTML/CSS;JavaScript;TypeScript
+2098,Objective-C;Swift
+2099,HTML/CSS;JavaScript
+2100,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+2101,Java;JavaScript;Python;Other(s):
+2102,Java;JavaScript;SQL
+2103,C;R
+2104,C;C++;VBA
+2105,Assembly;Bash/Shell/PowerShell;Java
+2106,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+2107,HTML/CSS;Java;JavaScript;TypeScript
+2108,Go;Java;JavaScript;PHP;Python
+2109,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+2110,C#;HTML/CSS;JavaScript;SQL
+2111,HTML/CSS;JavaScript;Other(s):
+2112,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2113,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+2114,JavaScript;R;SQL;VBA
+2115,C;C++;JavaScript;Python;Rust
+2116,HTML/CSS;Java;JavaScript;SQL;TypeScript
+2117,Other(s):
+2118,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+2119,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+2120,HTML/CSS;JavaScript;PHP
+2121,Java;Kotlin
+2122,C;Java
+2123,JavaScript;PHP
+2124,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2125,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+2126,C#;HTML/CSS;JavaScript;Python;SQL
+2127,HTML/CSS;PHP;Python;SQL;VBA
+2128,HTML/CSS;JavaScript;TypeScript
+2129,C#
+2130,Bash/Shell/PowerShell;C;Java;Python
+2131,JavaScript;Python
+2132,HTML/CSS;JavaScript;PHP;SQL
+2133,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+2134,Java;JavaScript;PHP;SQL;Other(s):
+2135,HTML/CSS;JavaScript;PHP
+2136,C#;F#;Python;Other(s):
+2137,JavaScript;Ruby;SQL
+2138,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust;Swift;TypeScript;VBA;WebAssembly
+2139,HTML/CSS;JavaScript;PHP;SQL
+2140,HTML/CSS;JavaScript;Python
+2141,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+2142,Bash/Shell/PowerShell;Java;Python;SQL
+2143,Java;SQL
+2144,Bash/Shell/PowerShell;C++;Python
+2145,C#;HTML/CSS;JavaScript;PHP
+2146,HTML/CSS;JavaScript;PHP;SQL
+2147,Bash/Shell/PowerShell;C;C++;C#;Java
+2148,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+2149,C#;HTML/CSS;JavaScript
+2150,C#;HTML/CSS;JavaScript;SQL;TypeScript
+2151,Go;Objective-C;Swift;TypeScript
+2152,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby
+2153,C;C++;Java;PHP;SQL
+2155,JavaScript;TypeScript
+2156,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+2157,JavaScript;Kotlin;Swift
+2158,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript;VBA
+2159,C++;HTML/CSS;Java;PHP;Python;SQL;VBA
+2160,C#;HTML/CSS;JavaScript;TypeScript
+2161,C#;HTML/CSS;Objective-C;Python
+2162,Java;SQL
+2163,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+2164,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2165,HTML/CSS;JavaScript;PHP;SQL
+2166,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;WebAssembly;Other(s):
+2167,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL;WebAssembly
+2168,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+2169,Assembly;C++;Python
+2170,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+2171,Bash/Shell/PowerShell;C;Python
+2172,HTML/CSS;Ruby
+2173,Bash/Shell/PowerShell;C#;SQL;TypeScript
+2174,C#;HTML/CSS;JavaScript;SQL;WebAssembly
+2175,JavaScript;Swift;TypeScript
+2176,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+2177,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+2178,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+2179,Java;SQL;VBA
+2180,HTML/CSS;JavaScript;TypeScript
+2181,JavaScript;PHP
+2182,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;TypeScript
+2183,HTML/CSS;SQL;Other(s):
+2184,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+2185,Bash/Shell/PowerShell;C;C++;Java;Python;Ruby
+2187,C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+2188,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Scala
+2190,C#;HTML/CSS;JavaScript;SQL;TypeScript
+2191,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+2192,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+2193,Python;SQL
+2194,Bash/Shell/PowerShell;Python
+2195,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+2196,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+2197,HTML/CSS;Java;JavaScript;Python;SQL
+2198,C#;HTML/CSS;Java;JavaScript
+2199,HTML/CSS;Java;JavaScript;Python;Other(s):
+2200,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+2201,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2202,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;PHP;Python;R;Scala;SQL
+2203,HTML/CSS;JavaScript;TypeScript
+2204,Bash/Shell/PowerShell;Python
+2205,Assembly;Python
+2206,Go;Java;JavaScript;PHP;Ruby
+2207,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+2208,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;TypeScript
+2209,HTML/CSS;Java;JavaScript;PHP;SQL
+2210,C#;Go
+2211,C;Java
+2212,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;JavaScript;Ruby;Scala;Swift
+2213,HTML/CSS;Java;Python;Ruby;VBA;Other(s):
+2214,Bash/Shell/PowerShell;Java;Swift
+2215,C#;HTML/CSS;JavaScript;R;SQL
+2216,Bash/Shell/PowerShell;C;Python;SQL
+2217,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+2218,C#;HTML/CSS;JavaScript;SQL;TypeScript
+2219,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2220,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;Scala;SQL
+2221,Java;Kotlin
+2222,HTML/CSS;JavaScript;PHP;TypeScript
+2223,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+2224,HTML/CSS;JavaScript;PHP;SQL
+2225,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+2226,HTML/CSS;Java;JavaScript;Python
+2227,Bash/Shell/PowerShell;C#;Clojure;Java;JavaScript;Python;TypeScript;Other(s):
+2228,HTML/CSS;JavaScript;PHP
+2229,C;Objective-C;Swift
+2230,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+2231,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+2232,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+2233,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift;TypeScript
+2234,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+2235,C++;Java;Python;SQL
+2236,Assembly;HTML/CSS;Java;JavaScript
+2237,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+2238,Java;JavaScript;SQL
+2239,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+2240,HTML/CSS;JavaScript;PHP;Python
+2241,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2242,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+2243,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript;Other(s):
+2244,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2245,C;C++;Java;JavaScript;SQL;TypeScript
+2246,HTML/CSS;Python;R
+2247,C#;HTML/CSS;JavaScript
+2248,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+2249,HTML/CSS;JavaScript;Python
+2250,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+2251,C;C++;HTML/CSS;JavaScript
+2252,Python;SQL
+2253,HTML/CSS;JavaScript;PHP;SQL
+2254,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;Ruby
+2255,JavaScript;Python
+2256,Java;JavaScript
+2257,C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+2258,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+2259,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+2260,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+2261,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL
+2262,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+2263,Bash/Shell/PowerShell;Python
+2264,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+2265,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+2266,C++;C#;Java;JavaScript;PHP;Python;Other(s):
+2267,C++;C#;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+2268,C#;F#;HTML/CSS;Java;JavaScript;Ruby;SQL
+2269,C++;Python
+2270,Python
+2271,C++;HTML/CSS;JavaScript
+2272,C;HTML/CSS;JavaScript;VBA;Other(s):
+2273,C;C++;C#
+2274,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+2275,C#;SQL
+2276,HTML/CSS;Java;JavaScript;PHP;SQL
+2277,HTML/CSS;JavaScript;SQL
+2278,C++;C#
+2279,HTML/CSS;JavaScript;PHP;Rust;TypeScript;WebAssembly
+2280,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript
+2281,Java;Python
+2282,Java;Kotlin;Python
+2283,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+2284,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2285,C++;Python
+2286,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+2287,C
+2288,C#;F#;Java
+2289,Objective-C;Swift
+2290,Objective-C;Swift
+2291,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2292,Java;JavaScript;Kotlin;Python;R;Scala;TypeScript
+2293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+2294,HTML/CSS;JavaScript
+2295,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+2296,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Python;R;Scala;SQL
+2297,C#;HTML/CSS;Java;Python;SQL
+2298,C;C#;HTML/CSS;JavaScript;Python
+2299,C#;Python
+2300,C#;SQL
+2301,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+2302,HTML/CSS;Java;JavaScript;PHP;R;SQL
+2303,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+2304,C;Java;Python
+2305,HTML/CSS;Java;JavaScript
+2306,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+2307,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+2308,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL;Other(s):
+2309,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+2310,C#;Java;Kotlin;Python
+2311,C++;Go;Python
+2312,HTML/CSS;JavaScript;PHP;Python;SQL
+2313,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+2314,JavaScript;PHP
+2315,C++;Java;Scala;SQL
+2316,Java;Scala;SQL
+2317,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+2318,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+2319,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2320,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+2321,HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+2322,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;JavaScript;Python;SQL;TypeScript
+2323,C#;HTML/CSS;JavaScript;SQL
+2324,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Scala;SQL
+2325,HTML/CSS;JavaScript
+2326,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+2327,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL;TypeScript
+2328,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+2329,Bash/Shell/PowerShell;C;C++;C#
+2330,C#;HTML/CSS;JavaScript;SQL
+2331,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2332,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift;TypeScript
+2333,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+2334,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+2335,HTML/CSS;PHP;SQL
+2336,Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;Other(s):
+2337,HTML/CSS;Java;Kotlin;SQL
+2338,HTML/CSS;JavaScript;PHP;SQL
+2339,C;C++;Go;HTML/CSS;JavaScript;SQL;TypeScript
+2340,Java;Python
+2341,HTML/CSS;JavaScript;Ruby
+2342,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+2343,C#;HTML/CSS;JavaScript;PHP
+2344,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+2345,Go;Java;JavaScript;Python
+2346,Java
+2347,Clojure;JavaScript;Ruby;SQL;Other(s):
+2348,Java;JavaScript;SQL;TypeScript
+2349,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+2350,HTML/CSS;JavaScript
+2351,C;Python;R;Ruby;SQL;VBA
+2352,Java;Ruby;Scala
+2353,C#;Python;SQL
+2354,C#;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+2355,C;HTML/CSS
+2356,C++;HTML/CSS;Java;JavaScript;Python
+2357,Objective-C;Swift
+2358,C;C++;Python;Other(s):
+2359,HTML/CSS;JavaScript;PHP;SQL
+2360,C#;PHP;SQL
+2361,Java
+2362,Java;Python
+2363,Bash/Shell/PowerShell;C#;SQL
+2364,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+2365,HTML/CSS;JavaScript;PHP;SQL
+2366,C++;Rust;SQL;TypeScript
+2367,Python;SQL
+2368,Go;HTML/CSS;JavaScript;Python
+2369,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+2370,PHP
+2371,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+2372,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+2373,Bash/Shell/PowerShell;C#;Java;Kotlin;Objective-C;Python;SQL;Swift
+2374,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Python;SQL;Swift
+2375,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+2376,C#;SQL
+2377,C;C++;C#;Java;JavaScript;Python;Rust;SQL
+2378,Bash/Shell/PowerShell;Go;Python;Swift
+2379,C#;PHP;TypeScript
+2380,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2381,Assembly;C;C++;Python
+2382,Java;PHP;Python;SQL
+2383,SQL;Other(s):
+2384,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+2385,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+2386,Go;HTML/CSS;JavaScript;PHP;SQL
+2387,HTML/CSS;JavaScript
+2388,C#;JavaScript;Other(s):
+2389,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+2390,HTML/CSS;JavaScript;PHP;Python;SQL
+2391,Java
+2392,Bash/Shell/PowerShell;JavaScript;Python;Swift;VBA
+2393,C++;C#;Java;JavaScript;Other(s):
+2394,Bash/Shell/PowerShell;Java;JavaScript;SQL
+2395,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+2396,Go;HTML/CSS;JavaScript;TypeScript
+2397,C++;Java;Other(s):
+2398,Python;R;SQL
+2399,Python;R;SQL
+2400,JavaScript;Ruby
+2401,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+2402,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2403,HTML/CSS;JavaScript;Ruby
+2404,JavaScript;Ruby;SQL;Swift;TypeScript
+2405,PHP;SQL
+2406,Bash/Shell/PowerShell;Go;JavaScript;Python;Rust
+2407,Python
+2408,Bash/Shell/PowerShell;JavaScript;R;SQL
+2409,Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+2410,JavaScript;Python
+2411,HTML/CSS;TypeScript
+2412,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+2414,Scala
+2415,Bash/Shell/PowerShell;JavaScript;Python
+2416,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+2417,JavaScript;PHP;SQL;TypeScript
+2418,Clojure;Java;Python;SQL
+2419,Bash/Shell/PowerShell;Java
+2420,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+2421,Scala
+2422,Bash/Shell/PowerShell;Go;Python;Ruby
+2423,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;VBA
+2424,Bash/Shell/PowerShell;C#;Go;PHP;Python;SQL;VBA
+2425,HTML/CSS;Python;Other(s):
+2426,Python
+2427,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;SQL
+2428,HTML/CSS
+2429,C++;Java;VBA
+2431,Go;HTML/CSS;Java;JavaScript
+2432,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;TypeScript;Other(s):
+2433,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+2434,Java;JavaScript;Python;SQL;Other(s):
+2435,C#
+2436,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+2437,Bash/Shell/PowerShell;C;C++;Rust
+2438,C#;HTML/CSS;JavaScript;SQL
+2439,C#;HTML/CSS;JavaScript;Python;SQL
+2441,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+2442,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;WebAssembly
+2443,Java;JavaScript;PHP
+2444,Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+2445,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+2446,HTML/CSS;Java;JavaScript;Python;SQL;Swift
+2447,Java;SQL
+2448,C;C++;HTML/CSS;Java;JavaScript;SQL
+2449,JavaScript;Python
+2450,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2451,HTML/CSS;Java;JavaScript;Python
+2452,HTML/CSS;JavaScript;PHP
+2453,Bash/Shell/PowerShell;Python
+2454,Bash/Shell/PowerShell;HTML/CSS;Java;Ruby;SQL
+2455,HTML/CSS;JavaScript;SQL
+2456,C;C++;HTML/CSS;Java;JavaScript;VBA
+2457,HTML/CSS;JavaScript;TypeScript
+2458,HTML/CSS;Java;JavaScript;Python;TypeScript
+2459,HTML/CSS;Java;JavaScript;Python;SQL
+2460,HTML/CSS;JavaScript;PHP;SQL
+2461,C#;HTML/CSS;JavaScript;SQL;TypeScript
+2462,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL;VBA;Other(s):
+2463,Assembly;HTML/CSS;Java;JavaScript;SQL
+2464,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+2465,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+2466,Java;VBA
+2467,C#;HTML/CSS;JavaScript;SQL;TypeScript
+2468,Bash/Shell/PowerShell;C#;SQL
+2469,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+2470,C#;Python;R;Rust;SQL
+2471,Java;JavaScript
+2472,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+2473,C;Java;Kotlin
+2474,HTML/CSS;Java;JavaScript;SQL
+2475,Clojure;HTML/CSS;Java;Other(s):
+2476,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2477,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;VBA
+2478,Bash/Shell/PowerShell;C#;JavaScript;SQL
+2479,HTML/CSS;Java;SQL
+2480,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+2481,C++;C#;Java;Python
+2482,Bash/Shell/PowerShell;C++;C#;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript
+2483,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Rust;TypeScript
+2484,C;HTML/CSS;Java;JavaScript;PHP;SQL
+2485,Bash/Shell/PowerShell;C;Objective-C;Python
+2486,HTML/CSS;JavaScript;Python;SQL
+2487,HTML/CSS;JavaScript;PHP;SQL
+2488,C++;C#;Java;JavaScript;Python;SQL;TypeScript
+2489,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2490,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+2491,C++;C#;HTML/CSS;JavaScript;SQL
+2492,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+2493,JavaScript
+2494,HTML/CSS;JavaScript;Python;Other(s):
+2495,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+2496,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+2497,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2498,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+2499,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2500,Java;JavaScript
+2501,Bash/Shell/PowerShell;Java;SQL
+2502,C;C++;C#;HTML/CSS;Python;SQL
+2503,Assembly;C#;Python;Other(s):
+2504,HTML/CSS;JavaScript;Python;Ruby;TypeScript
+2505,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2506,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+2507,Assembly;HTML/CSS;Java;JavaScript
+2508,C#
+2509,Java;SQL;Other(s):
+2510,C;C#;HTML/CSS;JavaScript;SQL
+2511,Go;HTML/CSS;JavaScript;PHP;TypeScript
+2512,C;C#;Java;Kotlin
+2513,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+2514,JavaScript;PHP;SQL
+2515,Bash/Shell/PowerShell;C;C++;C#;Python
+2516,Java;JavaScript;Rust;TypeScript
+2517,HTML/CSS;Java
+2518,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+2519,Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA;Other(s):
+2520,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+2521,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+2522,JavaScript;Objective-C;PHP;Swift;TypeScript;Other(s):
+2523,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+2524,Assembly;Bash/Shell/PowerShell;C;C++
+2525,Swift;TypeScript
+2526,HTML/CSS;JavaScript;PHP;SQL
+2528,JavaScript;Python
+2529,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+2530,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+2531,HTML/CSS;PHP;Python;SQL
+2532,JavaScript;Ruby;SQL
+2533,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2534,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+2535,Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Scala;SQL;Other(s):
+2536,HTML/CSS;PHP;SQL
+2537,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+2538,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+2539,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL
+2540,Bash/Shell/PowerShell;C++;R;VBA
+2541,HTML/CSS;Java;JavaScript;PHP;TypeScript
+2542,C#;HTML/CSS;JavaScript;SQL
+2543,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+2544,C;C++;HTML/CSS;JavaScript;PHP;SQL
+2545,HTML/CSS;Java;Python
+2546,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2547,Java;JavaScript;Python;SQL;TypeScript
+2548,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+2549,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+2550,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2551,HTML/CSS;Java;Kotlin;SQL
+2552,HTML/CSS;JavaScript;PHP;SQL
+2553,HTML/CSS;Java;JavaScript;VBA
+2554,C;HTML/CSS;Java;JavaScript;Python;SQL
+2555,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;Python;Scala;SQL
+2556,HTML/CSS
+2557,HTML/CSS;Java;JavaScript;PHP;SQL
+2558,Java;Objective-C
+2559,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+2560,Python
+2561,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+2562,HTML/CSS;JavaScript;PHP
+2563,C++;Java;Objective-C;Python;Swift
+2564,HTML/CSS;Java;JavaScript;Objective-C;Python;TypeScript
+2565,C++
+2566,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2567,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+2568,Bash/Shell/PowerShell;C
+2569,Kotlin
+2570,HTML/CSS;JavaScript;TypeScript
+2571,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+2572,Assembly;C;C++;Java;VBA
+2573,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2574,HTML/CSS;JavaScript;PHP;Python;SQL
+2575,C++;Python
+2576,Java;Kotlin
+2577,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2578,Objective-C;Python;Swift
+2579,C#;HTML/CSS;JavaScript;SQL
+2580,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+2581,Python;R;Scala;SQL
+2582,Bash/Shell/PowerShell;C#;Go;JavaScript;Kotlin;Rust;TypeScript
+2583,Go;JavaScript;Python;TypeScript
+2584,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2585,C;C++;Java;Python
+2586,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+2587,Go;HTML/CSS;JavaScript;TypeScript
+2588,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2589,HTML/CSS;PHP;SQL
+2590,Objective-C;Swift
+2591,Java;JavaScript;Scala;TypeScript
+2592,C;Python
+2593,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+2594,C#;HTML/CSS;JavaScript
+2595,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+2596,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+2597,C++;C#;HTML/CSS;JavaScript;VBA
+2598,C#;HTML/CSS;JavaScript;SQL
+2599,C;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+2600,C#
+2601,C++;HTML/CSS;Java;JavaScript;Scala;TypeScript;WebAssembly
+2602,Bash/Shell/PowerShell;Python
+2603,HTML/CSS;JavaScript;Python
+2604,C#;Dart;JavaScript;Python;SQL;TypeScript
+2605,Java
+2606,HTML/CSS;JavaScript;PHP;SQL
+2607,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+2608,JavaScript
+2609,Bash/Shell/PowerShell;JavaScript;Python
+2610,HTML/CSS;JavaScript;Python;SQL
+2611,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+2612,HTML/CSS;JavaScript;PHP;Ruby
+2613,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+2614,HTML/CSS;Java;JavaScript
+2615,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+2616,C#;JavaScript;SQL
+2617,HTML/CSS;JavaScript;TypeScript
+2618,Dart;HTML/CSS;JavaScript;PHP;SQL
+2619,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+2620,Kotlin;Objective-C;Swift
+2621,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;WebAssembly
+2622,C;C++;HTML/CSS;Java;JavaScript;Python
+2623,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+2624,C++;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+2625,C++;Go;Kotlin;Python;Ruby;SQL;Swift;TypeScript
+2626,C;HTML/CSS;Java;PHP;SQL
+2627,Go;HTML/CSS;JavaScript;TypeScript
+2628,Bash/Shell/PowerShell;Python;Other(s):
+2629,Elixir;JavaScript;Ruby;SQL;TypeScript
+2630,HTML/CSS;Java;JavaScript;Other(s):
+2631,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL
+2632,JavaScript
+2633,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Other(s):
+2634,Bash/Shell/PowerShell;C++;Java;Python;SQL
+2635,HTML/CSS;JavaScript;PHP;SQL
+2636,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2637,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+2638,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python
+2639,HTML/CSS;JavaScript;PHP;Ruby;SQL
+2640,HTML/CSS;JavaScript;Python;Ruby
+2641,JavaScript;TypeScript
+2642,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+2643,Java;TypeScript
+2644,HTML/CSS;JavaScript
+2645,HTML/CSS;JavaScript;TypeScript
+2646,Bash/Shell/PowerShell;C#;Other(s):
+2647,C;C++;Python;Other(s):
+2648,Bash/Shell/PowerShell;C#;F#;Go
+2649,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+2650,HTML/CSS;Java;Kotlin;SQL;VBA
+2651,Bash/Shell/PowerShell;Python;R;SQL;VBA
+2652,Bash/Shell/PowerShell;C#;Elixir;Erlang
+2653,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2654,HTML/CSS;JavaScript;SQL;TypeScript
+2655,HTML/CSS;JavaScript;PHP
+2656,C++;HTML/CSS;Java;Python
+2657,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+2658,Bash/Shell/PowerShell;Ruby;SQL
+2659,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+2660,C#;F#;Java;SQL
+2661,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Scala
+2662,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+2663,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+2664,C;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+2665,HTML/CSS;JavaScript;Python;SQL
+2666,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+2667,C#;HTML/CSS;JavaScript;SQL;Other(s):
+2668,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+2669,C#;JavaScript;TypeScript
+2670,HTML/CSS;SQL
+2671,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+2672,C#;JavaScript;TypeScript
+2673,C#;HTML/CSS;JavaScript;TypeScript
+2674,Go;HTML/CSS;JavaScript;TypeScript
+2675,C#;F#;SQL
+2676,Elixir;HTML/CSS;JavaScript;Ruby
+2677,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2678,C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+2680,Bash/Shell/PowerShell;HTML/CSS;SQL;VBA
+2681,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+2682,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+2683,C#;PHP;SQL
+2684,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+2685,HTML/CSS;JavaScript
+2686,HTML/CSS;JavaScript
+2687,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+2688,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+2689,Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;Ruby;Swift
+2690,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+2691,C#;Java;JavaScript;TypeScript
+2692,Java;JavaScript
+2693,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+2694,Bash/Shell/PowerShell;C#;SQL
+2695,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2696,Python;Rust
+2697,Bash/Shell/PowerShell;Java;SQL;TypeScript
+2698,Bash/Shell/PowerShell;Python;SQL;Other(s):
+2699,Java
+2700,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+2701,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+2702,C#;HTML/CSS;JavaScript;TypeScript
+2703,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Swift
+2704,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+2705,HTML/CSS;JavaScript
+2706,HTML/CSS;JavaScript;PHP;SQL
+2707,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+2708,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+2709,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+2710,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;TypeScript
+2711,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+2712,Erlang;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2713,HTML/CSS;JavaScript;PHP;Ruby;SQL
+2714,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;R;Rust;Other(s):
+2715,Go;Python
+2716,Bash/Shell/PowerShell;C#;SQL
+2717,Python
+2718,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+2719,HTML/CSS;JavaScript;PHP;SQL
+2720,JavaScript
+2721,Assembly;Python
+2722,Python
+2723,Go;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+2724,Bash/Shell/PowerShell;Java;SQL
+2725,Bash/Shell/PowerShell;C;C++;Go
+2726,C#;HTML/CSS;JavaScript
+2727,Assembly;C++;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript;VBA
+2728,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+2729,HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+2730,HTML/CSS;JavaScript;PHP
+2731,Java
+2732,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2733,C++;Objective-C;Swift
+2734,Python
+2735,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala;SQL;TypeScript
+2736,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Python;Rust;TypeScript
+2737,HTML/CSS;Java;Python;SQL
+2738,HTML/CSS;JavaScript;PHP
+2739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2740,Bash/Shell/PowerShell;C;Java
+2741,Bash/Shell/PowerShell;Dart;Java;JavaScript;Kotlin;R;SQL
+2742,C;C#;HTML/CSS;Java;Python;SQL
+2743,HTML/CSS;JavaScript;PHP;SQL
+2744,C++;R
+2745,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+2746,HTML/CSS;Java;Kotlin
+2747,HTML/CSS;JavaScript;PHP;Python;SQL
+2748,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+2749,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+2750,C#;HTML/CSS;JavaScript;PHP;SQL
+2751,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+2752,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2753,HTML/CSS;JavaScript;Python;SQL
+2754,Bash/Shell/PowerShell;C++;JavaScript;Python;TypeScript
+2755,HTML/CSS;Java;JavaScript;PHP;Python
+2756,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+2757,C++
+2758,Bash/Shell/PowerShell;JavaScript;Python;R;SQL;Other(s):
+2759,C++;JavaScript;Python;Rust;TypeScript
+2760,Bash/Shell/PowerShell;C#;F#;SQL
+2761,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;SQL
+2762,C;C++;Java;JavaScript;Kotlin;TypeScript
+2763,Java;JavaScript
+2764,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+2765,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Ruby;SQL
+2766,Bash/Shell/PowerShell;C;JavaScript;Python;VBA
+2767,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2769,HTML/CSS;JavaScript;Python;SQL;TypeScript
+2770,Bash/Shell/PowerShell;C;PHP;Python
+2771,Python
+2772,C;C++;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+2773,C++;HTML/CSS;PHP;SQL
+2774,C#;HTML/CSS;JavaScript;SQL;TypeScript
+2775,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+2776,HTML/CSS;JavaScript;PHP;Python
+2777,Java;JavaScript
+2778,HTML/CSS;JavaScript;PHP;TypeScript
+2779,HTML/CSS;JavaScript;Python
+2780,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+2781,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+2783,JavaScript
+2784,Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala
+2785,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2786,HTML/CSS;Java;JavaScript;Python;SQL
+2787,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+2788,C#;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;Other(s):
+2789,C#;HTML/CSS;Java;JavaScript
+2790,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+2791,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+2792,HTML/CSS;Java;JavaScript;SQL
+2793,C#;HTML/CSS;SQL
+2794,HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+2795,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Rust;Scala;SQL;TypeScript
+2796,C#;Java;JavaScript;PHP;SQL
+2797,HTML/CSS;Java;JavaScript;TypeScript
+2798,C++;HTML/CSS;JavaScript;PHP;SQL
+2799,HTML/CSS;JavaScript;PHP;SQL
+2800,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+2801,C++;HTML/CSS;Java;JavaScript;SQL
+2802,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+2803,Bash/Shell/PowerShell;Clojure;Go;JavaScript;Python;SQL
+2804,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+2805,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;TypeScript
+2806,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+2807,Clojure;Elixir;HTML/CSS;JavaScript;Python;R;Rust;SQL;TypeScript
+2808,C#;SQL
+2809,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby
+2810,C;C++;C#;HTML/CSS;Java
+2811,Bash/Shell/PowerShell;Python;Scala;SQL
+2812,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+2813,HTML/CSS;JavaScript;PHP
+2814,Bash/Shell/PowerShell;C;C#;Dart;Go;HTML/CSS;JavaScript;SQL;TypeScript
+2815,Java;JavaScript;Python
+2816,HTML/CSS;JavaScript;Other(s):
+2817,C;C#;HTML/CSS;JavaScript;PHP;Python
+2818,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+2819,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Kotlin;PHP;SQL;Swift
+2820,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+2821,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+2822,Bash/Shell/PowerShell;C;C++;C#;Python
+2823,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+2824,Java;Python;Ruby
+2825,HTML/CSS;JavaScript;Python;TypeScript
+2826,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+2827,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+2828,JavaScript;TypeScript
+2829,C;HTML/CSS;Java;JavaScript;Python;SQL
+2830,C#;Java;Kotlin;Objective-C;Python;SQL;Swift
+2831,C#;JavaScript;SQL;TypeScript;VBA
+2832,C#;F#
+2833,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2834,C;SQL
+2835,C;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+2837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+2838,HTML/CSS;JavaScript;SQL
+2839,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2840,Assembly;Bash/Shell/PowerShell;C
+2841,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+2842,HTML/CSS;Java;JavaScript;Python;R;SQL
+2843,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+2844,HTML/CSS;JavaScript;PHP;SQL
+2845,Bash/Shell/PowerShell;C++;Go;Java;Rust
+2846,C#;HTML/CSS;JavaScript;SQL
+2847,Go;Ruby;TypeScript
+2849,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+2850,C++;C#;HTML/CSS;Java;JavaScript;SQL
+2851,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Ruby;Rust;TypeScript;WebAssembly
+2852,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+2853,Java;SQL
+2854,HTML/CSS;Java;JavaScript
+2855,Java;PHP;Python
+2856,HTML/CSS;JavaScript;SQL
+2857,Go;Other(s):
+2858,HTML/CSS;JavaScript
+2859,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+2860,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+2861,C++;C#;F#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+2862,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+2863,Java;JavaScript;TypeScript
+2864,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2865,Java;JavaScript;Scala;TypeScript
+2866,JavaScript
+2867,HTML/CSS;Java;JavaScript;SQL;Other(s):
+2868,C#;HTML/CSS;JavaScript;TypeScript
+2869,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+2870,Dart;Java;JavaScript;SQL;TypeScript
+2871,JavaScript;Python;TypeScript
+2872,HTML/CSS;JavaScript;Ruby;SQL
+2873,Python;SQL
+2874,C++
+2875,C++;HTML/CSS;Java;PHP;SQL
+2876,Bash/Shell/PowerShell;C#;Python;SQL
+2877,C#;HTML/CSS;JavaScript
+2878,C;C++;HTML/CSS;Java;Python;SQL
+2879,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+2880,Java;Python;R;SQL;VBA
+2881,Assembly;Java
+2882,C;C++;HTML/CSS;JavaScript;Python;SQL
+2883,C#;HTML/CSS;JavaScript;SQL
+2884,HTML/CSS;JavaScript;Python;SQL
+2885,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+2886,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+2887,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+2888,HTML/CSS;Java;JavaScript
+2889,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+2890,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+2891,Objective-C;Swift
+2892,HTML/CSS;Java;JavaScript;SQL
+2893,Bash/Shell/PowerShell;C;Java;JavaScript;Python;R;Scala;SQL
+2894,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;VBA
+2895,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+2896,HTML/CSS;JavaScript;Python
+2897,Other(s):
+2898,Dart;HTML/CSS;Java;Python
+2899,HTML/CSS;Java;JavaScript;PHP;SQL
+2900,HTML/CSS;Java;JavaScript;Kotlin
+2901,C;C++;Objective-C;SQL;Swift
+2902,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+2903,Java;JavaScript;Python;Scala;SQL
+2904,C#;F#;HTML/CSS
+2905,C;Java;Python
+2906,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+2907,JavaScript;PHP;SQL
+2908,HTML/CSS;JavaScript;PHP
+2909,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL
+2910,Java;JavaScript
+2911,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+2912,HTML/CSS;Java;JavaScript;PHP;Other(s):
+2913,C#;HTML/CSS;JavaScript;SQL
+2914,C#;HTML/CSS;JavaScript;PHP;SQL
+2915,C#;JavaScript;SQL
+2916,C++;Objective-C
+2917,Bash/Shell/PowerShell;JavaScript;PHP;TypeScript
+2918,HTML/CSS;JavaScript;Python;SQL;VBA
+2919,C#;HTML/CSS
+2920,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+2921,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+2922,HTML/CSS;Python
+2923,HTML/CSS;Java;JavaScript
+2924,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL
+2925,JavaScript;SQL;TypeScript
+2926,Java;Python;Ruby;Scala
+2927,HTML/CSS;JavaScript;PHP;SQL
+2928,Assembly;C;C++;HTML/CSS;Java;Objective-C;Python;SQL
+2929,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+2930,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+2931,C#
+2932,Java;Kotlin;Objective-C;Swift;Other(s):
+2933,HTML/CSS;Java;JavaScript;PHP
+2935,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;Swift;TypeScript;WebAssembly
+2936,Assembly;C;C++;HTML/CSS;Java;JavaScript;Ruby
+2937,Bash/Shell/PowerShell;Go;HTML/CSS;Kotlin;Python;SQL
+2938,Bash/Shell/PowerShell;Objective-C;Python;Swift
+2939,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Ruby
+2940,C++;Go
+2941,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+2942,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+2943,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+2944,C++;Dart;Go;HTML/CSS;SQL;VBA
+2945,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2946,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+2947,HTML/CSS;Java;JavaScript;Python;SQL
+2948,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+2949,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+2950,Java
+2951,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+2952,C++;Java;Python
+2953,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+2954,Clojure
+2955,HTML/CSS;JavaScript;PHP;SQL
+2956,Java;Python;Scala;SQL
+2957,C#;SQL
+2958,HTML/CSS;Java;JavaScript;Python;SQL
+2959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+2960,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;VBA
+2961,C;HTML/CSS;Java;JavaScript;Python
+2962,HTML/CSS;JavaScript;Python;SQL
+2963,C;C++;Java;Kotlin;SQL;Other(s):
+2964,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+2965,Java;JavaScript;SQL
+2966,HTML/CSS;JavaScript
+2967,Bash/Shell/PowerShell;Java;Python
+2968,C++;HTML/CSS;JavaScript;PHP
+2969,HTML/CSS;JavaScript;PHP;Ruby;SQL
+2970,Python
+2971,HTML/CSS;Java;Kotlin
+2972,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+2973,Bash/Shell/PowerShell;Java;SQL
+2974,C#;HTML/CSS;JavaScript;SQL;TypeScript
+2975,Assembly;Bash/Shell/PowerShell;C;Dart;Java;Python;R;SQL
+2976,Java;Kotlin
+2977,Bash/Shell/PowerShell;HTML/CSS;PHP
+2978,HTML/CSS;JavaScript;Python;TypeScript
+2979,Bash/Shell/PowerShell;JavaScript
+2980,Assembly;C;Python
+2981,C;C++;Python
+2982,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+2983,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+2984,C#;Java
+2985,Java;Kotlin;Python
+2986,C;C++;HTML/CSS;PHP;Other(s):
+2987,HTML/CSS;JavaScript;PHP
+2988,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+2989,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;Other(s):
+2990,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+2991,C;C++;HTML/CSS;Java;JavaScript;Python;VBA
+2992,Dart;Go;JavaScript;Rust;WebAssembly
+2993,C#;HTML/CSS;JavaScript;SQL;VBA
+2994,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+2995,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+2996,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+2997,HTML/CSS;Java;JavaScript
+2998,HTML/CSS;Java;JavaScript;PHP;Python
+2999,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+3000,Other(s):
+3001,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+3002,Swift
+3003,HTML/CSS;Java;JavaScript;SQL
+3004,C#;Java;JavaScript;PHP;SQL;Swift
+3006,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+3007,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift;TypeScript
+3008,Bash/Shell/PowerShell;Go;Java;Kotlin;Python
+3009,Bash/Shell/PowerShell;C;Python
+3010,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+3011,C;JavaScript;Python
+3012,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Other(s):
+3013,C#;HTML/CSS;TypeScript
+3014,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;SQL
+3015,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+3016,C;C++;Objective-C;Swift;TypeScript
+3017,Bash/Shell/PowerShell;JavaScript;TypeScript
+3018,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+3019,HTML/CSS;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+3020,HTML/CSS;JavaScript;TypeScript
+3021,HTML/CSS;JavaScript;Python
+3022,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+3023,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+3024,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;VBA
+3025,Dart;HTML/CSS;JavaScript;PHP
+3026,JavaScript;PHP;SQL;TypeScript
+3027,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3028,HTML/CSS;JavaScript;PHP
+3029,C;C++;HTML/CSS;Java;PHP;Python;SQL
+3030,Java
+3031,HTML/CSS;JavaScript;Python
+3032,C#;Ruby;Swift
+3033,Go;Java;Python;Other(s):
+3034,C;C++;HTML/CSS;JavaScript;PHP;Other(s):
+3035,C++;HTML/CSS;JavaScript;Kotlin;TypeScript;Other(s):
+3036,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+3037,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+3038,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+3039,HTML/CSS;PHP;SQL
+3040,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3041,C;C++;C#;HTML/CSS;JavaScript;SQL
+3042,Bash/Shell/PowerShell;C++;C#;Go;Java;Kotlin;Python;SQL
+3043,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+3044,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+3045,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+3046,Java;Python
+3047,Java;PHP;Python;SQL
+3048,C#;HTML/CSS;JavaScript;Python;VBA;Other(s):
+3049,Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;SQL
+3050,HTML/CSS;JavaScript;TypeScript;Other(s):
+3051,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+3052,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript
+3053,C++;HTML/CSS;JavaScript;SQL
+3054,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+3055,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+3056,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+3057,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3058,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+3059,C#;HTML/CSS;JavaScript;SQL
+3060,C;C++;C#;Java;JavaScript
+3061,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+3062,Bash/Shell/PowerShell;Java;Kotlin;Python
+3063,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+3064,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+3065,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+3066,C#;JavaScript;Kotlin;TypeScript
+3067,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3068,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+3069,Bash/Shell/PowerShell;C;Clojure;Elixir;HTML/CSS;Java;JavaScript;Python;R;Rust;Other(s):
+3070,Clojure;Java
+3071,C;HTML/CSS;Java;JavaScript;Python
+3072,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+3073,Elixir;Objective-C;Swift
+3074,PHP;SQL;Other(s):
+3075,Assembly;Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+3076,JavaScript;Python
+3077,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+3078,C;C++
+3079,C++;Python
+3080,Python;SQL
+3081,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+3082,Go;Ruby;Scala
+3083,JavaScript
+3084,C#;Java;JavaScript;Python;Scala;SQL
+3085,C++;Python;Other(s):
+3086,Python;R;SQL
+3087,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+3088,C#;HTML/CSS;JavaScript;SQL
+3089,C++;C#;JavaScript
+3090,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3091,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+3092,C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+3093,HTML/CSS;JavaScript;PHP
+3094,HTML/CSS;JavaScript;PHP;SQL
+3095,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;SQL;TypeScript
+3096,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3097,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL;VBA
+3098,C;C++;C#;Java;Python;R
+3099,Clojure;Erlang;Python;Other(s):
+3100,Java;Python;SQL
+3101,Assembly;C;C#;HTML/CSS;JavaScript;SQL
+3102,Bash/Shell/PowerShell;C;C#;Go;JavaScript;Python;Ruby
+3104,C;HTML/CSS;Java;JavaScript;Python;TypeScript
+3105,C;C++;Java;Kotlin;Objective-C;Python;Swift
+3106,Objective-C;Swift
+3107,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+3108,C#;HTML/CSS;Java;JavaScript;Scala;SQL
+3109,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+3110,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+3111,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+3112,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+3113,C#
+3114,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+3115,JavaScript
+3116,Python
+3117,C;C++;HTML/CSS;JavaScript;SQL;Swift
+3118,C++
+3119,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby
+3120,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+3121,C;C#;HTML/CSS;Python;R;SQL;WebAssembly
+3122,C;C++;JavaScript;Objective-C;Swift;TypeScript
+3123,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+3124,Elixir;Erlang;Go;Python;Rust
+3125,C#
+3126,HTML/CSS;JavaScript;Python
+3127,C#;HTML/CSS;Java;JavaScript
+3128,Java;SQL
+3129,Dart;Java;Kotlin;Objective-C;Python;Swift
+3131,JavaScript;PHP
+3132,HTML/CSS;JavaScript
+3133,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+3134,Python;R;SQL
+3135,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+3136,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+3137,HTML/CSS;Java;JavaScript;SQL
+3138,Bash/Shell/PowerShell;C;PHP
+3139,Bash/Shell/PowerShell;C;C++;Java;Python;Scala
+3140,HTML/CSS;Java;JavaScript
+3141,HTML/CSS;Java;JavaScript;PHP;Swift
+3142,HTML/CSS;Java;JavaScript;Python
+3143,Python;SQL
+3144,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+3145,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+3146,HTML/CSS;JavaScript;Ruby
+3147,Bash/Shell/PowerShell;C++;Python;Other(s):
+3148,C#;SQL;VBA;Other(s):
+3149,C;C++;HTML/CSS;Java
+3150,C;C++;HTML/CSS;JavaScript;Other(s):
+3151,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+3152,Java;JavaScript
+3153,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+3154,HTML/CSS;JavaScript;Python
+3155,Other(s):
+3156,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+3157,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3158,Bash/Shell/PowerShell;C++;C#;SQL
+3159,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+3160,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+3161,HTML/CSS;JavaScript;PHP;TypeScript
+3162,C#;F#;HTML/CSS;JavaScript
+3163,C;C++;HTML/CSS;Java;JavaScript;SQL
+3164,C++;C#;SQL
+3165,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java
+3166,Java;Python
+3167,C;C++;HTML/CSS;JavaScript;SQL
+3168,C;HTML/CSS;JavaScript;PHP;Python;SQL
+3169,Java
+3170,C;C++;HTML/CSS;JavaScript
+3171,Bash/Shell/PowerShell;Other(s):
+3172,JavaScript;PHP;SQL
+3173,HTML/CSS;Java;JavaScript;SQL
+3174,HTML/CSS;JavaScript;TypeScript
+3176,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+3177,C#;HTML/CSS;JavaScript;TypeScript
+3178,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+3179,C;C#;HTML/CSS;Java;JavaScript;PHP;VBA
+3180,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+3181,Bash/Shell/PowerShell;HTML/CSS;Scala;SQL
+3182,HTML/CSS;Java;JavaScript;TypeScript
+3183,HTML/CSS;JavaScript;Python;TypeScript
+3184,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+3185,Bash/Shell/PowerShell;Python;Scala;SQL
+3186,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL
+3187,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+3188,C;C++;Go;Java;JavaScript;Python;R;SQL
+3189,Other(s):
+3190,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+3191,HTML/CSS;Java;JavaScript;TypeScript
+3192,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+3193,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Swift
+3194,C++;Python;Other(s):
+3195,Assembly;Bash/Shell/PowerShell;C;PHP;Python;SQL
+3196,C#;Python
+3197,Bash/Shell/PowerShell;Java;Python
+3198,Python
+3200,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+3201,Bash/Shell/PowerShell;C++;Python;Other(s):
+3202,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+3203,C#;HTML/CSS;SQL
+3204,Bash/Shell/PowerShell;C;Go;Java;Python
+3205,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+3206,Java;JavaScript;PHP;Python;SQL
+3207,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+3208,C++;Java;JavaScript;Other(s):
+3209,Bash/Shell/PowerShell;C;Go;HTML/CSS;PHP;Python;Ruby;SQL
+3210,Java;Kotlin;SQL
+3211,Java;Kotlin;Python;SQL
+3212,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+3213,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+3214,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Swift
+3215,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3216,C;SQL
+3217,Bash/Shell/PowerShell;Java
+3218,HTML/CSS;JavaScript
+3219,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+3220,Bash/Shell/PowerShell;JavaScript;Other(s):
+3221,C;C++;C#;Python
+3222,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+3223,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3224,HTML/CSS;Java;JavaScript;TypeScript
+3225,HTML/CSS;Java;JavaScript;SQL
+3226,C#;HTML/CSS;JavaScript;TypeScript
+3227,HTML/CSS;Java;SQL
+3228,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+3229,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+3230,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;SQL
+3231,Elixir;HTML/CSS;JavaScript;Ruby;Other(s):
+3232,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3233,Bash/Shell/PowerShell;C#;Java;Python;R;Scala;SQL
+3234,C;C++;HTML/CSS;Objective-C;Other(s):
+3235,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+3236,Java;JavaScript;SQL
+3237,C;Java;Objective-C;Swift
+3238,HTML/CSS;JavaScript;Python;R
+3239,HTML/CSS;JavaScript
+3240,Java;Python
+3241,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+3242,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+3243,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+3244,Python;SQL;Other(s):
+3245,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3246,HTML/CSS;Java;JavaScript
+3247,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+3248,Bash/Shell/PowerShell;C;Python
+3249,C#;HTML/CSS;Java;JavaScript;SQL
+3250,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+3251,Bash/Shell/PowerShell;Go;Java;Python;Ruby;SQL
+3252,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+3253,HTML/CSS;Java;JavaScript
+3254,C#;Dart;SQL;Other(s):
+3255,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+3256,C;Java;JavaScript;Python;TypeScript;Other(s):
+3257,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+3258,C;Go;HTML/CSS;JavaScript;Ruby;SQL
+3259,Python;R
+3260,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+3261,C#;HTML/CSS;JavaScript;SQL;Other(s):
+3262,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+3263,JavaScript;PHP
+3264,Assembly;Bash/Shell/PowerShell;C;C++
+3265,C#;Go;Python;SQL;TypeScript
+3266,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3267,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+3268,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+3269,Assembly;C++;HTML/CSS;Java;JavaScript;Python
+3270,C
+3271,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+3272,Java;JavaScript;PHP
+3273,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+3274,Dart;Java;Kotlin;PHP;Python
+3275,C#;SQL
+3276,C++;C#;HTML/CSS;Java;JavaScript;Python
+3277,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+3278,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+3279,HTML/CSS;Java;JavaScript;PHP;Python
+3280,Assembly;C;C++;JavaScript;Python
+3281,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+3282,C++;HTML/CSS;Python
+3283,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Python;SQL;TypeScript;Other(s):
+3284,Clojure;HTML/CSS
+3285,C++
+3286,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+3287,HTML/CSS;JavaScript;TypeScript
+3288,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+3289,HTML/CSS;JavaScript;TypeScript
+3290,Java;JavaScript;TypeScript
+3291,Java;JavaScript;TypeScript
+3292,Python
+3293,Bash/Shell/PowerShell;Python
+3294,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;Rust
+3295,Go;HTML/CSS;JavaScript;SQL
+3296,SQL;Other(s):
+3297,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3298,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript;WebAssembly;Other(s):
+3299,C#;SQL;VBA
+3300,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+3301,C#;TypeScript
+3302,C#;HTML/CSS;JavaScript;SQL;VBA
+3303,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+3304,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;TypeScript
+3305,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+3306,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+3307,Bash/Shell/PowerShell;Go;JavaScript;SQL
+3308,C;HTML/CSS;JavaScript;Python;Rust
+3309,C++;HTML/CSS;Java;SQL
+3310,C++;C#
+3311,HTML/CSS;Java;JavaScript;Python;TypeScript
+3312,HTML/CSS;JavaScript;SQL
+3313,Bash/Shell/PowerShell;Java;SQL;Other(s):
+3314,HTML/CSS;JavaScript;PHP;R;SQL;TypeScript;VBA
+3315,Java;JavaScript;PHP
+3316,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+3317,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python
+3318,HTML/CSS;JavaScript;PHP;Swift
+3319,C#;HTML/CSS;JavaScript
+3320,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+3321,Elixir;JavaScript;Ruby;SQL
+3322,C#;Java;SQL
+3323,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript
+3324,Java;Kotlin;SQL
+3325,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+3327,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;VBA;Other(s):
+3328,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3329,Java
+3330,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+3332,C#;HTML/CSS;JavaScript
+3333,C++;C#;Python
+3334,Bash/Shell/PowerShell;Java;JavaScript;Python;Rust;SQL
+3335,C#;HTML/CSS;SQL
+3336,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+3337,Dart;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+3338,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+3339,HTML/CSS;JavaScript;PHP;TypeScript
+3340,Bash/Shell/PowerShell;C;C++;Java;Python
+3341,Bash/Shell/PowerShell;Java;Python
+3342,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+3343,HTML/CSS;JavaScript;Other(s):
+3344,C#;HTML/CSS;JavaScript;TypeScript;VBA;Other(s):
+3345,HTML/CSS;Java
+3346,Ruby
+3347,HTML/CSS;JavaScript;Scala
+3348,C++;HTML/CSS;Java;JavaScript;Python;SQL
+3349,C++;C#;Python
+3350,C
+3351,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+3352,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;SQL;WebAssembly
+3353,C++;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+3354,Java;JavaScript;Python;Ruby
+3355,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL;Swift;TypeScript;VBA
+3356,C#;HTML/CSS;JavaScript;SQL
+3357,Assembly;C
+3358,Bash/Shell/PowerShell;Go;Ruby;Rust;SQL;Other(s):
+3359,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3360,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+3361,Bash/Shell/PowerShell;C;C#;Dart;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA;WebAssembly
+3362,C;Go;JavaScript;Kotlin;Python;Rust;SQL;Swift;TypeScript;WebAssembly
+3363,Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+3364,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+3365,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+3366,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+3367,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Scala;SQL
+3368,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+3369,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+3370,C#;Java
+3371,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;TypeScript
+3372,Java
+3373,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+3374,JavaScript;Swift
+3375,Java;SQL
+3376,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+3377,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+3378,C++;C#;VBA
+3379,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+3380,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+3381,C++;HTML/CSS;Python
+3382,Clojure;HTML/CSS;Java;JavaScript;Python
+3383,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python
+3384,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+3385,C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL;Swift
+3386,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+3387,Java;JavaScript;TypeScript
+3388,Java;PHP
+3389,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+3390,C;Go;Python;SQL
+3391,Assembly;HTML/CSS;JavaScript;PHP;SQL;Swift
+3392,C#;Java;Other(s):
+3393,Bash/Shell/PowerShell;Objective-C;Swift
+3394,Java;JavaScript;Python
+3396,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3397,C++;Go;JavaScript;SQL
+3398,C;HTML/CSS;Java;PHP
+3399,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+3400,C++;HTML/CSS;JavaScript
+3401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+3402,Bash/Shell/PowerShell;C;Python
+3403,C++;HTML/CSS;Java;JavaScript;Ruby;SQL
+3404,Go;JavaScript;PHP;Python;SQL
+3405,HTML/CSS;JavaScript;PHP
+3406,Python;SQL
+3407,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+3408,C#;JavaScript
+3409,C;C#
+3410,C#;HTML/CSS;JavaScript;TypeScript
+3411,C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+3412,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Python;SQL;Other(s):
+3413,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+3414,C;C++;HTML/CSS;JavaScript;PHP;SQL
+3415,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+3416,Bash/Shell/PowerShell;C;C++;Other(s):
+3417,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+3418,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL;VBA
+3419,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+3420,Elixir;Ruby
+3421,Assembly;Bash/Shell/PowerShell;C;C++;Python
+3422,C++;HTML/CSS;JavaScript;Python;WebAssembly
+3423,C;C#;Python
+3424,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust
+3425,Java;SQL
+3426,C#;HTML/CSS;Python;Other(s):
+3427,C#;SQL;TypeScript
+3428,Python
+3429,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+3430,HTML/CSS;Java;PHP
+3431,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;VBA
+3432,HTML/CSS;JavaScript;Python;SQL
+3433,C;HTML/CSS;Python;Other(s):
+3434,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+3435,HTML/CSS;PHP;Python
+3436,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+3437,Java;JavaScript;SQL
+3438,Bash/Shell/PowerShell;JavaScript;R
+3439,C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+3440,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+3441,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+3442,C#;HTML/CSS;JavaScript;SQL
+3443,C++;JavaScript;Python;SQL;Other(s):
+3444,Other(s):
+3445,Go;HTML/CSS;Java;JavaScript;SQL
+3446,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Rust;VBA
+3447,HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+3448,C;HTML/CSS;Java;JavaScript
+3449,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby
+3450,Bash/Shell/PowerShell;C;Ruby;SQL
+3451,C++;HTML/CSS;JavaScript
+3452,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+3453,C;C++;Rust;Other(s):
+3454,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+3455,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+3456,C#
+3457,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+3458,Java;JavaScript;SQL;Swift
+3459,Bash/Shell/PowerShell;Java;Python;Other(s):
+3460,C++;Other(s):
+3461,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+3462,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+3463,C++;HTML/CSS;JavaScript;PHP;SQL
+3464,Bash/Shell/PowerShell;C#;Other(s):
+3465,HTML/CSS;JavaScript;PHP;SQL
+3466,Java;JavaScript;Python
+3467,C#;HTML/CSS;JavaScript;SQL
+3468,C++;C#;Java;SQL;VBA
+3469,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3470,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+3471,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL
+3472,Objective-C;SQL;Swift
+3473,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+3474,Assembly;C;C++;C#;Java;PHP;Ruby;SQL
+3475,HTML/CSS;JavaScript;PHP;SQL
+3476,HTML/CSS;JavaScript;Python;SQL
+3477,Bash/Shell/PowerShell;C#;SQL;VBA
+3478,C#
+3479,Python
+3480,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3481,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+3482,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+3483,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+3484,HTML/CSS;JavaScript;TypeScript
+3485,C++;Java;JavaScript;SQL
+3486,C#;HTML/CSS;JavaScript;SQL
+3487,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+3488,HTML/CSS;JavaScript;PHP;SQL
+3489,HTML/CSS;JavaScript;Ruby;SQL
+3490,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+3491,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+3492,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+3493,Bash/Shell/PowerShell;Python
+3494,C++;C#;Java;Objective-C
+3495,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+3496,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Ruby;Rust
+3497,HTML/CSS;JavaScript;PHP
+3498,Java;SQL
+3499,HTML/CSS;Java;JavaScript;VBA
+3500,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3501,Assembly;C++;Python
+3502,HTML/CSS;JavaScript;Python
+3503,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP
+3504,HTML/CSS;JavaScript;PHP;Python
+3505,Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;VBA
+3506,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+3507,C#;HTML/CSS;JavaScript;TypeScript
+3508,Bash/Shell/PowerShell;JavaScript;TypeScript
+3509,Bash/Shell/PowerShell;Java;JavaScript;R;SQL
+3510,R
+3511,HTML/CSS;JavaScript;PHP
+3512,Java;JavaScript;SQL
+3513,HTML/CSS;JavaScript;PHP
+3514,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+3515,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+3516,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;VBA
+3517,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+3518,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+3519,Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+3520,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+3521,HTML/CSS;JavaScript;PHP
+3522,HTML/CSS;JavaScript
+3523,Java;Kotlin
+3524,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+3525,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+3526,Java;JavaScript
+3527,HTML/CSS;Java;JavaScript;SQL
+3528,Dart;Java;Kotlin
+3529,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+3530,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+3531,C++;Other(s):
+3532,Bash/Shell/PowerShell;C;C++;Python
+3533,HTML/CSS;JavaScript
+3534,Assembly;C++;C#;HTML/CSS;PHP;SQL
+3535,Clojure;JavaScript;Kotlin;TypeScript
+3536,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+3537,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Ruby
+3538,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+3539,Python
+3540,HTML/CSS;JavaScript;Python;SQL
+3541,C;C++;HTML/CSS;JavaScript;Objective-C;Python;Swift
+3542,C;C#;Java;JavaScript;Python;SQL
+3544,HTML/CSS;Java;JavaScript;Python
+3545,Assembly;Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+3546,HTML/CSS;JavaScript;SQL
+3547,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+3548,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+3549,Objective-C;Swift
+3550,C;C++
+3551,HTML/CSS;JavaScript;Python;SQL
+3552,HTML/CSS;JavaScript;PHP;SQL
+3553,PHP;SQL
+3554,HTML/CSS;JavaScript;TypeScript
+3555,Python;VBA
+3556,C;HTML/CSS;JavaScript;PHP;Python;SQL
+3557,C#;F#;HTML/CSS;Java;JavaScript;SQL
+3558,HTML/CSS;Ruby;SQL;Other(s):
+3559,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+3560,Java
+3561,JavaScript;PHP;Python;Swift
+3562,C#;R;SQL
+3563,C;Java;Python
+3564,HTML/CSS;JavaScript;TypeScript
+3565,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+3566,C#;HTML/CSS;JavaScript
+3567,JavaScript;Rust
+3568,HTML/CSS;JavaScript;SQL
+3569,Assembly;C#
+3570,HTML/CSS;JavaScript;Python
+3571,Go;HTML/CSS;Java;JavaScript;PHP;R;SQL
+3572,HTML/CSS;Java;JavaScript;PHP;Other(s):
+3573,HTML/CSS;Java;JavaScript
+3574,HTML/CSS;Java;Python;SQL
+3575,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+3576,HTML/CSS;JavaScript;Python;Ruby;SQL
+3577,C#;HTML/CSS;JavaScript;SQL;VBA
+3578,Java
+3579,HTML/CSS;JavaScript;PHP;SQL
+3580,C#;HTML/CSS;Java;PHP;SQL;VBA
+3581,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+3582,HTML/CSS;JavaScript;Python;SQL
+3583,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+3584,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+3585,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+3586,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+3587,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+3588,C;HTML/CSS;JavaScript;Python
+3589,Swift
+3590,Java
+3591,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;Other(s):
+3592,C#;JavaScript
+3593,Objective-C;Swift
+3594,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+3595,Bash/Shell/PowerShell;C++;Python;SQL
+3596,C#;HTML/CSS;JavaScript;SQL
+3597,Java;JavaScript;SQL
+3598,C#;PHP;SQL
+3599,HTML/CSS;JavaScript;TypeScript
+3600,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+3601,Bash/Shell/PowerShell;Java;Python;Ruby
+3602,Go;HTML/CSS;JavaScript;Kotlin;Python;Scala;TypeScript
+3603,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+3604,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+3605,C#;F#
+3606,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+3607,HTML/CSS;JavaScript;TypeScript
+3608,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+3609,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;VBA
+3610,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+3611,HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+3613,HTML/CSS;Java
+3614,HTML/CSS
+3615,Assembly;C;HTML/CSS;Java
+3616,C;C++;HTML/CSS;Java;JavaScript;SQL
+3617,HTML/CSS;Python
+3618,Java
+3619,C++;Java;Python;SQL
+3620,C#;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+3621,HTML/CSS;JavaScript;PHP
+3622,C;C++;HTML/CSS;Java;PHP;SQL
+3623,C#;HTML/CSS;JavaScript
+3624,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+3625,Python;SQL;TypeScript
+3626,C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+3627,HTML/CSS;Java;JavaScript;Python;SQL
+3628,Assembly;C++;HTML/CSS;Java;JavaScript;Python;SQL
+3629,HTML/CSS;JavaScript;TypeScript
+3630,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3631,HTML/CSS;Python
+3632,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3633,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+3634,HTML/CSS;JavaScript;PHP
+3635,C#;Java;JavaScript;Python
+3636,Assembly;C;C++;Java;JavaScript;Python;TypeScript
+3637,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+3638,Go;Java;Python;SQL
+3639,Java;JavaScript;PHP
+3640,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Python;SQL;Swift;TypeScript
+3641,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+3642,Dart;HTML/CSS;PHP;Python
+3643,HTML/CSS;JavaScript;PHP;SQL
+3644,HTML/CSS;JavaScript
+3645,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+3646,JavaScript;PHP;SQL
+3647,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+3648,HTML/CSS;JavaScript;TypeScript
+3649,C#;HTML/CSS;JavaScript;TypeScript
+3650,HTML/CSS;JavaScript;Python;Scala;TypeScript
+3651,C#;HTML/CSS;JavaScript;SQL
+3652,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+3653,Bash/Shell/PowerShell;Scala;SQL;TypeScript
+3654,C;C++;C#
+3655,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL;VBA
+3656,Bash/Shell/PowerShell;C++;Python;Rust
+3657,HTML/CSS;JavaScript;Python
+3658,JavaScript
+3659,C;Go;Java;JavaScript;Python;TypeScript
+3660,Bash/Shell/PowerShell;C;C++;Python;VBA;Other(s):
+3661,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+3662,Go;Java;JavaScript;Python;Scala;SQL;TypeScript
+3663,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript;Other(s):
+3664,Bash/Shell/PowerShell;C;Python;SQL
+3665,Java;Kotlin;Python
+3666,Bash/Shell/PowerShell;Go;Python
+3667,Bash/Shell/PowerShell;C#;JavaScript
+3668,C++;C#;HTML/CSS;JavaScript
+3669,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+3670,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+3671,C#;JavaScript;TypeScript
+3672,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL;TypeScript
+3673,HTML/CSS;JavaScript;Ruby
+3674,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+3675,HTML/CSS;Java;JavaScript;PHP;SQL
+3676,HTML/CSS;JavaScript;Python;SQL;TypeScript
+3677,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+3678,Java;Kotlin;Python;Ruby
+3679,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+3680,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;SQL;Other(s):
+3681,C#;Java;Python;Other(s):
+3682,C#;Java;Scala;TypeScript
+3683,HTML/CSS;Java;JavaScript;TypeScript
+3684,C#;Java;JavaScript;Kotlin;PHP;Python;SQL
+3685,C;C#;JavaScript
+3686,Assembly;C;Python
+3687,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+3688,C#;HTML/CSS;JavaScript;PHP;SQL
+3689,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+3690,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+3691,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+3692,C#;SQL;TypeScript
+3693,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python
+3694,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+3695,Python;Rust;SQL
+3696,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+3697,Bash/Shell/PowerShell;Dart;Go;Kotlin;PHP;Python;SQL
+3698,C#;HTML/CSS;JavaScript;TypeScript
+3699,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+3700,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+3701,C;R
+3702,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;VBA
+3703,Java;Python;SQL
+3704,C#;Dart;F#;HTML/CSS;Java;JavaScript;Python;SQL
+3705,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+3706,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;Swift;TypeScript
+3707,C;C++;C#;SQL;VBA
+3708,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby
+3709,Bash/Shell/PowerShell;C++;C#;Go;JavaScript;PHP;SQL;TypeScript
+3710,HTML/CSS;JavaScript;SQL
+3711,C++;Go;Java;Python;Scala;SQL;Swift;Other(s):
+3712,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+3713,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3714,Java
+3715,C;Go;JavaScript;Python;Scala;Other(s):
+3716,HTML/CSS;JavaScript;PHP;SQL
+3717,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+3718,HTML/CSS;JavaScript;Python;SQL
+3719,Assembly;C;C++;Java;SQL;VBA
+3720,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+3721,C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+3722,HTML/CSS;Java;JavaScript;PHP;SQL
+3723,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+3724,Bash/Shell/PowerShell;Java;JavaScript;SQL
+3725,C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+3726,HTML/CSS;JavaScript;Python;SQL;VBA
+3727,Go;Java
+3728,Bash/Shell/PowerShell;C#;Java;Ruby;Other(s):
+3729,Bash/Shell/PowerShell;C;C++;Java;R
+3730,HTML/CSS;Java;JavaScript;PHP;Ruby
+3731,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;PHP;Python;SQL;TypeScript;VBA
+3732,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL
+3733,Java;Scala
+3734,HTML/CSS;JavaScript;PHP;SQL
+3735,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+3736,HTML/CSS;JavaScript;Python;Ruby;SQL
+3737,HTML/CSS;JavaScript;Python
+3738,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3740,C++;C#
+3741,Go;Kotlin;Python;Ruby;SQL
+3742,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+3743,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+3744,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;Other(s):
+3745,JavaScript;Python;R;Ruby
+3746,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+3747,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+3748,Bash/Shell/PowerShell;C#;Go;Python;SQL
+3749,C;C++;Go;HTML/CSS;JavaScript
+3750,C#;HTML/CSS;JavaScript;TypeScript
+3751,C#;HTML/CSS;JavaScript
+3752,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+3753,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+3754,Bash/Shell/PowerShell;C;Java;Python;R;Swift;VBA
+3755,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+3756,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+3757,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift
+3758,C#;HTML/CSS;JavaScript
+3759,C++;C#;PHP;Python;SQL
+3760,C#;HTML/CSS;Java;JavaScript;SQL
+3761,HTML/CSS;Java;JavaScript;SQL
+3762,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+3763,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+3764,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+3765,Bash/Shell/PowerShell;HTML/CSS;Java
+3766,HTML/CSS;JavaScript;Python
+3767,HTML/CSS;Java;JavaScript;PHP
+3768,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+3769,HTML/CSS;Java;JavaScript;SQL
+3770,C;C++;HTML/CSS;Java;JavaScript;Objective-C
+3771,C#;TypeScript
+3773,Bash/Shell/PowerShell;Go;JavaScript;PHP
+3774,C#;HTML/CSS;JavaScript
+3775,C;C++;C#;HTML/CSS;Java;Objective-C;PHP;SQL;VBA
+3776,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;SQL
+3777,Assembly;Bash/Shell/PowerShell;C;Java;Objective-C;Python;SQL
+3778,HTML/CSS;JavaScript;PHP;Ruby;SQL
+3779,HTML/CSS;JavaScript
+3780,C;Elixir;Java;JavaScript;Python;Ruby;SQL;TypeScript
+3781,C#;Java
+3782,Bash/Shell/PowerShell;Go
+3783,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+3784,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+3785,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3786,Ruby
+3787,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript;WebAssembly
+3788,HTML/CSS;JavaScript
+3789,HTML/CSS;JavaScript
+3790,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+3791,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+3792,Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+3794,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+3795,HTML/CSS;Java;JavaScript
+3796,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+3797,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+3798,C;C#;HTML/CSS;SQL
+3799,Assembly;Bash/Shell/PowerShell;C;Python;SQL;Other(s):
+3800,HTML/CSS;JavaScript;PHP;SQL
+3801,HTML/CSS;JavaScript;PHP;R;SQL
+3802,C#
+3803,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;WebAssembly
+3804,C#;Python;Ruby;TypeScript
+3805,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+3806,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+3807,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+3808,HTML/CSS;JavaScript;Kotlin;Python
+3809,C++;C#;HTML/CSS;JavaScript;Python;SQL
+3810,Bash/Shell/PowerShell;C#
+3811,Dart;Other(s):
+3812,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+3813,Bash/Shell/PowerShell;Java
+3814,C;C++;Java;Objective-C;Python;SQL;Swift
+3815,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Python
+3816,C#;Python
+3817,Java
+3818,Python;R;SQL
+3819,C++;HTML/CSS;JavaScript;Python
+3820,HTML/CSS;JavaScript;PHP;SQL
+3821,Java;SQL
+3822,HTML/CSS;JavaScript;R;SQL
+3823,C#;HTML/CSS
+3824,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+3825,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript;Other(s):
+3826,C#;HTML/CSS;SQL
+3827,HTML/CSS;JavaScript;Python
+3828,Assembly;Bash/Shell/PowerShell;Go;JavaScript;Python;Scala
+3829,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+3830,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+3831,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+3832,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+3833,HTML/CSS;JavaScript;TypeScript
+3834,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL;WebAssembly
+3835,Java
+3836,Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;Swift
+3837,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+3838,HTML/CSS;JavaScript;PHP
+3839,C++;C#;HTML/CSS;JavaScript;Python
+3840,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+3841,C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+3842,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+3843,HTML/CSS;JavaScript;Python
+3844,C#;Java;Python
+3845,Assembly;HTML/CSS;JavaScript;TypeScript
+3846,JavaScript;PHP;Python;SQL
+3847,HTML/CSS;JavaScript;SQL;TypeScript
+3848,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+3849,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+3850,C#;Elixir;Erlang;Java;JavaScript;TypeScript
+3851,Bash/Shell/PowerShell;C;Python;Other(s):
+3852,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+3853,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+3854,C#;HTML/CSS;Java;JavaScript;Python;SQL
+3855,Bash/Shell/PowerShell;C;C++;Objective-C;Swift
+3856,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+3857,HTML/CSS;JavaScript;Python
+3858,JavaScript;Objective-C;Swift
+3859,HTML/CSS;JavaScript;SQL
+3860,HTML/CSS;JavaScript;Python;R;SQL
+3861,HTML/CSS;JavaScript;TypeScript
+3862,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3863,C#;HTML/CSS;JavaScript;Python;TypeScript
+3864,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+3865,C;C++;Java
+3866,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+3867,Swift
+3868,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+3869,C;C++;Python
+3870,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL;VBA
+3871,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+3872,C#;HTML/CSS;JavaScript;Python;SQL
+3873,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+3874,Python;R;SQL
+3875,C++;Python
+3876,Java
+3877,HTML/CSS;Java;JavaScript;SQL;TypeScript
+3878,C#;HTML/CSS;JavaScript;SQL
+3879,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Rust;TypeScript
+3880,Assembly;C;C++;C#;Java;JavaScript;PHP;Python;Rust;SQL
+3881,R
+3882,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+3883,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+3884,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+3885,Dart;Go;JavaScript;Python
+3886,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+3887,C;Python;Rust;Scala
+3888,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;WebAssembly
+3889,HTML/CSS;Java;JavaScript;Python;R;SQL
+3890,HTML/CSS;Java;JavaScript;PHP;SQL
+3891,Java;Kotlin
+3892,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+3893,HTML/CSS;Java;JavaScript
+3894,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+3895,Scala
+3896,Bash/Shell/PowerShell;Objective-C;Python;R;Swift
+3897,PHP;Python
+3898,C#;HTML/CSS;Java;JavaScript;Python
+3899,Bash/Shell/PowerShell;HTML/CSS;PHP
+3900,Assembly;C;C++;Java;Other(s):
+3901,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Python;SQL
+3902,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3903,C++
+3904,HTML/CSS;JavaScript;SQL;TypeScript;VBA
+3905,C#;JavaScript
+3906,HTML/CSS;PHP;SQL
+3907,Python
+3908,C#;HTML/CSS;SQL
+3909,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+3910,HTML/CSS;Java;JavaScript;PHP;TypeScript
+3911,C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+3912,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+3913,HTML/CSS;Java;JavaScript;PHP;TypeScript
+3914,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+3915,C#
+3916,Python;SQL
+3917,HTML/CSS;JavaScript;Other(s):
+3919,C#;HTML/CSS;Java;JavaScript;SQL
+3920,Java
+3921,Assembly;Bash/Shell/PowerShell;C++;Clojure;Go;Python
+3922,Bash/Shell/PowerShell;Java;JavaScript;SQL
+3923,Bash/Shell/PowerShell;C#;Java;JavaScript;R;SQL
+3924,Go;JavaScript;Python;SQL;TypeScript
+3925,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3926,Assembly;Bash/Shell/PowerShell;C;Dart;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+3927,Bash/Shell/PowerShell;Java;Python;Ruby
+3928,Elixir;Java;Kotlin;Python;Rust;SQL;Other(s):
+3929,Bash/Shell/PowerShell;Java;JavaScript;SQL;Swift
+3930,Ruby
+3931,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3932,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3933,HTML/CSS;Java;JavaScript;PHP;Swift
+3934,F#;HTML/CSS
+3935,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+3936,Python;R
+3937,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift;Other(s):
+3938,Bash/Shell/PowerShell;C++;C#;JavaScript;TypeScript
+3939,C#;HTML/CSS;JavaScript;Python;SQL
+3940,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+3941,Bash/Shell/PowerShell;Python;Ruby
+3942,Bash/Shell/PowerShell;Go;Java;Python;Other(s):
+3943,HTML/CSS;Python;SQL
+3944,Assembly;HTML/CSS;JavaScript;Ruby;TypeScript
+3945,Bash/Shell/PowerShell;Python;SQL
+3946,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift;TypeScript;Other(s):
+3947,Bash/Shell/PowerShell;C;C++;Java;Python
+3948,Assembly;Bash/Shell/PowerShell;C;Python
+3949,HTML/CSS;JavaScript;PHP
+3950,C++;C#;Dart;Java;Kotlin
+3951,C#;HTML/CSS;Java;JavaScript
+3952,HTML/CSS;JavaScript;TypeScript
+3953,HTML/CSS;JavaScript;SQL
+3954,Assembly;C;C++;Clojure;HTML/CSS;Java;JavaScript;Ruby;TypeScript;Other(s):
+3955,HTML/CSS;JavaScript;PHP
+3956,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+3957,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+3958,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+3959,JavaScript;PHP
+3960,JavaScript;Python;Other(s):
+3961,Bash/Shell/PowerShell;Python
+3962,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+3963,Bash/Shell/PowerShell;Java;SQL
+3964,Assembly;C;C++;HTML/CSS;Java;Python;SQL
+3965,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+3966,C;C++;Python
+3967,C;C++;C#;Python;R
+3968,C++;C#;Python
+3969,C#;SQL
+3970,Python;R;SQL
+3971,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+3972,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;Rust;SQL
+3973,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+3974,HTML/CSS;Java;Python;R
+3975,C++;Python;Rust
+3976,C#;F#;Ruby;SQL
+3977,HTML/CSS;Java;JavaScript;PHP;TypeScript
+3978,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+3979,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+3980,HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+3981,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+3982,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+3983,Bash/Shell/PowerShell;C#;Dart;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+3984,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+3985,HTML/CSS;Java;JavaScript;PHP;SQL
+3986,C#;HTML/CSS;JavaScript;TypeScript
+3987,C;C++;HTML/CSS;Java;Objective-C;Swift
+3988,C;C++;HTML/CSS
+3989,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+3990,HTML/CSS;Java;JavaScript;SQL
+3991,C;C++;HTML/CSS;Python
+3992,HTML/CSS;Java;JavaScript;SQL;TypeScript
+3993,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+3994,HTML/CSS;Java;JavaScript
+3995,C#;HTML/CSS;JavaScript;SQL;TypeScript
+3996,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;R;Ruby;Swift
+3997,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+3998,Bash/Shell/PowerShell;Python
+3999,Java;Kotlin
+4000,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;R;Rust;SQL
+4001,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+4002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+4003,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4004,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+4005,HTML/CSS;Java;SQL
+4006,Bash/Shell/PowerShell;Java;Kotlin;SQL
+4007,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python
+4009,C#;HTML/CSS;JavaScript;SQL;Other(s):
+4010,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+4011,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+4012,Java;JavaScript;Python;SQL
+4013,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;TypeScript
+4015,Bash/Shell/PowerShell;Java;Kotlin;SQL
+4016,Java;SQL
+4017,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+4018,HTML/CSS;JavaScript;PHP;TypeScript
+4019,C;C++;C#;HTML/CSS;VBA
+4020,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+4021,Java;Kotlin
+4022,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+4023,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+4024,JavaScript;PHP
+4025,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+4026,Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;PHP;Python;R;Ruby;Rust;SQL;TypeScript
+4027,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+4028,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+4029,C#;HTML/CSS;JavaScript;Objective-C;SQL;Other(s):
+4030,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4031,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4032,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+4033,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+4034,C;HTML/CSS;JavaScript;Python;Ruby;SQL
+4035,C#;Dart;Go;HTML/CSS;JavaScript;Python
+4036,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+4037,HTML/CSS;JavaScript;Python
+4038,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+4039,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4040,C;C++;HTML/CSS;Python;SQL
+4041,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript
+4042,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+4043,JavaScript;PHP;SQL
+4044,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL;Other(s):
+4045,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+4046,JavaScript;PHP;Python;Scala
+4047,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+4048,C#;HTML/CSS;JavaScript;SQL
+4049,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;Scala
+4050,Java;Python
+4051,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+4052,C++;C#;HTML/CSS;Java;TypeScript
+4053,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+4054,HTML/CSS;JavaScript;PHP;Python;SQL
+4055,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;JavaScript;SQL;TypeScript
+4056,Assembly;Bash/Shell/PowerShell;C;C++;PHP;Python;SQL;Other(s):
+4057,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+4058,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+4059,Assembly;Bash/Shell/PowerShell;C;Go;Python;Ruby;WebAssembly
+4060,Bash/Shell/PowerShell;Java;Python
+4061,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4062,C#;HTML/CSS;JavaScript;SQL
+4063,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+4064,C#;Python;R;SQL
+4065,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+4066,Bash/Shell/PowerShell;Python;Ruby
+4067,Assembly;Bash/Shell/PowerShell;JavaScript;PHP;SQL;VBA
+4068,C#;JavaScript
+4069,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+4070,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL;Other(s):
+4071,HTML/CSS;Java;JavaScript;PHP;Ruby
+4072,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+4073,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+4074,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+4075,Bash/Shell/PowerShell;Erlang;Go;Java;JavaScript;Python;Rust;SQL
+4076,C#;Java;Python
+4077,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+4078,Java;JavaScript;TypeScript
+4079,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+4080,HTML/CSS;Java;JavaScript;SQL
+4081,C#;Go;Java;JavaScript;Ruby;SQL;TypeScript
+4082,Java;JavaScript
+4083,C#;Go;Java;Python;TypeScript
+4084,JavaScript;Python;Ruby;SQL
+4085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4086,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+4087,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+4088,Java;JavaScript;R
+4089,Assembly;C++;Java;JavaScript;VBA;Other(s):
+4090,HTML/CSS;JavaScript;PHP;Python;SQL
+4091,R;SQL
+4092,C#;Java;JavaScript;SQL;TypeScript
+4093,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4094,C#;Java;SQL
+4095,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust
+4096,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+4097,C++;C#;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;TypeScript
+4098,Java;JavaScript;Kotlin
+4099,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4100,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+4101,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Python;SQL
+4102,Bash/Shell/PowerShell;C++;JavaScript;Python;R;SQL
+4103,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Swift;TypeScript
+4104,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4105,C;C++
+4106,HTML/CSS;JavaScript;Ruby;TypeScript
+4107,C;HTML/CSS;Java;JavaScript;Python;Swift
+4108,C#;HTML/CSS;JavaScript;TypeScript
+4109,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+4110,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript;Other(s):
+4111,HTML/CSS;JavaScript;PHP;SQL
+4112,HTML/CSS;JavaScript;Ruby
+4113,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+4114,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4115,Python
+4116,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+4117,C#;Erlang;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+4118,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Objective-C;Python;SQL
+4119,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+4120,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+4121,Java;JavaScript;Python;SQL
+4122,Java;JavaScript;PHP;SQL
+4123,C#;HTML/CSS;Python;SQL;TypeScript
+4124,Java;JavaScript;Python;SQL
+4125,Assembly;Bash/Shell/PowerShell;C;C++;Python
+4126,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+4127,C++;JavaScript;SQL
+4128,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+4129,Bash/Shell/PowerShell;Python;Other(s):
+4130,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4131,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;Scala;TypeScript
+4132,C++;HTML/CSS;JavaScript
+4133,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+4134,Java;TypeScript
+4136,C;C++;HTML/CSS;Java;JavaScript;Python
+4137,HTML/CSS;Java;JavaScript;SQL
+4138,Assembly;C;C#;F#;Objective-C
+4139,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4140,C++;Python
+4141,HTML/CSS;Java;JavaScript;SQL
+4142,C#;HTML/CSS;JavaScript;SQL
+4143,Bash/Shell/PowerShell;C;C++;Java;Objective-C;PHP;Python
+4144,Assembly;C;C#;Dart;Erlang;HTML/CSS;Java;Kotlin;PHP;R;Rust;SQL;TypeScript;WebAssembly
+4145,Java;JavaScript
+4146,HTML/CSS;JavaScript;Python;SQL
+4147,Go;PHP
+4148,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python
+4149,C#;HTML/CSS;JavaScript;TypeScript
+4150,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+4151,Java;Swift
+4153,C#;Python;SQL;VBA
+4154,HTML/CSS;PHP;SQL
+4155,Bash/Shell/PowerShell;C;HTML/CSS;Python
+4156,Bash/Shell/PowerShell;C
+4157,Ruby
+4158,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+4159,HTML/CSS;JavaScript;Python
+4160,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+4161,C;Python
+4162,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+4163,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4164,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4165,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+4166,HTML/CSS;Java;JavaScript;Python
+4167,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+4168,Go;HTML/CSS;Java;JavaScript;PHP
+4169,Go;HTML/CSS;JavaScript;Ruby;SQL
+4170,Java;JavaScript;Python
+4171,C;HTML/CSS;Java;JavaScript;Python;SQL
+4172,C#;HTML/CSS;JavaScript;Other(s):
+4173,F#;Python;R;Other(s):
+4174,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+4175,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+4177,Bash/Shell/PowerShell;C;C++;Rust
+4178,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+4179,C;Python
+4180,Bash/Shell/PowerShell;Java;JavaScript;Rust;Scala;TypeScript
+4181,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+4182,Java;JavaScript;Other(s):
+4183,HTML/CSS;JavaScript;PHP;SQL
+4184,Bash/Shell/PowerShell;Go;Python;R;SQL
+4185,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+4186,HTML/CSS;Java;JavaScript;TypeScript
+4187,C;HTML/CSS;JavaScript;PHP;Python;SQL
+4188,Python
+4189,C;HTML/CSS;JavaScript;PHP
+4190,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;Other(s):
+4191,Bash/Shell/PowerShell;Dart;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;Other(s):
+4192,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+4193,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+4194,Java
+4195,HTML/CSS;JavaScript;PHP;TypeScript
+4196,Python
+4197,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+4198,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+4199,Java;JavaScript;Python;SQL
+4200,C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+4201,Bash/Shell/PowerShell;C++;C#;VBA
+4202,HTML/CSS;JavaScript;PHP;SQL
+4203,Go;HTML/CSS;JavaScript;Kotlin;Rust
+4204,C++;Java;Kotlin
+4205,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python
+4206,HTML/CSS;Java;JavaScript;Python
+4207,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+4209,HTML/CSS;JavaScript;SQL
+4210,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+4211,Python;R
+4212,C#;HTML/CSS;JavaScript;PHP
+4213,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript;WebAssembly;Other(s):
+4214,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4215,C#;JavaScript;Python;SQL;TypeScript
+4216,Bash/Shell/PowerShell;C;C#;F#;Go;JavaScript;SQL
+4217,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL;Other(s):
+4218,Java;JavaScript;SQL;VBA;Other(s):
+4219,C++
+4220,HTML/CSS;JavaScript;Ruby;SQL
+4221,Bash/Shell/PowerShell;Java;Python;SQL
+4222,HTML/CSS;JavaScript;PHP
+4223,R;SQL
+4224,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+4225,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+4226,Bash/Shell/PowerShell;C;C++;C#;Dart;Elixir;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;Swift;TypeScript
+4227,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+4228,HTML/CSS;JavaScript;SQL
+4229,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+4230,HTML/CSS;Java;JavaScript;PHP
+4231,Java
+4232,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+4233,HTML/CSS;PHP;SQL
+4234,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+4235,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4236,C++;C#;HTML/CSS;Java;Kotlin;PHP;Swift
+4237,HTML/CSS;JavaScript;TypeScript
+4238,Go;HTML/CSS;JavaScript;Kotlin;Python;Ruby
+4239,C#
+4240,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+4241,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+4242,HTML/CSS;JavaScript;TypeScript
+4243,C++;Java;Python;SQL
+4244,Dart
+4245,HTML/CSS;Python
+4246,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Other(s):
+4247,Erlang;Go;Python
+4248,Assembly;Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;SQL;TypeScript
+4249,C#;PHP;SQL
+4250,Bash/Shell/PowerShell;C++;HTML/CSS;Java
+4251,C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+4252,C#;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript;VBA
+4254,Bash/Shell/PowerShell;Java;JavaScript;SQL
+4255,HTML/CSS;JavaScript;Python
+4256,C#;HTML/CSS;SQL;VBA
+4257,Assembly;Bash/Shell/PowerShell;C++;Java;Kotlin;Python
+4258,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+4259,C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+4260,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4262,HTML/CSS;Java;Python;SQL
+4263,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL
+4264,Dart;Go;Java;JavaScript
+4265,HTML/CSS;JavaScript;PHP;SQL
+4266,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+4267,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+4268,Java
+4269,C#;TypeScript
+4270,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+4272,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+4273,Bash/Shell/PowerShell;Go;JavaScript;Ruby;SQL
+4274,HTML/CSS;Java;JavaScript;SQL;TypeScript
+4275,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+4276,HTML/CSS;Java;JavaScript;Python;Swift
+4277,Swift
+4278,HTML/CSS;Java;JavaScript;SQL
+4279,Go;Java;JavaScript;TypeScript
+4280,C++;C#
+4281,HTML/CSS;Java;JavaScript;PHP;SQL
+4282,HTML/CSS;Java;JavaScript;Python;SQL
+4283,Assembly;Bash/Shell/PowerShell;C;C++;Python
+4284,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+4285,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4286,Dart;JavaScript;Swift
+4287,Java;JavaScript;Kotlin
+4288,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+4289,Dart;Java
+4290,HTML/CSS;Java;JavaScript;PHP;SQL
+4291,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4292,C;C++;C#;HTML/CSS;Java;Python;SQL
+4293,Bash/Shell/PowerShell;C;Python
+4294,C;C++;HTML/CSS;Java
+4295,C;JavaScript;Python;Other(s):
+4296,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4297,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4298,Assembly;C++;HTML/CSS;Java;JavaScript;Swift
+4299,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+4300,C#
+4301,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL;Swift;VBA
+4302,JavaScript;TypeScript
+4303,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Ruby;SQL;Swift;TypeScript
+4304,Java;JavaScript;Scala;SQL
+4305,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL;WebAssembly
+4306,HTML/CSS;JavaScript;PHP;SQL
+4307,Python
+4308,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+4309,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+4310,HTML/CSS;Java;R;SQL
+4311,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4312,Bash/Shell/PowerShell;JavaScript;Python;SQL;TypeScript
+4313,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4314,HTML/CSS;JavaScript
+4315,HTML/CSS;Objective-C;Swift
+4316,Java;VBA
+4317,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+4318,Bash/Shell/PowerShell;C++;Java;Python;SQL
+4319,Java;JavaScript;SQL;TypeScript
+4320,Bash/Shell/PowerShell;C++;JavaScript;Kotlin
+4321,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;WebAssembly
+4322,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+4323,C;C++;HTML/CSS;JavaScript;Python;WebAssembly
+4324,HTML/CSS;JavaScript;PHP;SQL;VBA
+4325,C++;C#;HTML/CSS;JavaScript;TypeScript
+4326,Assembly;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;TypeScript
+4327,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+4328,Java;JavaScript;PHP
+4329,Bash/Shell/PowerShell;JavaScript;Ruby;SQL;TypeScript;VBA
+4330,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4332,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+4333,Bash/Shell/PowerShell;Java;JavaScript;SQL;Swift
+4334,Go;HTML/CSS;JavaScript;Python;SQL
+4335,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+4336,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;Other(s):
+4337,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+4338,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+4339,JavaScript;Ruby
+4340,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+4341,HTML/CSS;Java;JavaScript;SQL
+4342,C++;HTML/CSS;Java
+4343,C#;HTML/CSS;PHP;Python
+4344,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+4345,C#;HTML/CSS;Java;JavaScript;SQL
+4346,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4347,Elixir;HTML/CSS;JavaScript;PHP;SQL
+4348,C++;C#;Python
+4349,Assembly;Python
+4350,C;C++;Java;Python;R;VBA;Other(s):
+4351,Java;SQL
+4352,HTML/CSS;JavaScript;Ruby;SQL
+4353,C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+4354,C#;Java
+4355,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+4356,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+4357,C;C++;C#;Java;Other(s):
+4358,HTML/CSS;JavaScript;Ruby;SQL
+4359,Bash/Shell/PowerShell;C;C#;Go;JavaScript;Python;SQL
+4360,Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+4361,C;C++;HTML/CSS;Java;JavaScript;PHP
+4362,Python;Swift
+4363,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+4364,Bash/Shell/PowerShell;C
+4365,C;C++;Python
+4366,HTML/CSS;JavaScript;Python
+4367,HTML/CSS;JavaScript;PHP;SQL
+4368,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+4369,Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;Swift
+4370,Go;Python;SQL;Other(s):
+4371,Bash/Shell/PowerShell;Java;Python
+4372,C;C++
+4373,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+4374,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;VBA
+4375,HTML/CSS;JavaScript;Python;SQL
+4376,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+4377,Java
+4378,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4379,Bash/Shell/PowerShell;Go;JavaScript;PHP;Scala;SQL
+4380,HTML/CSS;JavaScript;PHP
+4381,HTML/CSS;JavaScript;Python;R;SQL
+4382,HTML/CSS;Java;JavaScript;PHP
+4383,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP
+4384,C;C#;HTML/CSS;Java;JavaScript;Python
+4385,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+4386,HTML/CSS;PHP;TypeScript
+4387,C#;JavaScript;SQL
+4389,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+4390,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+4391,C#;HTML/CSS;JavaScript;Python
+4392,C;C++;Java
+4393,C#;SQL;TypeScript
+4394,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+4395,HTML/CSS;Java;JavaScript;Python;TypeScript
+4396,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+4397,Java;JavaScript;PHP;SQL;TypeScript
+4398,Java;JavaScript;SQL
+4399,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Rust;Scala;SQL
+4400,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+4401,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;VBA;Other(s):
+4402,JavaScript;Objective-C;TypeScript
+4403,HTML/CSS;Python;Ruby;SQL
+4404,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+4405,Clojure;HTML/CSS;Java;JavaScript;SQL
+4407,Other(s):
+4408,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4409,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+4410,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4411,Bash/Shell/PowerShell;C;Java;Objective-C;Python;Swift
+4412,Assembly;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;VBA;Other(s):
+4413,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby
+4414,Bash/Shell/PowerShell;HTML/CSS;SQL
+4415,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL
+4416,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL;VBA
+4417,C#;Elixir;Erlang;F#;JavaScript;TypeScript
+4418,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+4419,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+4420,Bash/Shell/PowerShell;Java;Kotlin;Python;Scala;SQL
+4421,HTML/CSS;Python;SQL
+4422,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+4423,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4424,HTML/CSS;JavaScript;PHP;TypeScript
+4425,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4426,Python
+4427,C#;HTML/CSS;JavaScript;Python;SQL
+4428,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+4429,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4430,HTML/CSS;JavaScript;PHP;TypeScript
+4431,Python
+4432,Bash/Shell/PowerShell;HTML/CSS;Objective-C;PHP;SQL;Swift
+4433,C;Java;Python
+4434,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+4435,Bash/Shell/PowerShell;C;C++;C#;Clojure;Java;JavaScript;Kotlin;Python;TypeScript
+4436,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+4437,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+4438,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+4439,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+4440,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+4441,Bash/Shell/PowerShell;C;C++;C#;Java
+4442,HTML/CSS;JavaScript;PHP;SQL
+4443,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4444,Java;Kotlin
+4445,Java;JavaScript;SQL;VBA
+4446,Assembly;C;C++;HTML/CSS;Objective-C;PHP;Python;SQL;Swift
+4447,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+4448,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+4449,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+4450,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+4451,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+4452,HTML/CSS;Java;JavaScript;PHP;SQL
+4453,Java;PHP;Python;R;SQL
+4454,Python
+4455,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+4456,C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+4457,Bash/Shell/PowerShell;HTML/CSS;Python
+4458,C;C#;HTML/CSS;Java;JavaScript;PHP
+4459,HTML/CSS;JavaScript;PHP;Python;R
+4460,Bash/Shell/PowerShell;C++;Go;Java;Kotlin;Python;Scala;TypeScript
+4461,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript
+4462,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+4463,C#
+4464,Java;JavaScript
+4465,C++;C#;HTML/CSS;TypeScript
+4466,Bash/Shell/PowerShell;JavaScript;Python;Scala;SQL
+4467,SQL
+4468,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+4469,C;C++;Go;HTML/CSS;JavaScript;SQL;Other(s):
+4470,C;Java;Python
+4471,Assembly;C++;HTML/CSS;Java;SQL
+4472,HTML/CSS;JavaScript
+4473,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+4474,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+4475,C++;Python;SQL
+4476,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+4477,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4478,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;SQL
+4479,HTML/CSS;JavaScript;Python;SQL
+4480,Clojure;Go;HTML/CSS;JavaScript;Python;SQL
+4481,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+4482,C#;JavaScript
+4483,C++;JavaScript
+4484,R
+4485,HTML/CSS;Java;JavaScript;Swift;TypeScript
+4486,C#;HTML/CSS;JavaScript;Kotlin;Python;SQL
+4487,C#;HTML/CSS;JavaScript;PHP;SQL
+4488,HTML/CSS;PHP;SQL
+4489,Bash/Shell/PowerShell;R
+4490,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+4491,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Objective-C;PHP;SQL
+4492,C#;SQL
+4493,C;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+4494,Java
+4495,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;VBA
+4496,C;HTML/CSS;JavaScript;PHP;SQL
+4497,C;Dart;F#;HTML/CSS;Java;PHP;Python;R;Scala;SQL;Swift
+4498,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+4499,HTML/CSS;JavaScript;SQL
+4500,HTML/CSS;JavaScript
+4501,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;Swift
+4502,HTML/CSS;JavaScript;TypeScript;WebAssembly
+4503,Assembly;C++;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+4504,Elixir;Swift
+4505,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+4506,Java;SQL
+4507,HTML/CSS;JavaScript;PHP;SQL
+4508,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript
+4509,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+4510,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+4511,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+4512,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+4513,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4514,HTML/CSS;Java;JavaScript;Python;Ruby;Swift
+4515,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+4516,HTML/CSS;JavaScript;Ruby;Rust;SQL
+4517,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+4518,HTML/CSS;JavaScript;PHP
+4519,Bash/Shell/PowerShell;HTML/CSS;Java
+4520,HTML/CSS;JavaScript;PHP
+4521,C;C++;C#;Clojure;Elixir;HTML/CSS;JavaScript;TypeScript;WebAssembly
+4522,Bash/Shell/PowerShell;Java;PHP
+4523,HTML/CSS;Python
+4524,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+4525,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+4526,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4527,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;WebAssembly
+4528,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+4529,Bash/Shell/PowerShell;C++;Python
+4530,C;C++;Erlang
+4531,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript;VBA
+4532,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+4533,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+4534,HTML/CSS;Java;SQL
+4535,C;C#;Java;JavaScript;Kotlin;Python;Rust;Other(s):
+4536,Bash/Shell/PowerShell;C++;C#;Python
+4537,Bash/Shell/PowerShell;Java;Python
+4538,HTML/CSS;JavaScript;Ruby;SQL
+4539,HTML/CSS;JavaScript;PHP;SQL
+4540,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4541,HTML/CSS;JavaScript
+4542,Bash/Shell/PowerShell;C++;Python;R;VBA
+4543,Bash/Shell/PowerShell;Java;Kotlin;Python;Ruby
+4544,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+4545,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+4546,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+4547,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+4548,JavaScript
+4549,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+4550,C#;HTML/CSS;JavaScript;SQL
+4551,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+4552,HTML/CSS;JavaScript;Python
+4553,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4554,Bash/Shell/PowerShell;C#;SQL
+4555,C#;HTML/CSS
+4556,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+4557,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+4558,Bash/Shell/PowerShell;C++;C#;Clojure;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala;SQL
+4559,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+4560,C#;HTML/CSS;Java;SQL
+4561,HTML/CSS;Python;SQL
+4562,HTML/CSS;JavaScript;PHP;SQL
+4563,C;C++;C#;HTML/CSS;JavaScript
+4564,Java;Kotlin;Python
+4565,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4566,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+4567,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+4568,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+4569,C;C++;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+4570,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript;Other(s):
+4571,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+4572,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+4573,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;JavaScript;Other(s):
+4574,HTML/CSS;JavaScript;PHP;SQL
+4575,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4576,C#;JavaScript;Python
+4577,Bash/Shell/PowerShell;Java;Python;SQL
+4578,Swift
+4579,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+4580,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+4581,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+4582,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+4583,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4584,Bash/Shell/PowerShell;C;C++;C#;Dart;F#;Go;HTML/CSS;JavaScript;PHP;R;Rust;SQL;TypeScript
+4585,C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+4586,HTML/CSS;JavaScript;R;SQL
+4588,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+4589,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;Other(s):
+4590,Bash/Shell/PowerShell;Java;Other(s):
+4591,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+4592,Other(s):
+4593,C++
+4594,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;TypeScript
+4595,HTML/CSS;JavaScript;TypeScript
+4596,C;C++;Java;Kotlin
+4597,Java
+4598,HTML/CSS;R;Other(s):
+4599,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+4600,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+4601,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+4602,HTML/CSS;JavaScript
+4603,C++;HTML/CSS;Java;Python
+4604,HTML/CSS;JavaScript;Ruby;TypeScript
+4605,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4606,Java;JavaScript;SQL
+4607,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby
+4608,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+4609,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+4610,HTML/CSS;Java;JavaScript;Python;R;Rust
+4611,HTML/CSS;Java;Python;SQL
+4612,Java
+4613,HTML/CSS;JavaScript;TypeScript
+4614,C#;HTML/CSS;JavaScript;SQL
+4615,HTML/CSS;JavaScript;Python
+4616,C#;JavaScript
+4617,JavaScript
+4618,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL;Other(s):
+4619,Python;Other(s):
+4620,Bash/Shell/PowerShell;Python;Scala;SQL;Other(s):
+4621,HTML/CSS;JavaScript;TypeScript
+4622,JavaScript;R;SQL
+4623,Ruby
+4624,Bash/Shell/PowerShell;C++;Java;JavaScript
+4626,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+4627,HTML/CSS;Java;JavaScript;Python;Ruby
+4628,HTML/CSS;JavaScript;PHP;Python;TypeScript
+4629,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+4630,Go;Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+4631,C#;HTML/CSS;JavaScript;SQL
+4632,C#;HTML/CSS;JavaScript
+4633,Go;PHP
+4634,C;C++;HTML/CSS;JavaScript;Python;TypeScript
+4635,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+4636,HTML/CSS;Java;JavaScript;Python
+4637,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+4638,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+4639,HTML/CSS;JavaScript;PHP;Python;R
+4640,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+4641,C#;HTML/CSS;JavaScript;SQL;Other(s):
+4642,Python;SQL;VBA
+4643,Java;Kotlin
+4644,C#;HTML/CSS;JavaScript;TypeScript
+4645,HTML/CSS;Java;JavaScript;Python;SQL
+4646,Assembly;C;C++;C#;HTML/CSS;Java;TypeScript
+4647,Bash/Shell/PowerShell;C#;HTML/CSS;Python;R;SQL
+4648,C#;Other(s):
+4649,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+4650,Java;JavaScript;PHP;R;SQL
+4651,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;WebAssembly
+4652,C;C++;Java
+4653,HTML/CSS;Java;Python;SQL
+4654,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4655,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4656,HTML/CSS;JavaScript
+4657,Bash/Shell/PowerShell;C;Python
+4658,Bash/Shell/PowerShell;JavaScript;Python;SQL
+4659,Bash/Shell/PowerShell;Python;R;Other(s):
+4660,C#;HTML/CSS
+4661,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+4662,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4663,HTML/CSS;JavaScript;Python;TypeScript
+4664,Bash/Shell/PowerShell;C;C++;Java;Kotlin
+4665,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+4666,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;SQL;VBA
+4667,JavaScript;Python;SQL
+4668,C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+4669,C;Java
+4670,C#;HTML/CSS;JavaScript;TypeScript
+4671,Bash/Shell/PowerShell;C#;SQL
+4672,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;Python;Ruby;SQL
+4673,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+4674,Bash/Shell/PowerShell;HTML/CSS;PHP;Ruby;SQL;VBA
+4675,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4676,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA;Other(s):
+4677,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4678,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+4679,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+4680,Python;R;Swift;Other(s):
+4681,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+4682,C;C++;C#;Python;R;SQL;Other(s):
+4683,C++;C#;HTML/CSS;Java;JavaScript;SQL
+4684,Bash/Shell/PowerShell;JavaScript
+4685,C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+4686,HTML/CSS;PHP;SQL
+4687,C#;HTML/CSS;JavaScript;SQL
+4688,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4689,Assembly;C;C#;JavaScript
+4690,C#;Python;SQL
+4691,Java;JavaScript;Kotlin
+4692,HTML/CSS;JavaScript;Ruby;TypeScript
+4693,HTML/CSS;Java;JavaScript;SQL;Other(s):
+4694,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+4695,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+4696,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+4697,Bash/Shell/PowerShell;Python;R
+4698,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+4699,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Swift;TypeScript
+4701,C;HTML/CSS;Java;Python;SQL
+4702,C;C++;C#;JavaScript;Python;TypeScript;WebAssembly
+4703,C;C#
+4704,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+4705,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+4706,C++;C#;Python
+4707,C#;HTML/CSS;JavaScript;Python;SQL
+4708,Bash/Shell/PowerShell;C;C++;C#;Python
+4709,HTML/CSS;JavaScript;PHP;SQL
+4710,C#;HTML/CSS;JavaScript;Objective-C;Swift
+4711,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+4712,HTML/CSS;Java;JavaScript;Python
+4713,C#;Java;SQL;VBA
+4714,HTML/CSS;JavaScript
+4715,C++;Java;Python
+4716,C;HTML/CSS;Java;JavaScript;Python;SQL
+4717,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+4718,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+4719,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+4720,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+4721,C#
+4722,C;HTML/CSS;JavaScript
+4723,HTML/CSS;JavaScript;PHP;Ruby;SQL
+4724,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4725,C#;HTML/CSS;TypeScript
+4726,C++;C#
+4727,C#;HTML/CSS;JavaScript;SQL
+4728,Assembly;Bash/Shell/PowerShell;C;Python;Other(s):
+4729,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+4730,C;C++;Java;PHP;Python;SQL
+4731,C#;HTML/CSS;JavaScript;SQL;VBA
+4732,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+4733,Assembly;C;C++;HTML/CSS;JavaScript;Python;Rust;TypeScript
+4734,Go;HTML/CSS;Java;JavaScript;Kotlin;Rust;TypeScript;WebAssembly
+4735,Assembly;C++;Java
+4736,Python
+4737,HTML/CSS;Java;JavaScript;SQL;TypeScript
+4738,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;R;SQL;VBA
+4739,Objective-C;Python;Swift
+4740,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+4741,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+4742,Go;JavaScript;Python
+4743,HTML/CSS;JavaScript;Swift
+4744,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4745,C++;Java
+4746,Bash/Shell/PowerShell;Python;Other(s):
+4747,HTML/CSS;JavaScript;SQL;Other(s):
+4748,C;C++;C#;Java;Python
+4749,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;Swift;TypeScript
+4750,Java;JavaScript;Python
+4751,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+4752,HTML/CSS;JavaScript;PHP;SQL
+4753,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+4754,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+4755,HTML/CSS;Java;JavaScript;Python;SQL
+4756,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Other(s):
+4757,C#;SQL
+4758,Java;JavaScript;SQL
+4759,C;C#;HTML/CSS;Java;Python;R;SQL
+4760,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL;WebAssembly;Other(s):
+4761,C#;HTML/CSS;PHP
+4762,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+4763,Java
+4764,C;C++;JavaScript
+4765,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA;WebAssembly;Other(s):
+4766,Go;JavaScript
+4767,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+4768,HTML/CSS;JavaScript;TypeScript
+4769,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4770,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+4771,C#;Java;Kotlin;Objective-C;SQL
+4772,HTML/CSS;Java;PHP;SQL
+4773,C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Swift;TypeScript
+4774,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+4775,C++
+4776,Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+4777,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+4778,HTML/CSS;JavaScript;PHP;SQL
+4779,HTML/CSS;Java;JavaScript;PHP;SQL
+4780,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+4781,C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;TypeScript
+4782,HTML/CSS;Java;Kotlin;Python
+4783,C;C#;HTML/CSS;Java;PHP;SQL;VBA
+4784,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4785,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+4786,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+4787,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+4788,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+4789,HTML/CSS;Java;JavaScript;SQL
+4790,Clojure;HTML/CSS;JavaScript;PHP;Python
+4791,HTML/CSS;Java;JavaScript;Rust;SQL
+4792,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+4793,Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+4794,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+4795,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+4796,Bash/Shell/PowerShell;Python;SQL;Other(s):
+4797,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+4798,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4799,Assembly;C
+4800,Bash/Shell/PowerShell;C++;HTML/CSS;PHP
+4801,HTML/CSS;Java;JavaScript;TypeScript
+4802,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;Ruby;Rust;SQL
+4803,C++;Java
+4804,Bash/Shell/PowerShell;Python
+4805,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+4806,HTML/CSS;JavaScript;Python;SQL
+4807,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R
+4808,C#;JavaScript
+4809,C#;HTML/CSS;Java;JavaScript;SQL
+4810,Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+4811,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4812,C#;HTML/CSS;Java;Python;Scala;SQL
+4813,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+4814,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+4815,JavaScript;Other(s):
+4816,C#;Java;Kotlin;Objective-C;SQL;Swift
+4817,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;Other(s):
+4818,Python;Other(s):
+4819,Assembly;C;HTML/CSS;Java;JavaScript;Python;VBA
+4820,C#;Java;JavaScript;SQL
+4821,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+4822,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+4823,JavaScript
+4824,HTML/CSS
+4825,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift
+4826,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+4827,C#;HTML/CSS;JavaScript;PHP
+4828,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+4829,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;Swift
+4830,Java
+4831,C;HTML/CSS;Java;JavaScript;PHP;SQL
+4832,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4833,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;TypeScript
+4834,C++;HTML/CSS;Python
+4835,C;C++;C#;HTML/CSS;JavaScript;SQL
+4836,R
+4837,Bash/Shell/PowerShell;C;C++;Python;VBA
+4838,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+4839,C;C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+4840,C#
+4841,C;C#;JavaScript;SQL;VBA
+4842,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+4843,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4844,C++;C#;Other(s):
+4845,Kotlin;Swift
+4846,C;C#;HTML/CSS;JavaScript;SQL
+4847,Go;JavaScript;Rust;TypeScript;Other(s):
+4848,Assembly;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+4849,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+4850,HTML/CSS;Java;JavaScript;Ruby;SQL
+4851,C;C++;Go;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;Other(s):
+4852,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+4853,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Swift
+4854,C#;HTML/CSS;JavaScript;SQL
+4855,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+4856,C;C#;Python;SQL
+4857,Python;Other(s):
+4858,HTML/CSS;JavaScript;Ruby;SQL
+4859,C#;F#;HTML/CSS;JavaScript;TypeScript
+4860,C;C++;HTML/CSS;Java;JavaScript;Ruby
+4861,C#
+4862,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+4863,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4864,HTML/CSS;Java;JavaScript;SQL
+4865,C#;HTML/CSS;Java;JavaScript;PHP;Python
+4866,Java;JavaScript;Objective-C;Swift
+4867,Bash/Shell/PowerShell;Clojure;Python
+4868,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+4869,C;C#;JavaScript;Swift;TypeScript
+4870,HTML/CSS;Java;JavaScript;Ruby
+4871,C;Python;Rust
+4872,HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;Swift
+4873,Bash/Shell/PowerShell;Java;PHP;Python
+4874,C#;HTML/CSS;JavaScript;SQL
+4875,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+4876,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;R
+4877,C;C++;HTML/CSS;Python
+4878,Bash/Shell/PowerShell;Java
+4879,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+4880,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4881,C#;HTML/CSS;JavaScript;SQL
+4882,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+4883,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+4884,Bash/Shell/PowerShell;Java;Kotlin;Python;Ruby;SQL
+4885,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+4886,Clojure;JavaScript
+4887,Assembly;C;C#
+4888,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+4889,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+4890,C;C++
+4891,C#;HTML/CSS;JavaScript;SQL
+4892,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+4893,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4894,Bash/Shell/PowerShell;C++
+4895,Java;JavaScript;Python
+4896,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+4897,C#;HTML/CSS;Java;JavaScript;Python
+4898,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;WebAssembly
+4899,Bash/Shell/PowerShell;Go;Java
+4900,HTML/CSS;JavaScript
+4901,HTML/CSS;Java;JavaScript;Kotlin;SQL
+4902,C++;HTML/CSS;Rust;TypeScript;Other(s):
+4903,C;C++;Java;Kotlin;Python
+4904,HTML/CSS;Java;PHP;VBA
+4905,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+4906,Bash/Shell/PowerShell;Java;JavaScript;SQL
+4907,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+4908,HTML/CSS;JavaScript;SQL
+4909,Assembly;Go;Java;Python;SQL;VBA
+4910,JavaScript;PHP;SQL
+4911,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+4912,HTML/CSS;JavaScript
+4913,C;C++;HTML/CSS;Python;SQL
+4914,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+4915,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+4916,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+4917,HTML/CSS;Java;JavaScript;SQL
+4918,C#;JavaScript;Python;SQL;VBA
+4919,HTML/CSS;Java;JavaScript;SQL
+4920,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+4921,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+4922,C#;HTML/CSS;JavaScript;SQL
+4923,Bash/Shell/PowerShell;Python;SQL
+4924,Bash/Shell/PowerShell;C;C++;C#;Python;SQL;Other(s):
+4925,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+4926,HTML/CSS;Java;JavaScript;SQL
+4927,C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;VBA
+4928,Kotlin;Python;SQL
+4930,Python
+4931,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+4932,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+4933,HTML/CSS;JavaScript
+4934,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;R;SQL
+4935,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+4936,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+4937,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+4938,Java;Scala
+4939,C++;Python;Ruby;SQL;TypeScript
+4940,Bash/Shell/PowerShell;C;Python;Ruby
+4941,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+4942,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Scala;TypeScript
+4943,C++;C#;Java;PHP;SQL
+4944,C#;HTML/CSS;JavaScript;SQL
+4945,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Rust
+4946,C#;Java;Objective-C;SQL
+4947,C++;HTML/CSS;PHP;Python
+4948,C;C++;C#;HTML/CSS;Python;SQL
+4949,C#;HTML/CSS;JavaScript
+4951,HTML/CSS;Java;Ruby
+4952,HTML/CSS;JavaScript;Python
+4953,HTML/CSS;JavaScript;SQL;TypeScript;VBA
+4954,C#;SQL;VBA;Other(s):
+4955,Java;Python;SQL
+4956,C#
+4957,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+4958,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+4959,C#;Python;SQL
+4960,PHP
+4961,Bash/Shell/PowerShell;SQL
+4962,Java;Python;Scala
+4963,Python
+4964,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+4965,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+4966,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+4967,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+4968,Bash/Shell/PowerShell;C;C#;Python;SQL;Other(s):
+4969,Bash/Shell/PowerShell;C++;Other(s):
+4970,HTML/CSS;JavaScript
+4971,Java;Python;Other(s):
+4972,Bash/Shell/PowerShell;C;C++;C#;Python;SQL;VBA
+4973,C++;HTML/CSS;JavaScript;PHP;SQL
+4974,C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+4975,Dart;Java;Python
+4976,HTML/CSS;JavaScript;PHP;SQL
+4977,Java;R;VBA;Other(s):
+4978,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+4979,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+4980,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+4981,C#;HTML/CSS;JavaScript;TypeScript
+4982,C#;HTML/CSS;JavaScript;SQL;TypeScript
+4983,Go;HTML/CSS;JavaScript;Kotlin;Python
+4984,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+4985,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+4986,HTML/CSS;JavaScript
+4987,Other(s):
+4988,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+4989,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;Other(s):
+4990,Java
+4991,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;SQL
+4992,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+4993,HTML/CSS;JavaScript;Python;TypeScript
+4994,HTML/CSS;JavaScript
+4995,HTML/CSS;Java;JavaScript;PHP;SQL
+4996,Bash/Shell/PowerShell;SQL;VBA
+4997,HTML/CSS;JavaScript;PHP;SQL
+4998,Bash/Shell/PowerShell;C;Dart;Go;Java;JavaScript;Python
+4999,C#
+5000,C++;HTML/CSS;JavaScript;PHP;SQL
+5001,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+5002,C#;HTML/CSS;JavaScript
+5003,Bash/Shell/PowerShell;C;C++;Other(s):
+5004,Java;Kotlin;Python;SQL
+5005,HTML/CSS;JavaScript;Ruby;SQL
+5006,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+5007,C;C++;HTML/CSS;JavaScript;PHP;Python
+5008,C#
+5009,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+5010,C++;Java;Other(s):
+5011,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+5012,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5013,C;C++;VBA
+5014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;WebAssembly
+5015,C++;HTML/CSS;JavaScript;SQL;TypeScript
+5016,C;C++;HTML/CSS;Java;JavaScript;Ruby;Swift
+5017,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;VBA
+5018,Bash/Shell/PowerShell;Python;SQL
+5019,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+5020,Java;Kotlin
+5021,HTML/CSS;JavaScript;PHP
+5022,C++;HTML/CSS;Java;Python;SQL
+5023,Dart;HTML/CSS;JavaScript;TypeScript
+5024,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+5025,Bash/Shell/PowerShell;C;C++;Python
+5026,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+5027,Other(s):
+5028,Java;JavaScript
+5029,C++;C#;HTML/CSS;Java;JavaScript;SQL
+5030,HTML/CSS;JavaScript;PHP;SQL
+5031,Bash/Shell/PowerShell;C#;SQL
+5032,HTML/CSS;Java;JavaScript;TypeScript
+5033,JavaScript
+5034,HTML/CSS;Java;JavaScript;Python;SQL
+5035,Bash/Shell/PowerShell;Java;SQL
+5036,HTML/CSS;JavaScript
+5037,Bash/Shell/PowerShell;C;C++;Python
+5038,Bash/Shell/PowerShell;Python;R
+5039,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5040,Python;SQL
+5041,HTML/CSS;JavaScript;PHP;SQL
+5042,Bash/Shell/PowerShell;HTML/CSS;Python;TypeScript
+5043,C#;HTML/CSS;JavaScript;TypeScript
+5044,C;C++;C#;Python
+5045,Python;SQL
+5046,Assembly;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5047,Python;SQL
+5048,Bash/Shell/PowerShell;C++;C#;Python
+5049,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+5050,C#;Java;Objective-C
+5051,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+5052,C;C++;HTML/CSS;Java;JavaScript;Python
+5053,HTML/CSS;Java;Python
+5054,HTML/CSS
+5055,C++;C#;HTML/CSS;Java;JavaScript;R;Ruby;SQL
+5056,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL
+5057,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+5058,C;Java;Kotlin
+5059,HTML/CSS;JavaScript;SQL
+5060,HTML/CSS;Java;JavaScript;Python;SQL
+5061,HTML/CSS;JavaScript;PHP;SQL
+5062,C#;HTML/CSS;JavaScript
+5063,C++;HTML/CSS;JavaScript;PHP
+5064,Assembly;Dart;Go;Python;Scala;WebAssembly
+5065,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+5066,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+5067,Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+5068,C#;Go;HTML/CSS;JavaScript;PHP
+5069,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+5070,Bash/Shell/PowerShell;Java;JavaScript;Python
+5071,HTML/CSS;Java;JavaScript
+5072,Assembly;C#;Python;SQL;VBA
+5073,HTML/CSS;JavaScript;PHP;SQL
+5074,HTML/CSS;Python;R
+5075,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+5076,C;C++;Go;Java;Ruby;SQL
+5077,C#;HTML/CSS;JavaScript;SQL
+5078,Bash/Shell/PowerShell;C#;Go;Scala;TypeScript
+5079,Bash/Shell/PowerShell;HTML/CSS;Python;Rust;SQL
+5080,JavaScript
+5081,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+5082,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5083,Bash/Shell/PowerShell;JavaScript;Python
+5084,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+5085,C++
+5086,Java;JavaScript;Scala;SQL
+5087,Bash/Shell/PowerShell;PHP;Python
+5088,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript
+5089,Go;HTML/CSS;Java;JavaScript;Rust;SQL
+5090,C;Java;Python;R;SQL;WebAssembly
+5092,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Rust;SQL;Swift;TypeScript
+5093,C;C++;C#
+5094,Python;Other(s):
+5095,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5096,C#;SQL
+5097,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+5098,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;VBA
+5099,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+5100,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL;Other(s):
+5101,C++;JavaScript
+5102,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+5103,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+5104,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+5105,C;C++;Objective-C
+5106,C;Python
+5107,Other(s):
+5108,C#;Go;Java;JavaScript;Python;SQL
+5109,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C
+5110,HTML/CSS;Python
+5111,HTML/CSS;JavaScript;PHP;SQL
+5112,C#;HTML/CSS;Java;JavaScript;SQL
+5113,C#;HTML/CSS;JavaScript;SQL
+5114,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+5115,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+5116,Python;SQL
+5117,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Swift
+5118,C#;Rust
+5119,C++;C#;SQL
+5120,Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;JavaScript;Python;TypeScript
+5121,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+5122,Go;HTML/CSS;JavaScript;Python;R;SQL
+5123,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+5124,Bash/Shell/PowerShell;C#;Elixir;Kotlin;Ruby;SQL
+5125,C++;C#;HTML/CSS;Java;JavaScript;SQL
+5126,Scala;Other(s):
+5127,Java;JavaScript;SQL
+5128,C#;HTML/CSS;JavaScript
+5129,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+5130,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Scala;SQL;TypeScript
+5131,HTML/CSS;Java;SQL;TypeScript
+5132,C#;HTML/CSS;JavaScript;Python;Ruby
+5133,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+5135,C;C++;C#;HTML/CSS
+5136,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+5137,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+5138,HTML/CSS;JavaScript;Python;SQL
+5139,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+5140,HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+5141,HTML/CSS;JavaScript;PHP;Python;TypeScript
+5142,HTML/CSS;JavaScript;PHP;SQL
+5143,HTML/CSS;JavaScript;PHP;Python;SQL
+5144,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+5145,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Ruby;Swift;TypeScript
+5146,Bash/Shell/PowerShell;C++
+5147,C;C++;HTML/CSS;Java;JavaScript;SQL
+5148,C#;HTML/CSS;JavaScript;SQL
+5149,Bash/Shell/PowerShell;C;C++;Java;Python
+5150,C#;HTML/CSS;JavaScript;Python;TypeScript
+5151,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+5152,C;C++;C#;Java;Kotlin;SQL;Swift
+5153,Java;JavaScript;Kotlin;SQL
+5154,Bash/Shell/PowerShell;Java
+5155,C;Dart;HTML/CSS;JavaScript;PHP;SQL
+5156,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+5157,C#;Java;Kotlin
+5158,Java;Python;R;Scala;SQL
+5159,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5160,Java;JavaScript
+5161,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;Swift
+5162,HTML/CSS;JavaScript;Kotlin;PHP;SQL
+5163,C++;HTML/CSS;JavaScript;Python
+5164,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+5165,HTML/CSS;Java;PHP;SQL
+5166,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+5167,C#;HTML/CSS;JavaScript;SQL
+5168,C++;Go;Java;JavaScript;Python;Ruby;Rust
+5169,Bash/Shell/PowerShell;Java;Python;R;SQL
+5170,C#;Go;HTML/CSS;JavaScript;Python;SQL
+5171,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+5172,HTML/CSS;Python;R;SQL
+5173,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Rust;SQL;TypeScript
+5174,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+5175,HTML/CSS;JavaScript;PHP
+5176,HTML/CSS;Python
+5177,Bash/Shell/PowerShell;Java;Python
+5178,C;HTML/CSS;Java;JavaScript;PHP;SQL
+5179,C++;HTML/CSS;JavaScript;Python
+5180,Assembly;Bash/Shell/PowerShell
+5181,HTML/CSS;Java;JavaScript;Ruby;SQL
+5182,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+5183,C#;F#;HTML/CSS;Other(s):
+5184,Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+5185,C#;PHP
+5186,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+5187,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+5188,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+5189,HTML/CSS;JavaScript;TypeScript
+5190,Java;Kotlin
+5191,Bash/Shell/PowerShell;Java;Kotlin;Python
+5192,C#;HTML/CSS;JavaScript;SQL
+5193,HTML/CSS;JavaScript;PHP;SQL
+5194,Bash/Shell/PowerShell;Python;Other(s):
+5195,C#;HTML/CSS;JavaScript;Python;VBA
+5196,Bash/Shell/PowerShell;C;C++;HTML/CSS;Other(s):
+5197,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+5198,C++;Python
+5199,HTML/CSS;JavaScript;Python;R
+5201,C++;HTML/CSS;JavaScript;TypeScript
+5202,JavaScript;Python
+5203,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+5204,Objective-C;Swift
+5205,HTML/CSS;JavaScript;Python;Ruby;Swift
+5206,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+5207,Bash/Shell/PowerShell;C;Java;SQL
+5208,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+5209,C;C++;HTML/CSS;JavaScript;Objective-C;Swift
+5210,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+5211,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+5212,Assembly;C;Python;R
+5213,C#;JavaScript;Scala
+5214,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+5215,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+5216,Objective-C
+5217,C;C++;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+5218,C#;HTML/CSS;JavaScript;SQL
+5219,Bash/Shell/PowerShell;C++;Python;Ruby;Scala
+5220,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5221,Java;Python;R;SQL
+5222,Java;JavaScript;Kotlin;TypeScript
+5223,C++;C#;VBA
+5224,Bash/Shell/PowerShell;Python;SQL
+5225,Go;HTML/CSS;JavaScript;PHP
+5226,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL
+5227,Assembly;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript
+5228,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Swift
+5229,HTML/CSS;Java;JavaScript
+5230,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+5231,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5232,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+5233,Java
+5234,C#;HTML/CSS;JavaScript;Python;SQL
+5235,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+5236,Assembly;C;C++;Java;Python
+5237,Java;JavaScript;Kotlin;SQL
+5238,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+5239,C;C++;Java;JavaScript;PHP;Python;SQL
+5240,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+5241,Go;JavaScript;SQL
+5242,C#;HTML/CSS;TypeScript
+5244,C#;JavaScript;SQL
+5245,Elixir;JavaScript;Ruby
+5246,Java;SQL
+5247,C#;HTML/CSS;JavaScript;TypeScript
+5248,Swift
+5249,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+5250,Bash/Shell/PowerShell;Java;Python
+5251,Bash/Shell/PowerShell;C;Java;Python;R;Scala;SQL
+5252,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+5253,Bash/Shell/PowerShell;C++;C#;Java;Rust;SQL
+5254,HTML/CSS;JavaScript
+5255,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Other(s):
+5256,HTML/CSS;JavaScript;PHP;Ruby;SQL
+5257,Assembly;Bash/Shell/PowerShell;C;C++;Python
+5258,Bash/Shell/PowerShell;Java;Python
+5259,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+5260,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+5261,Erlang;Java;SQL
+5262,Java;JavaScript;Python;SQL
+5263,C;C++;Elixir;Erlang;JavaScript;Kotlin;Python;WebAssembly
+5264,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+5265,HTML/CSS;Java;SQL
+5266,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+5267,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+5269,HTML/CSS;JavaScript;Ruby
+5270,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;SQL;TypeScript;VBA
+5271,Java;Kotlin;SQL
+5272,C++;Python
+5273,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+5274,HTML/CSS;R;SQL
+5275,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python;Ruby;SQL
+5276,Dart;HTML/CSS;Java;JavaScript;TypeScript
+5277,Bash/Shell/PowerShell;C;C++
+5278,HTML/CSS;JavaScript;PHP
+5279,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+5280,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+5281,C;C#;HTML/CSS;Java;JavaScript
+5282,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+5283,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+5284,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+5285,HTML/CSS;JavaScript;PHP
+5286,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+5287,C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+5288,C++;HTML/CSS;JavaScript;Python;SQL
+5289,Bash/Shell/PowerShell;C#;R;SQL
+5290,C#
+5291,C++;C#;HTML/CSS;JavaScript
+5292,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+5293,Assembly;Bash/Shell/PowerShell;C;C++
+5294,C;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+5295,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+5296,C;C++;HTML/CSS;Java;JavaScript;SQL
+5297,C#;Java;Kotlin;Ruby;SQL
+5298,HTML/CSS;JavaScript
+5299,Swift
+5300,HTML/CSS;JavaScript;Python
+5301,Bash/Shell/PowerShell;PHP
+5302,Clojure;Java
+5303,C;C++;HTML/CSS;Java;JavaScript;SQL
+5304,C#;JavaScript;SQL
+5305,Python;R;VBA
+5306,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+5307,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5308,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+5309,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL
+5310,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+5311,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;SQL;Swift
+5312,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+5313,Bash/Shell/PowerShell;C;Java;PHP;Python;R;SQL;VBA;Other(s):
+5314,C++;JavaScript
+5315,C;C++;HTML/CSS;Java;JavaScript;Kotlin;R;Ruby;SQL;Swift;TypeScript
+5316,C++;Python
+5317,HTML/CSS;JavaScript
+5318,Java;Objective-C;Swift
+5319,C#
+5320,C#;F#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+5321,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+5322,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+5323,Swift
+5324,C#;HTML/CSS;JavaScript;TypeScript
+5325,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+5326,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+5327,Assembly;C;C++;C#;Java
+5328,HTML/CSS;JavaScript;PHP;SQL
+5329,C#;Java;JavaScript;TypeScript
+5330,HTML/CSS;JavaScript;PHP;SQL
+5331,HTML/CSS;JavaScript
+5332,C#;HTML/CSS;Java;JavaScript;TypeScript;VBA
+5333,C#;Other(s):
+5334,C#;HTML/CSS;Java;JavaScript;SQL
+5335,C#;JavaScript;SQL;Other(s):
+5336,HTML/CSS;JavaScript;TypeScript
+5337,HTML/CSS;JavaScript;PHP
+5338,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;Other(s):
+5339,HTML/CSS;JavaScript;SQL
+5340,C++;C#;HTML/CSS;JavaScript;SQL
+5341,Python;SQL;VBA
+5342,Assembly;C;Java;Python
+5343,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+5344,Go;Ruby
+5345,Assembly;C;C++;HTML/CSS;JavaScript;Python
+5346,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+5347,Bash/Shell/PowerShell;PHP;SQL
+5348,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript
+5349,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+5350,Bash/Shell/PowerShell;Go;Python;Rust
+5351,Python
+5352,HTML/CSS;Ruby;SQL
+5353,C++;HTML/CSS;Java;JavaScript;Kotlin;Ruby;TypeScript
+5354,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+5355,C++;Python;Scala;SQL
+5356,HTML/CSS;Java;JavaScript;SQL
+5357,HTML/CSS;JavaScript;PHP;SQL
+5358,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+5359,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+5360,HTML/CSS;JavaScript
+5361,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript
+5362,R
+5363,Elixir;HTML/CSS;JavaScript;Ruby;TypeScript
+5364,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R
+5365,Bash/Shell/PowerShell;Java
+5366,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+5367,Assembly;C;C++;HTML/CSS;Java
+5368,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+5369,Bash/Shell/PowerShell;JavaScript;Python;R;Ruby;SQL
+5370,Bash/Shell/PowerShell;Java;JavaScript
+5371,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+5372,HTML/CSS;Java;JavaScript;Python
+5373,HTML/CSS;Java;Kotlin;Python
+5374,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;R;TypeScript
+5375,Clojure;Python
+5376,HTML/CSS;Java;JavaScript;Scala
+5377,Bash/Shell/PowerShell;Python
+5378,HTML/CSS;JavaScript;Objective-C;Python
+5379,Assembly;C#;Ruby;Other(s):
+5380,Bash/Shell/PowerShell;C#;Objective-C;Ruby;SQL;Swift
+5381,Bash/Shell/PowerShell;Python;VBA
+5382,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+5383,JavaScript;Objective-C
+5384,C++;Python;SQL
+5385,Bash/Shell/PowerShell;C#;SQL;Other(s):
+5386,C#;HTML/CSS;JavaScript;SQL
+5387,C++;HTML/CSS;JavaScript
+5388,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Python;R;SQL
+5389,HTML/CSS;Java;Python;R;SQL
+5390,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+5391,HTML/CSS;JavaScript;PHP;SQL
+5392,HTML/CSS
+5393,C#;HTML/CSS;JavaScript;SQL
+5394,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5395,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+5396,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+5397,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+5398,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Python;Scala;SQL
+5399,Java;Python
+5400,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Python;SQL;Other(s):
+5401,HTML/CSS;JavaScript;PHP;SQL
+5402,Other(s):
+5403,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5404,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+5405,C#;SQL
+5406,Bash/Shell/PowerShell;C#;Java;Python;SQL
+5407,C++;Python;Other(s):
+5408,Java;JavaScript;Python;SQL;TypeScript
+5409,HTML/CSS;JavaScript
+5410,C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+5411,HTML/CSS;JavaScript
+5412,Bash/Shell/PowerShell;JavaScript
+5413,Bash/Shell/PowerShell;C;C++;Go;Python;Rust
+5414,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+5415,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+5416,C++;Java
+5417,Assembly
+5418,HTML/CSS;JavaScript;SQL
+5420,Python
+5421,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+5422,Java;SQL;Other(s):
+5423,Objective-C;Python;Swift
+5424,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+5425,Bash/Shell/PowerShell;C;C++;Java;Python;Swift
+5426,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+5427,Java;Kotlin
+5428,C;C++;Python
+5429,C;C#
+5430,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript;Other(s):
+5431,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+5432,HTML/CSS;Python
+5433,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+5434,C;HTML/CSS;Java;JavaScript
+5435,HTML/CSS;JavaScript;Python;TypeScript
+5436,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+5437,C#;HTML/CSS;SQL;TypeScript
+5438,HTML/CSS;Java;JavaScript
+5440,C++;C#;Python;SQL
+5441,HTML/CSS;Java;JavaScript;Swift
+5442,HTML/CSS;JavaScript;PHP;Python;SQL
+5443,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+5444,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+5445,Assembly;Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+5446,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Swift;Other(s):
+5447,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+5448,Bash/Shell/PowerShell;Dart;HTML/CSS;Kotlin;Rust
+5449,Bash/Shell/PowerShell;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+5450,C#;HTML/CSS;Java;JavaScript;SQL
+5451,C#;HTML/CSS;JavaScript;SQL
+5452,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;TypeScript
+5453,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+5454,HTML/CSS;JavaScript;PHP;Python;SQL
+5455,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R
+5456,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+5457,HTML/CSS;JavaScript;PHP;TypeScript
+5458,C;Go;Python
+5459,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+5460,Java;Scala;Swift
+5461,Python
+5462,Assembly;C++;C#;HTML/CSS;JavaScript;SQL
+5463,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+5464,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;VBA
+5465,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL;TypeScript;Other(s):
+5466,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+5467,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+5468,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+5469,C#;Java;JavaScript;SQL
+5470,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5471,HTML/CSS;JavaScript
+5472,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+5473,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+5474,Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+5475,Assembly;C;Go;Rust
+5476,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+5477,HTML/CSS;Java;JavaScript;Other(s):
+5478,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+5479,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5480,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python
+5481,Bash/Shell/PowerShell;Java;Scala;SQL
+5482,F#;Python
+5483,C++;HTML/CSS;JavaScript;Python
+5484,C#;HTML/CSS;Java;JavaScript;SQL
+5485,C++;C#;HTML/CSS;Java;Kotlin;Other(s):
+5486,Bash/Shell/PowerShell;JavaScript;Objective-C;Ruby;Swift
+5487,C#;Java;JavaScript;Objective-C;PHP;SQL;Swift
+5488,HTML/CSS;JavaScript;TypeScript
+5489,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby
+5490,HTML/CSS;JavaScript;PHP;Python;SQL
+5491,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+5492,HTML/CSS;JavaScript;Ruby
+5493,HTML/CSS;JavaScript;Swift
+5494,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5496,Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;VBA
+5497,Bash/Shell/PowerShell;JavaScript
+5498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+5499,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5500,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;JavaScript;Ruby;Rust;SQL
+5501,C#;Other(s):
+5502,Bash/Shell/PowerShell;Go;Java
+5503,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+5504,HTML/CSS;JavaScript;TypeScript
+5505,C#;HTML/CSS;SQL;VBA
+5506,Bash/Shell/PowerShell;Java
+5507,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+5508,C#;HTML/CSS;JavaScript;PHP;SQL
+5509,C#
+5510,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5511,C++;Java;Python
+5512,Assembly;Bash/Shell/PowerShell;PHP;SQL
+5513,Bash/Shell/PowerShell;C;Python;Other(s):
+5514,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5515,Clojure;HTML/CSS;Java;JavaScript;SQL;Other(s):
+5516,R;SQL
+5517,HTML/CSS;Java;JavaScript
+5518,JavaScript;Objective-C;Swift
+5519,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+5520,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+5521,HTML/CSS;Java;JavaScript;Python;Other(s):
+5522,C#;JavaScript
+5523,C++;C#;Java;Python
+5524,JavaScript
+5525,HTML/CSS;JavaScript;PHP;Python;SQL
+5526,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+5527,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5528,Ruby;SQL
+5529,Python;R;SQL
+5530,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5531,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5532,C#;SQL
+5533,Go;HTML/CSS;Python;Ruby;SQL
+5534,Bash/Shell/PowerShell;Java;Python;SQL
+5535,C;C++;Java;Python
+5536,Bash/Shell/PowerShell;C;C++;C#;Java
+5537,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+5538,HTML/CSS;JavaScript;PHP;SQL
+5539,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+5540,Bash/Shell/PowerShell;C#;Go;JavaScript;PHP;Python;R;SQL;Other(s):
+5541,Bash/Shell/PowerShell;Java;Kotlin;SQL;Other(s):
+5542,HTML/CSS;JavaScript;PHP;Python
+5543,C;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+5544,Dart;HTML/CSS;JavaScript;PHP
+5545,HTML/CSS;Java;JavaScript;Python;Ruby
+5546,C#;Java;JavaScript;PHP;SQL
+5547,C++;HTML/CSS;Java;Python;SQL;Other(s):
+5548,C;C++;JavaScript;Python;SQL
+5549,C#;Python;Rust;Other(s):
+5550,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+5551,C;C++;Java;Kotlin;Python
+5552,HTML/CSS;JavaScript;PHP;Python;Scala
+5553,HTML/CSS;JavaScript;Ruby
+5554,HTML/CSS;JavaScript;TypeScript
+5555,Python;R;SQL
+5556,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5557,Elixir;HTML/CSS;JavaScript;TypeScript
+5558,C#;JavaScript;SQL
+5559,Dart;Java;JavaScript;Objective-C;Python;Swift
+5560,Java;SQL
+5561,Bash/Shell/PowerShell;Python
+5562,HTML/CSS;Java;JavaScript;Python;R;SQL
+5563,Bash/Shell/PowerShell;C#;TypeScript
+5564,C#;F#;Python;SQL;Other(s):
+5565,Bash/Shell/PowerShell;C#
+5566,HTML/CSS;Java;JavaScript;SQL
+5567,HTML/CSS;JavaScript;PHP;TypeScript
+5568,Go;Java;Python;R
+5569,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5570,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;VBA
+5571,Assembly;SQL
+5572,HTML/CSS;Java;JavaScript;SQL
+5573,C#;SQL
+5574,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+5575,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+5576,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+5577,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+5578,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Rust;SQL;TypeScript;WebAssembly
+5579,Python
+5580,HTML/CSS;Java;JavaScript
+5581,Java;JavaScript;Objective-C;TypeScript
+5582,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+5583,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+5584,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+5585,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+5586,HTML/CSS;JavaScript;PHP
+5587,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+5588,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+5589,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5590,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+5591,C#;HTML/CSS;JavaScript;SQL
+5592,Assembly;Bash/Shell/PowerShell;C;C++;Rust
+5593,Bash/Shell/PowerShell;C;C++;Python
+5594,C#;Ruby;Rust
+5595,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;TypeScript
+5596,Java;Kotlin
+5597,C#;HTML/CSS;PHP;SQL;VBA
+5598,Java
+5599,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5600,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;TypeScript
+5601,HTML/CSS;JavaScript;Ruby
+5602,C#;JavaScript
+5603,Other(s):
+5604,C#;SQL
+5605,Bash/Shell/PowerShell;Clojure;Java;Scala
+5606,Bash/Shell/PowerShell;Java;JavaScript
+5607,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+5608,C#;Java;Kotlin
+5609,HTML/CSS;JavaScript;PHP;SQL
+5610,C#;HTML/CSS;JavaScript;SQL
+5611,C++;Java
+5612,Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+5613,C;HTML/CSS;Java;JavaScript;Ruby;SQL
+5614,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+5615,HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;Swift
+5616,C;HTML/CSS;Java;JavaScript;PHP
+5618,Bash/Shell/PowerShell;C;C++;Python
+5619,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5620,C;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+5621,C++;C#;HTML/CSS;JavaScript;Python;SQL
+5622,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+5623,HTML/CSS;JavaScript
+5624,C;C++
+5625,Java
+5626,HTML/CSS;JavaScript;Python;Swift;TypeScript;VBA
+5627,Python;R;Other(s):
+5628,Assembly;C;HTML/CSS;JavaScript;Python;SQL;VBA
+5629,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5630,C++;JavaScript
+5631,HTML/CSS;Java;JavaScript;SQL;TypeScript
+5632,C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+5633,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5634,HTML/CSS;JavaScript;PHP
+5635,C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;TypeScript
+5636,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+5637,R;SQL
+5638,Bash/Shell/PowerShell;Python
+5639,C#;HTML/CSS;Python;SQL
+5640,Bash/Shell/PowerShell;Java;JavaScript;SQL
+5641,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+5642,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+5643,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+5644,C#;HTML/CSS;JavaScript;Python;SQL
+5645,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust
+5646,Bash/Shell/PowerShell;C;Python
+5647,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5648,HTML/CSS;JavaScript;PHP;SQL
+5649,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+5650,C;C++;Java;JavaScript;Python;SQL
+5651,Ruby
+5652,C++;HTML/CSS;Java;JavaScript;PHP;SQL;WebAssembly
+5653,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Rust
+5654,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5655,Bash/Shell/PowerShell;Clojure;Go;R;Ruby
+5656,C++;C#;HTML/CSS;JavaScript;SQL
+5657,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;Go;Python;Ruby;Scala
+5658,C;C++;C#;Java
+5659,HTML/CSS;JavaScript;PHP;SQL
+5660,Bash/Shell/PowerShell;C++;Java;Python
+5661,HTML/CSS;JavaScript
+5662,Go;HTML/CSS;JavaScript;Python;SQL
+5663,Java
+5664,HTML/CSS;JavaScript;PHP
+5665,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+5666,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5667,C;Other(s):
+5668,HTML/CSS;Java;JavaScript;Python;SQL
+5669,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+5670,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+5671,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5672,Bash/Shell/PowerShell;Java;JavaScript
+5673,C#;HTML/CSS;Java;JavaScript
+5674,Go;HTML/CSS;JavaScript;PHP;TypeScript
+5675,HTML/CSS;JavaScript;Ruby;SQL;Swift
+5676,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+5677,C#;HTML/CSS;Java;JavaScript;Kotlin
+5678,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+5679,HTML/CSS;JavaScript;Python;TypeScript
+5680,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+5681,C;Java;Other(s):
+5682,Bash/Shell/PowerShell
+5683,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5684,Java;JavaScript
+5685,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;TypeScript
+5686,JavaScript;Python;Rust;TypeScript
+5687,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Swift
+5689,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+5690,HTML/CSS;Java;JavaScript;Python
+5691,Bash/Shell/PowerShell;Java;JavaScript;SQL
+5692,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+5693,C#;HTML/CSS;JavaScript;SQL
+5694,Bash/Shell/PowerShell;JavaScript
+5695,C#;Java;Python
+5696,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+5697,C#;HTML/CSS;JavaScript
+5698,Bash/Shell/PowerShell;Java;Other(s):
+5699,Bash/Shell/PowerShell;Dart;Go;Java;Kotlin;Python;Scala
+5700,C;HTML/CSS;Java;PHP;WebAssembly
+5701,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+5702,C#;JavaScript;Python;SQL;TypeScript
+5703,C++;Java;Python
+5704,Java;JavaScript;Python
+5705,C++;Java;Other(s):
+5706,R;SQL
+5707,Java;JavaScript;Python;Rust;SQL
+5708,JavaScript;TypeScript
+5709,C;C++;Java;Python
+5710,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python
+5711,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL;VBA
+5712,Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+5713,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+5714,Java;Kotlin
+5715,HTML/CSS;SQL
+5716,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust;TypeScript
+5717,HTML/CSS;JavaScript;TypeScript
+5718,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+5719,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+5720,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+5721,HTML/CSS;JavaScript;Ruby;SQL
+5722,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+5723,C;C++;Java;Python
+5724,HTML/CSS;JavaScript;PHP;TypeScript
+5725,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+5726,Bash/Shell/PowerShell;C#;SQL
+5727,HTML/CSS;JavaScript;PHP;SQL
+5728,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+5729,JavaScript;Python;R
+5730,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+5731,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+5732,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+5733,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5734,Bash/Shell/PowerShell;Go
+5735,Assembly;C;HTML/CSS;JavaScript;PHP
+5736,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5737,Go;HTML/CSS;JavaScript;Ruby;SQL
+5738,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+5739,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5740,C++;JavaScript;Objective-C;Swift
+5741,HTML/CSS;JavaScript
+5742,C#;F#;HTML/CSS;Objective-C;TypeScript
+5743,Bash/Shell/PowerShell;C++;Python
+5744,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+5745,Java;Kotlin
+5746,HTML/CSS;JavaScript;SQL;TypeScript
+5747,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+5748,C#;HTML/CSS;JavaScript;SQL
+5749,HTML/CSS;JavaScript;PHP
+5750,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+5751,JavaScript
+5752,Bash/Shell/PowerShell;C++;Python;R
+5753,HTML/CSS;JavaScript;Python;TypeScript
+5754,Assembly;Bash/Shell/PowerShell;Erlang;Java
+5755,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+5756,HTML/CSS;JavaScript;PHP
+5758,Bash/Shell/PowerShell;C#;Java;Python
+5759,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+5760,Bash/Shell/PowerShell;C;C++;C#;Python
+5761,Assembly;C;C++;Java;PHP;Python;SQL;VBA
+5762,HTML/CSS;Java;JavaScript;Swift
+5763,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+5764,HTML/CSS;Java;JavaScript;SQL;Other(s):
+5765,C++;Python
+5766,C;HTML/CSS
+5767,HTML/CSS;Java
+5768,Bash/Shell/PowerShell;C++;C#
+5769,Bash/Shell/PowerShell;Python;Ruby;SQL
+5770,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5771,C++;C#;JavaScript;Python;SQL
+5772,HTML/CSS;JavaScript;PHP;SQL
+5773,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+5774,Dart;Kotlin
+5775,Java;SQL
+5776,HTML/CSS;JavaScript;PHP;SQL
+5777,HTML/CSS;JavaScript;Python;TypeScript
+5778,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+5779,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;VBA
+5780,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5781,C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+5782,Java
+5783,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+5784,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+5785,Bash/Shell/PowerShell;Python
+5786,C#;JavaScript;SQL
+5787,Swift
+5788,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5789,C;C++
+5790,HTML/CSS;JavaScript;TypeScript
+5791,Java
+5792,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+5793,C#
+5794,Ruby
+5795,Assembly;Dart;Erlang;Go;HTML/CSS;JavaScript;Kotlin;SQL
+5796,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+5797,Bash/Shell/PowerShell;Java;SQL;Other(s):
+5798,Java;PHP;SQL
+5799,C++;HTML/CSS;Python;SQL
+5800,C#;HTML/CSS;Java;JavaScript;SQL
+5801,C#;Python
+5802,Bash/Shell/PowerShell;C;Python
+5803,C#;Elixir;Go;HTML/CSS;JavaScript;TypeScript
+5804,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+5805,C;C++;Python
+5806,Bash/Shell/PowerShell;SQL
+5807,Bash/Shell/PowerShell;Go;HTML/CSS;SQL
+5808,Java;Scala;TypeScript
+5809,HTML/CSS;JavaScript;Python;TypeScript
+5810,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+5811,Assembly;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5812,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;Other(s):
+5813,HTML/CSS;JavaScript;SQL
+5814,C;C#;HTML/CSS;Java;JavaScript;Python
+5815,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+5816,HTML/CSS;JavaScript;Python;SQL
+5817,C#;JavaScript;SQL
+5818,HTML/CSS;JavaScript;PHP;SQL
+5819,C#
+5820,Python;R;SQL
+5821,Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+5822,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+5823,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5824,Java;Python
+5825,HTML/CSS;Java;JavaScript
+5826,Bash/Shell/PowerShell;C++;Python;R
+5827,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+5828,HTML/CSS;JavaScript
+5829,HTML/CSS;JavaScript;Python;SQL;TypeScript
+5830,Bash/Shell/PowerShell;C++;C#;Python;SQL
+5831,Java;Swift
+5832,HTML/CSS;JavaScript
+5833,HTML/CSS;JavaScript;PHP;SQL
+5834,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+5835,HTML/CSS;JavaScript;Python;TypeScript
+5836,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+5837,Bash/Shell/PowerShell;C++;HTML/CSS;Python;Swift
+5838,Java;Objective-C;Python;Ruby;Rust;SQL;Swift
+5839,HTML/CSS;Java;JavaScript;SQL
+5840,Bash/Shell/PowerShell;Go
+5841,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+5842,HTML/CSS;Java;JavaScript;TypeScript
+5843,HTML/CSS;JavaScript
+5844,Bash/Shell/PowerShell;C++;Java;Python
+5845,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+5846,HTML/CSS;Java;JavaScript;SQL
+5847,C;C++;Clojure;Elixir;Erlang;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;Other(s):
+5848,HTML/CSS;JavaScript;PHP;SQL
+5849,HTML/CSS;JavaScript;PHP;SQL
+5850,C#;HTML/CSS;Java;JavaScript;TypeScript;VBA
+5851,Bash/Shell/PowerShell;Clojure;Dart;Go;HTML/CSS;Java;Python
+5852,C#;HTML/CSS;JavaScript;Kotlin
+5853,C;C++;C#;Java;Python
+5854,HTML/CSS;JavaScript;Ruby;Scala;SQL
+5855,Go;Java;Rust
+5856,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;F#;Go;Java;JavaScript
+5857,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift;TypeScript
+5858,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+5859,HTML/CSS;Java;SQL
+5860,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+5861,C;HTML/CSS;Java;Kotlin;Python;Swift
+5862,HTML/CSS;PHP;TypeScript
+5863,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;R;Ruby;Rust;Scala;Swift;TypeScript;VBA;WebAssembly;Other(s):
+5864,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+5865,Dart;HTML/CSS;Java;JavaScript;PHP;Swift
+5866,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+5867,Other(s):
+5868,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+5869,Bash/Shell/PowerShell;C#;SQL;VBA
+5870,Bash/Shell/PowerShell;C;C++;Dart;JavaScript;Objective-C;Python;SQL
+5871,HTML/CSS;JavaScript;Ruby
+5872,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;Rust;Scala
+5873,Java;JavaScript;PHP;Python;SQL;Swift
+5874,PHP
+5875,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+5876,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+5877,C#;Java;JavaScript;Kotlin;SQL;TypeScript
+5878,Bash/Shell/PowerShell;SQL
+5879,C#;HTML/CSS;Java;JavaScript;SQL
+5880,HTML/CSS;JavaScript;Rust
+5881,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL
+5882,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5883,JavaScript;Python;Ruby;Swift
+5884,HTML/CSS;JavaScript;SQL;VBA
+5885,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+5886,C;C++;Python;SQL;Other(s):
+5887,JavaScript
+5888,C;HTML/CSS;Java;JavaScript;PHP;SQL
+5889,C;C++;Other(s):
+5890,C++;Java;VBA
+5891,C#;SQL
+5892,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+5893,Assembly;C;C++;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+5894,Clojure;Python;Other(s):
+5895,C;C++;C#;Java
+5896,HTML/CSS;JavaScript;PHP;SQL
+5897,JavaScript;Python
+5898,HTML/CSS;JavaScript;PHP
+5899,HTML/CSS;JavaScript
+5900,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+5901,Java;SQL
+5902,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+5903,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5904,C#;HTML/CSS;Java;JavaScript
+5905,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+5906,Java;Python
+5907,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;TypeScript
+5908,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5910,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+5911,C;C#;Go;HTML/CSS;JavaScript;Python
+5912,Python;SQL
+5913,C;C++;Python
+5914,JavaScript
+5915,R
+5916,C;C++;Java;Python
+5917,HTML/CSS;JavaScript;PHP;Ruby
+5918,HTML/CSS;Java;JavaScript;Python
+5919,Bash/Shell/PowerShell;C++;C#;Dart;F#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+5920,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+5921,Java;Python;Rust
+5922,HTML/CSS;JavaScript;TypeScript
+5923,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+5924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+5925,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+5926,Assembly;Bash/Shell/PowerShell;C;Python;SQL
+5927,Bash/Shell/PowerShell;Java;Scala;SQL;Other(s):
+5928,Go;Python
+5929,C#;HTML/CSS;JavaScript;PHP;SQL
+5930,HTML/CSS;Java;JavaScript;TypeScript
+5931,C#
+5932,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+5933,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5934,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+5935,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+5936,C#;HTML/CSS;JavaScript;SQL
+5937,HTML/CSS;JavaScript;PHP;SQL
+5938,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+5939,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+5940,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Ruby
+5941,HTML/CSS;JavaScript
+5942,HTML/CSS;Java;JavaScript;Kotlin;PHP
+5943,C#;HTML/CSS;Java;JavaScript;Python;SQL
+5944,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+5945,HTML/CSS;Java;JavaScript;SQL
+5946,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+5947,Elixir;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+5948,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+5949,HTML/CSS;Java;Python;SQL
+5950,Bash/Shell/PowerShell;C;C++;Java;Python
+5951,C++;C#;Java;JavaScript
+5952,C;C++;HTML/CSS;JavaScript
+5953,HTML/CSS;JavaScript;PHP;SQL
+5954,Bash/Shell/PowerShell;C++;Python
+5955,HTML/CSS;JavaScript;PHP;SQL
+5956,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+5957,HTML/CSS;Java;JavaScript;PHP;SQL
+5958,Bash/Shell/PowerShell;Java;JavaScript;PHP
+5959,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5960,C#;HTML/CSS;JavaScript;SQL;TypeScript
+5961,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+5962,HTML/CSS;PHP;SQL
+5963,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+5964,Java;SQL
+5965,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+5966,Bash/Shell/PowerShell;C++;JavaScript;Rust;Other(s):
+5967,Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+5968,HTML/CSS;JavaScript;SQL
+5969,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+5970,C#;Clojure;HTML/CSS;Java;JavaScript;TypeScript
+5971,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+5972,HTML/CSS;Java;JavaScript;Kotlin;Python
+5973,HTML/CSS;Java;JavaScript
+5974,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+5975,C#;HTML/CSS;JavaScript;SQL
+5976,Java;Python
+5977,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+5978,C;C++;Python
+5979,Bash/Shell/PowerShell;Go
+5980,C;C++;HTML/CSS;Python;Ruby;SQL
+5981,Bash/Shell/PowerShell;C#;JavaScript;SQL
+5982,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+5983,Java;JavaScript;TypeScript
+5984,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5985,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+5986,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+5987,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+5988,C#;HTML/CSS;JavaScript;SQL
+5989,C#;HTML/CSS;Java;PHP;SQL
+5990,Java;JavaScript
+5991,C;C++;C#;PHP
+5992,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+5993,HTML/CSS;JavaScript;PHP
+5994,VBA;Other(s):
+5995,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+5996,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+5997,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+5998,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL
+5999,C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+6000,HTML/CSS;JavaScript;Python
+6001,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+6002,C++;HTML/CSS;Java;SQL
+6003,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+6004,Java;Python
+6005,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+6006,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+6007,C#;HTML/CSS;JavaScript;SQL
+6008,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+6009,Assembly;Bash/Shell/PowerShell;C;C++;Python;Scala;Other(s):
+6010,C;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+6011,Assembly;Bash/Shell/PowerShell;C;Java;Python;Rust
+6012,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Ruby;SQL
+6013,JavaScript
+6014,Python;Ruby
+6015,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+6016,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+6017,HTML/CSS;JavaScript;TypeScript
+6018,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+6019,JavaScript;Python;TypeScript
+6020,HTML/CSS;JavaScript;PHP;TypeScript
+6021,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+6022,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+6023,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+6024,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+6025,Java;JavaScript;Kotlin;SQL
+6026,C#;HTML/CSS;JavaScript;PHP;SQL
+6027,C;C++;Python;Rust
+6028,Bash/Shell/PowerShell;Python;SQL
+6029,C#;HTML/CSS;JavaScript;PHP;SQL
+6030,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;R
+6031,C++;Clojure;Other(s):
+6032,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+6033,C#;HTML/CSS;JavaScript;SQL
+6034,Ruby;Scala;SQL;TypeScript
+6035,HTML/CSS;JavaScript;SQL
+6036,Go;HTML/CSS;JavaScript
+6037,Assembly;C;C++
+6038,C;Clojure;HTML/CSS;JavaScript;TypeScript;Other(s):
+6039,Java;Kotlin;Objective-C;Python;Scala;Swift
+6040,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL;Other(s):
+6041,Java;Kotlin;PHP;SQL;Other(s):
+6042,C++;HTML/CSS;JavaScript;SQL
+6043,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+6044,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+6045,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6046,C#;HTML/CSS;JavaScript;SQL
+6047,Python
+6048,HTML/CSS;Java;JavaScript;R;SQL
+6049,C#;HTML/CSS;JavaScript;SQL
+6050,HTML/CSS;JavaScript;TypeScript
+6051,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Objective-C;Python;Swift
+6052,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+6053,JavaScript;SQL
+6054,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Ruby;Scala;SQL
+6055,HTML/CSS;Java;JavaScript;SQL
+6056,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+6057,Bash/Shell/PowerShell;JavaScript;R
+6058,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6059,C++;HTML/CSS;JavaScript;TypeScript;Other(s):
+6060,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Ruby;SQL;TypeScript
+6061,Bash/Shell/PowerShell;Go;Python;SQL
+6062,Assembly;C;C++;HTML/CSS;Java;JavaScript
+6063,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6064,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Rust;SQL;Swift;TypeScript;WebAssembly
+6065,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+6066,C#;HTML/CSS;JavaScript;SQL
+6067,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+6068,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;Other(s):
+6069,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6070,C#
+6071,C++;Go;HTML/CSS;JavaScript;Python;SQL
+6072,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+6074,C++;Java;Kotlin;Python
+6075,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL
+6076,C;C++;Java;JavaScript;PHP;Ruby
+6077,Bash/Shell/PowerShell;C#;Clojure;Go;Java;JavaScript;SQL
+6078,C;C++;Java;Python;SQL
+6079,C++;PHP
+6080,C#;SQL
+6081,SQL;VBA
+6082,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+6083,HTML/CSS;JavaScript;PHP
+6084,Bash/Shell/PowerShell;JavaScript;Python
+6085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+6086,C;C++;Scala;Other(s):
+6087,Bash/Shell/PowerShell
+6088,HTML/CSS;JavaScript;Python;SQL
+6089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+6090,Bash/Shell/PowerShell;Go;Python
+6091,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6092,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+6093,Java;JavaScript;Python;Swift
+6094,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+6095,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+6096,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+6097,C++
+6098,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+6099,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+6100,HTML/CSS;Java;Kotlin;Python
+6101,Java;JavaScript
+6102,HTML/CSS;JavaScript
+6103,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6104,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+6106,C#;Java;SQL
+6107,HTML/CSS;JavaScript;PHP;Python;SQL
+6108,C#;HTML/CSS;Java;JavaScript;SQL
+6109,C#;JavaScript
+6110,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+6111,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;WebAssembly
+6112,HTML/CSS;JavaScript;PHP;TypeScript
+6113,Bash/Shell/PowerShell;C#;Java;JavaScript;Python
+6114,C++;C#;Java;PHP;Python;Ruby;TypeScript
+6115,HTML/CSS;Java;JavaScript;Scala;SQL
+6116,Python
+6117,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+6118,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+6119,Bash/Shell/PowerShell;JavaScript;Ruby;SQL;TypeScript
+6120,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+6121,Python
+6122,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+6123,C#;HTML/CSS;JavaScript;TypeScript;VBA
+6124,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+6125,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+6126,HTML/CSS;Java;JavaScript;Python;SQL
+6127,C;HTML/CSS;Java;JavaScript;PHP;TypeScript
+6128,C++;C#;PHP;Rust;SQL
+6129,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+6131,C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+6132,Java;JavaScript;PHP;SQL
+6133,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby
+6134,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6135,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;VBA
+6136,HTML/CSS;JavaScript;Rust;Swift;TypeScript;WebAssembly
+6137,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+6138,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Other(s):
+6139,HTML/CSS;JavaScript;Ruby;SQL
+6140,C++;HTML/CSS;Java;Python
+6141,HTML/CSS;JavaScript
+6142,C++;HTML/CSS
+6143,Java
+6144,Assembly;C;C++;C#;Java;Scala;SQL
+6145,Java;JavaScript;Kotlin
+6146,C#;HTML/CSS;JavaScript
+6147,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+6148,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Other(s):
+6149,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+6150,C#;HTML/CSS;JavaScript;Ruby
+6151,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;VBA;Other(s):
+6152,C#;Go;Java;JavaScript;PHP;SQL;Other(s):
+6153,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+6155,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+6156,Python;Other(s):
+6157,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+6158,C#;HTML/CSS;JavaScript;SQL
+6159,Bash/Shell/PowerShell;Python;SQL
+6160,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+6161,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+6162,C#;HTML/CSS;Java;JavaScript;Kotlin
+6163,Assembly;Bash/Shell/PowerShell;C++;Java;Python;SQL
+6164,Kotlin;Objective-C
+6165,C#;Clojure;Go;HTML/CSS;JavaScript;SQL
+6166,Bash/Shell/PowerShell;C++;Java;Python
+6167,JavaScript;PHP;SQL
+6168,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6169,Python;Ruby;SQL
+6170,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+6171,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+6172,Bash/Shell/PowerShell;Python;R;SQL;VBA
+6173,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+6174,C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+6175,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby
+6176,Go;Java;Python;TypeScript
+6177,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6178,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL
+6179,HTML/CSS;JavaScript;SQL;Other(s):
+6180,C++;Java;JavaScript;Kotlin;Objective-C;Python;Scala;TypeScript
+6181,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+6182,Bash/Shell/PowerShell;HTML/CSS;Java;Rust
+6183,Assembly;Python;R;VBA
+6184,Bash/Shell/PowerShell;C#;Go;JavaScript;SQL;TypeScript
+6185,Java;Python
+6186,C#;Java;Python
+6187,HTML/CSS;JavaScript;Python;SQL
+6188,HTML/CSS;JavaScript;PHP
+6189,C;C++;Objective-C;SQL;Swift
+6190,C#;HTML/CSS;JavaScript;SQL
+6191,Assembly;C++;C#;JavaScript;SQL
+6192,HTML/CSS;Java;JavaScript;Python
+6193,Java;SQL
+6194,C;C++
+6195,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+6196,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+6197,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+6198,Java;JavaScript;Kotlin;Objective-C;Swift
+6199,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+6200,HTML/CSS;Java;JavaScript;Scala;SQL
+6201,HTML/CSS;JavaScript;Objective-C;PHP;SQL
+6202,Bash/Shell/PowerShell;PHP;Python;SQL
+6203,HTML/CSS;JavaScript;PHP
+6204,Bash/Shell/PowerShell;C++;C#;Java;SQL
+6205,Bash/Shell/PowerShell;C;C++;C#;Java
+6206,C#;HTML/CSS;JavaScript
+6207,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;TypeScript;Other(s):
+6208,Assembly;Java;Kotlin
+6209,C#
+6210,C++;C#;HTML/CSS;JavaScript;SQL
+6211,Bash/Shell/PowerShell;Python;R;SQL
+6212,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL
+6213,Objective-C;Swift
+6214,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+6215,HTML/CSS;Java;JavaScript;Ruby
+6216,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;TypeScript
+6217,Assembly;C;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL
+6218,C;C++;HTML/CSS
+6219,JavaScript;Python;SQL
+6220,C++;C#;Java;SQL
+6221,C#;Python;SQL
+6222,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+6223,C#;SQL
+6224,C++;HTML/CSS;JavaScript;PHP;SQL
+6225,C#;HTML/CSS;JavaScript;SQL
+6227,Bash/Shell/PowerShell;Python
+6228,Java;JavaScript;TypeScript
+6229,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+6230,C;HTML/CSS;Java;JavaScript;SQL
+6231,C#;JavaScript;SQL
+6232,HTML/CSS;Java;JavaScript;SQL;TypeScript
+6233,C#;HTML/CSS;JavaScript
+6235,Java;Python
+6236,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+6237,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;R;SQL
+6238,Elixir;Erlang;Go;HTML/CSS;JavaScript;PHP;Ruby
+6239,Python;Other(s):
+6240,PHP
+6241,C#;HTML/CSS;JavaScript;Python;SQL
+6242,C++;Java
+6243,C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+6244,Java
+6245,HTML/CSS;JavaScript;PHP;SQL
+6246,C#;HTML/CSS;JavaScript;PHP
+6247,C#;HTML/CSS;JavaScript;SQL
+6248,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+6249,HTML/CSS;JavaScript;PHP;Python;SQL
+6250,C++;Python
+6251,HTML/CSS;Java;JavaScript;Ruby;SQL;Swift;TypeScript
+6252,C++;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+6253,Java
+6254,Python
+6255,C++;JavaScript;PHP;SQL
+6256,Bash/Shell/PowerShell;C;C#;Clojure;Elixir;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+6257,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+6258,JavaScript;SQL;Other(s):
+6259,Java;JavaScript;Kotlin;Python;R;Scala;TypeScript
+6260,Bash/Shell/PowerShell;C
+6261,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby
+6262,C#;HTML/CSS;PHP;SQL
+6263,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+6264,C;C++;HTML/CSS;Java;JavaScript;SQL
+6265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6266,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+6267,C#;HTML/CSS;Java;JavaScript;SQL
+6268,C#;Java;JavaScript;TypeScript
+6269,Bash/Shell/PowerShell;Clojure;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL
+6270,JavaScript;Python
+6271,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;R;SQL
+6272,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+6273,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Rust
+6274,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+6275,JavaScript;Python
+6276,C++;C#;Python;R;TypeScript
+6277,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python;Ruby;SQL
+6278,C++;C#;HTML/CSS;JavaScript
+6279,HTML/CSS;Java;Python;SQL
+6280,HTML/CSS;JavaScript
+6281,C++;HTML/CSS;JavaScript;Python
+6282,C#
+6283,HTML/CSS;JavaScript;PHP;SQL
+6284,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6285,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;F#;Go;Java
+6286,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+6287,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP
+6288,HTML/CSS;JavaScript
+6289,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+6290,HTML/CSS;JavaScript;Python
+6291,Bash/Shell/PowerShell;C#;R
+6292,HTML/CSS;JavaScript;Python
+6293,C++;C#;HTML/CSS;JavaScript;SQL
+6294,HTML/CSS;JavaScript;Ruby
+6295,Assembly;C++;Go;HTML/CSS;Java;Python;Swift
+6296,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+6297,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;Ruby;SQL
+6298,Python
+6299,HTML/CSS;Java;JavaScript;SQL;TypeScript
+6300,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+6301,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6302,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+6303,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL
+6304,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+6305,Bash/Shell/PowerShell;C;Python
+6306,HTML/CSS;Java;JavaScript
+6307,C#;HTML/CSS;JavaScript;SQL
+6308,HTML/CSS;Java;JavaScript;TypeScript
+6310,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Other(s):
+6311,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA;WebAssembly;Other(s):
+6312,Bash/Shell/PowerShell;Python
+6313,Dart;Java;JavaScript;Python
+6314,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+6315,HTML/CSS;Java;JavaScript
+6316,Dart;HTML/CSS;Java;JavaScript;PHP;Python
+6317,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+6318,C;HTML/CSS;JavaScript;Python
+6319,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+6320,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+6321,C;C++;C#;HTML/CSS;PHP
+6322,C;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+6323,Java
+6324,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+6325,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP
+6326,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+6327,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+6328,Bash/Shell/PowerShell;Clojure;Erlang;Go;HTML/CSS;JavaScript;Python
+6329,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Scala;SQL
+6330,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+6331,Go;Java
+6332,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+6333,Go;Java;Python
+6334,HTML/CSS;JavaScript
+6335,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+6336,Bash/Shell/PowerShell;C;Java;Python
+6337,C++;JavaScript;Swift
+6338,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+6339,C#;HTML/CSS;JavaScript;SQL
+6340,C;C++;C#;Java;PHP
+6341,C++;HTML/CSS;Python;SQL
+6342,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+6343,C++;Java;Kotlin
+6344,Java;Objective-C;Swift
+6345,C++;HTML/CSS;Java;JavaScript;Python
+6346,JavaScript;Kotlin;PHP
+6347,Python;R
+6348,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6349,C;C++;HTML/CSS;Java;PHP;SQL
+6350,Go;HTML/CSS;JavaScript;TypeScript
+6351,C#;HTML/CSS;JavaScript;Python;SQL
+6352,Assembly;C;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+6353,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+6354,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;VBA
+6355,Bash/Shell/PowerShell;HTML/CSS;Objective-C;Python;Swift
+6356,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+6357,Java;JavaScript;PHP
+6358,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6359,C;HTML/CSS;Java
+6360,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6361,C#;JavaScript;SQL;Other(s):
+6362,Assembly;C;Elixir;Go;Java;JavaScript;PHP;Python;Rust;TypeScript
+6363,Bash/Shell/PowerShell;HTML/CSS;Python;Rust
+6364,HTML/CSS;JavaScript;TypeScript
+6365,Assembly;Python
+6366,C;C++;C#;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+6367,Bash/Shell/PowerShell;C;C++;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+6368,SQL;VBA
+6369,Java;Kotlin;Python
+6370,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;Python
+6371,C;C++;C#;HTML/CSS;Kotlin;PHP;Python
+6372,HTML/CSS;Java;JavaScript;PHP;Python
+6373,Python;SQL
+6374,HTML/CSS;Java;JavaScript;Other(s):
+6375,C++;PHP
+6376,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+6377,Bash/Shell/PowerShell;C++;Python;R
+6378,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python
+6379,Python;Other(s):
+6380,Java;SQL
+6381,C++;C#;SQL
+6382,C#;HTML/CSS;PHP;Other(s):
+6383,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+6384,C++;C#;Other(s):
+6385,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+6386,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+6387,C++;Python
+6388,HTML/CSS;JavaScript;PHP;Python
+6389,Java;Kotlin
+6390,C;C++;HTML/CSS;Java;PHP
+6391,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+6392,SQL
+6393,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+6394,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+6395,Bash/Shell/PowerShell;Java;JavaScript;Ruby
+6396,Java;JavaScript;Python;SQL
+6397,C;HTML/CSS;Java;JavaScript;Python;R;SQL
+6398,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;R;SQL;Other(s):
+6399,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;Rust;SQL
+6400,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+6401,Bash/Shell/PowerShell;C;C++;Java;PHP;SQL
+6402,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+6403,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+6404,Swift
+6405,HTML/CSS;JavaScript;PHP
+6406,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;SQL;Swift;VBA
+6407,Assembly;C++;C#
+6408,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6409,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+6410,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+6411,C;C++
+6412,C#;SQL
+6413,HTML/CSS;JavaScript
+6414,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Ruby;Rust;Scala;SQL
+6415,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+6416,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+6417,Java
+6418,C#;HTML/CSS;JavaScript;Swift
+6419,HTML/CSS;Java;JavaScript;SQL;TypeScript
+6420,Bash/Shell/PowerShell;JavaScript;TypeScript
+6421,C#;HTML/CSS;JavaScript
+6422,C;C++;Python;R;SQL
+6423,HTML/CSS;Java;JavaScript;PHP
+6424,Bash/Shell/PowerShell;F#;PHP;SQL
+6425,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin;Python;SQL;TypeScript
+6426,C#;Erlang;HTML/CSS;Java;JavaScript;SQL
+6427,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+6428,Bash/Shell/PowerShell;PHP;Python;R;SQL;Other(s):
+6429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+6430,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Other(s):
+6431,HTML/CSS;JavaScript;Python;Ruby;SQL
+6432,C;HTML/CSS;Java
+6433,C#;HTML/CSS;SQL
+6434,Assembly;Java
+6435,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+6436,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL
+6437,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+6438,Bash/Shell/PowerShell;C;PHP;Python
+6439,C;C++;C#;JavaScript;PHP;SQL
+6440,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+6441,HTML/CSS;Java
+6442,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+6443,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Rust
+6444,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+6445,Swift
+6446,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript;Python;Other(s):
+6447,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+6448,Go;Python
+6449,HTML/CSS;JavaScript;PHP
+6450,HTML/CSS;PHP
+6451,C#;HTML/CSS;JavaScript
+6452,Java;Kotlin;PHP
+6453,HTML/CSS;Java;JavaScript;SQL;Other(s):
+6454,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+6455,HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+6456,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+6457,Java;Kotlin
+6458,HTML/CSS;Java;JavaScript;SQL
+6459,Bash/Shell/PowerShell;Java;JavaScript;SQL
+6460,Go;HTML/CSS;Java;JavaScript;PHP
+6461,C#;HTML/CSS;Java;JavaScript
+6462,C#;HTML/CSS;R
+6463,C#;Java;JavaScript;Python;TypeScript
+6464,HTML/CSS;JavaScript;PHP
+6465,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+6466,Python;TypeScript
+6467,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6468,C#;HTML/CSS;JavaScript;SQL
+6469,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL
+6470,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+6471,HTML/CSS;JavaScript;PHP;SQL
+6472,Bash/Shell/PowerShell;C#;Kotlin;Swift
+6473,C;C++;HTML/CSS;JavaScript;Objective-C;Swift
+6474,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+6475,C#;HTML/CSS;JavaScript;SQL
+6476,C#;HTML/CSS;Java;JavaScript
+6477,HTML/CSS;JavaScript;PHP;SQL
+6478,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6479,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6480,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;Java;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;Swift;TypeScript
+6481,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+6482,C++;HTML/CSS;Java;JavaScript;PHP;Python
+6483,Java
+6484,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+6485,C#;HTML/CSS;JavaScript;SQL
+6486,HTML/CSS;Python;SQL
+6487,HTML/CSS;Java;JavaScript;SQL;TypeScript
+6488,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+6489,C#;HTML/CSS;JavaScript;Objective-C;Ruby;SQL
+6490,Java
+6491,HTML/CSS;JavaScript;Python
+6492,HTML/CSS;JavaScript;PHP;SQL
+6493,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+6494,C#;HTML/CSS;Java;JavaScript;Python;SQL
+6495,HTML/CSS;Java;JavaScript;SQL
+6496,JavaScript;SQL;TypeScript
+6497,HTML/CSS;JavaScript;PHP
+6498,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Scala;TypeScript
+6499,C;C++;Python;Other(s):
+6500,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6501,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+6502,HTML/CSS;Java;PHP;SQL;TypeScript
+6503,Java;JavaScript;Kotlin;SQL
+6504,Bash/Shell/PowerShell;Java;JavaScript;Python;Other(s):
+6505,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6506,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+6507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+6508,PHP
+6509,C#;HTML/CSS;JavaScript;PHP;SQL
+6510,Bash/Shell/PowerShell;Java
+6511,Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+6512,C#
+6513,C++;HTML/CSS;Java
+6514,C#;HTML/CSS;JavaScript;Other(s):
+6515,Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+6516,Bash/Shell/PowerShell;Python
+6517,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+6518,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+6519,C;C++;PHP;Python
+6520,Java;Kotlin;SQL
+6521,Bash/Shell/PowerShell;C;C++;Java;Python
+6522,HTML/CSS;JavaScript;PHP;SQL
+6523,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+6524,PHP;SQL;Other(s):
+6525,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+6526,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+6527,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6528,HTML/CSS;JavaScript;PHP;Ruby;SQL
+6529,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+6530,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+6531,C++;Java
+6532,PHP
+6533,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+6534,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+6535,C#;HTML/CSS;JavaScript;SQL;Other(s):
+6537,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Swift
+6538,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+6539,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+6540,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+6541,Python;VBA
+6542,C#;F#;Python
+6543,Bash/Shell/PowerShell;C;C++;Go;Python
+6544,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+6545,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;TypeScript
+6546,Bash/Shell/PowerShell;Go;Java;Python;SQL
+6547,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+6548,C#;Python;TypeScript
+6549,HTML/CSS;Java;JavaScript;SQL;TypeScript
+6550,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+6551,Clojure;Java
+6552,Assembly;C;C#;Java;JavaScript;PHP;Python;SQL
+6553,Bash/Shell/PowerShell;C;C++;Python
+6554,C#;Elixir;JavaScript;TypeScript
+6555,C++;C#;Java
+6556,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6557,Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+6558,Assembly;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;WebAssembly
+6559,C;C++;HTML/CSS;JavaScript;Python;SQL
+6560,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+6561,C#
+6562,HTML/CSS;Java;SQL;Other(s):
+6564,Java;JavaScript;Python
+6565,C#
+6566,C#;SQL
+6567,Java;JavaScript;SQL
+6568,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+6569,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+6570,HTML/CSS;JavaScript;Python;VBA
+6571,JavaScript;Python;Ruby
+6572,C;C++;C#;Java;Python
+6573,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+6574,Java;SQL
+6576,C#;Python
+6577,JavaScript;PHP
+6578,Bash/Shell/PowerShell;C#;HTML/CSS;Python;R;SQL
+6579,C;HTML/CSS;Java;JavaScript;Swift
+6580,Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;TypeScript
+6581,Dart;HTML/CSS;JavaScript;Kotlin;TypeScript
+6582,Bash/Shell/PowerShell;HTML/CSS;R;Ruby;SQL
+6583,Java;Ruby;Scala;SQL
+6584,C;Objective-C;Other(s):
+6585,HTML/CSS;Java
+6586,C++;C#;HTML/CSS;Java;JavaScript;SQL
+6587,C++;Python
+6588,C;Java;Python
+6589,C#;JavaScript;PHP
+6590,C;C++;C#;Java
+6591,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+6592,HTML/CSS;Java;JavaScript;SQL
+6593,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6594,C;Other(s):
+6595,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+6596,Bash/Shell/PowerShell;C;Other(s):
+6597,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+6598,Bash/Shell/PowerShell;C#
+6599,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+6600,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript;WebAssembly
+6601,Assembly;C;Java
+6602,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+6603,Python
+6604,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6605,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+6606,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+6607,HTML/CSS;JavaScript;Other(s):
+6608,Java;Python
+6609,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+6610,Bash/Shell/PowerShell;Python;R;SQL;VBA
+6611,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+6612,C#;HTML/CSS;JavaScript;SQL;VBA
+6613,Bash/Shell/PowerShell;JavaScript;PHP;Ruby;Scala;SQL;TypeScript
+6614,C;HTML/CSS;Java;JavaScript;Python;Ruby
+6615,HTML/CSS;JavaScript;TypeScript
+6616,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+6617,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+6618,HTML/CSS;Java;JavaScript;SQL
+6619,Assembly;Bash/Shell/PowerShell;C;C++;Python
+6620,HTML/CSS;JavaScript;SQL
+6621,Swift
+6622,Clojure;JavaScript
+6623,C;HTML/CSS;Java;Python;R;SQL
+6624,Java;SQL
+6625,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+6626,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift
+6627,Python;SQL
+6628,C#;JavaScript;SQL
+6629,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+6630,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript;VBA;Other(s):
+6631,Assembly;HTML/CSS;Python
+6632,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;JavaScript;Python;R;Ruby;Rust;SQL
+6633,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP
+6634,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+6635,HTML/CSS;JavaScript;PHP;Python;SQL
+6636,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+6637,HTML/CSS;JavaScript
+6638,HTML/CSS;JavaScript;Ruby
+6639,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+6640,C++;C#;HTML/CSS;Java;PHP;SQL;VBA
+6641,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+6642,Bash/Shell/PowerShell;C#;SQL
+6643,C++;HTML/CSS;JavaScript;Objective-C;Python
+6644,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+6645,HTML/CSS;JavaScript;Ruby;SQL
+6646,JavaScript;TypeScript
+6647,Go;Python;R
+6648,Bash/Shell/PowerShell;Other(s):
+6649,HTML/CSS;JavaScript;Other(s):
+6650,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;TypeScript
+6651,R;SQL;VBA
+6652,C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+6653,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+6654,C++;JavaScript;Rust;SQL;TypeScript
+6655,HTML/CSS;JavaScript;SQL;Other(s):
+6656,Python
+6657,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6658,Python
+6659,HTML/CSS;JavaScript;PHP
+6660,C#;Python;Other(s):
+6661,Bash/Shell/PowerShell;C#;Java
+6662,Java;JavaScript;Kotlin;SQL
+6663,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+6664,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+6665,JavaScript;PHP;SQL
+6666,HTML/CSS;JavaScript;SQL
+6667,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+6668,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6669,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6670,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;Other(s):
+6671,Bash/Shell/PowerShell;C;Objective-C;PHP;Swift
+6672,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+6673,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;Ruby;SQL
+6674,C++;HTML/CSS;Java;SQL
+6675,Assembly;Bash/Shell/PowerShell;C;C++;Java
+6676,C#;Dart;F#;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+6677,HTML/CSS;JavaScript;PHP;SQL
+6678,Bash/Shell/PowerShell;Ruby;SQL
+6679,Bash/Shell/PowerShell;C;C++;Objective-C;Python;Swift
+6680,Dart;Java;Kotlin
+6682,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Objective-C;Swift
+6683,Bash/Shell/PowerShell;C;Java;Python;Swift
+6684,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;Go;Java;Kotlin;Ruby;Rust;Scala
+6685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+6686,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+6687,Assembly;C;C++;Java;SQL
+6689,Bash/Shell/PowerShell;JavaScript;Other(s):
+6690,Go;HTML/CSS;JavaScript;Rust;SQL
+6691,Assembly;C#;HTML/CSS;JavaScript;Python;SQL
+6692,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;Rust
+6693,Bash/Shell/PowerShell;HTML/CSS;Java
+6694,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+6695,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+6696,HTML/CSS;Java;JavaScript;SQL;TypeScript
+6697,Assembly;Bash/Shell/PowerShell;C;C#;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Rust
+6698,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+6699,HTML/CSS;Java;JavaScript;PHP;SQL
+6700,HTML/CSS;JavaScript;PHP;SQL
+6701,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+6702,Bash/Shell/PowerShell;Java;Scala
+6703,HTML/CSS;PHP;Python;SQL
+6704,Bash/Shell/PowerShell;C#;JavaScript;Python
+6705,HTML/CSS;Java;JavaScript;SQL
+6706,Java
+6707,C;C++;C#;HTML/CSS;Java;PHP;SQL
+6708,C#
+6709,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+6710,Java;Python
+6711,Python;VBA
+6712,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6713,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+6714,Assembly;Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+6715,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+6716,HTML/CSS;JavaScript;PHP;SQL
+6717,Assembly;C;C++;C#;Java;Python;SQL
+6718,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+6719,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+6720,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6721,HTML/CSS;Java;JavaScript;Python;SQL
+6722,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Swift
+6723,C#;SQL
+6724,C#;HTML/CSS;JavaScript;SQL
+6725,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+6726,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+6727,C#;HTML/CSS;SQL;TypeScript
+6728,Bash/Shell/PowerShell;Go;Java;Python
+6729,C;C++;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;SQL;TypeScript
+6730,C#;HTML/CSS;JavaScript;TypeScript
+6731,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA
+6733,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6735,Go;HTML/CSS;JavaScript;Python;TypeScript
+6736,HTML/CSS;Java;JavaScript;TypeScript
+6737,HTML/CSS;JavaScript;TypeScript
+6738,C#;HTML/CSS
+6739,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;TypeScript
+6740,C#;HTML/CSS;JavaScript;PHP;SQL
+6741,HTML/CSS;Java;JavaScript;SQL
+6742,HTML/CSS;Java;JavaScript
+6743,C;HTML/CSS;PHP;Python
+6744,HTML/CSS;Java;JavaScript;Python
+6745,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+6746,C;Python;VBA
+6747,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+6748,Assembly;Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Ruby;TypeScript
+6749,JavaScript;PHP;SQL
+6750,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+6751,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+6752,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+6753,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+6754,HTML/CSS;JavaScript;PHP
+6755,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+6756,HTML/CSS;JavaScript;PHP;Python;TypeScript
+6757,Dart;Java;SQL
+6758,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6759,Go;Kotlin;Python;Ruby
+6760,C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript
+6761,Java;SQL
+6762,Bash/Shell/PowerShell;C#;SQL
+6763,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;SQL;TypeScript
+6764,C#;JavaScript;SQL;TypeScript
+6765,Bash/Shell/PowerShell;Java;SQL
+6766,C#;HTML/CSS;TypeScript
+6767,HTML/CSS;JavaScript;SQL;Other(s):
+6768,C;Clojure;HTML/CSS;PHP;Python;SQL
+6769,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+6770,Java;Python
+6771,Bash/Shell/PowerShell;Java;SQL;Other(s):
+6772,HTML/CSS;JavaScript;PHP;SQL;Swift
+6773,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+6774,C;C++;C#;HTML/CSS;JavaScript;Python
+6775,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6776,HTML/CSS;JavaScript;PHP;SQL
+6777,JavaScript
+6778,HTML/CSS;JavaScript;PHP
+6779,JavaScript;Python;Other(s):
+6780,Assembly;C;C++;Dart;Java;JavaScript;Kotlin;Swift
+6781,HTML/CSS;JavaScript;PHP;SQL
+6782,Python
+6783,C;C#;HTML/CSS;Java;Python
+6784,C++;C#;HTML/CSS;Java;SQL;TypeScript
+6785,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+6786,JavaScript
+6787,C#;F#;HTML/CSS;Java;JavaScript;Python;Other(s):
+6790,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+6791,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL
+6792,HTML/CSS;JavaScript;PHP
+6793,C#;JavaScript;Objective-C;Swift
+6794,C;C++;JavaScript;Python;Ruby;Rust;SQL
+6795,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+6796,Java;JavaScript
+6797,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+6798,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6799,HTML/CSS;JavaScript;TypeScript
+6800,HTML/CSS;JavaScript;PHP;SQL
+6801,Elixir;JavaScript;Ruby;SQL
+6802,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6804,HTML/CSS;JavaScript;Python
+6805,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Rust;TypeScript;Other(s):
+6806,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6807,C#;JavaScript;Python;SQL
+6809,C;C++;C#;HTML/CSS;JavaScript;Python
+6810,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+6811,HTML/CSS;Java;Kotlin;PHP
+6812,Python;R
+6813,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+6814,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6816,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;TypeScript
+6817,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+6818,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+6819,Bash/Shell/PowerShell;JavaScript;Python;Rust;SQL;Other(s):
+6820,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+6821,C#;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+6822,C#;HTML/CSS;JavaScript;Python;SQL
+6823,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+6824,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+6825,C;C++;Java;Python
+6826,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+6827,C++;Python;Swift;Other(s):
+6828,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6829,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6830,Bash/Shell/PowerShell;C;C++;C#;F#;JavaScript;SQL
+6831,HTML/CSS;Java;PHP;SQL
+6832,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6833,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+6834,C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+6835,C#;HTML/CSS;JavaScript;SQL
+6836,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+6837,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+6838,HTML/CSS;JavaScript;Python;Rust
+6839,HTML/CSS;JavaScript
+6840,C++;Java;Python;Rust
+6841,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+6842,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;VBA
+6843,Bash/Shell/PowerShell;Go;Java;Objective-C;Ruby
+6844,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+6845,Java;Kotlin
+6846,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+6847,Java
+6848,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6849,HTML/CSS;JavaScript;PHP;Python;SQL
+6850,Java
+6851,HTML/CSS;Java;JavaScript;PHP;SQL
+6852,HTML/CSS;JavaScript;PHP;Python
+6853,C++;Java;Kotlin;Python;Other(s):
+6854,HTML/CSS;JavaScript;Ruby
+6855,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6856,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+6857,HTML/CSS;Java;JavaScript;Python;SQL
+6858,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;WebAssembly
+6859,Assembly;C;Java;Python
+6860,C#;HTML/CSS;JavaScript;Python;TypeScript
+6862,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript;Other(s):
+6863,R;SQL
+6864,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+6865,HTML/CSS;Java;JavaScript;SQL
+6866,Go;HTML/CSS;JavaScript;Ruby;TypeScript
+6867,HTML/CSS;JavaScript;PHP;TypeScript
+6868,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+6869,C#;HTML/CSS;JavaScript;PHP;TypeScript
+6870,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+6871,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+6872,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+6873,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+6874,Bash/Shell/PowerShell;Java;SQL
+6875,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6876,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+6877,Assembly;C++;C#
+6878,Bash/Shell/PowerShell;C;Java;JavaScript;R;SQL;Swift
+6879,Assembly;C;HTML/CSS;Java;JavaScript;SQL
+6880,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+6881,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+6882,VBA
+6883,C;C++;Python
+6884,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+6885,Assembly;C;HTML/CSS;JavaScript;PHP
+6886,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6887,HTML/CSS;JavaScript
+6888,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+6889,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6890,HTML/CSS;Java;JavaScript
+6891,C;SQL;Other(s):
+6892,Bash/Shell/PowerShell;C++;C#;Go;JavaScript;Rust;SQL
+6893,JavaScript;Python;Ruby;Swift
+6894,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+6895,Python;SQL;Other(s):
+6896,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+6897,Java
+6899,Elixir;HTML/CSS;JavaScript;SQL
+6900,Objective-C;Swift
+6901,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;WebAssembly
+6902,C++;C#;JavaScript
+6903,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL;TypeScript
+6904,JavaScript;PHP;Python;SQL;TypeScript
+6905,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;SQL
+6906,C++;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+6907,C;Java;Ruby
+6908,PHP;SQL
+6909,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+6910,Python;Scala
+6911,Java;Scala
+6912,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+6913,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+6914,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+6915,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+6916,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+6917,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6918,JavaScript;Ruby
+6919,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript;Other(s):
+6920,C#
+6921,C#;HTML/CSS;JavaScript;TypeScript
+6922,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6923,Java;JavaScript;SQL
+6924,C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Swift;TypeScript
+6925,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+6926,Bash/Shell/PowerShell;C#;Python
+6927,Python;R;SQL
+6928,C#;HTML/CSS;JavaScript;PHP;SQL
+6929,Go;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+6930,C#;JavaScript
+6931,C#;HTML/CSS;JavaScript;SQL
+6932,Bash/Shell/PowerShell;PHP
+6933,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL
+6934,C++;C#;SQL;VBA
+6935,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6936,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6937,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6938,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+6939,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;Swift;TypeScript
+6940,JavaScript;Ruby;TypeScript
+6941,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+6942,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+6943,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Ruby;SQL;TypeScript
+6944,JavaScript
+6945,C#;Java;JavaScript;SQL
+6946,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6947,C;C++;C#;HTML/CSS;Java
+6948,HTML/CSS;Java;JavaScript;SQL
+6949,C#;HTML/CSS;JavaScript;PHP;SQL
+6950,Assembly;C#;HTML/CSS;JavaScript;SQL
+6951,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+6952,C#
+6953,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6954,Java;Kotlin
+6955,Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+6956,Bash/Shell/PowerShell;JavaScript;Python;Scala;SQL
+6957,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+6958,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+6959,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+6960,Dart;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+6961,HTML/CSS;JavaScript
+6962,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+6963,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+6964,C#;HTML/CSS;JavaScript;SQL
+6965,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+6966,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+6967,Assembly;Bash/Shell/PowerShell;C;Python
+6969,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+6970,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+6971,C++;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+6972,Python;SQL
+6973,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+6974,Bash/Shell/PowerShell;Go;HTML/CSS
+6975,HTML/CSS;JavaScript
+6976,C#;HTML/CSS;JavaScript;SQL;VBA
+6977,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+6978,HTML/CSS;JavaScript;PHP;SQL
+6979,HTML/CSS;JavaScript
+6980,HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL
+6981,C#;HTML/CSS;JavaScript
+6982,HTML/CSS;JavaScript;PHP;Rust;SQL
+6983,Assembly;Bash/Shell/PowerShell;C++;C#
+6984,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+6985,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+6986,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+6987,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+6988,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+6989,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+6990,C#;HTML/CSS;JavaScript;SQL;TypeScript
+6991,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+6992,HTML/CSS;JavaScript;PHP;Ruby
+6993,Python
+6994,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+6995,C#
+6996,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+6997,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+6998,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+6999,C;C++;Go;HTML/CSS;JavaScript;PHP;SQL
+7000,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;R;TypeScript
+7001,Python;R
+7002,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL
+7003,C#;Python
+7004,HTML/CSS;Java;JavaScript;SQL;TypeScript
+7005,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+7006,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+7007,C#;Python
+7008,Java;JavaScript;TypeScript
+7009,Other(s):
+7010,C#;HTML/CSS;SQL;TypeScript
+7011,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+7012,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+7013,C#;HTML/CSS;JavaScript;SQL
+7014,C#;Java;Kotlin;Python;SQL
+7015,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;SQL
+7016,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+7017,Ruby
+7018,Bash/Shell/PowerShell;Dart;Go;JavaScript;Python;Ruby;TypeScript
+7019,HTML/CSS;JavaScript;PHP;SQL
+7020,HTML/CSS;Java;JavaScript;SQL
+7021,HTML/CSS;JavaScript;Other(s):
+7022,SQL
+7023,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+7024,Objective-C;Swift
+7025,C++;HTML/CSS;JavaScript;Python
+7026,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7027,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;WebAssembly
+7028,HTML/CSS;Java;JavaScript;VBA
+7029,HTML/CSS;JavaScript;Python
+7030,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+7031,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+7032,C;HTML/CSS;Java;JavaScript;SQL
+7033,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;R;SQL;WebAssembly
+7034,Java
+7035,C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+7036,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+7037,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript
+7038,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+7039,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7040,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+7041,C;C++;Python
+7042,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7043,HTML/CSS;JavaScript;PHP;SQL
+7044,HTML/CSS;PHP;R;Other(s):
+7045,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+7046,Bash/Shell/PowerShell;Java;Scala;SQL
+7047,C#;SQL
+7048,Python
+7049,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7050,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7051,C++
+7052,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+7053,HTML/CSS;JavaScript;PHP;SQL
+7054,C;C++;Java;JavaScript;Python
+7055,HTML/CSS;JavaScript
+7056,C#;JavaScript;PHP;SQL
+7057,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+7058,Bash/Shell/PowerShell;C;C++;Java
+7059,Bash/Shell/PowerShell;Java;JavaScript
+7060,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+7061,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+7062,C#;HTML/CSS;JavaScript;Python
+7063,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+7064,Assembly;C;Dart;JavaScript;Other(s):
+7065,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+7066,Assembly;Go;Java;Rust
+7067,C++;HTML/CSS;Java;JavaScript;SQL
+7068,Bash/Shell/PowerShell;C;C++;Erlang;Go;Java;JavaScript;Python;R;Rust;Scala;SQL;TypeScript
+7069,C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+7070,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;VBA
+7071,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+7072,C#;JavaScript;TypeScript
+7073,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+7074,HTML/CSS;JavaScript;Python
+7075,Bash/Shell/PowerShell;C#;SQL;VBA
+7076,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;VBA
+7077,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+7078,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;Swift;WebAssembly
+7079,Elixir;Python
+7080,C#
+7081,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7082,JavaScript;Python
+7083,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;SQL;TypeScript
+7084,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+7085,HTML/CSS;JavaScript;PHP
+7086,HTML/CSS;Java;JavaScript;Python;SQL
+7087,Java
+7088,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+7089,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;WebAssembly;Other(s):
+7090,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+7091,C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+7092,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala
+7093,HTML/CSS;Java;SQL
+7094,JavaScript;PHP;Python;SQL
+7095,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+7096,C#;JavaScript;Ruby;Rust
+7097,Bash/Shell/PowerShell;C#;F#;SQL
+7098,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7099,C++;Java;Objective-C;Python;Rust
+7100,HTML/CSS;JavaScript;Objective-C;PHP;SQL
+7101,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python;SQL
+7102,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;SQL
+7103,C++;Go
+7104,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+7105,Java;JavaScript;Kotlin;Ruby
+7106,HTML/CSS;Java;JavaScript;Kotlin
+7107,Java;PHP;SQL
+7108,HTML/CSS;JavaScript;PHP;SQL
+7109,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript
+7110,HTML/CSS;Java;JavaScript;SQL
+7111,HTML/CSS;JavaScript;VBA
+7112,Bash/Shell/PowerShell;C#
+7113,HTML/CSS;JavaScript;PHP;SQL
+7114,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7115,PHP
+7116,Ruby
+7117,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+7118,JavaScript;Scala;TypeScript
+7119,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;Swift
+7120,HTML/CSS;JavaScript
+7121,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+7122,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+7123,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+7124,Dart;Elixir;Go;HTML/CSS;JavaScript;Rust;SQL;TypeScript;Other(s):
+7125,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;SQL
+7126,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+7127,C;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+7128,JavaScript;PHP;SQL;TypeScript
+7129,Python
+7130,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;Other(s):
+7131,HTML/CSS;JavaScript;PHP
+7132,HTML/CSS;Java;JavaScript;PHP;Python
+7133,Go;Java;PHP;Scala;SQL
+7134,Bash/Shell/PowerShell;SQL
+7135,Assembly;C++;Java;Python
+7136,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+7137,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+7138,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+7139,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7140,HTML/CSS;JavaScript;TypeScript
+7141,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7142,HTML/CSS;Java;JavaScript;SQL;TypeScript
+7143,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+7144,HTML/CSS;Java;JavaScript;Ruby
+7145,HTML/CSS;Java;JavaScript
+7146,Java;SQL
+7147,C#;HTML/CSS;JavaScript;TypeScript
+7148,C#;SQL
+7149,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+7150,JavaScript;Python;SQL
+7151,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;Swift;TypeScript
+7152,Swift
+7153,C#;HTML/CSS;JavaScript;SQL
+7154,Objective-C;Python;Swift
+7155,JavaScript;PHP;SQL;Other(s):
+7156,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;Scala;SQL
+7157,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+7158,Assembly;Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python
+7159,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+7161,HTML/CSS;Java;JavaScript;PHP;SQL
+7162,Java;Python
+7163,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+7164,HTML/CSS;Java;JavaScript;SQL
+7165,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+7166,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+7167,C#;Java;JavaScript;VBA
+7168,C++;R
+7169,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7170,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7171,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Python;Ruby
+7172,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+7173,JavaScript;PHP;Python;SQL;TypeScript
+7174,Java;JavaScript;SQL
+7175,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7176,C;C++;Go;Java;JavaScript;Python;SQL
+7177,Other(s):
+7178,C;C++;Java;SQL
+7179,HTML/CSS;Java;JavaScript;SQL
+7180,C#;Go;HTML/CSS;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+7181,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+7182,Java;JavaScript;Other(s):
+7183,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;Other(s):
+7184,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+7185,HTML/CSS;JavaScript;SQL;TypeScript
+7186,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+7187,Java;R
+7188,Python;R;VBA
+7189,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+7190,HTML/CSS;Java;JavaScript;PHP;SQL
+7191,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Scala;SQL
+7192,HTML/CSS;JavaScript;PHP
+7193,Bash/Shell/PowerShell;C++;Python
+7194,Java;Kotlin;Ruby
+7195,C#;HTML/CSS;JavaScript
+7196,C;C++;JavaScript;Python;TypeScript
+7197,C#;HTML/CSS;Java;JavaScript;SQL
+7198,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Swift
+7199,C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+7200,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+7201,HTML/CSS;JavaScript;PHP;SQL
+7203,HTML/CSS;Java;JavaScript;PHP
+7204,C;HTML/CSS;Java;JavaScript;PHP;Python
+7205,C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+7206,Go;HTML/CSS;JavaScript;PHP;SQL
+7207,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7208,C;C++;C#
+7209,C++
+7210,C;C++;C#;JavaScript;Python
+7211,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+7212,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+7213,HTML/CSS;JavaScript;Python;SQL
+7214,HTML/CSS;JavaScript;Python;SQL
+7215,C#;HTML/CSS;JavaScript;SQL;VBA
+7216,C#;Dart;F#;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+7217,HTML/CSS;Java;JavaScript;SQL
+7218,Bash/Shell/PowerShell;C++;JavaScript;Python;TypeScript
+7219,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+7220,C;HTML/CSS;JavaScript
+7221,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+7222,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust
+7223,HTML/CSS;JavaScript;PHP
+7224,C;C++;C#;PHP;SQL
+7225,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+7226,C;C++;HTML/CSS;JavaScript;Python
+7227,Assembly;HTML/CSS;JavaScript;Python;TypeScript
+7228,HTML/CSS;Java;JavaScript;Python;TypeScript
+7229,C#;Clojure;JavaScript;Objective-C;SQL
+7230,C;C++;C#;Java;PHP;SQL
+7231,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python;Ruby
+7232,C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7233,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+7234,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+7235,Bash/Shell/PowerShell;C;C#
+7236,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7238,HTML/CSS;JavaScript;PHP;TypeScript
+7239,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+7240,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+7241,HTML/CSS;Java;JavaScript;SQL;TypeScript
+7242,HTML/CSS;Java;JavaScript;SQL
+7243,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+7244,C;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+7245,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+7246,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+7247,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;R;SQL
+7248,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;SQL;VBA
+7249,Python;SQL;Other(s):
+7250,Python
+7251,Bash/Shell/PowerShell;Objective-C;Swift;Other(s):
+7252,C;C++;C#;Elixir;HTML/CSS;JavaScript;PHP;SQL
+7253,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+7254,HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+7255,HTML/CSS;Python
+7256,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+7257,Bash/Shell/PowerShell;C;HTML/CSS;Ruby
+7258,C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift;VBA
+7259,C++;Python;Scala;SQL
+7260,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Other(s):
+7261,C;C++;Java;SQL
+7262,HTML/CSS;JavaScript;Python
+7263,HTML/CSS;JavaScript;TypeScript
+7264,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+7265,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+7266,Java
+7267,C#;HTML/CSS;JavaScript;SQL
+7268,C;C++;JavaScript;Rust
+7269,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+7270,HTML/CSS;JavaScript;PHP
+7271,C;C++;Java;JavaScript;SQL
+7272,Python
+7273,C;C++;HTML/CSS;Java;JavaScript;SQL
+7274,Python
+7275,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+7276,C;C++;C#
+7277,Assembly;Bash/Shell/PowerShell;C;HTML/CSS
+7278,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+7279,Java
+7280,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+7281,Python
+7282,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+7283,C#;Java
+7284,Assembly;Java
+7285,Bash/Shell/PowerShell;Go;JavaScript;SQL
+7286,C;C++;C#;Java;SQL
+7287,Python;Other(s):
+7288,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;VBA
+7289,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python;SQL;TypeScript
+7290,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7291,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+7292,Clojure;TypeScript;Other(s):
+7293,HTML/CSS;JavaScript;PHP;Python;SQL
+7294,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+7295,HTML/CSS;Java;JavaScript;Python;SQL
+7296,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+7297,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+7298,Bash/Shell/PowerShell;Java;JavaScript;SQL
+7299,Go;JavaScript
+7300,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+7301,HTML/CSS;JavaScript;Python;TypeScript
+7302,HTML/CSS;Java;JavaScript;SQL
+7303,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;Rust;Swift
+7304,C#;HTML/CSS;JavaScript
+7305,C#;JavaScript;TypeScript
+7306,C++;C#;Go;HTML/CSS;Java;JavaScript;SQL
+7307,JavaScript
+7308,HTML/CSS;JavaScript;Objective-C;Swift
+7309,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;WebAssembly
+7310,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7311,C;HTML/CSS;JavaScript;Python
+7312,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+7313,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+7314,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+7315,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+7316,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+7317,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+7318,C;C++
+7319,C#;HTML/CSS;Python;SQL
+7320,C++;Clojure;Java;Kotlin;PHP;Python;Ruby
+7321,C;C++;HTML/CSS;Java;JavaScript;Python
+7322,Clojure
+7323,C#;HTML/CSS;JavaScript;SQL
+7325,C#;HTML/CSS;JavaScript;Ruby;TypeScript
+7326,C++;Go;Java;JavaScript;Python;R;VBA
+7327,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;Python;TypeScript;Other(s):
+7328,C++;JavaScript;Python;SQL
+7329,C++;C#;HTML/CSS;Java;JavaScript;SQL
+7330,C#;HTML/CSS;JavaScript;SQL
+7331,SQL
+7332,HTML/CSS;JavaScript;Python
+7333,Java
+7334,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Other(s):
+7335,C#
+7336,Other(s):
+7337,HTML/CSS;Java;JavaScript;PHP;SQL
+7338,HTML/CSS;Java;JavaScript;SQL
+7339,Java;Kotlin;Swift
+7340,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7341,C#
+7342,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;R;Rust;SQL;Other(s):
+7343,Bash/Shell/PowerShell;HTML/CSS;SQL;VBA
+7344,Bash/Shell/PowerShell;Ruby;SQL
+7345,JavaScript;Objective-C;SQL;Swift
+7346,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript
+7347,C;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;TypeScript
+7348,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+7349,HTML/CSS;Java;JavaScript;SQL;TypeScript
+7350,SQL;Other(s):
+7351,C;C++;Objective-C
+7352,HTML/CSS;JavaScript;PHP;SQL
+7353,Assembly;C;Clojure;Erlang;Java;R;Ruby;Rust;WebAssembly;Other(s):
+7354,C++;C#;Go;HTML/CSS;JavaScript;TypeScript
+7355,HTML/CSS;Java;JavaScript;SQL;Other(s):
+7356,HTML/CSS;JavaScript
+7357,Java
+7358,Java;SQL
+7359,Java;Python
+7360,Other(s):
+7361,HTML/CSS;Java;JavaScript;PHP;SQL
+7362,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7363,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+7364,HTML/CSS;JavaScript;Python;R;SQL;VBA
+7365,HTML/CSS;JavaScript;Python;R
+7366,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+7367,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+7368,Other(s):
+7369,C#;HTML/CSS;JavaScript;SQL
+7371,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;R;SQL
+7372,C#;HTML/CSS;JavaScript;SQL
+7373,Bash/Shell/PowerShell;C;C++;R;SQL
+7374,Bash/Shell/PowerShell;Go;Java;Python;R;Scala;SQL;VBA
+7375,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+7376,HTML/CSS;JavaScript;Ruby;SQL
+7377,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7378,HTML/CSS;Java;Kotlin
+7379,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Python;SQL;TypeScript;Other(s):
+7380,HTML/CSS;Java;JavaScript
+7381,C;C#;JavaScript;VBA
+7382,Java;JavaScript;SQL
+7383,C#
+7384,C;C++;Go;HTML/CSS;Java;Python
+7385,C#;Dart;HTML/CSS;Java;JavaScript;TypeScript
+7386,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+7387,C++;Java;Kotlin;TypeScript
+7388,HTML/CSS;JavaScript;PHP
+7389,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+7390,Clojure;Java
+7391,Java;JavaScript;Python;SQL
+7392,C++;Python
+7393,Assembly;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Swift;TypeScript
+7394,HTML/CSS;JavaScript
+7395,Bash/Shell/PowerShell;C;C#;HTML/CSS;PHP;Python;Ruby;Rust;SQL;VBA
+7396,HTML/CSS;Java;JavaScript;SQL;TypeScript
+7397,Java;Kotlin;Python;Ruby;SQL
+7398,C#;JavaScript
+7399,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7400,Java;Python;Ruby;SQL
+7401,HTML/CSS;JavaScript;Ruby;SQL
+7402,C#;Rust;SQL
+7403,JavaScript;PHP
+7404,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+7406,Java;JavaScript;TypeScript
+7407,HTML/CSS;Java;Python
+7408,Bash/Shell/PowerShell;Go;Java;Python
+7409,Bash/Shell/PowerShell;Go;Python;Ruby;Other(s):
+7410,HTML/CSS;JavaScript;PHP;SQL
+7411,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+7412,HTML/CSS;JavaScript;PHP;SQL
+7413,C;C++;HTML/CSS;Java;JavaScript;PHP;Swift;VBA
+7414,HTML/CSS;JavaScript;PHP
+7415,C#;Go;HTML/CSS;Java;PHP;SQL
+7416,Go;SQL
+7417,C++;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+7418,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+7419,C#;SQL
+7420,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;Other(s):
+7421,C++
+7422,C;C++;C#
+7423,HTML/CSS;JavaScript
+7424,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+7425,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+7426,C++;R
+7427,C;C++;HTML/CSS;JavaScript;Python;R
+7428,C#;HTML/CSS;JavaScript;SQL
+7429,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+7430,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Other(s):
+7431,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+7432,C;HTML/CSS;Java;Kotlin;PHP;Python;Ruby;SQL
+7433,HTML/CSS;JavaScript;Python;R;SQL
+7434,Assembly;HTML/CSS;JavaScript;PHP
+7435,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+7436,C#;JavaScript;SQL
+7437,Assembly;Go;HTML/CSS;Java;JavaScript;Swift;TypeScript
+7438,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+7439,Bash/Shell/PowerShell;Elixir;Python;Other(s):
+7440,Bash/Shell/PowerShell;C#;Java;Python
+7441,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+7442,HTML/CSS;JavaScript;Python;R;Scala;SQL
+7443,HTML/CSS;JavaScript;Python
+7444,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Python;SQL
+7445,HTML/CSS;JavaScript;TypeScript
+7446,Objective-C;Swift
+7447,C;C++;Erlang;Java;JavaScript;Python;SQL
+7448,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7449,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+7450,C++;C#;HTML/CSS;Python
+7451,JavaScript;TypeScript
+7452,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7453,Other(s):
+7454,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7455,JavaScript;PHP;Python
+7456,HTML/CSS;JavaScript;PHP;SQL
+7457,C++;C#;HTML/CSS;JavaScript;PHP
+7458,HTML/CSS;JavaScript;TypeScript
+7459,C#;Java;JavaScript;SQL
+7460,C#;HTML/CSS;JavaScript;SQL
+7462,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python;SQL;Swift;VBA
+7463,HTML/CSS;JavaScript;Objective-C;Python;VBA
+7464,HTML/CSS;JavaScript;PHP;Other(s):
+7465,Bash/Shell/PowerShell;C#;HTML/CSS;VBA
+7466,C#;HTML/CSS;JavaScript
+7467,Swift
+7468,C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+7469,C#;HTML/CSS;SQL;VBA
+7470,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+7471,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+7472,C#;HTML/CSS;JavaScript;TypeScript
+7473,C++;C#;HTML/CSS;Python;SQL;Other(s):
+7474,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+7475,Bash/Shell/PowerShell;C;C++;Go;Java;Python;SQL;Other(s):
+7476,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+7477,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+7478,F#;HTML/CSS;JavaScript;Python;Other(s):
+7479,Java;JavaScript;SQL;Other(s):
+7480,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+7481,C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+7482,HTML/CSS;JavaScript;Ruby;TypeScript
+7483,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;Other(s):
+7484,Java
+7485,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;Other(s):
+7486,HTML/CSS;JavaScript;SQL;TypeScript
+7487,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;VBA
+7488,Bash/Shell/PowerShell;SQL
+7489,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Scala;SQL;TypeScript
+7490,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Kotlin;Python;Ruby;SQL
+7491,C#;SQL
+7492,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7493,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+7494,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+7495,C++;C#;SQL;Other(s):
+7497,Bash/Shell/PowerShell;Java
+7498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+7499,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Rust;Scala;SQL;Swift;TypeScript
+7500,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+7501,Java;Python;Scala
+7502,C++;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7503,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+7504,HTML/CSS;JavaScript;PHP;SQL
+7505,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;R;SQL
+7506,HTML/CSS;JavaScript;TypeScript
+7507,C++;Python;Other(s):
+7508,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Swift
+7509,Bash/Shell/PowerShell;C;C++
+7510,C++;C#;Python
+7511,Ruby
+7512,C#;Go;Python;SQL
+7513,C++;C#;HTML/CSS;SQL;TypeScript
+7514,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust;SQL
+7515,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+7516,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7517,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+7518,HTML/CSS;JavaScript;Python;R
+7519,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+7520,F#;Python;Other(s):
+7521,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+7522,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7523,Bash/Shell/PowerShell;C++;Python
+7524,Objective-C;Python;Swift
+7525,C#;JavaScript;PHP;SQL;TypeScript
+7526,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+7527,C#;HTML/CSS;JavaScript;Python;TypeScript
+7528,C;C++
+7530,HTML/CSS;Java;JavaScript;SQL
+7531,Bash/Shell/PowerShell;HTML/CSS;Java;Ruby;SQL
+7532,C#;HTML/CSS;JavaScript
+7533,HTML/CSS;JavaScript
+7534,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+7535,C#;HTML/CSS;JavaScript;Python;SQL
+7536,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+7537,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+7538,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+7539,C#;HTML/CSS;JavaScript;Python;SQL
+7540,HTML/CSS;JavaScript
+7541,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;TypeScript
+7542,Assembly;Java;PHP;Swift
+7543,Bash/Shell/PowerShell;Elixir;Java;JavaScript
+7544,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;SQL
+7545,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+7546,Java;Python
+7547,Go;HTML/CSS;JavaScript;TypeScript
+7548,C;C++;C#;HTML/CSS;Java;JavaScript;R;SQL
+7549,HTML/CSS;Java;JavaScript;Python
+7550,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+7552,C#;HTML/CSS;JavaScript;SQL
+7553,Python;Scala;SQL
+7554,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+7555,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+7556,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+7557,Java;Kotlin
+7558,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;TypeScript
+7559,C#;JavaScript;Python;Ruby;Swift
+7560,C#;HTML/CSS;Java;JavaScript;PHP
+7561,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+7562,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+7563,C++;Go;HTML/CSS;JavaScript;SQL
+7564,Bash/Shell/PowerShell;Python
+7565,HTML/CSS;JavaScript;PHP
+7566,C
+7567,HTML/CSS;JavaScript;Python
+7568,Java;PHP;Python;SQL
+7569,HTML/CSS;JavaScript;PHP;SQL
+7570,HTML/CSS;JavaScript;PHP;SQL;VBA
+7571,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+7572,HTML/CSS;JavaScript;PHP;SQL
+7573,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7574,HTML/CSS;JavaScript
+7575,C++;HTML/CSS;Java;SQL
+7576,Java
+7577,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+7578,Bash/Shell/PowerShell;C++
+7579,C#;HTML/CSS;JavaScript;Python;SQL
+7580,JavaScript;PHP
+7581,C#;JavaScript;Python;TypeScript
+7582,Bash/Shell/PowerShell;SQL;Swift
+7583,Python
+7584,C;C#;VBA
+7585,HTML/CSS;Java;TypeScript
+7586,C#;HTML/CSS;JavaScript;SQL
+7588,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+7589,C;HTML/CSS;SQL
+7590,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;SQL;Swift;TypeScript
+7591,Go;JavaScript;Ruby
+7592,C#;JavaScript;TypeScript
+7593,C#;HTML/CSS;Java;JavaScript;SQL
+7594,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+7595,C++;Java;Python;SQL
+7596,R;VBA
+7597,C#;HTML/CSS;JavaScript;SQL
+7598,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+7599,C;C++;Python
+7600,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+7601,Assembly;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7602,Bash/Shell/PowerShell;Python;Rust
+7603,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;TypeScript
+7604,C++;HTML/CSS;Java;JavaScript;Python;SQL
+7605,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7606,Bash/Shell/PowerShell;C;C#;Java;Python;Ruby;Scala
+7607,Java;JavaScript;Python;SQL;TypeScript
+7608,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+7609,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+7610,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+7611,HTML/CSS;JavaScript;SQL;Other(s):
+7612,C;C++;C#;HTML/CSS;Java;JavaScript;R;SQL
+7613,HTML/CSS;Java;JavaScript;SQL;TypeScript
+7614,C;HTML/CSS;JavaScript
+7615,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+7616,HTML/CSS;JavaScript;PHP;SQL
+7617,C;Python
+7618,C++;JavaScript
+7619,Bash/Shell/PowerShell;C#
+7620,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7621,Python;Other(s):
+7622,Java;JavaScript;SQL
+7623,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7624,Assembly;Bash/Shell/PowerShell;Java;Python;R;SQL
+7625,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+7626,C;C++;Elixir;JavaScript;Python;R;SQL
+7627,Objective-C;Swift
+7628,HTML/CSS;JavaScript;Python
+7629,Java;Kotlin
+7630,Assembly;C;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+7631,C#;HTML/CSS;Java;Python;VBA
+7632,Ruby;Swift
+7633,HTML/CSS;JavaScript
+7634,Java;SQL
+7635,HTML/CSS;JavaScript;PHP
+7636,Bash/Shell/PowerShell;C++;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+7637,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+7638,HTML/CSS;JavaScript
+7639,Python;R;SQL
+7640,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+7641,HTML/CSS;JavaScript;PHP
+7642,Bash/Shell/PowerShell;C;C++;Other(s):
+7643,C;C#;Dart;HTML/CSS;Java
+7644,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+7645,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+7646,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+7647,C;C++;C#;HTML/CSS;JavaScript;PHP;Swift;TypeScript
+7648,C++;C#;HTML/CSS;JavaScript;Ruby
+7649,C++;Python;Swift
+7650,C;C++;C#;Go;HTML/CSS;Java;Python
+7651,HTML/CSS;Java;JavaScript
+7652,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7653,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+7654,Python
+7655,HTML/CSS;JavaScript;Python;SQL
+7656,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+7657,HTML/CSS;Java;JavaScript
+7658,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+7659,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+7660,HTML/CSS;JavaScript;PHP
+7661,C;C++
+7662,C++
+7663,Python;TypeScript
+7664,Java
+7665,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+7666,C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+7667,Bash/Shell/PowerShell;Java;Python;SQL
+7668,C++;C#;Java;Python
+7669,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+7670,PHP;Python;SQL
+7671,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+7672,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+7673,HTML/CSS;Java;Python
+7674,C#;HTML/CSS;JavaScript;SQL;VBA
+7675,C++;Go;JavaScript;Python
+7676,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+7677,Java;JavaScript;Python
+7678,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;Other(s):
+7679,Assembly;Bash/Shell/PowerShell;C;C#;Clojure;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+7680,C++;C#;Python;SQL
+7681,C;C++;PHP;Python;R;Ruby
+7682,Assembly;Bash/Shell/PowerShell;C;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+7683,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+7684,HTML/CSS;PHP;Python
+7685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+7686,Bash/Shell/PowerShell;C;Java;Kotlin;Python
+7687,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Rust;Other(s):
+7688,Go;Python;SQL
+7689,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+7690,HTML/CSS;Java;JavaScript;Kotlin
+7691,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+7692,Bash/Shell/PowerShell;JavaScript;Python;Rust;Other(s):
+7694,Python;Swift
+7695,C#;HTML/CSS;JavaScript;SQL
+7696,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+7698,Dart;HTML/CSS;Java;PHP;Python;SQL;TypeScript
+7699,C++
+7700,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+7701,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+7702,C;C++;C#;HTML/CSS;JavaScript;PHP
+7703,Dart;HTML/CSS;Java;JavaScript
+7704,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA;WebAssembly
+7705,Go;Java;Kotlin
+7706,C++;HTML/CSS;Java;JavaScript;SQL
+7707,C#;HTML/CSS;JavaScript
+7708,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+7709,Java
+7710,Bash/Shell/PowerShell;C#
+7711,HTML/CSS;JavaScript;PHP;SQL
+7712,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+7713,HTML/CSS;Java;JavaScript
+7714,Assembly;C;C++;Java;Other(s):
+7715,Bash/Shell/PowerShell;Java;JavaScript;Other(s):
+7716,C++;C#;Ruby;SQL
+7717,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+7718,Bash/Shell/PowerShell;C#;SQL
+7719,C++;Python;Other(s):
+7720,C;SQL;VBA
+7721,HTML/CSS;JavaScript;Python
+7722,HTML/CSS;JavaScript;PHP;SQL
+7723,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7724,Bash/Shell/PowerShell;Go;Java;Python;Other(s):
+7725,Bash/Shell/PowerShell;C++;C#;Dart;F#;Go;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript;VBA;WebAssembly
+7726,HTML/CSS;Java;JavaScript;SQL
+7727,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;SQL
+7728,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+7729,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+7730,C#
+7731,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+7732,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+7733,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7734,HTML/CSS;JavaScript
+7735,HTML/CSS;JavaScript;Python;SQL
+7736,C;C++;C#;HTML/CSS;JavaScript;PHP;R;SQL
+7737,Go
+7738,Bash/Shell/PowerShell;C++
+7739,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL
+7740,HTML/CSS;PHP;Python;SQL
+7741,C#;F#;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly;Other(s):
+7742,C;C++;HTML/CSS;Python;VBA
+7743,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7744,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+7745,C
+7746,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+7747,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+7748,C++;C#;F#;HTML/CSS;JavaScript;SQL
+7749,HTML/CSS;JavaScript;Kotlin
+7750,JavaScript
+7751,Java;Python;SQL
+7752,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+7753,HTML/CSS;JavaScript;PHP;SQL
+7754,HTML/CSS;Java;JavaScript;PHP
+7755,Bash/Shell/PowerShell;C++;Java;Python
+7756,C#;HTML/CSS;JavaScript;PHP
+7757,Bash/Shell/PowerShell;Python;R;SQL
+7758,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;R;Scala;SQL
+7760,Java;JavaScript;PHP;Python;SQL
+7761,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+7762,HTML/CSS;JavaScript;PHP;TypeScript
+7763,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+7764,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;Other(s):
+7765,JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+7766,Bash/Shell/PowerShell;Go;Java;Python;Rust
+7767,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+7768,C++;HTML/CSS;Java;JavaScript;TypeScript
+7769,Java;Kotlin;Python
+7770,Clojure;HTML/CSS
+7772,Assembly;Bash/Shell/PowerShell;C;C++;Java;Objective-C;SQL;Swift
+7773,HTML/CSS;JavaScript;PHP
+7774,C++;C#;HTML/CSS;Java;JavaScript;Python;Swift
+7775,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+7776,HTML/CSS;JavaScript;PHP;VBA
+7777,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+7778,C#;HTML/CSS;JavaScript;Python;R;SQL
+7779,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+7781,HTML/CSS;JavaScript;PHP;SQL
+7782,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+7783,Java;Python
+7784,C#
+7785,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+7786,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+7787,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7788,HTML/CSS;Java;JavaScript;Python;SQL
+7789,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+7790,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+7791,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+7792,Assembly;C;C++;HTML/CSS;Python;Rust;SQL
+7793,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+7794,SQL
+7795,C#;HTML/CSS;JavaScript;TypeScript
+7796,C;HTML/CSS;Java;JavaScript;Python
+7797,HTML/CSS;JavaScript
+7798,HTML/CSS;JavaScript;PHP;Other(s):
+7799,Bash/Shell/PowerShell;Java;JavaScript;Other(s):
+7800,C#;HTML/CSS;Swift
+7801,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+7802,HTML/CSS
+7803,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+7804,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+7805,C++;Python
+7806,Bash/Shell/PowerShell;C#;Clojure;Java;Python;Scala;SQL
+7807,Assembly;HTML/CSS;Java;PHP;SQL
+7808,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+7809,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Kotlin;Python;R;SQL
+7810,C;HTML/CSS;Java;JavaScript;SQL
+7811,HTML/CSS;Python;SQL
+7812,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+7813,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+7814,HTML/CSS;JavaScript;PHP;Python
+7815,Java;Kotlin;Swift
+7816,Kotlin
+7817,Bash/Shell/PowerShell;C;Java;JavaScript;SQL;Other(s):
+7818,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7819,C;Dart;Java;Python
+7820,HTML/CSS;JavaScript;PHP
+7821,Go;HTML/CSS;JavaScript;Python;Other(s):
+7822,Scala
+7823,Bash/Shell/PowerShell;HTML/CSS;Java;Scala;SQL
+7824,Java
+7825,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+7827,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+7828,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+7829,C++;HTML/CSS;Java;JavaScript;SQL
+7830,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Ruby;Swift
+7831,Bash/Shell/PowerShell;C;C++;Objective-C
+7832,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+7833,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7834,HTML/CSS;Java;JavaScript;Python;Ruby
+7835,Bash/Shell/PowerShell;Python;Other(s):
+7836,HTML/CSS;JavaScript;PHP;Python;SQL
+7837,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+7838,Bash/Shell/PowerShell;Go;Kotlin;WebAssembly
+7839,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+7840,Bash/Shell/PowerShell;Python
+7841,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+7842,HTML/CSS;JavaScript;PHP
+7843,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+7844,HTML/CSS;JavaScript;Python
+7845,C#;HTML/CSS;JavaScript;SQL
+7846,HTML/CSS;Python;R;SQL
+7847,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+7848,HTML/CSS;JavaScript;Python
+7849,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+7850,Java;PHP;SQL;VBA
+7851,C;C#;HTML/CSS;JavaScript;Python;SQL
+7852,HTML/CSS;JavaScript;PHP;Python;SQL
+7853,C#;VBA
+7854,HTML/CSS;JavaScript;Python;Scala
+7855,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;Python
+7856,C++;Dart;Go;HTML/CSS;JavaScript;Python;TypeScript
+7857,JavaScript;PHP;SQL
+7858,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+7859,Java;Python
+7860,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+7861,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+7862,HTML/CSS;Java;JavaScript;TypeScript
+7863,C#;HTML/CSS;Java;JavaScript;SQL
+7864,C#;HTML/CSS;JavaScript;SQL;Other(s):
+7865,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+7866,HTML/CSS;JavaScript;Python;SQL;TypeScript
+7867,Python;R
+7868,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+7869,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;SQL;TypeScript
+7870,HTML/CSS;JavaScript;Python
+7871,HTML/CSS;JavaScript;Python;SQL
+7872,HTML/CSS;JavaScript;Python;SQL;TypeScript
+7873,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7874,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+7875,C;Java;Python;R;VBA
+7876,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+7877,Bash/Shell/PowerShell;Python;R;SQL
+7878,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7879,C#;HTML/CSS;JavaScript;Python;SQL
+7880,Assembly;C++;HTML/CSS;Java;PHP;SQL
+7881,C#;HTML/CSS;SQL
+7882,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7883,C++;HTML/CSS;JavaScript
+7884,C++;HTML/CSS;PHP;Python
+7885,C#;HTML/CSS;JavaScript;VBA
+7886,Bash/Shell/PowerShell;SQL
+7887,HTML/CSS;JavaScript;TypeScript
+7888,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+7889,HTML/CSS;Java;SQL
+7890,HTML/CSS;JavaScript;TypeScript
+7891,HTML/CSS;JavaScript
+7892,C;C++;HTML/CSS;Java;JavaScript;Python
+7893,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+7894,Bash/Shell/PowerShell;C;C++;Python;SQL
+7895,Java
+7896,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+7897,Assembly;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+7898,C;HTML/CSS;Java;JavaScript;Python
+7899,Bash/Shell/PowerShell;C++;JavaScript;Python;Rust
+7900,HTML/CSS;JavaScript;PHP;SQL
+7901,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+7902,C;C++;HTML/CSS;JavaScript;PHP;SQL
+7903,C;C++;C#;Java;JavaScript;PHP;Python;Scala
+7904,HTML/CSS;Java;JavaScript;TypeScript
+7905,SQL;VBA
+7906,C#;TypeScript
+7907,C#;HTML/CSS;JavaScript;SQL
+7908,JavaScript
+7909,HTML/CSS;Java;JavaScript;Python;Ruby
+7910,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7911,Bash/Shell/PowerShell;Python;Ruby
+7912,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+7913,HTML/CSS;Java;JavaScript;Kotlin;Swift
+7914,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+7915,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+7916,C#;HTML/CSS;JavaScript;SQL;TypeScript
+7917,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+7918,C++;C#;R
+7919,C#;HTML/CSS;JavaScript;PHP;SQL
+7920,HTML/CSS;Java;JavaScript;SQL
+7921,Swift
+7922,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA;Other(s):
+7923,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python
+7924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+7925,Python;SQL;VBA;Other(s):
+7926,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+7927,C;C++;C#;Clojure;F#;SQL;Other(s):
+7928,JavaScript;TypeScript
+7929,C#
+7930,HTML/CSS;JavaScript;PHP;TypeScript
+7931,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+7932,Java;JavaScript;Swift
+7933,HTML/CSS;Java;JavaScript;Scala;SQL
+7934,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby
+7935,C#;HTML/CSS;JavaScript;SQL;Other(s):
+7936,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+7937,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+7938,HTML/CSS;JavaScript;Other(s):
+7939,Go;HTML/CSS;JavaScript;SQL
+7940,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+7941,Java;Python;Scala;TypeScript
+7942,HTML/CSS;Java;TypeScript
+7943,C#;Java;JavaScript;Python
+7944,C#;JavaScript;SQL
+7945,HTML/CSS;Java;JavaScript;TypeScript
+7946,Bash/Shell/PowerShell;Java;JavaScript
+7947,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+7948,HTML/CSS;JavaScript
+7949,SQL
+7950,Bash/Shell/PowerShell;C;C#;Python;Other(s):
+7951,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL
+7952,JavaScript;Ruby;SQL
+7953,Bash/Shell/PowerShell;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+7954,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+7955,Bash/Shell/PowerShell;C;C++;Python
+7956,JavaScript
+7957,C#;HTML/CSS;JavaScript;PHP
+7958,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+7959,Bash/Shell/PowerShell;Python;SQL
+7960,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+7961,HTML/CSS;Java;JavaScript;SQL;Other(s):
+7962,JavaScript;PHP;SQL
+7963,Assembly;HTML/CSS;JavaScript;R;Ruby;SQL
+7964,C#;Elixir;F#;Java;JavaScript;TypeScript
+7965,HTML/CSS;JavaScript;TypeScript
+7966,HTML/CSS;JavaScript;TypeScript
+7967,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;R;SQL;TypeScript;VBA
+7968,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+7969,JavaScript
+7970,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;SQL
+7971,Python
+7972,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+7973,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+7974,Java;Kotlin
+7975,C#;HTML/CSS;JavaScript;SQL
+7976,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+7977,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+7978,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+7979,C;C++;C#;Python
+7980,Bash/Shell/PowerShell;C;C++;C#;SQL
+7981,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+7982,Python
+7983,C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+7984,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+7985,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+7986,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+7987,C#;Python
+7988,HTML/CSS;JavaScript;PHP;SQL
+7989,Bash/Shell/PowerShell;Java
+7990,Assembly;Bash/Shell/PowerShell;Java;Python;Ruby
+7991,C#;HTML/CSS;JavaScript;TypeScript
+7992,JavaScript;Python;Rust;SQL
+7993,HTML/CSS;JavaScript
+7994,C#
+7995,C;C++;Other(s):
+7996,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+7997,Bash/Shell/PowerShell;C#;Go;JavaScript
+7998,HTML/CSS;JavaScript;PHP;SQL
+7999,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+8000,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8001,C#
+8002,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8003,C++;C#
+8004,HTML/CSS;Java;JavaScript;PHP;Python
+8005,Bash/Shell/PowerShell;HTML/CSS;Java
+8006,Python;R
+8007,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Swift
+8008,Java;Ruby;Scala;SQL
+8009,C;C++;Java;Other(s):
+8010,Bash/Shell/PowerShell;Python;R;SQL
+8011,Assembly;Ruby;WebAssembly;Other(s):
+8012,C#;HTML/CSS;JavaScript;Python;SQL
+8013,HTML/CSS;Java;JavaScript;Ruby;TypeScript
+8014,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+8015,Assembly;R
+8016,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python
+8017,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+8018,Bash/Shell/PowerShell;Java;Python;R;Scala;SQL
+8019,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Python;SQL;VBA
+8020,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8021,Java;JavaScript
+8022,Objective-C;Swift
+8023,HTML/CSS;PHP
+8024,HTML/CSS;JavaScript;PHP
+8025,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8026,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;Swift
+8027,Assembly;Bash/Shell/PowerShell;C
+8028,Python;SQL
+8029,Bash/Shell/PowerShell;C;C++;C#;SQL
+8030,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+8031,C++;Java;SQL
+8032,C++;Java;JavaScript;Python
+8033,C#;JavaScript;TypeScript
+8034,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+8035,Objective-C;Swift
+8036,C#;Java;R;SQL
+8037,C#;HTML/CSS;JavaScript;TypeScript
+8038,C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+8039,Assembly;C#;Dart;SQL;Other(s):
+8040,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8041,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+8042,Bash/Shell/PowerShell;Python;Other(s):
+8043,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8044,Java;Kotlin;PHP
+8045,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8046,Bash/Shell/PowerShell;C;Python
+8047,C;C#;Java;Python;SQL;VBA;Other(s):
+8048,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+8049,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Python;SQL
+8050,Go;HTML/CSS;JavaScript;Python;SQL
+8051,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+8052,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;Rust
+8053,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+8054,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Scala;SQL
+8055,Bash/Shell/PowerShell;HTML/CSS;Java;TypeScript
+8056,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+8057,Assembly;C;Dart;Java;Kotlin
+8058,HTML/CSS;JavaScript;Python;VBA
+8059,Assembly;C++;HTML/CSS;Java;Python;Ruby
+8060,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL;Swift;Other(s):
+8061,Bash/Shell/PowerShell;C#;Java;SQL;VBA
+8062,Bash/Shell/PowerShell;Go;Java;JavaScript
+8063,C#;HTML/CSS;JavaScript;SQL
+8064,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+8065,C#;HTML/CSS;SQL;VBA
+8066,HTML/CSS;Java;JavaScript;Python;Rust;SQL
+8067,Java;Scala
+8068,Java;Kotlin;SQL
+8069,C++
+8070,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Rust;Other(s):
+8071,F#;HTML/CSS;Python;R;SQL
+8072,C++;C#;Java;Python;SQL;Swift;Other(s):
+8073,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+8074,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+8075,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+8076,Bash/Shell/PowerShell;C++;C#;Python
+8077,C;C++;C#;HTML/CSS;JavaScript;PHP
+8078,HTML/CSS;JavaScript;PHP;Python
+8079,Assembly;C#;JavaScript;SQL;VBA
+8080,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+8081,C;C++;HTML/CSS;Java;PHP;Python;SQL
+8082,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+8083,Bash/Shell/PowerShell;Java;SQL
+8084,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+8085,C;Java;JavaScript;Kotlin;Python;SQL
+8086,Bash/Shell/PowerShell;C#;Clojure;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Rust;SQL
+8087,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;VBA
+8088,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+8089,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Swift
+8090,Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+8091,Java;Kotlin
+8092,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+8093,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+8094,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8095,HTML/CSS;PHP
+8096,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;SQL
+8097,Python;Scala;SQL
+8098,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+8099,Java;Kotlin;SQL
+8100,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+8101,Bash/Shell/PowerShell;C++;Python;SQL
+8102,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+8103,Bash/Shell/PowerShell;Go;Python;R;SQL
+8104,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+8105,Python
+8106,HTML/CSS;JavaScript
+8107,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;VBA
+8108,Dart;Java;Kotlin
+8109,C#;F#
+8110,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8111,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+8112,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+8113,HTML/CSS;Python
+8114,Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Other(s):
+8115,HTML/CSS;JavaScript;Python;SQL
+8116,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;Python;R;TypeScript;Other(s):
+8117,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+8118,JavaScript;Python
+8119,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+8120,Assembly;C++;Go;Python;SQL;Swift;TypeScript;WebAssembly
+8121,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Rust;SQL
+8122,HTML/CSS;JavaScript;PHP;SQL
+8123,C++
+8124,HTML/CSS;JavaScript
+8125,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8126,JavaScript;PHP;SQL
+8127,Bash/Shell/PowerShell;C++
+8128,HTML/CSS;JavaScript;PHP
+8129,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+8131,C#;Python;SQL
+8132,Bash/Shell/PowerShell;C++;Java;Python
+8133,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8134,Assembly;C;C++;HTML/CSS;PHP;Python;SQL;Other(s):
+8135,C#;Java;SQL;VBA
+8136,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+8137,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8138,C;C++;C#;HTML/CSS;JavaScript;Python
+8139,HTML/CSS;Java;JavaScript;Ruby;TypeScript
+8140,HTML/CSS;JavaScript
+8141,C;HTML/CSS;Python;R
+8142,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;SQL
+8143,Java;JavaScript;TypeScript
+8144,C#;HTML/CSS;JavaScript;PHP;Python
+8145,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+8146,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+8147,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+8148,HTML/CSS;Ruby;SQL
+8149,HTML/CSS;Java;PHP;SQL
+8150,C;Java
+8151,HTML/CSS;JavaScript;PHP;SQL
+8152,Java;SQL
+8153,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+8154,JavaScript;Python;Ruby
+8155,JavaScript;Python
+8156,Java
+8157,Bash/Shell/PowerShell;C;Java;Python;Swift;Other(s):
+8158,C++;HTML/CSS;JavaScript;Python
+8159,Assembly;Bash/Shell/PowerShell;C;C++;Objective-C;Other(s):
+8160,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;Other(s):
+8161,C#;HTML/CSS;JavaScript;PHP;SQL
+8162,Bash/Shell/PowerShell;C#;Java;Python;Scala;SQL
+8163,Swift;Other(s):
+8164,Python;SQL
+8165,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+8166,Assembly;Bash/Shell/PowerShell;C;C++;SQL
+8167,C#;HTML/CSS;TypeScript
+8168,C;C++;HTML/CSS;Java;Kotlin
+8169,Assembly;C;C++;Elixir;Go;HTML/CSS;Java;Objective-C;Python;Swift
+8170,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+8171,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+8172,C;HTML/CSS;JavaScript;PHP;Python;Ruby
+8173,Elixir;HTML/CSS;Java;JavaScript;Python;R
+8174,C;C++;C#;HTML/CSS;JavaScript;SQL
+8175,R;SQL
+8176,C#;HTML/CSS;JavaScript;SQL
+8177,C++;C#;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+8178,C++;JavaScript;Python;TypeScript;WebAssembly
+8179,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;Ruby;SQL;TypeScript
+8180,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+8181,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Rust
+8182,C;C++;HTML/CSS;JavaScript;PHP;Python
+8183,Bash/Shell/PowerShell;Python
+8184,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+8185,HTML/CSS;Java;Python
+8187,C++;HTML/CSS;JavaScript;PHP;SQL
+8188,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+8189,HTML/CSS;Java;JavaScript;SQL
+8190,C;C++;C#;JavaScript;Objective-C;Other(s):
+8191,Assembly;Bash/Shell/PowerShell;C;Java;Python;Ruby
+8192,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+8193,HTML/CSS;Java;JavaScript;Python;SQL;Swift
+8194,Go;HTML/CSS;JavaScript;PHP;SQL
+8195,C;C#;HTML/CSS;Java;Kotlin;Python;Swift
+8196,C;C++;HTML/CSS;JavaScript
+8197,JavaScript;PHP;SQL;Other(s):
+8198,HTML/CSS;JavaScript;PHP;Python
+8199,Bash/Shell/PowerShell;SQL;Other(s):
+8200,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+8201,Bash/Shell/PowerShell;C#;Python;Rust;SQL
+8202,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Scala
+8203,Ruby;Scala
+8204,Python;VBA
+8205,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+8206,C#;Java;JavaScript;Python;TypeScript
+8207,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+8208,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+8209,Java;SQL
+8210,C;C++;C#
+8211,HTML/CSS;JavaScript;Other(s):
+8212,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8213,Java;JavaScript;Ruby;SQL;TypeScript
+8214,C++;HTML/CSS;Java;JavaScript;TypeScript
+8215,C;C++;HTML/CSS;JavaScript;Python
+8216,Java;Python;Ruby;SQL
+8217,C#;SQL
+8218,HTML/CSS;Java;SQL;TypeScript
+8219,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+8220,Java;Kotlin
+8221,HTML/CSS;JavaScript;PHP;SQL
+8222,C#;HTML/CSS;JavaScript;Python;SQL
+8223,C++;HTML/CSS;Java;JavaScript
+8224,HTML/CSS;JavaScript;PHP;SQL
+8225,C;Elixir;HTML/CSS;JavaScript;PHP;Rust;SQL;Swift;TypeScript;WebAssembly
+8226,Java
+8227,HTML/CSS;JavaScript
+8228,C;C++;C#;Java;JavaScript;Objective-C;Swift
+8229,Assembly
+8230,Python;R
+8231,JavaScript;Python;R
+8232,HTML/CSS;Python;SQL;Swift
+8233,Bash/Shell/PowerShell;HTML/CSS;SQL
+8234,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+8235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8236,Java;JavaScript;SQL
+8237,C#;Java;JavaScript;Objective-C;SQL
+8238,HTML/CSS;JavaScript;PHP
+8239,HTML/CSS;JavaScript;Python;SQL
+8240,JavaScript;SQL;Other(s):
+8241,Ruby;Swift
+8242,HTML/CSS;JavaScript
+8243,HTML/CSS;JavaScript;PHP;SQL
+8245,Bash/Shell/PowerShell;C#;Java;SQL;TypeScript
+8246,C#;Java;SQL
+8247,JavaScript;PHP;TypeScript
+8248,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+8249,C#;HTML/CSS;JavaScript;SQL
+8250,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;SQL
+8251,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL;VBA
+8252,Java;Python
+8253,HTML/CSS;Java;Kotlin;Objective-C;PHP;SQL;Swift
+8254,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+8255,Bash/Shell/PowerShell;Go;Java;PHP;Python;SQL
+8256,Bash/Shell/PowerShell;C#;Python;SQL;Swift;Other(s):
+8257,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+8258,Java;SQL
+8259,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+8260,C#;HTML/CSS;JavaScript;SQL;VBA
+8261,C;C#;HTML/CSS
+8262,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+8263,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+8264,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8265,HTML/CSS;Java;JavaScript
+8266,C;HTML/CSS;JavaScript;Objective-C;PHP;Python
+8267,Assembly;C#;Erlang;Java;SQL
+8268,Python;R
+8269,C;C++;Python
+8270,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Swift
+8271,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+8272,HTML/CSS;JavaScript;PHP;SQL
+8273,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+8274,Assembly;JavaScript;Python
+8275,Python;R
+8276,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8277,Java;JavaScript
+8278,Python
+8279,JavaScript;TypeScript;WebAssembly
+8281,JavaScript;PHP
+8282,Clojure
+8283,HTML/CSS;Java;JavaScript;SQL;Other(s):
+8284,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8285,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Swift
+8286,C;Python
+8287,HTML/CSS;Java;JavaScript;SQL
+8288,Dart;HTML/CSS;Java;JavaScript;Kotlin;Swift
+8289,Assembly;HTML/CSS;JavaScript;Ruby
+8290,HTML/CSS;JavaScript
+8291,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8292,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8293,Dart;HTML/CSS;Java;JavaScript;Python
+8294,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8295,Objective-C;Ruby;Swift
+8296,HTML/CSS;Java;JavaScript;SQL;TypeScript
+8297,Python
+8298,C#;HTML/CSS;Java;JavaScript;SQL
+8299,Bash/Shell/PowerShell;C++;Python;Other(s):
+8300,C++;C#;HTML/CSS;Objective-C;Python;Swift
+8301,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8302,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8303,Bash/Shell/PowerShell;Python;R;Ruby;SQL
+8304,Java;JavaScript
+8305,Assembly;C++;HTML/CSS;JavaScript;PHP;SQL
+8306,Java;Python
+8307,C;C++;HTML/CSS;JavaScript;PHP
+8308,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+8309,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+8310,C;C++;Java;SQL
+8311,Go;JavaScript;Ruby;SQL
+8312,HTML/CSS;Python
+8313,Bash/Shell/PowerShell;Java;Other(s):
+8314,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+8315,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL
+8316,Go;Python
+8317,C;C++;HTML/CSS;Swift
+8318,C;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+8319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+8320,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+8321,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+8322,Assembly;Bash/Shell/PowerShell;Python;SQL
+8323,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+8324,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+8325,Bash/Shell/PowerShell;HTML/CSS;Python;Scala;SQL
+8326,Java;JavaScript
+8327,Java;Python
+8328,Bash/Shell/PowerShell;Python
+8329,C#;HTML/CSS;JavaScript;PHP;TypeScript
+8330,C#;HTML/CSS;Java;SQL
+8331,Java;JavaScript;PHP
+8332,HTML/CSS;JavaScript;PHP;SQL
+8333,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+8334,JavaScript;PHP
+8335,C#;HTML/CSS;JavaScript;SQL
+8336,Java;JavaScript;Python;Scala;TypeScript
+8337,Java;SQL
+8338,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+8339,HTML/CSS;Java;JavaScript;Python;SQL
+8340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;VBA
+8341,Clojure;HTML/CSS;Java;Python;R
+8342,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+8343,HTML/CSS;Java;Python;SQL
+8344,HTML/CSS;JavaScript;PHP;SQL
+8345,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+8346,HTML/CSS;JavaScript;PHP;SQL
+8347,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;R;SQL
+8348,HTML/CSS;JavaScript;TypeScript
+8349,HTML/CSS;Java;JavaScript;SQL
+8350,HTML/CSS;JavaScript;Python;SQL
+8351,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript;Other(s):
+8352,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+8353,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+8354,HTML/CSS;JavaScript;Python
+8355,HTML/CSS;Java;JavaScript
+8356,C#;HTML/CSS;JavaScript;Swift
+8357,HTML/CSS;JavaScript;Python;SQL;TypeScript
+8358,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+8359,C#;JavaScript;SQL
+8360,C;C++;HTML/CSS;JavaScript;SQL
+8361,C;C#;HTML/CSS;JavaScript;Python
+8362,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R;SQL
+8363,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+8364,Java
+8366,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+8367,Python;SQL
+8368,HTML/CSS;JavaScript;SQL
+8369,Bash/Shell/PowerShell;Python
+8370,Bash/Shell/PowerShell;C;Java;JavaScript;Scala;SQL
+8371,C#;HTML/CSS;JavaScript;PHP;SQL
+8372,HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+8373,C;Java;Python;SQL
+8374,Bash/Shell/PowerShell;C#;Python;TypeScript
+8375,C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+8376,C#;Java
+8377,Java
+8378,Python
+8379,C;C++;Python;Other(s):
+8380,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8382,HTML/CSS;JavaScript;TypeScript
+8383,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+8384,C#
+8385,Bash/Shell/PowerShell;HTML/CSS;Python
+8386,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+8387,C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+8388,Elixir;Erlang;JavaScript;PHP;SQL;TypeScript
+8389,C++;Objective-C;Python
+8390,JavaScript
+8391,Python;R;SQL
+8392,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+8393,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+8394,HTML/CSS;JavaScript;R;SQL;VBA
+8395,HTML/CSS;JavaScript;PHP;Ruby;SQL
+8396,HTML/CSS;JavaScript;Python
+8397,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+8398,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+8399,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+8400,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+8401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+8402,C++
+8403,HTML/CSS;Kotlin;Objective-C;Ruby;Swift;TypeScript
+8404,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8405,Bash/Shell/PowerShell;JavaScript;Python;SQL;VBA
+8406,Java;JavaScript;Python;Ruby
+8407,C#;HTML/CSS;Java;JavaScript;PHP
+8408,C++;Python
+8409,Bash/Shell/PowerShell;Java;Rust
+8410,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+8411,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+8412,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+8413,C;HTML/CSS;Java;PHP;Other(s):
+8414,Bash/Shell/PowerShell;Python;SQL
+8415,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+8416,HTML/CSS;Java;JavaScript;SQL;TypeScript
+8417,C#;JavaScript;SQL
+8418,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+8419,Bash/Shell/PowerShell;Python;R;SQL
+8420,Java;JavaScript;Scala;SQL
+8421,Bash/Shell/PowerShell;C#;F#;SQL
+8422,JavaScript;PHP;SQL
+8423,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+8424,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+8425,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+8426,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+8427,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+8428,HTML/CSS;JavaScript;TypeScript
+8429,C#;HTML/CSS;JavaScript;SQL
+8430,Java;Rust
+8431,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8432,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8433,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+8434,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+8435,C;HTML/CSS;Java;JavaScript;Python;R;SQL
+8436,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+8437,HTML/CSS;JavaScript;PHP;Python;SQL
+8438,C#;Elixir;HTML/CSS;JavaScript
+8439,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+8440,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8441,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+8442,Bash/Shell/PowerShell;Java;JavaScript;SQL
+8443,C#;HTML/CSS;JavaScript;PHP;Other(s):
+8444,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+8445,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8446,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8447,HTML/CSS;JavaScript;Python
+8448,Bash/Shell/PowerShell
+8449,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+8450,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8451,Java;Python;Ruby;SQL
+8452,C#;SQL;TypeScript
+8453,C#;HTML/CSS;Java;JavaScript;TypeScript
+8454,HTML/CSS;JavaScript;Python
+8455,HTML/CSS;JavaScript;PHP;Python
+8456,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+8457,Bash/Shell/PowerShell;C#;HTML/CSS
+8458,JavaScript;PHP;SQL
+8459,JavaScript;Python
+8460,Dart;Java;Kotlin;Objective-C;Swift
+8461,C#;HTML/CSS;Python;VBA
+8462,Python
+8463,Bash/Shell/PowerShell;C++;JavaScript;SQL;Swift
+8464,Bash/Shell/PowerShell;C;C++;C#;Python
+8465,C++;Go;Java;Python;SQL
+8466,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8467,Go;HTML/CSS;JavaScript;SQL;TypeScript
+8468,R;SQL
+8469,C#;HTML/CSS;SQL
+8470,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8471,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+8472,HTML/CSS;JavaScript;PHP;Python
+8473,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+8475,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8476,C;C++;Objective-C;Swift
+8477,Java;JavaScript;SQL
+8478,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python
+8479,Bash/Shell/PowerShell;C;Other(s):
+8480,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Ruby
+8481,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+8482,C;C++;Java;JavaScript
+8483,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+8484,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8485,Ruby
+8486,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;Other(s):
+8487,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+8488,JavaScript
+8489,Assembly;Bash/Shell/PowerShell;C;C++;Python;WebAssembly;Other(s):
+8490,HTML/CSS;JavaScript;Swift
+8491,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+8492,C++;HTML/CSS;JavaScript
+8493,HTML/CSS;Java;JavaScript;SQL
+8494,C;C++;Go;Java;PHP;Python;Ruby;SQL
+8495,Java
+8496,Go;HTML/CSS;JavaScript;PHP;TypeScript
+8497,C;HTML/CSS;JavaScript
+8498,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;Other(s):
+8499,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8500,C++;HTML/CSS;Java;JavaScript;SQL
+8501,Java;Kotlin
+8502,C;C#;Java;JavaScript;Python;SQL
+8503,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8504,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+8505,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+8506,Bash/Shell/PowerShell;Python;R;SQL
+8507,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8508,Objective-C;Swift
+8509,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;TypeScript
+8510,C#;HTML/CSS;Java;JavaScript;SQL
+8511,C#;HTML/CSS;JavaScript;SQL;Other(s):
+8512,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+8513,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;Other(s):
+8514,Java;JavaScript
+8515,Bash/Shell/PowerShell;C;Go;JavaScript;Python
+8517,Python;SQL
+8518,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8519,HTML/CSS;Java;JavaScript;SQL;TypeScript
+8520,HTML/CSS;JavaScript;PHP;SQL
+8522,HTML/CSS;SQL
+8523,C#;VBA
+8524,C#;HTML/CSS;Java;JavaScript;TypeScript
+8525,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8526,Java;JavaScript;Kotlin;PHP
+8527,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+8528,Bash/Shell/PowerShell;Python;R
+8529,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+8530,Bash/Shell/PowerShell;Python;SQL
+8531,Bash/Shell/PowerShell;Python
+8532,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+8533,C#;Java;JavaScript
+8534,Other(s):
+8535,C;C++;JavaScript;SQL;Other(s):
+8536,C#;HTML/CSS;Java;JavaScript;Python;SQL
+8537,C#;HTML/CSS;JavaScript;SQL
+8538,C#;HTML/CSS;Java;JavaScript;TypeScript
+8539,HTML/CSS;Java;JavaScript;SQL
+8540,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;SQL;TypeScript
+8541,C#;Elixir;HTML/CSS;JavaScript;R;Ruby
+8542,Bash/Shell/PowerShell;JavaScript;Ruby
+8543,Java;JavaScript;SQL
+8544,C#;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+8545,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+8546,HTML/CSS;JavaScript;Other(s):
+8547,PHP;Ruby;SQL
+8548,JavaScript;SQL;TypeScript
+8549,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;SQL
+8550,HTML/CSS;JavaScript;PHP;SQL;VBA
+8551,C#;Java
+8552,HTML/CSS;JavaScript
+8553,HTML/CSS;JavaScript;Python;TypeScript
+8554,R
+8555,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;R;SQL;WebAssembly
+8556,Bash/Shell/PowerShell;Go;Java;JavaScript;Rust;SQL
+8557,HTML/CSS;JavaScript;Ruby;TypeScript
+8558,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+8559,C#;Python
+8560,C#;Java
+8561,Bash/Shell/PowerShell;Python
+8562,Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL
+8563,Bash/Shell/PowerShell;Java;Python;Ruby
+8564,C++
+8565,C#;Java;SQL
+8566,Bash/Shell/PowerShell;C;Python;Other(s):
+8567,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL
+8568,Bash/Shell/PowerShell;Clojure;Java;Kotlin;Python;Ruby;Scala
+8569,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+8570,HTML/CSS;JavaScript
+8571,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+8572,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+8573,JavaScript;Python
+8574,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+8575,HTML/CSS;Java;JavaScript;SQL;TypeScript
+8576,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8577,Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+8578,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+8579,HTML/CSS;JavaScript;TypeScript
+8580,HTML/CSS;JavaScript;PHP
+8581,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+8582,C#;HTML/CSS;JavaScript;SQL
+8583,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+8584,C++;C#;Python;SQL;VBA
+8585,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+8586,Bash/Shell/PowerShell;PHP;SQL
+8587,C++;Go;Python
+8588,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+8589,C#;JavaScript;SQL;Other(s):
+8590,Bash/Shell/PowerShell;C;C++
+8591,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python
+8592,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8593,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+8594,C#;HTML/CSS;JavaScript;Python;TypeScript
+8595,Assembly;Bash/Shell/PowerShell;C;C++;C#;Kotlin;Objective-C;PHP;SQL;Swift
+8596,Java;SQL
+8597,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+8598,C;C++;HTML/CSS;JavaScript;PHP;Swift
+8599,C++;Java;Kotlin;Objective-C
+8600,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+8601,C;Dart;Java;Kotlin;Python;SQL
+8602,C++;HTML/CSS;Python
+8603,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8604,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+8605,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8606,Assembly;Bash/Shell/PowerShell;C#;Dart;Go;JavaScript;Objective-C;Rust;SQL;TypeScript
+8607,Java;JavaScript;Python
+8608,Bash/Shell/PowerShell;C++;JavaScript;Python;Ruby
+8609,HTML/CSS;JavaScript;R;SQL
+8610,C++;C#
+8611,HTML/CSS;JavaScript;PHP
+8612,HTML/CSS;JavaScript;PHP;SQL
+8613,HTML/CSS;Java;JavaScript;SQL;TypeScript
+8614,C#;HTML/CSS;JavaScript;SQL
+8615,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8616,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+8617,C++;Python;SQL
+8618,C;JavaScript;Objective-C;Ruby;Swift
+8619,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+8620,Bash/Shell/PowerShell;C;C++;Dart;Java;Python
+8621,Java
+8622,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;Ruby;SQL
+8623,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby
+8624,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8625,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python
+8626,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+8627,HTML/CSS;JavaScript;TypeScript
+8628,HTML/CSS;JavaScript;PHP;SQL
+8629,Bash/Shell/PowerShell;C#;SQL
+8630,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+8631,C;C++;Java
+8632,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;TypeScript
+8633,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+8634,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+8635,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+8636,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+8637,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+8638,HTML/CSS;PHP;Python;SQL;VBA
+8639,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Ruby;SQL
+8640,Java;Objective-C
+8641,HTML/CSS;JavaScript
+8642,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+8643,Java;JavaScript;Kotlin;SQL
+8644,JavaScript
+8645,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8646,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+8647,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+8648,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Swift
+8649,HTML/CSS;Java;JavaScript;TypeScript
+8650,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+8651,C#;HTML/CSS;Java;JavaScript
+8652,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+8653,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8654,Objective-C;Swift
+8655,HTML/CSS;JavaScript
+8656,HTML/CSS;PHP;Python
+8657,C++;Java;Python
+8658,Java;SQL;Other(s):
+8660,Java;JavaScript;Other(s):
+8661,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Other(s):
+8662,Bash/Shell/PowerShell;Java;Python
+8663,Java;JavaScript
+8664,C;C++;HTML/CSS;Java;JavaScript;Python
+8665,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+8666,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8667,C++
+8668,Clojure;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+8669,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+8670,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8671,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+8672,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+8673,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript;WebAssembly
+8674,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+8675,Objective-C;TypeScript
+8676,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+8677,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+8678,JavaScript;TypeScript
+8679,HTML/CSS;Java;JavaScript;Python
+8680,Java;Kotlin
+8681,C++;C#;JavaScript
+8682,Bash/Shell/PowerShell;Java;Python;R;Swift
+8683,Java;Other(s):
+8684,Java;JavaScript
+8685,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+8686,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+8687,C#;HTML/CSS;SQL
+8688,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8689,HTML/CSS;Java;JavaScript
+8690,C#;Python
+8691,C#;HTML/CSS;Objective-C;SQL
+8692,Bash/Shell/PowerShell;C#;Java;SQL
+8693,C#;HTML/CSS;Java;JavaScript;SQL
+8694,Java;JavaScript
+8695,HTML/CSS;Java;JavaScript;PHP;SQL
+8696,HTML/CSS;JavaScript;Python
+8697,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA;Other(s):
+8698,HTML/CSS;JavaScript;TypeScript
+8699,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8700,C#;HTML/CSS;JavaScript;SQL
+8701,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+8702,HTML/CSS;Java;JavaScript;SQL
+8703,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;Kotlin;Objective-C;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+8704,HTML/CSS;Java;JavaScript;Kotlin
+8705,Go;JavaScript;SQL;TypeScript
+8706,Java
+8707,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8708,Bash/Shell/PowerShell;C;Java;Python;R;Scala;SQL
+8709,C#;SQL;TypeScript
+8710,HTML/CSS;JavaScript
+8711,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+8712,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+8713,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby
+8714,Bash/Shell/PowerShell;C#;SQL
+8715,Python;SQL
+8716,Assembly;Python;Other(s):
+8717,Java
+8718,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+8719,Bash/Shell/PowerShell;C#;JavaScript;SQL
+8720,C;C++;HTML/CSS;JavaScript;SQL;Other(s):
+8721,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+8722,Bash/Shell/PowerShell;C;Objective-C;Swift
+8723,Python
+8724,C++;C#;SQL
+8725,C++;Go
+8726,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+8727,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+8728,Bash/Shell/PowerShell;C;C++;Go;Python;TypeScript
+8729,C#;HTML/CSS;JavaScript;PHP;SQL
+8730,C;Java;SQL;Other(s):
+8731,HTML/CSS;Java;JavaScript;TypeScript
+8732,C#;HTML/CSS;JavaScript;PHP;SQL
+8733,Go;HTML/CSS;Python;Ruby;SQL
+8734,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+8735,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+8736,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;TypeScript
+8737,HTML/CSS;Java;JavaScript
+8738,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+8739,HTML/CSS;JavaScript;PHP
+8740,Bash/Shell/PowerShell;C;C#;Elixir;JavaScript;SQL;TypeScript
+8741,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Other(s):
+8742,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8743,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8744,C;C++;Java;Python;SQL
+8745,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+8746,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+8747,Java;Python
+8748,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Ruby;Other(s):
+8749,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python;TypeScript
+8750,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+8751,C;Java;Python;TypeScript
+8752,C#;HTML/CSS;JavaScript;SQL
+8753,C#;JavaScript;PHP;SQL
+8754,Go;JavaScript
+8755,HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+8756,HTML/CSS;JavaScript;PHP
+8757,HTML/CSS;JavaScript;Ruby
+8758,Bash/Shell/PowerShell;C++;Java;Python;R;SQL
+8759,C#;HTML/CSS;JavaScript;SQL
+8760,Dart;JavaScript;TypeScript
+8761,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+8762,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;Ruby;Scala;SQL
+8763,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8764,HTML/CSS;JavaScript
+8765,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;PHP;Python;Ruby;SQL
+8766,HTML/CSS;Python
+8767,Java
+8768,C++;C#;HTML/CSS;SQL
+8769,Assembly;Bash/Shell/PowerShell;C;C++;Java;PHP;SQL;TypeScript;VBA
+8770,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8771,C;C++;C#;HTML/CSS;Java;JavaScript
+8772,HTML/CSS;JavaScript;PHP;Python;SQL
+8773,Go;HTML/CSS;Java;JavaScript;Python
+8774,C#;HTML/CSS;JavaScript;SQL
+8775,C++
+8776,C#;HTML/CSS;Java;Python;SQL;VBA
+8777,C#;HTML/CSS;Java;JavaScript;SQL
+8778,C#;Elixir;Erlang;Go;Java;Kotlin;Ruby;SQL
+8779,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+8780,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+8781,C++;HTML/CSS;JavaScript;Python
+8782,Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+8783,Bash/Shell/PowerShell;C;C++;Java;PHP;Python;Rust;SQL
+8784,HTML/CSS;JavaScript;PHP;SQL
+8785,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+8786,C#;JavaScript;SQL
+8787,Clojure;Go;SQL
+8788,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+8789,HTML/CSS;JavaScript;PHP;VBA
+8790,HTML/CSS;JavaScript;SQL;TypeScript
+8791,Bash/Shell/PowerShell;Go;Python;SQL
+8792,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+8793,Bash/Shell/PowerShell;Python;Other(s):
+8794,HTML/CSS;JavaScript;Ruby;TypeScript
+8795,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python
+8796,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8797,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8798,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+8799,Bash/Shell/PowerShell;C;Python
+8800,C#;HTML/CSS;Java;SQL;Other(s):
+8801,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8802,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+8803,HTML/CSS;JavaScript;TypeScript
+8804,Assembly;Bash/Shell/PowerShell;C;Go;Python
+8805,Java;JavaScript;SQL
+8806,Java;JavaScript;Python;Ruby;SQL
+8807,Bash/Shell/PowerShell;Go;Other(s):
+8808,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;Other(s):
+8809,C++;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+8810,HTML/CSS;Java;JavaScript;Python;R;Rust;SQL
+8811,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+8812,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8813,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+8814,Bash/Shell/PowerShell;C++;Go;JavaScript;Python
+8815,HTML/CSS;SQL;VBA;Other(s):
+8816,C;C++;C#;HTML/CSS;Java;SQL
+8817,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+8818,C++;HTML/CSS;JavaScript;Python;Ruby
+8819,C++;HTML/CSS;Java;JavaScript
+8820,C#;HTML/CSS;JavaScript;TypeScript
+8821,C#;JavaScript;SQL
+8822,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Other(s):
+8823,Bash/Shell/PowerShell;C;C++;C#;Java;Python;R
+8824,C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+8825,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8826,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python;Other(s):
+8827,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+8828,HTML/CSS;JavaScript;PHP;SQL
+8829,HTML/CSS;JavaScript;PHP
+8830,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL
+8831,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL
+8832,Bash/Shell/PowerShell;HTML/CSS;TypeScript
+8833,HTML/CSS;JavaScript;PHP;SQL
+8834,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+8835,C#;Java
+8836,C#;HTML/CSS;JavaScript
+8837,C;C++;HTML/CSS;JavaScript;Python;SQL
+8838,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+8839,Bash/Shell/PowerShell;Python
+8840,HTML/CSS;Java;JavaScript
+8841,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+8842,Bash/Shell/PowerShell;C#;Java;SQL;VBA;Other(s):
+8843,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+8844,HTML/CSS;Java;JavaScript;PHP;SQL
+8845,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+8846,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+8848,C#;HTML/CSS;JavaScript;PHP;Swift
+8849,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+8850,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+8851,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+8852,Java;JavaScript;Python;TypeScript
+8853,Java;JavaScript;Python;SQL
+8854,C#;HTML/CSS;SQL;TypeScript
+8855,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+8856,HTML/CSS;JavaScript;Ruby
+8857,Bash/Shell/PowerShell;C;C++;Java;Python;R
+8858,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+8859,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+8860,C;C++;HTML/CSS;Java;JavaScript;Python
+8861,Bash/Shell/PowerShell;Python;R;Ruby
+8862,Python;Other(s):
+8863,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+8864,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+8865,Bash/Shell/PowerShell;HTML/CSS;VBA;Other(s):
+8866,HTML/CSS;JavaScript;PHP
+8867,C;C++;SQL;VBA
+8868,Assembly;Bash/Shell/PowerShell;Other(s):
+8869,C#;HTML/CSS;JavaScript;SQL
+8870,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8871,Python
+8872,Bash/Shell/PowerShell;C#;SQL
+8873,Python;Other(s):
+8874,Java;Python
+8875,Bash/Shell/PowerShell;Java;Python;SQL
+8876,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+8877,Go;JavaScript;Python
+8878,C#;HTML/CSS;JavaScript;SQL;Other(s):
+8879,Assembly;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust;Scala
+8880,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+8881,HTML/CSS;JavaScript;PHP;VBA
+8882,Bash/Shell/PowerShell;HTML/CSS;Java;Scala
+8883,C;C++;HTML/CSS;JavaScript;Python;SQL
+8884,C++;C#;Python
+8885,C++;C#;Java;Python;Ruby;Scala
+8886,Python;SQL
+8887,C#;Python;SQL
+8888,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+8889,C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+8890,C++;Python;SQL
+8891,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+8892,Python
+8893,C;C++;Go;JavaScript;Python;Rust;SQL;TypeScript
+8894,HTML/CSS;JavaScript;R
+8895,C
+8896,Bash/Shell/PowerShell;C#;SQL
+8897,Assembly;HTML/CSS;Java;JavaScript;TypeScript
+8898,C#;HTML/CSS;SQL
+8899,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+8900,C;C++;Java;Python
+8901,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL;Other(s):
+8902,Bash/Shell/PowerShell;Java;Python
+8903,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL;VBA
+8904,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+8905,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+8906,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+8907,C#;SQL
+8908,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+8909,C#;HTML/CSS;JavaScript;Objective-C;TypeScript
+8910,Java
+8911,Clojure;HTML/CSS;Java;JavaScript;TypeScript
+8912,C#
+8913,C#;JavaScript;SQL;Other(s):
+8914,HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+8915,C;Python
+8916,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+8917,Assembly;Bash/Shell/PowerShell;C++;C#;Clojure;Go;Python
+8918,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+8919,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+8920,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+8921,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;VBA
+8922,Bash/Shell/PowerShell;C;C++;C#;SQL
+8923,HTML/CSS;Java;JavaScript;SQL;TypeScript
+8924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+8925,C#;JavaScript;Python;SQL
+8927,C#;HTML/CSS;JavaScript
+8928,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+8929,HTML/CSS;Java;JavaScript;Python
+8930,HTML/CSS;JavaScript;PHP;TypeScript
+8931,Bash/Shell/PowerShell;Java;Python;SQL
+8932,HTML/CSS;Java;JavaScript;PHP;TypeScript
+8933,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+8934,Bash/Shell/PowerShell;JavaScript;SQL;TypeScript;Other(s):
+8935,HTML/CSS;JavaScript
+8936,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+8937,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+8938,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+8939,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+8941,Java;Other(s):
+8942,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+8943,Java;JavaScript
+8944,Java;Kotlin;Python;Scala
+8945,C#;JavaScript;SQL
+8946,Bash/Shell/PowerShell;Erlang;Java;SQL
+8947,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+8948,C#
+8949,Java;JavaScript
+8950,C#;HTML/CSS;JavaScript;Ruby;SQL
+8951,HTML/CSS;PHP;Ruby
+8952,C#;JavaScript;SQL
+8953,Bash/Shell/PowerShell;Go;Java;SQL
+8954,Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+8955,C++;Python
+8956,Dart;Go;Python
+8957,Bash/Shell/PowerShell;C;C++;Dart;Java;Kotlin;PHP;Python;Rust;Swift;TypeScript
+8958,HTML/CSS;Java;JavaScript
+8959,HTML/CSS;JavaScript;Python;Ruby;SQL
+8960,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+8961,C++;Python
+8962,C;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+8963,HTML/CSS;JavaScript;PHP
+8964,Bash/Shell/PowerShell;Java;SQL;VBA
+8965,HTML/CSS;Java;JavaScript;Objective-C
+8966,Python
+8967,C#;HTML/CSS;JavaScript;SQL;VBA
+8968,HTML/CSS;JavaScript;PHP;SQL
+8969,C++;HTML/CSS;PHP;SQL
+8970,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+8971,Java;Kotlin
+8972,JavaScript;Python;R
+8973,Java;SQL
+8974,Elixir;JavaScript;Objective-C;Swift;Other(s):
+8975,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+8976,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+8977,Java;JavaScript;Python;TypeScript
+8978,Bash/Shell/PowerShell;Java;Python;SQL
+8979,Go;HTML/CSS;JavaScript;PHP;SQL
+8980,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+8981,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+8982,C#;TypeScript
+8983,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+8984,Python;R;SQL
+8985,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+8986,C#;HTML/CSS;JavaScript;SQL;TypeScript
+8987,Java;Kotlin
+8988,C#;HTML/CSS;JavaScript;SQL
+8989,C#;HTML/CSS;JavaScript;TypeScript
+8992,HTML/CSS;JavaScript
+8993,Bash/Shell/PowerShell;C++;Python
+8994,Assembly;C#;Rust
+8995,C#;Java
+8996,C#;HTML/CSS;JavaScript;SQL
+8997,Assembly;C;C++;JavaScript;Python;Ruby;Rust
+8998,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+9000,C;Go;JavaScript;Rust;TypeScript
+9001,HTML/CSS;Java;JavaScript;PHP
+9002,C;C++;C#
+9003,C#;HTML/CSS;JavaScript;PHP;SQL
+9004,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+9005,HTML/CSS;JavaScript;PHP
+9006,HTML/CSS;Python;R;SQL
+9007,C#;Other(s):
+9008,C#;HTML/CSS;JavaScript
+9009,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+9010,C;C#
+9011,HTML/CSS;Java;JavaScript;PHP;SQL
+9012,C#;HTML/CSS;JavaScript;SQL
+9013,C++;C#
+9014,C#;HTML/CSS;JavaScript;SQL
+9015,TypeScript
+9016,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+9017,HTML/CSS;Java;JavaScript;SQL;TypeScript
+9018,Java;Kotlin;Python
+9019,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+9020,HTML/CSS;JavaScript;PHP
+9021,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+9022,Bash/Shell/PowerShell;C;C++;Java;Python;Rust
+9023,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;Swift;TypeScript;WebAssembly;Other(s):
+9024,JavaScript;Ruby;TypeScript
+9025,C++;C#;Python;Rust;Other(s):
+9026,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+9027,Java
+9028,C#;Go;HTML/CSS;Java;JavaScript;SQL
+9029,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL;VBA
+9030,Bash/Shell/PowerShell;C++;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Other(s):
+9031,C;C++;Dart;HTML/CSS;Java;JavaScript;VBA
+9032,C;C++;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+9033,C#;HTML/CSS;JavaScript;SQL
+9034,HTML/CSS;JavaScript;SQL
+9035,Bash/Shell/PowerShell;Java;SQL
+9036,HTML/CSS;JavaScript;PHP;SQL
+9037,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+9038,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+9039,C#;HTML/CSS;JavaScript;SQL
+9040,C#;HTML/CSS;JavaScript;SQL
+9041,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+9042,HTML/CSS;JavaScript;SQL;VBA;Other(s):
+9043,C#;HTML/CSS;JavaScript
+9044,C++;JavaScript;Python;VBA
+9045,HTML/CSS;JavaScript
+9046,C;C++;Java;JavaScript;Python
+9047,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+9048,Bash/Shell/PowerShell;C;Python;Other(s):
+9049,HTML/CSS;JavaScript;Python
+9050,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+9051,C#;HTML/CSS;JavaScript;PHP;SQL
+9052,Bash/Shell/PowerShell;C++;Java;PHP;Ruby;Scala
+9053,C#;HTML/CSS;JavaScript;Python;TypeScript
+9054,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+9055,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9056,Bash/Shell/PowerShell;JavaScript;Python
+9058,Java;JavaScript;SQL
+9059,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+9060,HTML/CSS;JavaScript;SQL;TypeScript
+9061,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift
+9062,JavaScript;TypeScript
+9063,Python
+9064,Java;JavaScript;SQL
+9065,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+9066,C;C++;C#
+9067,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+9068,C;C++;Python;Swift
+9069,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+9070,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+9071,Java;Kotlin
+9072,HTML/CSS;JavaScript;PHP;SQL
+9073,C;C++;HTML/CSS;JavaScript;PHP;SQL
+9074,C;Java;Python
+9075,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Scala
+9076,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+9077,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;Other(s):
+9078,HTML/CSS;Java;JavaScript;SQL
+9079,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;SQL
+9080,Bash/Shell/PowerShell;C#;SQL
+9081,Java
+9082,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+9084,HTML/CSS;Java;JavaScript;PHP;SQL
+9085,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+9086,HTML/CSS;JavaScript;PHP;SQL
+9087,C;Java;Kotlin;PHP;SQL;Swift
+9088,Java;Python
+9089,Python
+9091,C++;Python
+9092,Assembly;Bash/Shell/PowerShell;C;C++;R;Other(s):
+9093,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+9094,Java;Other(s):
+9095,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9096,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9097,C++;Java;Python;Ruby
+9098,JavaScript;PHP;Python
+9099,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP;Ruby
+9100,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+9101,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+9102,Bash/Shell/PowerShell;C#;Dart;F#;HTML/CSS;JavaScript;Other(s):
+9103,HTML/CSS;Java;JavaScript;TypeScript
+9104,HTML/CSS;Java;JavaScript;Python;SQL
+9105,HTML/CSS;JavaScript;PHP;Ruby;SQL
+9106,HTML/CSS;JavaScript;PHP;SQL;VBA
+9107,HTML/CSS;Java;JavaScript;Python;SQL
+9108,C#;HTML/CSS;JavaScript;SQL
+9109,C;C++;C#;Java;JavaScript;PHP;Python;SQL;TypeScript
+9110,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+9111,Bash/Shell/PowerShell;C;Python;R
+9112,HTML/CSS;Java;JavaScript
+9113,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+9114,R;SQL
+9116,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+9117,C#;HTML/CSS;JavaScript;SQL
+9118,Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+9119,SQL
+9120,C++;HTML/CSS;Java;JavaScript;Python
+9121,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+9122,C;C++;HTML/CSS;JavaScript
+9123,Python;R
+9124,C#;HTML/CSS
+9125,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Ruby;SQL;Other(s):
+9126,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9127,HTML/CSS;JavaScript
+9128,HTML/CSS;Java;JavaScript;TypeScript
+9129,Assembly;Bash/Shell/PowerShell;C;C++;Python
+9130,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+9131,C#;HTML/CSS;Python;SQL
+9132,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+9133,Bash/Shell/PowerShell;Elixir;Go;Python;SQL
+9134,C#;HTML/CSS;Python;Rust;SQL
+9135,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+9136,HTML/CSS;Python;R;SQL
+9137,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+9138,HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+9139,C#;HTML/CSS;Java;SQL;TypeScript
+9140,HTML/CSS;JavaScript
+9141,C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+9142,HTML/CSS;Ruby;SQL
+9143,C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL;Swift
+9144,HTML/CSS;Ruby;SQL;Other(s):
+9145,Java;Kotlin
+9146,C;Java
+9147,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+9148,Java
+9149,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R
+9151,HTML/CSS;JavaScript;Python;SQL
+9153,Java
+9154,C#;HTML/CSS;JavaScript;TypeScript
+9155,Elixir;HTML/CSS;JavaScript;Ruby;Rust;SQL;TypeScript;WebAssembly
+9156,C#;HTML/CSS;JavaScript;SQL
+9157,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+9158,HTML/CSS;JavaScript;SQL;TypeScript
+9159,HTML/CSS;Java;JavaScript;SQL
+9160,Bash/Shell/PowerShell;C;C++;C#;Java;Python
+9161,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+9162,HTML/CSS;JavaScript;PHP;TypeScript
+9163,Java;JavaScript;Python;Rust;SQL
+9164,Assembly;HTML/CSS;JavaScript;PHP;SQL
+9165,HTML/CSS;JavaScript;SQL;TypeScript
+9166,C;Java;Objective-C;Python;SQL
+9167,HTML/CSS;Java;JavaScript;SQL
+9168,HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+9169,HTML/CSS;JavaScript;PHP;SQL
+9170,C;HTML/CSS;Java;JavaScript;PHP;SQL
+9171,PHP;Python;SQL
+9172,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9173,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+9174,HTML/CSS;Java;Python;R;SQL
+9175,HTML/CSS;JavaScript;Python
+9176,Java;Kotlin;Python;Swift
+9177,HTML/CSS;Java;JavaScript
+9178,Bash/Shell/PowerShell;C++;Java;Scala
+9179,JavaScript
+9180,HTML/CSS;JavaScript;PHP
+9181,HTML/CSS;Java;JavaScript;SQL
+9182,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;SQL
+9183,Bash/Shell/PowerShell;C++;Go;Python
+9184,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+9185,Java;PHP
+9186,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Other(s):
+9187,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Python;SQL
+9188,HTML/CSS;JavaScript;PHP;Python
+9189,C++;C#;HTML/CSS;SQL;TypeScript
+9190,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+9191,C;C++;Java
+9192,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+9193,Python;SQL;VBA
+9194,Java
+9195,C#;HTML/CSS;JavaScript;SQL
+9196,Go;Java;JavaScript;Ruby;SQL
+9197,Java;JavaScript
+9198,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+9199,C;Java;Python
+9200,HTML/CSS;JavaScript;PHP
+9201,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9202,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+9203,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+9204,Bash/Shell/PowerShell;Java;Objective-C;Python
+9205,C#;HTML/CSS;JavaScript;Python;SQL
+9206,Go;Python;Rust
+9207,Java;Kotlin
+9208,JavaScript;PHP;Python;SQL
+9209,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+9210,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+9211,C#;Clojure;Dart;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+9212,C;C++;Java;Scala
+9213,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+9214,Assembly;HTML/CSS;Java;Swift
+9215,HTML/CSS;JavaScript;TypeScript
+9216,C;C#;Python;Swift
+9217,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+9218,C#;Java;JavaScript;TypeScript
+9219,Bash/Shell/PowerShell;Java;SQL
+9220,Assembly;C++;HTML/CSS;JavaScript;Python;Swift
+9221,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;Python;R;SQL
+9222,HTML/CSS;JavaScript;Python
+9223,Bash/Shell/PowerShell;Elixir;PHP;Python;Ruby;Rust;SQL
+9224,Java;JavaScript
+9225,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+9226,C++;Python
+9227,Java;JavaScript;PHP;SQL
+9228,HTML/CSS;PHP;Python;SQL;VBA
+9229,Assembly;Go
+9230,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+9231,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+9232,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+9233,C#;Java;Kotlin;Swift
+9234,Assembly;C;C++;HTML/CSS;Java;JavaScript;TypeScript
+9235,Go;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+9236,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9237,HTML/CSS;JavaScript;Ruby;SQL
+9238,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+9239,HTML/CSS;JavaScript;PHP;SQL
+9240,Go;HTML/CSS;JavaScript;Ruby
+9241,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL
+9242,Bash/Shell/PowerShell;Clojure;HTML/CSS;SQL
+9243,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+9244,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+9245,Bash/Shell/PowerShell;C#;SQL
+9246,C#;HTML/CSS;PHP;SQL;Other(s):
+9247,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+9248,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+9249,Bash/Shell/PowerShell;Go;Java;Python
+9250,C++;JavaScript;SQL;TypeScript
+9251,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+9252,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+9253,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+9254,Bash/Shell/PowerShell;Go;Java;Python;SQL
+9255,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9256,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9257,C++;C#;HTML/CSS;Java
+9259,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;SQL
+9260,Bash/Shell/PowerShell;C;C++;C#;Python
+9261,Bash/Shell/PowerShell;C#
+9263,HTML/CSS;JavaScript;PHP;Python;SQL
+9264,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+9265,HTML/CSS;JavaScript;PHP;SQL
+9266,HTML/CSS;JavaScript;Python
+9267,C;C++;Java;Python
+9268,Bash/Shell/PowerShell;Python;R;Other(s):
+9269,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+9270,HTML/CSS;JavaScript;PHP
+9271,Go;PHP;SQL
+9272,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;Scala;SQL;TypeScript
+9273,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Other(s):
+9274,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+9275,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Swift
+9276,HTML/CSS;JavaScript;PHP;SQL
+9277,Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;Other(s):
+9278,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9279,Go;Rust
+9280,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+9281,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+9282,Bash/Shell/PowerShell;Erlang;Java;Scala;SQL
+9283,Python
+9284,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9285,HTML/CSS;PHP;SQL
+9286,C;Java;Python;R;SQL
+9287,Bash/Shell/PowerShell;C#;SQL
+9288,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;TypeScript
+9289,Bash/Shell/PowerShell;C#
+9290,C;HTML/CSS;JavaScript;TypeScript
+9291,C;C++;C#
+9292,C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+9293,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+9294,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+9295,C#;HTML/CSS;Java
+9296,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;VBA
+9297,HTML/CSS;JavaScript
+9298,HTML/CSS;Java;JavaScript;Python;R
+9299,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9300,Bash/Shell/PowerShell;C++;C#;Python;Scala;SQL
+9301,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+9302,Bash/Shell/PowerShell;Java;JavaScript;Ruby;SQL
+9303,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9304,Elixir;Erlang;HTML/CSS;JavaScript;PHP;SQL;VBA
+9305,C#
+9306,C#
+9307,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+9308,C#;JavaScript;TypeScript
+9309,HTML/CSS;JavaScript;TypeScript
+9310,HTML/CSS;JavaScript;PHP;SQL
+9311,HTML/CSS;JavaScript;PHP;SQL
+9312,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+9313,Python;SQL
+9314,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+9315,C;HTML/CSS;JavaScript;Other(s):
+9316,HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+9317,Bash/Shell/PowerShell;Python
+9318,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+9319,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+9320,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+9321,HTML/CSS;Java;SQL
+9322,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+9323,C++;HTML/CSS;JavaScript;PHP;Python
+9325,HTML/CSS;JavaScript
+9326,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+9327,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+9328,Java
+9329,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+9330,Bash/Shell/PowerShell;C;C++;Python;SQL
+9331,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Elixir;Go;HTML/CSS;JavaScript;Ruby;SQL
+9332,JavaScript;PHP;SQL
+9333,Assembly;C#;HTML/CSS;Java
+9334,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9335,HTML/CSS;JavaScript;Python
+9336,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9337,C#;JavaScript;SQL
+9338,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+9339,Clojure;HTML/CSS;Java;JavaScript
+9340,C#;HTML/CSS;JavaScript;PHP;SQL
+9341,Bash/Shell/PowerShell;C++
+9342,C;Python
+9343,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+9344,C;C++
+9345,HTML/CSS;JavaScript;PHP;SQL
+9346,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+9347,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9348,C#;HTML/CSS;JavaScript;SQL
+9349,C;Java
+9350,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+9351,Objective-C;Swift
+9352,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+9353,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9354,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;JavaScript;Python;TypeScript
+9355,Assembly;Java;Python
+9356,C++;Java;TypeScript
+9357,C++;Python
+9358,SQL;VBA
+9359,C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+9360,Go;HTML/CSS;Kotlin;Objective-C;Ruby;Swift;TypeScript
+9361,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+9362,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+9363,C#;HTML/CSS;JavaScript;SQL
+9364,Java;Python;SQL
+9365,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+9366,Bash/Shell/PowerShell;C#;Go;Java;Python
+9367,Assembly;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9368,Python;Scala;SQL
+9369,Bash/Shell/PowerShell;HTML/CSS;SQL;VBA
+9370,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+9371,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+9372,C#;Python
+9373,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+9374,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+9375,Bash/Shell/PowerShell;C;C++;Java;JavaScript
+9376,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+9377,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+9378,HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+9379,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+9380,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+9381,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+9382,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;TypeScript
+9383,HTML/CSS;PHP;SQL
+9384,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+9385,HTML/CSS;JavaScript;PHP;SQL
+9386,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+9387,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+9388,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;SQL
+9389,HTML/CSS;JavaScript
+9390,HTML/CSS;JavaScript;PHP;SQL
+9391,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+9392,C#;SQL;TypeScript
+9393,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+9394,Java;JavaScript;Python
+9395,JavaScript;Objective-C;Swift
+9396,HTML/CSS;JavaScript;PHP;SQL
+9397,Java;JavaScript
+9398,HTML/CSS;JavaScript;Python;SQL;TypeScript
+9399,Java;JavaScript;PHP;Python;SQL
+9400,Bash/Shell/PowerShell;HTML/CSS;SQL
+9401,Swift;TypeScript
+9402,Bash/Shell/PowerShell;C++;Python
+9403,Python;R;SQL;VBA
+9404,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;SQL
+9405,Assembly;C++;HTML/CSS;JavaScript
+9406,C++;C#;HTML/CSS;Python;SQL;VBA;Other(s):
+9407,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+9408,Assembly;Bash/Shell/PowerShell;C
+9409,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+9410,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Objective-C;PHP;SQL
+9411,HTML/CSS;Java;JavaScript;TypeScript
+9412,HTML/CSS;JavaScript;PHP;SQL
+9413,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;R;SQL
+9414,Objective-C;Swift
+9415,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+9416,HTML/CSS;Java;JavaScript;Scala;SQL
+9417,C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+9418,Bash/Shell/PowerShell;C++;C#;Python
+9419,C#;HTML/CSS;JavaScript
+9420,Bash/Shell/PowerShell;JavaScript;TypeScript
+9421,C#;VBA
+9422,Bash/Shell/PowerShell;C++;JavaScript;Python;Swift;Other(s):
+9423,C;C++;C#
+9424,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+9425,Java;JavaScript;SQL
+9426,HTML/CSS;JavaScript;PHP
+9427,HTML/CSS;Java
+9428,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9429,HTML/CSS;PHP
+9430,Python
+9431,C#;HTML/CSS;JavaScript;Other(s):
+9433,Java
+9434,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+9435,Python
+9436,Bash/Shell/PowerShell;C++;Java;Kotlin
+9437,Bash/Shell/PowerShell;Python
+9438,Bash/Shell/PowerShell;C;C++;C#;Java
+9439,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Other(s):
+9440,C;JavaScript;Python;SQL
+9441,Java;JavaScript;SQL;Swift
+9442,C#;JavaScript;Python;R;SQL
+9443,Bash/Shell/PowerShell;C;Python;SQL;VBA
+9444,Bash/Shell/PowerShell;C#;Python
+9445,C#;HTML/CSS;JavaScript;SQL
+9446,C;C++;Java;Python;SQL
+9447,Bash/Shell/PowerShell;C#;Swift
+9448,Java;Kotlin;Objective-C
+9449,Assembly;C;Java;JavaScript;Python
+9450,Python
+9451,Python;R;SQL;VBA
+9452,C#;HTML/CSS;Python;VBA
+9453,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+9454,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python
+9455,Elixir;Ruby
+9456,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+9457,HTML/CSS;Java;JavaScript
+9458,HTML/CSS;Java;Python;R;VBA
+9459,JavaScript;TypeScript
+9460,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9461,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;SQL
+9462,Bash/Shell/PowerShell;Python;R;SQL;VBA
+9463,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;TypeScript
+9464,C;C#;Java;Python
+9465,C#;HTML/CSS;JavaScript;SQL;WebAssembly;Other(s):
+9466,Assembly;C;Swift
+9467,Objective-C;Swift
+9468,C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+9469,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9470,JavaScript;Python
+9471,C;Go;R
+9472,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+9473,Bash/Shell/PowerShell;C#
+9474,C#;HTML/CSS;JavaScript;Python
+9475,C#;SQL
+9476,C++;Python
+9477,Elixir;JavaScript;Python;Ruby
+9478,C;Go;Python
+9479,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9480,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9481,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+9482,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+9483,HTML/CSS;PHP;Python
+9484,Bash/Shell/PowerShell;Go;Python;Rust
+9485,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+9486,C;C++;C#;Java;SQL
+9487,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+9488,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9489,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Swift
+9490,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+9491,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9492,C#;SQL
+9493,C#;HTML/CSS;JavaScript;SQL
+9494,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL;TypeScript
+9495,Java;PHP;Rust
+9496,Bash/Shell/PowerShell;Python;Other(s):
+9497,Java;Python;R;VBA
+9498,C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+9499,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL;Other(s):
+9500,C#;HTML/CSS;JavaScript;SQL
+9501,HTML/CSS;JavaScript;Python
+9502,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+9503,Java;SQL
+9504,HTML/CSS;JavaScript;TypeScript
+9505,Bash/Shell/PowerShell;JavaScript;Swift
+9506,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;TypeScript
+9507,Bash/Shell/PowerShell;Python;SQL
+9508,C#;HTML/CSS;JavaScript;SQL
+9509,Python
+9510,C;C++;C#;Python
+9511,HTML/CSS;Java;JavaScript;SQL
+9512,C#;SQL
+9513,C++;Go;Java;JavaScript;Python;Ruby;Rust;Scala;SQL;TypeScript
+9514,C++;HTML/CSS;JavaScript;PHP;Swift
+9515,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9516,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9517,Dart;JavaScript;SQL;TypeScript
+9518,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+9519,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+9520,HTML/CSS;Java;JavaScript;SQL
+9521,Dart;Java;Kotlin;PHP;Swift
+9522,C++;C#;JavaScript;SQL;TypeScript
+9523,C#;HTML/CSS;JavaScript;Python;SQL
+9524,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+9525,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;SQL;WebAssembly
+9526,HTML/CSS;JavaScript;TypeScript
+9527,Bash/Shell/PowerShell;Go;Python;Other(s):
+9528,HTML/CSS;JavaScript;Python
+9529,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+9530,C#;F#;HTML/CSS;JavaScript;SQL
+9531,Assembly;Bash/Shell/PowerShell;C;C#;Elixir;Go;HTML/CSS;JavaScript;Kotlin;Python;R;Ruby;Rust;SQL;Swift;TypeScript;WebAssembly
+9532,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+9533,Java;JavaScript;PHP;SQL
+9534,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+9535,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+9536,Bash/Shell/PowerShell;Clojure;Python;R
+9537,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9538,Clojure;JavaScript
+9539,Bash/Shell/PowerShell;Java;Python
+9540,C#
+9541,JavaScript;Objective-C;Swift
+9542,C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+9543,C#;SQL;Other(s):
+9544,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+9545,Java
+9546,HTML/CSS;JavaScript
+9547,Go;PHP
+9548,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+9549,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+9550,Java;Python;VBA
+9551,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;TypeScript
+9552,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+9553,JavaScript;Python;SQL;TypeScript
+9554,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9556,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;Swift
+9557,C#;Java;JavaScript;TypeScript
+9559,C#;HTML/CSS;JavaScript;PHP;SQL
+9560,HTML/CSS;Java;JavaScript;SQL;TypeScript
+9561,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;TypeScript;Other(s):
+9562,Clojure;HTML/CSS;Java;JavaScript;Python
+9563,Java;JavaScript
+9564,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+9565,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Scala;SQL;TypeScript
+9566,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+9567,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9568,Bash/Shell/PowerShell;C++;Go;Python;SQL
+9569,HTML/CSS;Java;JavaScript;Python
+9570,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+9571,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+9572,Java;JavaScript;PHP;TypeScript
+9573,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+9574,HTML/CSS;Java;JavaScript;Scala
+9575,Python
+9576,C#;HTML/CSS;Java;PHP
+9577,Java;SQL
+9578,C#;HTML/CSS;JavaScript;Python;SQL
+9579,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+9580,Bash/Shell/PowerShell;JavaScript;Python
+9581,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9582,HTML/CSS;JavaScript;Python;Rust;SQL
+9583,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+9584,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+9585,HTML/CSS;JavaScript
+9586,Bash/Shell/PowerShell;C;Go;JavaScript;Python;Ruby
+9587,Go;JavaScript;PHP;SQL
+9588,HTML/CSS;JavaScript;PHP;SQL
+9589,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+9590,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+9591,Python
+9592,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+9593,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+9594,Python;R;VBA
+9595,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+9596,C++;C#;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+9597,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9598,Bash/Shell/PowerShell;SQL
+9599,Python
+9600,C;C++;HTML/CSS;Java;Python
+9601,C++;Python
+9602,HTML/CSS;JavaScript;PHP
+9603,Bash/Shell/PowerShell;Go;Java;Python;SQL
+9604,Go;HTML/CSS;JavaScript;Python;Other(s):
+9605,C
+9606,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+9607,Bash/Shell/PowerShell;C;C++
+9608,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+9609,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+9610,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+9611,HTML/CSS;Java;JavaScript;R;SQL;VBA
+9612,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+9613,HTML/CSS;JavaScript;Python
+9614,HTML/CSS;Java;JavaScript
+9615,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+9616,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+9617,C;JavaScript;Ruby;Rust;SQL
+9618,C++;C#;Java;Python
+9619,Go;JavaScript;TypeScript
+9620,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+9621,HTML/CSS;JavaScript;PHP;Ruby
+9622,Java
+9623,C;C++;Java;Python;R;SQL
+9624,C#;HTML/CSS;JavaScript;SQL
+9625,C#;HTML/CSS;JavaScript;Python;SQL
+9626,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+9627,C#;R;SQL
+9628,HTML/CSS;Java;JavaScript;Ruby
+9630,HTML/CSS;JavaScript;Objective-C;Swift
+9631,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9632,Bash/Shell/PowerShell;C#;Python
+9633,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+9634,HTML/CSS;JavaScript;PHP;SQL
+9635,HTML/CSS;JavaScript;PHP;Python;TypeScript
+9636,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9637,Java;JavaScript
+9638,C#;HTML/CSS;JavaScript;Objective-C
+9639,HTML/CSS;JavaScript;PHP;SQL
+9640,C;C++;Java;Python
+9641,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Swift
+9642,Java;Python;R;Rust;Scala;SQL;Swift
+9643,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+9644,C#;HTML/CSS;JavaScript;TypeScript
+9645,Python;Other(s):
+9646,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9647,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+9648,Python
+9649,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+9650,Bash/Shell/PowerShell;C#;JavaScript;SQL;Other(s):
+9651,Bash/Shell/PowerShell;C;C++;Java;Python;R
+9652,HTML/CSS;JavaScript;Python;Ruby;Other(s):
+9653,JavaScript;TypeScript
+9654,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL;Other(s):
+9655,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+9656,C;C++;HTML/CSS;Java;Python
+9657,C;Dart;JavaScript;Python
+9658,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9659,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+9660,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Ruby
+9661,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9662,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+9663,HTML/CSS;Java;JavaScript;SQL;TypeScript
+9664,C;C++;HTML/CSS;Python
+9665,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+9666,HTML/CSS;Java;TypeScript
+9667,C#;HTML/CSS;JavaScript;TypeScript
+9668,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+9669,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript;Other(s):
+9670,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+9671,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+9672,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9673,C#;HTML/CSS;JavaScript;SQL
+9674,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript
+9675,Bash/Shell/PowerShell;Java;PHP;Python;SQL;VBA
+9676,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+9677,Bash/Shell/PowerShell;Python
+9678,Assembly;C++
+9679,HTML/CSS;JavaScript;PHP;SQL
+9680,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9681,Assembly;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+9682,C#;HTML/CSS;JavaScript;SQL;VBA
+9683,Bash/Shell/PowerShell;C++;Java;Kotlin;Python
+9684,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python
+9685,C#;HTML/CSS;JavaScript;SQL
+9686,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+9687,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9688,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+9689,HTML/CSS;JavaScript;SQL
+9690,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+9691,HTML/CSS;JavaScript;PHP;SQL
+9692,C#;Java;JavaScript;SQL;TypeScript
+9693,HTML/CSS;JavaScript;Python
+9694,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9695,Go;Java;JavaScript;Kotlin;SQL
+9696,C#;HTML/CSS;JavaScript;TypeScript
+9697,C#;HTML/CSS;JavaScript;SQL
+9698,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+9699,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;Scala;SQL
+9700,HTML/CSS;JavaScript;TypeScript
+9701,C++;Rust
+9702,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;Ruby
+9703,Bash/Shell/PowerShell;Java
+9704,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+9705,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Java;SQL
+9706,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+9707,C;Other(s):
+9708,C;HTML/CSS;Java;JavaScript;PHP;SQL
+9709,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+9711,JavaScript
+9712,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Swift
+9713,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+9715,HTML/CSS;Java;JavaScript;SQL
+9716,C#;Java
+9717,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala;SQL;Other(s):
+9718,HTML/CSS;Java;JavaScript;PHP;SQL
+9719,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL
+9720,Java;Swift
+9721,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Other(s):
+9722,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9723,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+9724,Python
+9725,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+9726,Other(s):
+9727,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;SQL;TypeScript
+9728,HTML/CSS;JavaScript;PHP;SQL
+9729,Assembly;C;C++;Java
+9730,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+9731,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+9732,C++;Objective-C;Python
+9733,C;C++;Java;Kotlin;Swift
+9734,C++;Other(s):
+9735,Assembly;Bash/Shell/PowerShell;C++;C#;Java;Python
+9736,C#;Java;JavaScript;SQL;WebAssembly
+9737,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+9738,HTML/CSS;JavaScript;PHP;Python;SQL
+9739,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+9740,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+9741,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP;Swift;TypeScript
+9742,Python
+9743,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+9744,Bash/Shell/PowerShell;C++;C#
+9745,HTML/CSS;JavaScript;PHP
+9746,Java;Kotlin
+9747,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;VBA
+9748,C;C++;Java;JavaScript;Swift
+9749,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+9750,C#;HTML/CSS;JavaScript;SQL
+9751,HTML/CSS;Java;JavaScript;SQL;TypeScript
+9752,Go
+9753,Java;Python;SQL
+9754,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+9755,Python;Other(s):
+9756,Assembly;Bash/Shell/PowerShell;C;C++;Python;Swift
+9757,HTML/CSS;JavaScript;PHP
+9758,C;Java;PHP;Python;SQL
+9759,C;C++;C#;Java
+9760,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+9761,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+9762,C#;HTML/CSS;Java;JavaScript;Python;SQL
+9763,C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Swift
+9764,HTML/CSS;JavaScript;PHP
+9765,HTML/CSS;JavaScript;PHP;Python
+9766,C#;HTML/CSS;JavaScript;SQL
+9767,HTML/CSS;JavaScript;SQL;TypeScript
+9768,SQL
+9769,C++;Java;Python
+9770,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Python
+9771,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python
+9772,Python
+9773,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9774,Java;Objective-C;Swift
+9775,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+9776,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+9777,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9778,Java;JavaScript;SQL
+9779,HTML/CSS;JavaScript;TypeScript
+9780,C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+9781,HTML/CSS;PHP;SQL
+9782,C#;Java;JavaScript
+9783,Python;R;SQL
+9784,HTML/CSS;Java;JavaScript;Python;SQL
+9785,Elixir;JavaScript;Ruby;SQL
+9786,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL
+9787,Bash/Shell/PowerShell;Python;Rust;SQL
+9788,HTML/CSS;JavaScript;PHP;TypeScript
+9789,Java
+9790,PHP;SQL
+9791,C;C#;HTML/CSS;Java;JavaScript;SQL
+9792,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+9793,C;C++;C#
+9794,C
+9795,Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+9796,JavaScript;PHP
+9797,Kotlin
+9798,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Other(s):
+9799,C++;Clojure;Dart;Go;HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+9800,Swift
+9801,HTML/CSS;Ruby
+9802,C#;Java;SQL
+9803,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+9804,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;TypeScript;Other(s):
+9805,Java;JavaScript;SQL;Swift
+9806,C;HTML/CSS;JavaScript;PHP;SQL
+9807,C++;HTML/CSS;Java;JavaScript;Objective-C;Swift
+9808,C++;Java;Python
+9809,JavaScript;TypeScript
+9810,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+9811,Bash/Shell/PowerShell;C;C++
+9812,Bash/Shell/PowerShell;Java;Python;SQL
+9813,HTML/CSS;TypeScript
+9814,HTML/CSS;JavaScript;Ruby
+9815,Bash/Shell/PowerShell;C;C++;Java;Ruby;Scala;SQL
+9816,C#;HTML/CSS;Java;JavaScript;SQL
+9817,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+9818,Bash/Shell/PowerShell;Java;R
+9820,Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+9821,C#;HTML/CSS;JavaScript
+9822,C#;Python
+9823,C#;HTML/CSS;JavaScript;Python;SQL
+9824,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL
+9825,C;C++;PHP;SQL
+9826,C;HTML/CSS;Java;JavaScript;PHP;SQL
+9827,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript
+9828,C#
+9829,C#;JavaScript;Python;SQL
+9830,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java
+9831,HTML/CSS;JavaScript
+9832,Bash/Shell/PowerShell;Python
+9833,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+9834,C;C++;C#;HTML/CSS;Java
+9835,C;JavaScript;Objective-C
+9836,HTML/CSS;JavaScript;PHP;SQL
+9837,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+9838,C#;Java
+9839,Ruby
+9840,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala
+9841,Bash/Shell/PowerShell;C#;Java;Objective-C
+9842,HTML/CSS;JavaScript
+9843,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+9844,C;C++;Java;JavaScript;Kotlin
+9845,HTML/CSS;JavaScript;PHP
+9846,HTML/CSS;Java;JavaScript
+9847,C#;HTML/CSS;JavaScript;PHP;Other(s):
+9848,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+9849,HTML/CSS;Java
+9850,HTML/CSS;JavaScript;PHP
+9851,HTML/CSS;Java;JavaScript
+9852,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+9853,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Other(s):
+9854,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+9855,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9856,Bash/Shell/PowerShell;Java;Python;Rust
+9857,C#
+9858,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+9859,C++;HTML/CSS;JavaScript;Python
+9860,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+9861,Assembly;C;C++;C#;HTML/CSS;Java;Python
+9862,Bash/Shell/PowerShell;Other(s):
+9863,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+9864,C#;SQL
+9865,Python;R;Scala;SQL
+9866,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+9867,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9868,C++;HTML/CSS;Python
+9869,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+9870,HTML/CSS;JavaScript;PHP
+9872,C++;Python
+9873,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+9874,Scala;TypeScript
+9875,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+9876,C;C++;C#
+9877,HTML/CSS;Java;JavaScript;Python
+9878,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+9879,C;C#;Clojure;HTML/CSS;JavaScript;Python;TypeScript
+9880,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+9881,HTML/CSS;Java;SQL
+9882,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+9883,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+9884,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+9885,Bash/Shell/PowerShell;C;C++;Go;Objective-C;Python;Ruby;Swift
+9886,JavaScript;Python;R;SQL;VBA
+9887,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9888,C#;Java;Python
+9889,HTML/CSS;JavaScript;PHP
+9890,Python;VBA
+9891,Clojure;HTML/CSS;Java;JavaScript;SQL
+9892,SQL
+9893,C#;HTML/CSS;JavaScript;PHP;SQL
+9894,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9895,C#;HTML/CSS;Java;PHP;SQL
+9896,HTML/CSS;JavaScript;Ruby;SQL
+9897,HTML/CSS;JavaScript;PHP;SQL
+9898,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;TypeScript
+9899,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+9900,C#;HTML/CSS;SQL
+9902,Java;SQL
+9903,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+9904,Bash/Shell/PowerShell;C;C#;HTML/CSS;Ruby;SQL
+9905,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+9906,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+9907,C++;HTML/CSS;JavaScript;PHP
+9908,C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+9909,HTML/CSS;Java;JavaScript;PHP;SQL
+9910,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+9911,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+9912,HTML/CSS;Java;JavaScript;Kotlin
+9913,Assembly;C;C#;Python;Rust
+9914,Bash/Shell/PowerShell;C#;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+9915,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+9916,Bash/Shell/PowerShell;Python;SQL;Other(s):
+9917,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+9918,C#;JavaScript;PHP;SQL;Other(s):
+9919,HTML/CSS;JavaScript;SQL
+9920,Java;JavaScript;Scala
+9921,HTML/CSS;JavaScript;PHP
+9922,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+9923,HTML/CSS;JavaScript;Other(s):
+9924,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9925,C#;HTML/CSS;TypeScript
+9926,HTML/CSS;Java;JavaScript;PHP;Ruby
+9927,C;C++;C#;HTML/CSS;Java;PHP
+9928,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+9929,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+9930,C#;HTML/CSS;Java;JavaScript;TypeScript
+9931,C++;C#
+9932,C#
+9933,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9934,Other(s):
+9935,C;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL
+9936,HTML/CSS;JavaScript;TypeScript
+9937,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL;TypeScript
+9938,Bash/Shell/PowerShell;Python;SQL
+9939,JavaScript;Python;SQL;TypeScript
+9940,Java;Kotlin;PHP;SQL
+9941,C;C++;C#;HTML/CSS;JavaScript;PHP;Ruby
+9942,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+9943,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+9944,Java;JavaScript;SQL
+9945,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+9946,C;C#
+9947,Java;JavaScript;Kotlin;SQL
+9948,Assembly;C;Python;Rust
+9949,Bash/Shell/PowerShell;C;Go;PHP;Python;SQL;Other(s):
+9950,C#;HTML/CSS;JavaScript;SQL
+9951,Python;SQL
+9952,C++;JavaScript;Python;Ruby
+9953,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+9954,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+9955,Java;JavaScript;SQL
+9956,C#;HTML/CSS;JavaScript;TypeScript
+9957,Java;Scala;Other(s):
+9958,HTML/CSS;Kotlin;TypeScript;Other(s):
+9959,Bash/Shell/PowerShell;C#
+9960,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+9961,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+9962,HTML/CSS;JavaScript;Python
+9964,HTML/CSS;JavaScript;PHP;SQL;VBA
+9965,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+9966,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9967,Bash/Shell/PowerShell;C++;Java;Other(s):
+9968,C#;HTML/CSS;JavaScript;SQL
+9969,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+9970,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+9971,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+9972,HTML/CSS;Java;Python;SQL
+9973,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+9974,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+9975,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+9976,C;JavaScript;TypeScript
+9978,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+9979,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+9980,C;C++;C#
+9982,C;HTML/CSS;JavaScript;Objective-C;Python;Swift
+9983,C#;Scala;SQL;TypeScript
+9984,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+9985,C#;HTML/CSS;JavaScript;SQL;TypeScript
+9986,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+9987,HTML/CSS;Java;JavaScript;SQL;TypeScript
+9988,C;C++;C#
+9989,Bash/Shell/PowerShell;JavaScript;Python;SQL;VBA
+9990,Bash/Shell/PowerShell;Java;Kotlin;SQL
+9991,C#
+9992,JavaScript;PHP;Python;R;SQL
+9993,C;Java
+9994,C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;Other(s):
+9995,Go;HTML/CSS;JavaScript;TypeScript
+9996,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+9997,Python;R;SQL
+9998,Bash/Shell/PowerShell;Java;Kotlin;Python;Scala
+9999,Java;Kotlin
+10000,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+10001,C#;JavaScript;Objective-C;Swift;TypeScript
+10002,C#;HTML/CSS;Java;JavaScript;SQL
+10003,Python
+10004,HTML/CSS;Java;JavaScript;Python;SQL
+10005,JavaScript;Python
+10006,Go;Java;JavaScript;Python
+10007,Bash/Shell/PowerShell;C#;JavaScript;SQL
+10008,C++;Java
+10009,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;Swift;TypeScript
+10010,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL
+10011,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+10012,HTML/CSS;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+10013,C#;Java
+10014,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;WebAssembly;Other(s):
+10015,C#;SQL;Other(s):
+10016,JavaScript;Objective-C;PHP;SQL
+10017,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;Other(s):
+10019,C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+10020,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+10021,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL
+10022,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10023,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+10024,C#;HTML/CSS;JavaScript;PHP;Python
+10025,C;C++;Objective-C;Swift
+10026,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+10027,PHP;R
+10028,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+10029,HTML/CSS;JavaScript;PHP;Ruby;SQL
+10030,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+10031,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+10032,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+10033,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+10034,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+10035,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+10036,HTML/CSS;Java;JavaScript;SQL;VBA
+10037,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+10038,Bash/Shell/PowerShell;Java;SQL;Other(s):
+10039,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10040,HTML/CSS;JavaScript;Python;SQL
+10041,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+10042,C#;JavaScript;SQL;TypeScript
+10043,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;SQL
+10044,HTML/CSS;Java;JavaScript;R;SQL
+10045,Elixir;Go;Kotlin;Ruby;Swift;TypeScript
+10046,C++;Python
+10047,Java
+10048,C++;Python
+10049,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+10050,C;C++;HTML/CSS;PHP
+10051,C#;Java
+10052,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+10053,Java
+10054,C;C++;Ruby;Other(s):
+10055,Java;JavaScript;Kotlin;Python;Ruby;Scala;Other(s):
+10056,C#;HTML/CSS;JavaScript;SQL
+10057,Python;VBA
+10058,Bash/Shell/PowerShell;Java;JavaScript;Python
+10059,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL;TypeScript
+10060,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+10061,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+10062,Java;SQL
+10063,JavaScript;PHP
+10064,Java
+10065,C#;Dart;F#;Java;PHP;VBA
+10066,HTML/CSS;JavaScript;Python
+10067,C#;HTML/CSS;JavaScript;SQL;Swift
+10068,HTML/CSS;JavaScript;Python;TypeScript
+10069,C++;Go;Java;JavaScript;Python
+10070,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+10071,Assembly;C;HTML/CSS;JavaScript;SQL
+10072,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10073,C#;Go;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+10074,Assembly;C;C++;HTML/CSS;Java;JavaScript;VBA
+10075,HTML/CSS;JavaScript;PHP;SQL
+10076,Assembly;Bash/Shell/PowerShell;C;C++
+10077,Bash/Shell/PowerShell;C#
+10078,C#
+10079,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+10080,C;C#;Python
+10081,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+10082,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Ruby;SQL
+10083,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+10084,Assembly;C#;Java;JavaScript;SQL
+10085,C#;Java;VBA
+10086,Dart;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+10087,Java;Kotlin
+10088,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10089,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+10090,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+10091,Assembly;Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10092,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+10093,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+10094,HTML/CSS;PHP;SQL
+10095,Python;R;SQL
+10096,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+10097,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+10098,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10099,HTML/CSS;JavaScript
+10100,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+10101,Bash/Shell/PowerShell;Java
+10102,Bash/Shell/PowerShell;C++;C#;JavaScript
+10103,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+10104,C;C++;HTML/CSS;Java;JavaScript
+10105,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10106,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby
+10107,Bash/Shell/PowerShell;Go;Java;Python;Scala
+10108,Assembly;Bash/Shell/PowerShell;C;Objective-C;Python;Swift
+10109,Bash/Shell/PowerShell;Go;Java
+10110,Java;Python
+10111,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+10112,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+10113,C#;HTML/CSS;JavaScript;SQL
+10114,Bash/Shell/PowerShell;Go;HTML/CSS;Objective-C;Python;Ruby;Rust;SQL;Swift
+10115,Bash/Shell/PowerShell;Python
+10116,Assembly;VBA;Other(s):
+10117,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+10118,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+10119,C;C++;HTML/CSS
+10120,Bash/Shell/PowerShell;C#;HTML/CSS;Java
+10121,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+10122,C;C++
+10123,HTML/CSS;JavaScript
+10124,HTML/CSS;JavaScript;Python
+10125,Bash/Shell/PowerShell;C#;Dart;Java
+10126,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+10127,C#;HTML/CSS;JavaScript;SQL
+10128,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+10129,HTML/CSS;JavaScript;PHP
+10130,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+10131,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+10132,C#;HTML/CSS;JavaScript;PHP;SQL
+10133,JavaScript;Python
+10134,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+10135,C#
+10136,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+10137,HTML/CSS;JavaScript;PHP;Other(s):
+10138,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+10139,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+10140,C;C++;HTML/CSS;Java;JavaScript;PHP;Swift
+10141,HTML/CSS;JavaScript;PHP;Python;SQL
+10142,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+10143,HTML/CSS;JavaScript;PHP;SQL
+10144,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+10145,JavaScript;Swift
+10146,HTML/CSS;JavaScript;PHP
+10147,Bash/Shell/PowerShell;Java;Scala;SQL
+10148,Assembly;C;Java;Python;R;VBA
+10149,Java
+10150,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+10151,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+10152,HTML/CSS;SQL
+10153,HTML/CSS;JavaScript;PHP;SQL;Swift
+10154,HTML/CSS;Java;JavaScript;Scala;SQL
+10155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+10156,Java;JavaScript;SQL;TypeScript
+10157,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+10158,Bash/Shell/PowerShell;C++;JavaScript;Python
+10159,Bash/Shell/PowerShell;C#;Go;Ruby;SQL;TypeScript
+10160,Objective-C;Swift
+10161,HTML/CSS;JavaScript
+10162,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Rust
+10163,JavaScript;Objective-C;Swift
+10164,C;Go;HTML/CSS;JavaScript;Python
+10165,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+10166,C#;SQL
+10167,C#;Go;Java;JavaScript;SQL;TypeScript
+10168,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+10169,Bash/Shell/PowerShell;Go;PHP;Python;SQL
+10170,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10171,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+10172,HTML/CSS;JavaScript;PHP;SQL
+10173,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+10174,C#;JavaScript;TypeScript
+10175,C#;HTML/CSS;JavaScript;SQL
+10176,HTML/CSS;JavaScript;Python
+10177,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;PHP;Python;SQL
+10178,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+10179,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+10180,Bash/Shell/PowerShell;C#
+10181,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+10182,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+10183,C++;C#;HTML/CSS;JavaScript;TypeScript
+10184,C
+10185,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+10186,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Rust;SQL
+10187,Java;JavaScript;Kotlin;Swift;TypeScript
+10188,Java;Kotlin;Swift
+10189,C++;HTML/CSS;JavaScript;Objective-C;PHP;Swift;VBA
+10190,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+10191,C#;HTML/CSS;JavaScript;SQL
+10192,C
+10193,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+10194,Bash/Shell/PowerShell;Python;R;Other(s):
+10195,Go;HTML/CSS;Python;Rust
+10197,HTML/CSS;JavaScript;PHP
+10198,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;Scala;Other(s):
+10199,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+10200,HTML/CSS;JavaScript;TypeScript
+10201,Objective-C;Swift
+10202,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+10203,C#;JavaScript;TypeScript
+10204,C#;HTML/CSS;JavaScript;Objective-C;SQL
+10205,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+10206,C#;JavaScript;SQL
+10207,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+10208,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10209,HTML/CSS;JavaScript;PHP;SQL
+10210,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+10211,C#;HTML/CSS;JavaScript;Python
+10212,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;WebAssembly
+10213,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+10214,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+10215,C++;HTML/CSS;JavaScript;Python
+10216,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+10217,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+10218,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+10219,C++;C#;HTML/CSS;Java;SQL;Swift
+10220,HTML/CSS;JavaScript;SQL
+10221,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+10222,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10223,Go;JavaScript;TypeScript
+10224,HTML/CSS;Java;JavaScript;SQL
+10225,Java;Kotlin;TypeScript
+10226,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+10227,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+10228,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+10229,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+10230,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL
+10231,HTML/CSS;JavaScript;PHP;SQL
+10232,Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+10233,C++;Java;Python;SQL
+10234,HTML/CSS;Java;JavaScript;SQL
+10235,C;C++;Go;Rust
+10236,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;Java
+10237,C++;SQL
+10238,HTML/CSS;JavaScript;PHP;SQL
+10239,C++;Java
+10240,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+10241,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+10242,Bash/Shell/PowerShell;SQL;VBA;Other(s):
+10243,C#;HTML/CSS;JavaScript;Other(s):
+10244,HTML/CSS;JavaScript;TypeScript
+10245,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;SQL;Swift;TypeScript;VBA;WebAssembly
+10246,Go;Java;JavaScript;Python
+10247,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+10248,C#;HTML/CSS;JavaScript;TypeScript
+10249,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10250,Other(s):
+10251,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+10252,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+10253,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+10255,Assembly;C++;Go;HTML/CSS;JavaScript;Python;SQL
+10256,Bash/Shell/PowerShell;Python
+10257,C;JavaScript;Python;Rust
+10258,HTML/CSS;JavaScript
+10259,JavaScript
+10260,HTML/CSS;JavaScript;PHP;SQL
+10261,HTML/CSS;Java;Python;SQL
+10262,C#;HTML/CSS;Java;JavaScript;SQL
+10263,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+10264,Java;JavaScript;Kotlin
+10265,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+10266,Bash/Shell/PowerShell;C++;Python;Other(s):
+10267,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+10268,HTML/CSS;JavaScript
+10270,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;R;SQL;VBA
+10271,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+10272,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+10273,HTML/CSS;Java;JavaScript;PHP;SQL
+10274,Python
+10275,C#;VBA
+10276,Bash/Shell/PowerShell;C++;Java;JavaScript;PHP;SQL
+10277,HTML/CSS;JavaScript;PHP;Python;SQL
+10278,Go;Java;Ruby;Rust;Swift
+10280,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+10281,C#;SQL
+10282,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+10283,Bash/Shell/PowerShell;C++;Python;SQL
+10284,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10285,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+10286,Scala
+10287,Java
+10288,HTML/CSS;JavaScript
+10289,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+10290,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10291,C;C++;HTML/CSS
+10292,Java;SQL
+10293,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+10294,HTML/CSS
+10295,Java
+10296,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10297,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+10298,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+10299,Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;JavaScript;Python
+10300,C#;HTML/CSS;JavaScript;SQL
+10301,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+10302,C++;C#;Java
+10303,Go;HTML/CSS;JavaScript;SQL;TypeScript
+10304,C++;C#;Java;Python;R;SQL
+10305,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+10306,Python
+10307,HTML/CSS;JavaScript;TypeScript
+10308,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+10309,Bash/Shell/PowerShell;C;C++;C#;Python
+10310,Go;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+10311,HTML/CSS;JavaScript;PHP;Python
+10312,C++;Java;Python;TypeScript;Other(s):
+10313,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+10314,C#
+10315,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+10316,Python
+10317,C;C++;Go;VBA
+10318,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+10319,C#;HTML/CSS;JavaScript;SQL
+10320,C++
+10321,Bash/Shell/PowerShell;Java
+10322,Bash/Shell/PowerShell;C++
+10323,HTML/CSS;JavaScript
+10324,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+10325,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+10326,Bash/Shell/PowerShell;Python
+10327,C#;HTML/CSS;JavaScript;SQL
+10328,C++;Other(s):
+10329,HTML/CSS;Java;JavaScript;Python;SQL
+10330,C#;HTML/CSS;JavaScript;PHP;SQL
+10331,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+10332,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+10334,C
+10335,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+10336,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;PHP;Python;SQL;Other(s):
+10338,Bash/Shell/PowerShell;C;C++;C#
+10339,Java;SQL
+10340,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+10341,HTML/CSS;Java;JavaScript;SQL
+10343,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+10344,Assembly;C;Python
+10345,C#;HTML/CSS;JavaScript;Python;SQL
+10346,C;C++;C#;Java;JavaScript;Python;Rust
+10347,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+10348,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+10349,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10350,HTML/CSS;JavaScript
+10351,JavaScript;PHP
+10352,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python
+10353,HTML/CSS
+10354,Assembly;C;HTML/CSS;Java;SQL
+10355,C#;HTML/CSS;JavaScript;Objective-C;Ruby;SQL
+10356,Bash/Shell/PowerShell;C++;Python;R;SQL
+10357,C#;HTML/CSS;JavaScript;SQL
+10358,C++;C#
+10359,Bash/Shell/PowerShell;C#;F#;SQL
+10360,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;VBA
+10361,Java
+10362,Bash/Shell/PowerShell;C#;Elixir;Go;Python;Ruby;SQL;TypeScript;Other(s):
+10363,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+10364,Bash/Shell/PowerShell;C;C++;PHP;Python;SQL
+10365,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+10367,Bash/Shell/PowerShell;Go;Java;Python
+10368,Bash/Shell/PowerShell;Go;Java;Kotlin;Objective-C;SQL;Swift;Other(s):
+10369,HTML/CSS;JavaScript;PHP;SQL
+10370,HTML/CSS;JavaScript;Python;Other(s):
+10371,Java;JavaScript
+10372,Java;Python;Swift
+10373,SQL
+10374,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+10375,C;C++;HTML/CSS;Java;PHP;SQL
+10376,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+10377,Assembly;Bash/Shell/PowerShell;C;Python
+10378,C++;C#;SQL
+10379,HTML/CSS;JavaScript
+10380,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript
+10381,Java;JavaScript;SQL
+10382,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+10383,Java;Kotlin;Objective-C;Swift
+10384,C
+10385,Bash/Shell/PowerShell;Go;Java;Kotlin;Rust;Other(s):
+10386,HTML/CSS;JavaScript;PHP;SQL
+10387,C#;Java;Kotlin;TypeScript
+10388,Java;SQL
+10389,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+10391,C;C++;JavaScript;PHP
+10392,Ruby
+10393,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+10394,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+10395,HTML/CSS;JavaScript;PHP;Python;TypeScript
+10396,Objective-C;Ruby;Swift
+10397,C;Java;Python;Ruby;Swift;VBA
+10398,Bash/Shell/PowerShell;Go;Python
+10399,C#;Go;HTML/CSS;Java;JavaScript;SQL
+10400,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+10401,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+10402,Bash/Shell/PowerShell;Java;JavaScript;Python;Rust;SQL;WebAssembly
+10403,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+10404,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+10405,C#;HTML/CSS;JavaScript;SQL
+10406,Java;Python
+10407,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+10408,Java;JavaScript;SQL
+10409,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+10410,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10411,HTML/CSS;JavaScript;PHP;SQL
+10412,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+10413,C;Java;Python;SQL;Swift
+10414,Java
+10416,C#;HTML/CSS;JavaScript;SQL
+10417,Go;HTML/CSS;JavaScript
+10418,C#;HTML/CSS;SQL;Swift
+10419,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift;TypeScript
+10420,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10421,Assembly;C;C++;HTML/CSS;SQL
+10422,HTML/CSS;Java;JavaScript;SQL;Other(s):
+10423,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+10424,HTML/CSS;JavaScript;Python
+10425,HTML/CSS;JavaScript;Python
+10426,C#;HTML/CSS;Python;SQL;TypeScript
+10427,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10428,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala
+10429,Bash/Shell/PowerShell;C#
+10430,Dart;Java;Kotlin;Swift
+10431,HTML/CSS;JavaScript;TypeScript;Other(s):
+10432,C#;HTML/CSS;JavaScript;PHP;SQL
+10433,Java;Python
+10434,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10435,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+10436,Bash/Shell/PowerShell;Objective-C;Python;SQL;Swift
+10437,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+10438,HTML/CSS;Java;JavaScript;SQL;TypeScript
+10439,C;C#;Java;Python;R;VBA
+10440,Bash/Shell/PowerShell;C;C++;JavaScript;Python;TypeScript
+10441,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+10442,Java;Python
+10443,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+10444,HTML/CSS;JavaScript;Other(s):
+10445,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+10446,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+10447,HTML/CSS;Java;JavaScript
+10448,C#;HTML/CSS;SQL;VBA
+10449,HTML/CSS;Java;JavaScript;SQL;Other(s):
+10450,Python
+10451,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+10452,C;C#;HTML/CSS
+10453,HTML/CSS;Java;JavaScript;TypeScript
+10454,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+10455,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+10456,Assembly;C;C++;Python;SQL;Other(s):
+10457,Assembly;Bash/Shell/PowerShell;C;C#;Java
+10458,Bash/Shell/PowerShell;Python
+10459,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Other(s):
+10460,C#;HTML/CSS;JavaScript;SQL
+10461,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+10462,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Swift;Other(s):
+10463,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+10464,HTML/CSS;SQL
+10465,HTML/CSS;Java;JavaScript;TypeScript
+10466,JavaScript;Python
+10467,HTML/CSS;Java;JavaScript;PHP;SQL
+10468,JavaScript;SQL
+10469,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10470,Bash/Shell/PowerShell;Go;HTML/CSS;Java;SQL
+10471,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;Other(s):
+10472,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10473,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+10474,C;HTML/CSS;Java;JavaScript;PHP;Python
+10475,HTML/CSS;JavaScript;PHP;Python;TypeScript
+10476,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+10477,Bash/Shell/PowerShell;C;C++;C#
+10478,C#;HTML/CSS;JavaScript;SQL
+10479,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+10480,C#;HTML/CSS;JavaScript;Ruby;SQL
+10481,Java
+10482,HTML/CSS;Java;JavaScript;R;SQL
+10483,Bash/Shell/PowerShell;JavaScript;PHP;TypeScript
+10484,C;C#;PHP;Python;Swift
+10485,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+10486,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+10487,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+10488,C#
+10489,Objective-C;Swift
+10490,Bash/Shell/PowerShell;C;C#;PHP;SQL
+10491,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+10492,Assembly;C
+10493,HTML/CSS;JavaScript;PHP;Python;Ruby
+10494,Python;SQL
+10495,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+10496,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+10497,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+10498,Python
+10499,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10500,C#;HTML/CSS;JavaScript;PHP;SQL
+10501,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;SQL;Other(s):
+10502,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;TypeScript
+10503,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+10504,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Python;SQL
+10505,C#;HTML/CSS;JavaScript;Other(s):
+10506,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Objective-C;Python;Swift
+10507,C++;Python
+10508,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+10509,C#;F#;Java;JavaScript;Kotlin;SQL;TypeScript
+10510,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+10511,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10512,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;JavaScript;Python;SQL;Swift;Other(s):
+10513,Assembly;C++;HTML/CSS;JavaScript;PHP;Python
+10514,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+10515,JavaScript;PHP;SQL
+10516,HTML/CSS;JavaScript;TypeScript
+10517,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+10518,C#;HTML/CSS;PHP;SQL
+10519,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python
+10520,HTML/CSS;JavaScript;PHP;Python;SQL
+10521,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;Other(s):
+10522,Bash/Shell/PowerShell;Python
+10523,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+10524,HTML/CSS;JavaScript;PHP;SQL
+10525,Bash/Shell/PowerShell;PHP;Python;SQL
+10526,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python
+10527,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+10528,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+10529,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+10530,HTML/CSS;JavaScript;Kotlin
+10531,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10532,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+10533,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+10534,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+10535,Swift
+10536,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10537,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+10538,HTML/CSS;JavaScript;PHP;Ruby;SQL
+10539,Bash/Shell/PowerShell;Go;Java;Python;SQL
+10540,HTML/CSS;Java;JavaScript;Kotlin;Python
+10541,Java;Kotlin;Python
+10542,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10543,HTML/CSS;JavaScript;PHP
+10544,Assembly;Bash/Shell/PowerShell;C;C++;Dart;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript
+10545,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+10546,SQL;VBA
+10547,JavaScript
+10548,C#;HTML/CSS;JavaScript;TypeScript
+10549,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL;VBA
+10550,Dart;HTML/CSS;JavaScript;PHP;TypeScript
+10551,C#;Java;JavaScript;PHP;SQL;TypeScript
+10552,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+10553,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+10554,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+10555,Java;Python
+10556,C++;JavaScript;Python
+10557,Other(s):
+10558,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;R;SQL
+10559,Bash/Shell/PowerShell;C++;Java;Python;SQL;TypeScript
+10560,C;C++;Java;PHP;Python;SQL
+10561,Bash/Shell/PowerShell;C;C++;Python;SQL;Other(s):
+10562,Bash/Shell/PowerShell;C#;F#;SQL
+10563,C#;HTML/CSS;JavaScript
+10564,Bash/Shell/PowerShell;C++;Python;Other(s):
+10565,C#;HTML/CSS;JavaScript;SQL
+10566,Bash/Shell/PowerShell;SQL
+10567,C++;C#;Java;JavaScript
+10568,HTML/CSS;Java
+10569,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+10570,C#;HTML/CSS;JavaScript;PHP;SQL
+10571,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10572,HTML/CSS;Java;JavaScript;Python;SQL
+10573,C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;TypeScript
+10574,C;C++;C#;HTML/CSS;Java;Rust;SQL
+10575,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;TypeScript
+10576,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;WebAssembly;Other(s):
+10577,C#;HTML/CSS;Java;JavaScript;PHP
+10578,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+10579,Dart;Java;Kotlin
+10580,HTML/CSS;JavaScript;SQL
+10581,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+10582,HTML/CSS;Java;JavaScript;PHP;SQL
+10583,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+10584,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+10585,HTML/CSS;Python
+10586,HTML/CSS;SQL;Other(s):
+10587,HTML/CSS;Java;Ruby;SQL
+10588,HTML/CSS;Java;Python;SQL
+10589,C;Python
+10590,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+10591,C#;HTML/CSS;JavaScript;SQL
+10592,C#;HTML/CSS;SQL;TypeScript
+10593,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+10594,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+10595,HTML/CSS;PHP
+10596,C++;C#;SQL
+10597,HTML/CSS;JavaScript;PHP
+10599,C;C++;Go;Java;Kotlin
+10600,C#;HTML/CSS;JavaScript;SQL
+10601,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+10602,Other(s):
+10603,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10604,C++;HTML/CSS;JavaScript;PHP;SQL
+10605,HTML/CSS;PHP
+10606,Bash/Shell/PowerShell;Elixir;Go;Python;Rust;Other(s):
+10607,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10608,Java;JavaScript;Kotlin
+10609,HTML/CSS;JavaScript;PHP;SQL
+10610,JavaScript;PHP
+10611,JavaScript;Python;TypeScript
+10612,HTML/CSS;JavaScript;Rust;SQL;TypeScript
+10613,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+10614,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10615,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10616,HTML/CSS;JavaScript;SQL
+10617,Bash/Shell/PowerShell;C#;Go;Python;Other(s):
+10618,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+10619,HTML/CSS;Java;JavaScript;SQL
+10620,C++;HTML/CSS;JavaScript;PHP;SQL
+10621,HTML/CSS;Java;JavaScript;R;SQL
+10622,C;C++;Java;Python;Other(s):
+10623,Bash/Shell/PowerShell;C#;TypeScript
+10624,Java;Kotlin;Rust;Other(s):
+10625,Bash/Shell/PowerShell;C++;F#;Go;Java
+10626,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+10627,C++;Java;JavaScript
+10628,Bash/Shell/PowerShell
+10629,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+10630,HTML/CSS;JavaScript;Python
+10631,Clojure;Dart;Kotlin
+10632,C#;HTML/CSS;Java;JavaScript;PHP;Python
+10633,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+10634,HTML/CSS;Java;JavaScript;PHP
+10635,C#;VBA
+10636,C#;Java;JavaScript;SQL;Swift
+10637,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+10638,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python
+10639,HTML/CSS;PHP;SQL
+10640,HTML/CSS;Java;JavaScript;PHP;SQL
+10641,C;C++;HTML/CSS;Java;PHP;Python;SQL
+10642,C#;JavaScript;SQL;TypeScript
+10643,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+10644,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+10645,Java;SQL
+10646,Bash/Shell/PowerShell;Python;R;SQL
+10647,Bash/Shell/PowerShell;JavaScript;Scala
+10648,C#;HTML/CSS;Java;PHP;Python
+10649,C#;SQL
+10650,C#;HTML/CSS;Java;JavaScript;Python
+10651,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+10652,Bash/Shell/PowerShell;Clojure;Java;JavaScript;PHP;Python;Scala;SQL;VBA
+10653,Bash/Shell/PowerShell;C++;Java;Python;SQL
+10654,C#;HTML/CSS;JavaScript;SQL;Other(s):
+10655,C++;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+10656,Assembly;Bash/Shell/PowerShell;C#;Java;PHP;Python;Scala
+10657,Bash/Shell/PowerShell;Java;SQL
+10658,HTML/CSS;Java;JavaScript;SQL
+10659,Clojure;HTML/CSS;JavaScript;Kotlin;PHP;Python;Rust;Swift;WebAssembly;Other(s):
+10660,C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;VBA
+10661,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+10663,HTML/CSS;Java;JavaScript;Python
+10664,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+10665,C#;HTML/CSS;JavaScript;TypeScript
+10666,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+10667,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+10668,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10669,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10670,C#;Java;SQL;Other(s):
+10671,Bash/Shell/PowerShell;Java;Python;SQL
+10672,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+10673,C;C++;C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+10674,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10675,HTML/CSS;JavaScript;TypeScript
+10676,C#;JavaScript;PHP;SQL
+10677,C++;Python
+10678,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+10679,C#;HTML/CSS;JavaScript;SQL
+10680,Bash/Shell/PowerShell;C++;Python
+10681,JavaScript;Kotlin;Python;Ruby;Swift
+10682,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala;SQL
+10683,Assembly;C;C++
+10684,C++;Other(s):
+10685,C#;HTML/CSS;Python
+10686,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+10687,C#;HTML/CSS;TypeScript
+10688,C#;HTML/CSS;JavaScript;PHP;TypeScript
+10689,HTML/CSS;JavaScript;PHP;TypeScript
+10690,Java;Kotlin;PHP;Swift
+10691,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+10692,Bash/Shell/PowerShell;Dart;JavaScript;PHP;Python;TypeScript
+10693,C++;Java
+10694,C#;HTML/CSS;TypeScript
+10695,Assembly;C;SQL;Other(s):
+10696,C#
+10697,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL;VBA;Other(s):
+10698,Java;Python;R
+10699,HTML/CSS;JavaScript;TypeScript
+10700,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+10701,Python;Rust;Other(s):
+10703,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+10704,Java;JavaScript;Python;TypeScript
+10705,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+10706,Bash/Shell/PowerShell;C++;Java;Python
+10707,Bash/Shell/PowerShell;C;C++;C#;JavaScript;WebAssembly;Other(s):
+10708,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+10709,C#;JavaScript;SQL;VBA
+10710,HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+10711,Go;HTML/CSS;JavaScript;PHP
+10712,Bash/Shell/PowerShell;C#;Java;Scala;SQL
+10713,HTML/CSS;JavaScript;PHP;TypeScript
+10714,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+10715,Bash/Shell/PowerShell;C;PHP;Python;SQL
+10716,Bash/Shell/PowerShell;C;Ruby;Rust
+10717,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+10718,C#;JavaScript;SQL;TypeScript
+10719,Go;HTML/CSS;JavaScript;PHP;TypeScript
+10720,Swift
+10721,Java;Kotlin
+10722,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Python
+10723,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+10724,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+10725,C#;HTML/CSS;PHP;SQL
+10726,Assembly;C;C++;HTML/CSS;Java;Python;SQL;Other(s):
+10727,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;TypeScript
+10728,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+10729,HTML/CSS;JavaScript;Python;R;SQL;VBA
+10730,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript;VBA
+10731,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+10732,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+10733,C#;JavaScript;Python
+10734,Bash/Shell/PowerShell;C;Java;Python;SQL
+10735,Java;JavaScript;Objective-C;PHP;Python;Swift
+10736,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10737,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+10738,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+10739,HTML/CSS;JavaScript;SQL;TypeScript
+10740,C;C++;HTML/CSS;JavaScript
+10741,C#;JavaScript;WebAssembly
+10742,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;Other(s):
+10743,C;C++;C#;Go;HTML/CSS;Python;TypeScript
+10744,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+10745,Bash/Shell/PowerShell;Python;Ruby
+10746,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10747,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10748,Bash/Shell/PowerShell;C;C#;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+10749,Python
+10750,C++;C#;SQL
+10751,Java
+10752,Assembly;C#;HTML/CSS;JavaScript;SQL
+10753,HTML/CSS;JavaScript;PHP;Python;SQL
+10754,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+10755,C#;HTML/CSS;JavaScript;SQL
+10756,C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+10757,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+10758,HTML/CSS;JavaScript
+10759,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+10760,C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+10761,Bash/Shell/PowerShell;C;C++;Python
+10762,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+10763,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+10764,C#;HTML/CSS;SQL
+10765,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python
+10766,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby
+10767,C;HTML/CSS;JavaScript
+10768,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+10769,Python;VBA
+10770,C;C++;HTML/CSS;Python
+10771,C#;JavaScript;TypeScript
+10772,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+10773,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Swift;TypeScript
+10774,Java
+10775,C#;Java;Kotlin;SQL
+10776,C++;JavaScript;Python;SQL
+10777,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Other(s):
+10778,C#
+10779,C;C++;HTML/CSS;JavaScript
+10780,Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+10781,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+10782,Assembly;C;C++;C#;Java;Objective-C
+10783,Bash/Shell/PowerShell
+10784,Bash/Shell/PowerShell;Python;SQL;VBA;Other(s):
+10785,Java;Kotlin
+10786,HTML/CSS;JavaScript;Python;SQL
+10787,Java;Kotlin;Python
+10788,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;Swift;WebAssembly
+10789,C++;C#;Go;HTML/CSS;JavaScript;Python;SQL
+10790,HTML/CSS;JavaScript
+10791,HTML/CSS;JavaScript;PHP;SQL
+10792,C++;PHP;Python
+10793,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+10794,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+10795,Java;Python;R;Other(s):
+10796,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Swift
+10797,HTML/CSS;JavaScript
+10798,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Objective-C;Python;Swift
+10799,Assembly;HTML/CSS;JavaScript;PHP;SQL
+10800,C#;SQL
+10801,C;C++;Python
+10802,C#;HTML/CSS;JavaScript;SQL
+10803,C#;Elixir;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+10804,Python
+10805,Assembly;HTML/CSS;Java
+10806,C;C++;HTML/CSS;Python
+10807,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+10808,C;C++
+10809,HTML/CSS;Java;JavaScript;PHP;TypeScript
+10810,C#;Java;SQL;VBA
+10811,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+10812,Bash/Shell/PowerShell;Go;Java;JavaScript;TypeScript
+10813,Java;Kotlin
+10814,C;C++;Java;Swift
+10815,C;C++;C#;Python
+10816,C;C++;HTML/CSS;JavaScript;Python
+10817,C#;HTML/CSS;JavaScript;Python;SQL;Swift
+10818,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+10819,C++
+10820,C;C++;HTML/CSS;Java;JavaScript;Other(s):
+10821,Bash/Shell/PowerShell;C++;Java;SQL
+10822,C;C++;HTML/CSS;Python;R
+10823,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10824,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10825,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+10826,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+10827,JavaScript;PHP
+10828,C++;Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+10829,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+10830,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+10831,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+10832,C#;HTML/CSS;SQL;TypeScript;VBA;Other(s):
+10833,HTML/CSS;JavaScript;PHP;Python;SQL
+10834,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL
+10835,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL;TypeScript
+10836,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+10837,HTML/CSS;Java;Kotlin;Python;SQL
+10838,C;Java;Swift
+10839,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;PHP;Python;Rust;Other(s):
+10840,Bash/Shell/PowerShell;C++;Java;Python
+10841,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+10842,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+10843,C++;C#;Java;JavaScript;Python;VBA
+10844,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+10845,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+10846,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP
+10847,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+10848,PHP;TypeScript
+10849,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+10850,C;C++;JavaScript;Python
+10851,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL
+10852,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+10853,C#;TypeScript
+10854,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+10855,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+10856,HTML/CSS;JavaScript;PHP
+10857,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+10858,Python
+10859,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+10860,HTML/CSS;Java;JavaScript;Kotlin;Python
+10861,Java;SQL
+10862,C;HTML/CSS;JavaScript;PHP
+10863,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+10864,C#;Rust;SQL;TypeScript
+10865,Java
+10867,Java;SQL
+10868,C++;HTML/CSS
+10869,C#;HTML/CSS;JavaScript;SQL
+10870,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+10871,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+10873,C#;Java;PHP;SQL
+10874,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+10875,Java;Python
+10876,HTML/CSS;JavaScript;PHP;SQL
+10877,Objective-C;Python;Swift
+10878,C++;C#;F#;Python;R;SQL
+10879,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+10880,C#;HTML/CSS;JavaScript;PHP;SQL
+10881,C#;HTML/CSS;JavaScript;Python;R;SQL
+10882,Java;JavaScript;PHP
+10883,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+10884,Bash/Shell/PowerShell;Dart;JavaScript;PHP;SQL
+10885,C#;SQL
+10886,Bash/Shell/PowerShell;C;C++;Python;SQL
+10887,JavaScript;PHP
+10888,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10889,Bash/Shell/PowerShell;HTML/CSS;PHP
+10890,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+10891,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+10892,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+10893,C#;Go;Scala
+10894,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+10895,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+10896,HTML/CSS;JavaScript;PHP;Python;TypeScript
+10897,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+10898,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+10899,JavaScript;Scala
+10900,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+10901,Assembly;Bash/Shell/PowerShell;Python
+10902,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+10903,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript
+10904,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+10905,HTML/CSS;JavaScript;Kotlin;SQL;Swift;TypeScript
+10906,Java;TypeScript
+10907,HTML/CSS;JavaScript;PHP;SQL
+10908,Java;Objective-C;Swift
+10909,HTML/CSS;Java;JavaScript
+10910,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+10911,C#;HTML/CSS;JavaScript;SQL
+10912,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+10913,HTML/CSS;JavaScript;PHP;SQL;Swift
+10914,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+10915,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+10916,Java;JavaScript;Kotlin;SQL;TypeScript
+10917,JavaScript;PHP;Python
+10918,C;Go;Java;JavaScript;PHP;Ruby;SQL
+10919,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+10920,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Objective-C;PHP;Python;SQL;Swift;VBA
+10921,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+10922,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL
+10923,C#
+10924,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+10925,C#;F#;JavaScript;Kotlin;Python;TypeScript
+10926,Java;Objective-C;R
+10927,Erlang;Java;JavaScript;Objective-C;PHP;Ruby;SQL
+10928,C;C++;Dart;Go;JavaScript;Python
+10929,Bash/Shell/PowerShell;C
+10930,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+10931,HTML/CSS;JavaScript
+10932,C++;Python;R
+10933,HTML/CSS;Java;JavaScript;Python
+10934,C#;HTML/CSS;JavaScript
+10935,C#;Java;JavaScript;PHP;SQL;TypeScript
+10936,C
+10937,JavaScript;PHP;SQL
+10938,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+10939,Bash/Shell/PowerShell;C++;Java;Python
+10940,JavaScript;Python;TypeScript
+10941,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+10942,Python;R
+10943,C++;Go;JavaScript
+10944,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+10945,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+10946,Bash/Shell/PowerShell;Go;HTML/CSS;Python;Rust;Scala;SQL;Other(s):
+10947,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;SQL;Swift;TypeScript;Other(s):
+10948,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+10949,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;WebAssembly
+10950,C#;SQL
+10951,Bash/Shell/PowerShell;Java
+10952,Java;SQL
+10953,C;C++;Java;Kotlin
+10954,Bash/Shell/PowerShell;Java;JavaScript;R;Scala;TypeScript
+10955,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+10956,C++;HTML/CSS;JavaScript;SQL;TypeScript
+10957,C#;HTML/CSS;JavaScript;TypeScript
+10959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+10960,C++;C#;HTML/CSS;Java;JavaScript;PHP
+10961,C#;HTML/CSS;JavaScript;TypeScript
+10962,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+10963,Java;Kotlin;Python
+10964,Go;HTML/CSS;Java;PHP;Scala;TypeScript
+10965,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+10966,C;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+10967,C#;HTML/CSS;JavaScript;TypeScript
+10968,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+10969,C#;HTML/CSS;JavaScript;SQL
+10970,Bash/Shell/PowerShell;Python;WebAssembly
+10971,HTML/CSS;JavaScript;TypeScript
+10972,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+10973,C#;HTML/CSS;JavaScript;SQL
+10974,Assembly;Bash/Shell/PowerShell;C;C++;Python
+10975,Assembly;C;C++;Java;Objective-C
+10976,Python;R;SQL
+10977,C#;HTML/CSS;Other(s):
+10978,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;VBA;Other(s):
+10979,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+10980,Go;HTML/CSS;JavaScript;PHP;SQL;Swift
+10981,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+10982,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;VBA
+10983,HTML/CSS;JavaScript;Python
+10984,Bash/Shell/PowerShell;C#;SQL
+10985,Bash/Shell/PowerShell;C#;JavaScript;Python;Rust;SQL;TypeScript
+10986,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+10987,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+10988,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript;Other(s):
+10989,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+10990,Go;PHP
+10991,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Python
+10992,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+10993,HTML/CSS;Java;JavaScript;SQL;TypeScript
+10994,C#;HTML/CSS;JavaScript;SQL;TypeScript
+10995,C;Python;SQL
+10996,HTML/CSS;JavaScript;PHP;SQL
+10997,Dart;HTML/CSS;JavaScript;PHP
+10998,Ruby
+10999,Assembly;HTML/CSS;Python
+11000,HTML/CSS;JavaScript
+11001,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+11002,HTML/CSS;JavaScript;Python
+11003,Go;HTML/CSS;JavaScript;SQL
+11004,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+11005,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+11006,HTML/CSS;Java;JavaScript;Other(s):
+11007,Assembly;C;C++;C#;Python
+11008,C#
+11009,JavaScript;Python
+11010,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+11011,PHP;SQL
+11012,C#;HTML/CSS;TypeScript;Other(s):
+11013,HTML/CSS;Java;JavaScript;PHP;SQL
+11014,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+11015,C;C++;C#;Java;JavaScript;SQL;TypeScript
+11016,Java
+11017,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+11018,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+11019,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+11020,HTML/CSS;Java;JavaScript;SQL;TypeScript
+11021,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+11022,HTML/CSS;JavaScript;PHP
+11023,Python
+11024,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+11025,C#;HTML/CSS;JavaScript;SQL
+11026,C;Go;JavaScript;Ruby;Rust;SQL
+11027,Bash/Shell/PowerShell;C;Python;Rust
+11028,C#
+11029,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+11030,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+11031,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL
+11032,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+11033,Go;HTML/CSS;JavaScript;Python;TypeScript
+11034,HTML/CSS;JavaScript
+11035,JavaScript
+11036,C;C++;HTML/CSS
+11037,Bash/Shell/PowerShell;C#;JavaScript;SQL
+11038,Go;SQL
+11039,HTML/CSS;JavaScript;PHP;VBA
+11040,Python;R;Other(s):
+11041,C#;HTML/CSS;JavaScript
+11042,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11043,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+11044,HTML/CSS;JavaScript;Ruby
+11045,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+11046,C;C++;C#;Swift
+11047,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Other(s):
+11048,C;C++;HTML/CSS;JavaScript;PHP;SQL
+11049,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+11050,C;C#;HTML/CSS;Java;JavaScript;PHP
+11051,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;PHP;Python;Scala
+11052,C;C++;Go;HTML/CSS;JavaScript;Python;Rust
+11053,Bash/Shell/PowerShell;C++;Python
+11054,C#;HTML/CSS;JavaScript;PHP;SQL
+11055,Bash/Shell/PowerShell;C;C++;Java;SQL
+11056,Bash/Shell/PowerShell;Python;R
+11057,HTML/CSS;JavaScript;PHP;Python;SQL;Swift;VBA
+11058,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11060,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+11061,HTML/CSS;TypeScript
+11062,C;Java;Python;SQL
+11063,HTML/CSS;JavaScript;Python;SQL
+11064,Python
+11065,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+11066,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+11067,Bash/Shell/PowerShell;HTML/CSS;Python
+11068,HTML/CSS;JavaScript;Ruby
+11069,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11070,C#;HTML/CSS
+11071,C#;HTML/CSS;JavaScript;Python;SQL;Swift
+11072,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+11073,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+11074,HTML/CSS;JavaScript;TypeScript
+11075,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+11076,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby
+11077,HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+11078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+11079,Bash/Shell/PowerShell;Clojure;Java;Python;Scala;SQL
+11080,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+11081,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11082,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+11083,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+11084,C#;HTML/CSS;JavaScript;SQL
+11085,Assembly;Python;SQL;Swift
+11086,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+11087,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;VBA
+11088,C#;HTML/CSS;JavaScript;SQL
+11089,C++;Java;JavaScript;PHP;SQL
+11090,Bash/Shell/PowerShell;Java;Python;SQL
+11091,Dart;Java;Kotlin;Python;TypeScript
+11092,Bash/Shell/PowerShell;C
+11093,Assembly;C++;Elixir;HTML/CSS;Java
+11094,C;C#;HTML/CSS;Java
+11095,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;Ruby
+11097,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+11098,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+11099,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+11100,HTML/CSS;JavaScript;Ruby
+11101,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11102,HTML/CSS;JavaScript;Ruby;SQL
+11103,Java;JavaScript
+11104,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11105,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Swift;TypeScript
+11106,C#;HTML/CSS;JavaScript;SQL
+11107,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+11108,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+11109,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Scala;SQL;Other(s):
+11110,Go;HTML/CSS;JavaScript;Kotlin
+11111,C#;HTML/CSS;SQL;TypeScript
+11112,JavaScript;Python;Rust;Other(s):
+11113,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11114,HTML/CSS;Java;SQL
+11115,Bash/Shell/PowerShell;Python;R
+11116,HTML/CSS;JavaScript;PHP
+11117,Bash/Shell/PowerShell;C++;C#;Python;Other(s):
+11118,Python;R;SQL
+11119,Java;JavaScript;PHP;SQL;TypeScript
+11120,C#;SQL
+11121,HTML/CSS;Java;SQL
+11122,C#;HTML/CSS;JavaScript
+11123,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+11124,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+11125,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL;Other(s):
+11126,C#;HTML/CSS;JavaScript;SQL
+11127,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+11128,HTML/CSS;JavaScript;PHP;SQL
+11129,JavaScript;Python;SQL
+11130,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+11131,C#;HTML/CSS;JavaScript;Swift
+11132,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL
+11133,Bash/Shell/PowerShell;C#
+11134,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+11135,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+11136,Java;SQL
+11137,C++;HTML/CSS;Java;JavaScript;Python
+11138,HTML/CSS;JavaScript;PHP;SQL
+11139,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+11140,Bash/Shell/PowerShell;C#;SQL
+11141,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL
+11142,Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+11143,Python;R;SQL
+11144,HTML/CSS;JavaScript;PHP;SQL
+11145,Java
+11146,C++;JavaScript;Python;SQL
+11148,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+11149,C;C++;Python
+11150,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11151,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;Other(s):
+11152,C#;HTML/CSS;JavaScript
+11153,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python;SQL
+11154,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;VBA
+11155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+11156,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+11157,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+11158,C;C++;Go;Java;JavaScript;Python
+11159,C;C++;C#;Rust;Swift
+11160,HTML/CSS;JavaScript;PHP;SQL
+11161,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+11162,HTML/CSS;JavaScript;PHP;TypeScript
+11163,Bash/Shell/PowerShell;Go;Java;Rust
+11164,Bash/Shell/PowerShell;Go;Java;Python;Scala
+11165,HTML/CSS;Python;SQL
+11166,JavaScript;Python
+11167,HTML/CSS;JavaScript;PHP;SQL
+11168,HTML/CSS;Java;JavaScript;PHP;SQL
+11169,HTML/CSS;Java;JavaScript;SQL;Other(s):
+11170,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+11171,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+11172,HTML/CSS;JavaScript;PHP;SQL
+11173,JavaScript;TypeScript
+11174,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+11175,Assembly;SQL
+11176,HTML/CSS;Java;JavaScript;TypeScript
+11177,Bash/Shell/PowerShell;Dart;Java;Kotlin;PHP;Python;SQL
+11178,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+11179,C#;Go;Java;JavaScript;SQL
+11180,Bash/Shell/PowerShell;JavaScript;Python
+11181,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+11182,C#;HTML/CSS;JavaScript;SQL
+11183,Bash/Shell/PowerShell;Objective-C;Swift
+11185,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+11186,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+11187,HTML/CSS;JavaScript;Python;Rust
+11188,Go;Java;Kotlin;Swift
+11189,C;C++;JavaScript;Swift
+11191,C;C++;Python
+11192,C#;HTML/CSS;Java;JavaScript;PHP;Python
+11193,C++;Go;HTML/CSS;Python;SQL
+11194,Assembly;Bash/Shell/PowerShell;C;Other(s):
+11195,HTML/CSS;Java;JavaScript;PHP;SQL
+11196,C#;Dart
+11197,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11198,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+11199,C#;Java;TypeScript
+11200,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+11201,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+11202,HTML/CSS;JavaScript;Python;VBA
+11203,HTML/CSS;Java;JavaScript;SQL;TypeScript
+11204,HTML/CSS;Java;JavaScript;SQL
+11205,C++;C#;SQL
+11206,Java;TypeScript
+11207,Bash/Shell/PowerShell;Python;Scala;TypeScript;Other(s):
+11208,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+11209,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;Rust;TypeScript;WebAssembly
+11210,Bash/Shell/PowerShell;Python;R
+11211,Java;Python;Scala;SQL
+11212,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11213,C#;HTML/CSS;Java;JavaScript;Python;SQL
+11214,C#;Go;Java;JavaScript;TypeScript
+11215,HTML/CSS;JavaScript;SQL;TypeScript
+11216,C#;Other(s):
+11217,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;Swift;TypeScript;VBA;WebAssembly
+11218,Objective-C;Ruby;Swift
+11219,C;C++;HTML/CSS;JavaScript;Rust;SQL
+11220,C;C++;Java
+11221,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+11222,Python
+11223,C;C++;PHP;Python;SQL
+11224,Java;VBA
+11225,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11226,Bash/Shell/PowerShell;C#;Rust
+11227,C++;HTML/CSS;JavaScript;Python;Swift
+11228,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift;VBA
+11229,C++
+11230,Java;SQL
+11231,C++;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+11232,Clojure;Dart;Elixir;Ruby
+11233,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+11234,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11235,HTML/CSS;Python
+11236,C;C++;Python
+11237,HTML/CSS;JavaScript;PHP
+11238,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+11239,HTML/CSS;Java;JavaScript;SQL
+11240,Python
+11241,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+11242,C#;Other(s):
+11243,Java;Kotlin;Python;SQL
+11244,HTML/CSS;JavaScript;Ruby;SQL
+11245,Bash/Shell/PowerShell;Kotlin;Python;Ruby
+11246,HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+11247,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+11248,JavaScript
+11249,C;C++;HTML/CSS;JavaScript;PHP;SQL
+11250,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11251,C;HTML/CSS;JavaScript;Python;Ruby;SQL
+11252,HTML/CSS;JavaScript;PHP;Scala;SQL
+11253,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;WebAssembly
+11254,Bash/Shell/PowerShell;Java;Kotlin;PHP;SQL;Swift
+11255,HTML/CSS;JavaScript;PHP;SQL
+11256,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL;Other(s):
+11257,Java;JavaScript;SQL;TypeScript
+11258,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+11259,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+11260,Swift
+11261,Clojure;JavaScript;Python
+11262,C;C++;HTML/CSS;JavaScript;Python
+11263,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+11264,Go;Java;Ruby;SQL
+11265,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+11266,HTML/CSS;JavaScript;PHP
+11267,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+11268,Bash/Shell/PowerShell;C;C++;Dart;Go;Java;JavaScript;Kotlin;Python;Swift
+11269,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;Other(s):
+11270,C#;JavaScript;SQL
+11271,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+11272,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11273,Swift
+11275,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11276,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+11277,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11278,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11279,C++;Java;Python;R;SQL
+11280,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+11281,HTML/CSS;JavaScript;Python;R;SQL
+11282,HTML/CSS;JavaScript;PHP;Python
+11283,C#
+11284,HTML/CSS;Java
+11285,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+11286,Bash/Shell/PowerShell;Java;JavaScript
+11287,Java;JavaScript;Kotlin
+11288,C++;JavaScript;R;SQL
+11289,Java
+11290,Go;JavaScript;Ruby;SQL
+11291,C#;Go;HTML/CSS;JavaScript;Python;TypeScript
+11292,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+11294,Bash/Shell/PowerShell;C++;C#;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;Rust;Scala;SQL;TypeScript;VBA
+11295,C#;JavaScript;SQL;Swift
+11296,Python
+11297,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+11298,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL;VBA
+11299,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+11300,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+11301,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;SQL
+11302,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Python;Other(s):
+11303,C#;HTML/CSS;Java;JavaScript;Other(s):
+11304,SQL
+11305,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+11306,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+11307,C#;Elixir;HTML/CSS;JavaScript;SQL
+11308,Java
+11309,C#;Java;Swift
+11310,HTML/CSS;Java;JavaScript;Other(s):
+11311,C;Java
+11312,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+11313,Assembly;Bash/Shell/PowerShell;C;C++;VBA
+11314,C#;HTML/CSS;JavaScript;SQL
+11315,C++;C#;Java;SQL
+11316,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11317,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+11318,C#;HTML/CSS;JavaScript
+11319,Java;Python;SQL;Swift
+11320,HTML/CSS;JavaScript;TypeScript
+11321,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+11323,C#;Java;Kotlin;Python;SQL;TypeScript
+11324,Bash/Shell/PowerShell;Python
+11325,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11326,C++;Python;SQL
+11327,C++;C#
+11328,C;C++;HTML/CSS;Java;JavaScript
+11329,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11330,C#;HTML/CSS;JavaScript;SQL
+11331,Bash/Shell/PowerShell;JavaScript;Rust;Other(s):
+11333,HTML/CSS;JavaScript;Python;SQL;Other(s):
+11334,JavaScript;Python;TypeScript
+11335,Java
+11336,C;Java
+11337,HTML/CSS;Java;JavaScript;Python;TypeScript
+11338,C#;JavaScript
+11339,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+11340,HTML/CSS;JavaScript;Python;Ruby;SQL
+11341,C++
+11342,C++;C#;Python
+11343,HTML/CSS;Python;R;SQL;VBA
+11344,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;Python;Ruby;VBA;Other(s):
+11345,C++;C#;Java;JavaScript;Kotlin
+11346,C++;Java;Python
+11347,C;HTML/CSS;Java;JavaScript;PHP;Python;Swift
+11348,HTML/CSS;PHP
+11349,HTML/CSS;JavaScript;Python;SQL
+11350,Bash/Shell/PowerShell;C++;C#;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+11351,Java
+11352,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala
+11353,C#;HTML/CSS;JavaScript;Python;SQL
+11354,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+11355,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+11356,Bash/Shell/PowerShell;C++;C#;JavaScript
+11357,F#;Python;R;SQL
+11358,Bash/Shell/PowerShell;Go;JavaScript;SQL
+11359,C;C++;JavaScript;Python;Other(s):
+11360,C#;JavaScript;SQL
+11361,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+11362,C#;HTML/CSS;JavaScript;TypeScript
+11363,C;C++;JavaScript;Python;SQL
+11364,Java
+11365,Assembly;Bash/Shell/PowerShell;C;C#;Clojure;Dart;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript
+11366,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;TypeScript
+11367,HTML/CSS;JavaScript;Ruby
+11369,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11370,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+11371,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+11372,C++;Java;Python;SQL
+11373,Bash/Shell/PowerShell;Go;Java;Kotlin;Ruby;SQL
+11374,HTML/CSS;Python;R;SQL
+11375,C;C++;C#;Python
+11376,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+11377,HTML/CSS;Java;JavaScript;SQL;Other(s):
+11378,C;C++;HTML/CSS;Java;JavaScript;SQL
+11379,C#;Java;JavaScript;SQL
+11380,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+11381,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+11382,Bash/Shell/PowerShell;Go;Java;Python;Scala;SQL
+11383,C;C++;PHP
+11384,C#;SQL
+11385,C#;HTML/CSS;JavaScript
+11386,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+11387,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+11388,Bash/Shell/PowerShell;C++;JavaScript;Kotlin;Objective-C;Other(s):
+11389,Java;Kotlin;Other(s):
+11390,Go;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+11391,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;Other(s):
+11392,Python;R
+11394,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+11395,PHP;SQL;Other(s):
+11396,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+11397,JavaScript;SQL;Other(s):
+11398,Bash/Shell/PowerShell;C;C++;C#;SQL
+11399,HTML/CSS;Python
+11400,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+11401,C#;HTML/CSS;TypeScript
+11402,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+11403,HTML/CSS;JavaScript;SQL;TypeScript
+11404,C#;Java;JavaScript;Python
+11405,Java
+11406,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+11407,C;C++;Clojure;Elixir;Java;JavaScript;PHP;Ruby;Swift;Other(s):
+11408,Java;JavaScript;Kotlin
+11409,HTML/CSS;Java;JavaScript;TypeScript;VBA
+11410,HTML/CSS;JavaScript;VBA;Other(s):
+11411,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+11412,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+11413,Bash/Shell/PowerShell;Java;Python;SQL
+11414,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;Other(s):
+11415,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+11416,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+11417,HTML/CSS;JavaScript;PHP;SQL
+11418,HTML/CSS;Java;JavaScript;SQL
+11419,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Other(s):
+11420,C#;F#;SQL
+11421,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+11422,C;Java;Python;SQL
+11423,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+11424,HTML/CSS;JavaScript;Objective-C;PHP
+11425,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;TypeScript
+11426,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R
+11427,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;VBA
+11428,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+11429,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+11430,Bash/Shell/PowerShell;C#;JavaScript;Python;R;SQL;VBA
+11431,Bash/Shell/PowerShell;C#;F#;R;SQL
+11432,HTML/CSS;JavaScript;Ruby;TypeScript;Other(s):
+11433,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+11434,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+11435,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+11436,Bash/Shell/PowerShell;C;Elixir;Erlang;Go;Python
+11437,C#
+11438,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL
+11439,JavaScript;PHP;Python;SQL;TypeScript
+11440,Bash/Shell/PowerShell;Python;R;SQL
+11441,HTML/CSS;Java;JavaScript;PHP;SQL
+11442,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11443,Bash/Shell/PowerShell;Go;Python;R;Scala;SQL
+11444,HTML/CSS;JavaScript;Python;Ruby;Other(s):
+11445,HTML/CSS;Python
+11446,Dart;HTML/CSS;JavaScript;PHP;Python
+11447,Java;SQL
+11448,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11449,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+11450,Java;Python;R
+11451,Objective-C;Swift
+11452,HTML/CSS;Java;JavaScript
+11453,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+11454,Bash/Shell/PowerShell;Java;SQL;Swift
+11455,HTML/CSS;SQL
+11456,C++;HTML/CSS;Java;JavaScript;SQL
+11457,Bash/Shell/PowerShell;C;C++;Python
+11458,C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;Other(s):
+11459,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP
+11460,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+11461,Swift
+11462,Objective-C;Swift
+11463,JavaScript;PHP
+11464,Java;JavaScript;Kotlin;Python;TypeScript
+11465,Bash/Shell/PowerShell;C;Elixir;Go;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+11466,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11467,C++;C#
+11468,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+11469,C;HTML/CSS;Ruby;SQL
+11470,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+11471,Bash/Shell/PowerShell;Clojure;HTML/CSS;Ruby;SQL;TypeScript
+11472,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+11473,Assembly;C;C++;HTML/CSS;Java;Objective-C;PHP;Ruby;SQL
+11474,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+11475,C;HTML/CSS;PHP;Ruby;SQL
+11476,C#;HTML/CSS;JavaScript;SQL
+11477,HTML/CSS;Java;JavaScript;Python;TypeScript
+11478,PHP
+11479,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL;Other(s):
+11480,Bash/Shell/PowerShell;C++;C#;HTML/CSS;PHP;SQL;VBA;Other(s):
+11481,HTML/CSS;Java;JavaScript;SQL
+11482,C++;C#;Java;PHP;Python
+11483,Bash/Shell/PowerShell;Go;Java;Python;SQL;VBA
+11484,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+11485,Bash/Shell/PowerShell;C;C++;Python
+11486,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+11487,HTML/CSS;Java;JavaScript;SQL
+11488,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+11489,Bash/Shell/PowerShell;Java;JavaScript
+11490,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Kotlin
+11491,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R
+11492,Python
+11493,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+11494,HTML/CSS;Java;JavaScript;Python
+11495,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+11496,Bash/Shell/PowerShell;Python;SQL
+11497,Bash/Shell/PowerShell;Java;Python;SQL
+11498,C;HTML/CSS;Java;JavaScript;PHP;SQL
+11499,Bash/Shell/PowerShell;Python;Other(s):
+11500,Java
+11501,HTML/CSS;Java;JavaScript;Ruby;SQL
+11502,C#;Other(s):
+11503,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+11504,C++;HTML/CSS;JavaScript;Python
+11505,C#;Go;HTML/CSS;JavaScript;Python;SQL
+11507,Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;SQL
+11508,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+11509,Assembly;C;C++;Java;JavaScript;Objective-C;Swift
+11510,HTML/CSS;JavaScript;PHP
+11511,Bash/Shell/PowerShell;PHP;Python;SQL
+11512,Java;JavaScript;PHP;Python;SQL;Swift
+11513,HTML/CSS;Java;JavaScript
+11514,Java;Kotlin
+11515,C#;HTML/CSS;JavaScript;Ruby
+11516,C
+11517,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+11518,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11519,Python;R
+11520,C;C++;HTML/CSS;Java;JavaScript;SQL
+11521,Bash/Shell/PowerShell;Java;Python;SQL
+11522,Assembly;Bash/Shell/PowerShell;C;Java;Python;SQL
+11523,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+11524,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+11525,Bash/Shell/PowerShell;C;C++;Java;Python;Rust;Swift
+11526,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+11527,Java
+11528,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+11529,C;HTML/CSS;Java;JavaScript;Python;SQL
+11530,C#;HTML/CSS;JavaScript;SQL
+11531,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+11532,JavaScript;Other(s):
+11533,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;TypeScript
+11534,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python
+11535,HTML/CSS;JavaScript;Python
+11536,HTML/CSS;JavaScript;PHP
+11537,Assembly;C;C++;Python;Other(s):
+11538,HTML/CSS;JavaScript;PHP
+11539,Clojure;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+11540,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA
+11541,Bash/Shell/PowerShell;JavaScript
+11542,JavaScript;PHP
+11543,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11544,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11545,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+11546,C#;Dart;HTML/CSS;JavaScript;PHP;Python;TypeScript
+11547,Bash/Shell/PowerShell;Python;SQL;VBA
+11548,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+11549,C#;HTML/CSS;JavaScript;SQL
+11550,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+11551,Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+11552,Elixir;Go;Python;Scala;SQL
+11553,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+11554,HTML/CSS;Java;JavaScript;SQL
+11555,C#;Java;Objective-C;Swift
+11556,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+11557,C#;HTML/CSS;Java;Kotlin;Python;R;SQL
+11558,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+11559,HTML/CSS;JavaScript;Python;Ruby;SQL
+11560,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+11561,Java;JavaScript
+11562,Java;Kotlin;Python
+11563,C#;Dart;Go;Java;Kotlin;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift
+11564,Java;JavaScript
+11565,Java
+11566,C;HTML/CSS;JavaScript;VBA
+11567,Bash/Shell/PowerShell;C#;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;TypeScript
+11568,HTML/CSS;JavaScript;PHP
+11569,Bash/Shell/PowerShell;C;C++;Java;Python;Rust;Scala;Other(s):
+11570,Java
+11571,C#;TypeScript
+11572,C++;HTML/CSS;JavaScript;PHP;SQL
+11573,Java;JavaScript;Python;SQL
+11574,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+11575,HTML/CSS;JavaScript;TypeScript
+11576,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+11577,C++;HTML/CSS;Java;JavaScript;Python
+11578,Java;JavaScript
+11579,HTML/CSS;JavaScript;Python;R
+11580,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+11581,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11582,Elixir;Erlang;Other(s):
+11583,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+11584,C#;JavaScript;SQL
+11585,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL;TypeScript
+11586,Bash/Shell/PowerShell;C;C++;Go;Java;Python
+11587,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+11588,HTML/CSS;JavaScript;PHP;SQL
+11589,HTML/CSS;JavaScript;SQL;TypeScript
+11590,HTML/CSS;JavaScript;PHP
+11591,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift
+11592,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11593,HTML/CSS;Java;JavaScript;SQL;TypeScript
+11594,C++;Java;SQL
+11595,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+11596,C#;HTML/CSS;JavaScript;SQL
+11597,C;C++;Dart;Erlang;Go;HTML/CSS;PHP;Python
+11598,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+11599,Bash/Shell/PowerShell;C;Java;Python;Other(s):
+11600,HTML/CSS;Java;JavaScript;Ruby
+11601,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+11602,C++;C#;Python;SQL
+11603,C;C++
+11604,JavaScript;Python;Ruby
+11605,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11606,SQL;Other(s):
+11607,C#;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11608,C#;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+11609,Java;JavaScript;PHP;SQL
+11610,C++;HTML/CSS;Java;JavaScript;SQL
+11611,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+11612,Bash/Shell/PowerShell;JavaScript;PHP;Other(s):
+11614,C#;HTML/CSS;JavaScript;SQL
+11615,JavaScript;Python;R;SQL
+11616,Java;Python
+11617,HTML/CSS;JavaScript;TypeScript
+11618,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+11619,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11620,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+11621,Go;HTML/CSS;JavaScript;Python;SQL
+11622,C#;HTML/CSS;SQL;Other(s):
+11623,HTML/CSS;Java;JavaScript;Scala
+11624,Assembly;C;HTML/CSS;JavaScript;TypeScript
+11625,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11626,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python
+11627,HTML/CSS;JavaScript;PHP
+11628,PHP;Python
+11629,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby
+11630,Java;JavaScript;Kotlin;Python;VBA;Other(s):
+11631,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11632,C#;Java;JavaScript;SQL
+11633,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+11634,Bash/Shell/PowerShell;Java;JavaScript;R;SQL
+11635,HTML/CSS;Python
+11636,Python
+11637,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+11638,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+11639,C;C++;HTML/CSS;Java;JavaScript;Python
+11640,C#;HTML/CSS;JavaScript;SQL
+11641,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA;WebAssembly
+11642,HTML/CSS;Java;JavaScript;Swift;TypeScript
+11643,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+11644,C#;Python;Other(s):
+11645,C++;HTML/CSS;Java;JavaScript;Python;Ruby
+11646,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+11647,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+11648,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Kotlin;PHP;Python;TypeScript
+11649,HTML/CSS;JavaScript;PHP;Python
+11650,C#;HTML/CSS;JavaScript;SQL
+11651,C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+11652,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+11653,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+11654,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+11655,Clojure;Python;Rust;Other(s):
+11656,C#;HTML/CSS;Java
+11657,Java;Kotlin
+11658,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+11659,HTML/CSS;Ruby;SQL
+11660,Assembly;C;C++;Go;Python
+11661,HTML/CSS;Java;PHP;SQL
+11662,Bash/Shell/PowerShell;C++;Python
+11663,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL
+11664,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+11665,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;Other(s):
+11666,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+11667,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+11668,Java;SQL;Other(s):
+11669,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+11670,Bash/Shell/PowerShell;Go;Python
+11671,Swift
+11672,C#;HTML/CSS;JavaScript
+11673,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+11674,HTML/CSS;JavaScript;Python
+11675,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+11676,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+11677,Bash/Shell/PowerShell;Python;R;SQL
+11678,C++;Java;SQL
+11679,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+11680,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;TypeScript
+11681,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+11682,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+11683,HTML/CSS;Python;R
+11684,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+11685,HTML/CSS;Java;Kotlin;PHP;SQL;Other(s):
+11686,C++
+11687,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python
+11688,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+11689,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+11690,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11691,Java;JavaScript;SQL;TypeScript
+11692,Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+11693,C++;Java;JavaScript;PHP;SQL
+11694,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+11695,C#;Go;SQL
+11696,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11697,Swift
+11698,HTML/CSS;JavaScript;PHP;TypeScript
+11699,Java;JavaScript;Kotlin;SQL
+11700,Java;JavaScript
+11701,Java;SQL
+11702,C;HTML/CSS;JavaScript;Python
+11703,HTML/CSS;JavaScript;TypeScript
+11704,HTML/CSS;JavaScript;SQL
+11705,Assembly;Bash/Shell/PowerShell;C;Python;Rust
+11706,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+11707,SQL;Other(s):
+11708,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11709,Assembly;C;Java;Kotlin;Python
+11710,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11711,SQL;Other(s):
+11713,Java;Ruby
+11714,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+11715,C;C++;JavaScript;Other(s):
+11716,Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+11717,Bash/Shell/PowerShell;Python;R;SQL
+11718,C++;Python;SQL
+11719,Go;HTML/CSS;JavaScript;PHP;Rust;SQL
+11720,HTML/CSS;JavaScript;TypeScript
+11721,C#;JavaScript
+11722,C#
+11723,Bash/Shell/PowerShell;Java;Python;Other(s):
+11724,Go;HTML/CSS;Java;JavaScript;Python;SQL
+11725,Bash/Shell/PowerShell;JavaScript;Python;Ruby;TypeScript
+11726,Bash/Shell/PowerShell;Python;Other(s):
+11727,Erlang;Java;JavaScript;Kotlin;SQL;TypeScript
+11728,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+11729,HTML/CSS;JavaScript;PHP;Python;SQL
+11730,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+11731,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+11732,HTML/CSS;JavaScript;PHP
+11733,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Swift
+11734,Java;SQL
+11735,Java;JavaScript;TypeScript
+11736,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript
+11737,HTML/CSS;Java;JavaScript;SQL
+11738,C++;C#;Clojure;Elixir;F#;HTML/CSS;JavaScript;Python;Ruby;SQL
+11739,HTML/CSS;JavaScript;Python
+11740,HTML/CSS;Java;JavaScript;Python
+11741,HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+11742,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+11743,Java;SQL
+11744,C#;Go;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+11745,VBA
+11746,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+11747,Bash/Shell/PowerShell;C;C++;HTML/CSS;Ruby;Other(s):
+11748,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+11749,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+11750,Bash/Shell/PowerShell;C
+11751,Java;Scala;SQL
+11752,Bash/Shell/PowerShell;C++;Go;Python;SQL
+11753,C#;Java
+11754,HTML/CSS;JavaScript;PHP;SQL
+11755,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL;VBA
+11756,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R
+11757,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+11758,Go
+11759,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Rust;SQL;WebAssembly
+11760,C#;HTML/CSS;Java;JavaScript;Python
+11761,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+11762,Java;Python;SQL
+11763,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+11764,C;C++;Go;HTML/CSS;JavaScript;PHP;Ruby
+11765,C;C++;Rust;Other(s):
+11766,Bash/Shell/PowerShell;Go;Java;Python
+11767,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+11768,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+11769,JavaScript;PHP;SQL
+11770,HTML/CSS;JavaScript;Python;TypeScript
+11771,Bash/Shell/PowerShell;C++;Python
+11772,Other(s):
+11773,PHP
+11774,C#;Java;VBA
+11775,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;Other(s):
+11776,Bash/Shell/PowerShell;C
+11777,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11778,HTML/CSS;JavaScript;PHP;Ruby
+11779,HTML/CSS;JavaScript;Python
+11780,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+11781,HTML/CSS;JavaScript
+11782,C++;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+11783,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+11784,C#;HTML/CSS
+11785,C#;HTML/CSS;JavaScript;Kotlin;Python
+11786,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+11787,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;Rust
+11788,JavaScript;PHP
+11789,C#;HTML/CSS;JavaScript;SQL
+11790,JavaScript;Python;SQL
+11791,HTML/CSS;JavaScript;PHP;Ruby
+11792,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+11793,HTML/CSS;JavaScript;PHP
+11794,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+11795,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+11796,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+11797,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+11798,Bash/Shell/PowerShell;Python
+11799,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+11800,C#;HTML/CSS;JavaScript;SQL
+11801,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+11802,C;C++;HTML/CSS;Java;JavaScript;Python
+11803,HTML/CSS;JavaScript;PHP;Python;SQL
+11804,Java;PHP
+11805,C++;HTML/CSS;Java;JavaScript;SQL
+11806,C++;C#;JavaScript;PHP;Python;SQL
+11807,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+11808,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11809,C#;HTML/CSS;JavaScript;Python;SQL
+11810,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+11811,Python;R;Scala;SQL;Other(s):
+11812,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Swift
+11813,C#;HTML/CSS;JavaScript
+11814,C#;Java
+11815,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+11816,C#;HTML/CSS;JavaScript;SQL
+11817,Bash/Shell/PowerShell;C;JavaScript;R;Rust
+11818,HTML/CSS;JavaScript;Objective-C;PHP
+11819,Bash/Shell/PowerShell;C;C++;Erlang;Go;Java;JavaScript;Objective-C;Python;SQL;Swift
+11820,C;C++;Java;JavaScript;Python
+11821,C#;HTML/CSS;JavaScript;SQL
+11822,Assembly;C;HTML/CSS;JavaScript;Python;Swift
+11823,C++;HTML/CSS;Java;JavaScript;SQL
+11824,Java
+11825,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+11826,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+11828,HTML/CSS;JavaScript;PHP;SQL
+11829,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+11830,Assembly;C++;C#;HTML/CSS;Java;JavaScript;SQL
+11831,C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;TypeScript
+11832,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+11833,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+11834,HTML/CSS;JavaScript;PHP;TypeScript
+11835,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Objective-C;Python;Scala;SQL
+11836,JavaScript;SQL;VBA
+11837,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+11838,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+11839,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+11840,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R
+11841,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;Ruby;SQL;TypeScript
+11842,C++;Python
+11843,HTML/CSS;Java;JavaScript
+11844,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+11845,HTML/CSS;Java;JavaScript;SQL
+11846,Go;HTML/CSS;Java;JavaScript
+11847,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+11848,HTML/CSS;JavaScript
+11849,C++;HTML/CSS;JavaScript;Python;R;SQL
+11850,C#;HTML/CSS;Java;JavaScript;TypeScript
+11851,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11852,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+11853,C;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL;Swift
+11854,C++;C#;Java;Python;SQL
+11855,Bash/Shell/PowerShell;C;Clojure;Dart;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+11856,HTML/CSS;JavaScript;SQL
+11857,C;C#;HTML/CSS;Python;Rust
+11858,Elixir;Erlang;HTML/CSS;Ruby;SQL;Other(s):
+11859,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+11860,C#;Clojure;JavaScript;SQL;TypeScript
+11861,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+11862,HTML/CSS;JavaScript;PHP
+11863,C++;HTML/CSS;Java;JavaScript;SQL
+11864,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+11865,HTML/CSS;Java;JavaScript
+11866,HTML/CSS;JavaScript;TypeScript
+11867,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript
+11868,HTML/CSS;JavaScript;Ruby
+11869,Other(s):
+11870,C;C++;HTML/CSS;JavaScript;PHP;SQL
+11871,C#
+11872,Bash/Shell/PowerShell;Java;JavaScript;SQL
+11873,C#;HTML/CSS;JavaScript;PHP
+11874,JavaScript;Python
+11875,C#;HTML/CSS;Java;JavaScript;Python;SQL
+11876,Dart;Java;JavaScript;Kotlin;Python;Other(s):
+11877,C;C++;Objective-C;Swift
+11878,JavaScript;Python
+11879,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+11880,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;SQL;TypeScript;VBA
+11881,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+11882,C++;Go;Rust
+11883,HTML/CSS;JavaScript;TypeScript
+11884,HTML/CSS;JavaScript;PHP;Python
+11885,Objective-C;Python;Swift
+11886,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+11887,Java;Python
+11888,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11889,Go;Java;Scala
+11890,C#
+11891,Java;JavaScript;SQL
+11892,HTML/CSS;JavaScript;SQL;TypeScript
+11893,HTML/CSS;JavaScript;PHP
+11894,C#;Python
+11895,HTML/CSS;Java;JavaScript;SQL;TypeScript
+11896,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+11897,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;VBA;Other(s):
+11898,Assembly;Other(s):
+11899,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+11900,C#
+11901,C#;Go;HTML/CSS;Java;JavaScript;SQL
+11902,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+11903,Java
+11904,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+11905,C#;SQL
+11906,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+11907,JavaScript;PHP
+11908,Java;Other(s):
+11909,Ruby;SQL
+11910,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11911,C#;HTML/CSS;JavaScript;TypeScript
+11912,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+11913,Bash/Shell/PowerShell;Java
+11914,Java
+11915,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+11916,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift;TypeScript;Other(s):
+11917,HTML/CSS;JavaScript
+11918,C++;HTML/CSS;JavaScript;PHP;SQL
+11919,C#;HTML/CSS;JavaScript;SQL
+11920,C#;Other(s):
+11921,C;HTML/CSS;VBA
+11922,HTML/CSS;Java;JavaScript;Kotlin;SQL
+11923,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+11924,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+11925,C#;JavaScript;SQL
+11926,HTML/CSS;JavaScript;TypeScript
+11927,C++;C#;JavaScript;SQL
+11928,Bash/Shell/PowerShell;Java;Python;Ruby
+11929,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11930,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;Scala
+11931,HTML/CSS;Java;JavaScript;Python;SQL;Swift
+11932,Bash/Shell/PowerShell;C;C++;C#;Objective-C;Python
+11933,Assembly;Bash/Shell/PowerShell;C;Java
+11934,C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+11935,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+11936,C;Java;JavaScript;Python;SQL
+11937,C;C#;Dart;HTML/CSS;JavaScript;Python;SQL
+11938,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+11939,HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+11940,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript;VBA
+11941,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11942,Bash/Shell/PowerShell;C;C++;Objective-C;Ruby;Rust;Other(s):
+11943,Bash/Shell/PowerShell;Python;Ruby
+11944,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript
+11945,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;F#;Go;HTML/CSS;JavaScript;Objective-C;Ruby;Rust;SQL;Other(s):
+11946,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+11947,Bash/Shell/PowerShell;C;Java;JavaScript;Kotlin;Python;Ruby;Swift
+11948,HTML/CSS;JavaScript;Python;SQL;TypeScript
+11949,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11950,C;Java;JavaScript;PHP;Python;TypeScript
+11951,Erlang;HTML/CSS;JavaScript;Ruby;Rust
+11952,HTML/CSS;Java;Python;R;SQL
+11953,HTML/CSS;JavaScript;Python;R;SQL
+11954,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+11955,Bash/Shell/PowerShell;Java;Python
+11956,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+11957,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+11958,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;TypeScript;VBA;Other(s):
+11959,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Objective-C;Scala;Swift
+11960,Go;Kotlin;Scala
+11961,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+11962,HTML/CSS;JavaScript;PHP
+11963,C;C++;JavaScript;Objective-C
+11964,JavaScript;Python;SQL
+11965,Bash/Shell/PowerShell;C#;SQL;TypeScript
+11966,C#
+11967,JavaScript;Python
+11968,C++;Python
+11969,C++;Python;Other(s):
+11970,C;C++
+11971,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+11972,HTML/CSS;Java;JavaScript
+11973,C#;Java;R;SQL
+11974,HTML/CSS;Java;JavaScript;PHP;SQL
+11975,C++;Dart;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift
+11976,C++;Java;Swift
+11977,Elixir;JavaScript;Ruby
+11978,HTML/CSS;Java;JavaScript;SQL
+11980,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+11981,C;C++;Go;JavaScript;Rust;SQL
+11982,HTML/CSS;R;SQL;VBA
+11983,HTML/CSS;Java;JavaScript;SQL
+11984,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+11985,HTML/CSS;JavaScript;PHP;SQL
+11986,C#;HTML/CSS;JavaScript;SQL
+11987,Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+11988,C#;HTML/CSS;JavaScript;SQL;TypeScript
+11989,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+11990,Go;HTML/CSS;JavaScript;Python;SQL
+11991,C++;C#;HTML/CSS;JavaScript;SQL
+11992,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+11993,C++;Java
+11994,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+11995,C#;HTML/CSS;SQL;Swift
+11996,HTML/CSS;JavaScript;Other(s):
+11997,C;C++;Java;JavaScript;Python;SQL
+11998,Java;SQL
+11999,Bash/Shell/PowerShell;C#;SQL
+12000,HTML/CSS;JavaScript;SQL;Other(s):
+12001,C;C++;C#;Java;Python
+12002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+12003,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+12004,HTML/CSS;JavaScript;PHP
+12005,HTML/CSS;JavaScript;PHP;Python;SQL
+12006,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+12007,HTML/CSS;JavaScript;TypeScript
+12008,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+12009,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+12010,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python
+12011,Java;JavaScript;SQL
+12012,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Rust
+12013,C#;HTML/CSS;Java;JavaScript;Python;SQL
+12014,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+12015,HTML/CSS;Java;JavaScript;Python;TypeScript
+12016,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+12017,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+12018,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+12019,C#;PHP;SQL
+12020,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Other(s):
+12021,HTML/CSS;JavaScript
+12022,C#;HTML/CSS;R;SQL
+12023,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+12024,HTML/CSS;JavaScript;Ruby;SQL
+12025,Java;JavaScript;SQL;TypeScript
+12026,Clojure;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+12027,Java
+12028,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+12029,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+12030,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+12031,C#;HTML/CSS;Java;JavaScript
+12033,Bash/Shell/PowerShell;C;C++;C#;Java;PHP;Python;SQL
+12034,HTML/CSS;JavaScript;PHP;Python;SQL
+12035,HTML/CSS;Java;JavaScript;Kotlin
+12036,C;Python;SQL
+12037,C;C++;HTML/CSS;JavaScript;Python;SQL
+12038,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL
+12039,C++
+12040,C;C++;Java;Python
+12041,Java
+12042,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+12043,C#;HTML/CSS;TypeScript
+12044,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+12045,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;SQL
+12046,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+12047,Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust
+12048,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+12049,C#;HTML/CSS;SQL
+12050,C++;C#;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+12051,C++;Java;Kotlin
+12052,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+12053,C#;SQL;VBA
+12054,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+12055,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL;Other(s):
+12056,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+12057,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+12058,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+12059,C#;HTML/CSS;SQL
+12060,Bash/Shell/PowerShell;Python;Other(s):
+12061,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;JavaScript;Python;Rust;SQL
+12062,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+12063,JavaScript;PHP;SQL
+12064,JavaScript;Python
+12065,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;TypeScript;VBA
+12066,C;C++;HTML/CSS;PHP;SQL
+12067,HTML/CSS;JavaScript;Python;SQL;TypeScript
+12068,C;Java;SQL
+12069,Bash/Shell/PowerShell;C#;Python
+12070,C++
+12071,HTML/CSS;Java;JavaScript
+12072,C;C++;C#;HTML/CSS;Java;PHP;SQL
+12073,Kotlin
+12074,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+12075,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12076,Bash/Shell/PowerShell;Java;Python;SQL
+12077,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12078,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+12079,Java;Objective-C;SQL;Other(s):
+12080,HTML/CSS;R;SQL
+12081,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+12082,Bash/Shell/PowerShell;C;C#;Java;Python
+12083,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+12084,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+12085,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12086,C++;C#;SQL
+12087,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+12088,C#;HTML/CSS;SQL
+12089,HTML/CSS;Java;JavaScript;SQL
+12090,Bash/Shell/PowerShell;C++;JavaScript;Python;R;SQL
+12091,Bash/Shell/PowerShell;C;C++;Python;Rust
+12092,C;C++;Java
+12093,C#;Java;JavaScript;SQL
+12094,Go;HTML/CSS;Java;Python
+12095,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+12096,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+12097,C#;Java;Kotlin;Swift
+12098,JavaScript;Ruby
+12099,C++;Python
+12100,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12101,Assembly;C;C++;JavaScript;Python;Rust;Other(s):
+12102,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+12103,Bash/Shell/PowerShell;C#;Python;SQL
+12104,Bash/Shell/PowerShell;C#;SQL
+12105,C#;JavaScript
+12106,HTML/CSS;Java;JavaScript;SQL
+12107,Java;JavaScript;SQL
+12108,HTML/CSS;JavaScript;PHP;SQL
+12109,C;SQL;Other(s):
+12110,C++;HTML/CSS;Java;JavaScript;Python;SQL
+12111,Java
+12112,Java
+12113,Java
+12114,Dart;HTML/CSS;Java;JavaScript;SQL
+12115,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+12116,Bash/Shell/PowerShell;Java;Python
+12117,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+12118,C++;C#;HTML/CSS;JavaScript;Python
+12119,Bash/Shell/PowerShell;Java;SQL
+12120,C;C++;C#
+12121,HTML/CSS;JavaScript
+12122,C#;HTML/CSS;JavaScript;SQL;VBA
+12123,Bash/Shell/PowerShell;C++;Python;Other(s):
+12124,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+12125,HTML/CSS;JavaScript;PHP;TypeScript
+12126,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;VBA;Other(s):
+12127,C++;C#;HTML/CSS;Other(s):
+12128,C#;SQL
+12129,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;WebAssembly
+12130,HTML/CSS;JavaScript
+12131,Bash/Shell/PowerShell;SQL
+12132,Bash/Shell/PowerShell;C++;C#;TypeScript
+12133,HTML/CSS;Java;JavaScript;Ruby
+12134,JavaScript;TypeScript
+12135,C++;HTML/CSS;Java;JavaScript
+12136,Dart;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+12137,Python
+12138,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+12139,HTML/CSS;JavaScript
+12140,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+12141,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;VBA;Other(s):
+12142,Assembly;HTML/CSS;JavaScript;R;Ruby
+12143,Go;Java;Python;R
+12144,C#;JavaScript;Ruby
+12145,C++;HTML/CSS;Python;TypeScript
+12146,Bash/Shell/PowerShell;JavaScript;Python
+12147,C#;JavaScript;SQL
+12148,PHP;Python;SQL
+12149,Other(s):
+12150,C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+12151,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+12152,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+12153,C;HTML/CSS;Java;JavaScript;Python;SQL
+12154,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+12155,Java
+12156,Bash/Shell/PowerShell;C;C++;HTML/CSS;Objective-C;PHP;Swift
+12157,HTML/CSS;JavaScript
+12158,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Swift
+12159,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+12160,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+12161,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+12162,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Objective-C;PHP;SQL;Swift
+12163,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+12164,HTML/CSS;JavaScript;PHP
+12165,C#;HTML/CSS;JavaScript;SQL
+12166,Bash/Shell/PowerShell;Go;Java;Python;SQL
+12167,Java;JavaScript;SQL;TypeScript
+12168,Clojure;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+12169,Bash/Shell/PowerShell;C++;Java;Python
+12170,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+12171,C;C++;HTML/CSS;Java;JavaScript;Python
+12172,Assembly;C;C++;JavaScript;PHP;Other(s):
+12173,Assembly;C;C#;Erlang;F#;HTML/CSS;Java;Python;SQL
+12174,Elixir;F#;HTML/CSS;JavaScript;Python;Other(s):
+12175,C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+12176,C
+12177,Java;SQL;TypeScript
+12178,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12180,Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+12181,Go;Python;SQL
+12182,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+12183,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+12184,HTML/CSS;Java;JavaScript;TypeScript
+12185,C;C++;Java;JavaScript;PHP;Python;SQL
+12186,HTML/CSS;Java;JavaScript;Ruby
+12187,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+12188,Bash/Shell/PowerShell;Java;Rust;Scala
+12189,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+12190,Bash/Shell/PowerShell;C++;Clojure;Dart;HTML/CSS;Java;JavaScript;Python;Rust;Swift;TypeScript
+12191,C#;Java;JavaScript;PHP
+12192,Clojure;Python
+12193,Bash/Shell/PowerShell;C;C++;C#;Python
+12194,Python
+12195,HTML/CSS;Java;Python
+12196,JavaScript;Python;Scala;SQL;TypeScript
+12197,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+12198,JavaScript;Python
+12200,HTML/CSS;JavaScript;PHP;Python
+12201,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+12202,Java;Python;SQL
+12203,C;C++;HTML/CSS;Java;Python;Scala;Other(s):
+12204,R;SQL
+12205,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Other(s):
+12206,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+12208,Bash/Shell/PowerShell;C;C++;Python
+12210,Bash/Shell/PowerShell;JavaScript;Python;R;Ruby;SQL
+12212,C++;PHP
+12213,C++;C#
+12214,Java;JavaScript
+12215,C;C++;C#;HTML/CSS;JavaScript
+12216,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+12217,C++;Python
+12218,Assembly
+12219,HTML/CSS;Python;Swift
+12220,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;TypeScript;Other(s):
+12221,Java;JavaScript
+12222,HTML/CSS;JavaScript;Objective-C
+12223,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;SQL
+12224,Bash/Shell/PowerShell;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;TypeScript
+12225,Go;JavaScript;Objective-C
+12226,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+12227,Java
+12228,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+12229,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+12230,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+12231,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12232,Other(s):
+12233,C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+12234,Go;HTML/CSS;Java;JavaScript;Kotlin
+12235,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+12236,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;SQL
+12237,Java;Python
+12238,C#;SQL
+12239,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+12240,C#;F#;SQL
+12241,C#;HTML/CSS;JavaScript;SQL
+12242,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+12243,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+12244,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA;Other(s):
+12245,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+12246,C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+12247,Java
+12248,Java;JavaScript;SQL
+12249,Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+12250,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+12251,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;Other(s):
+12252,HTML/CSS;JavaScript;Ruby;SQL
+12253,C#;HTML/CSS;JavaScript;PHP;TypeScript
+12254,Assembly
+12255,Bash/Shell/PowerShell;Java;SQL;TypeScript
+12256,HTML/CSS;JavaScript;Python;SQL
+12257,Java;Python
+12258,HTML/CSS;JavaScript;Ruby;Other(s):
+12259,Java;JavaScript;Kotlin;SQL
+12260,Java;Kotlin
+12261,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+12262,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+12263,C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+12264,Bash/Shell/PowerShell;C;Objective-C;Swift
+12265,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12266,Ruby
+12267,C;C++
+12268,C#;HTML/CSS;JavaScript;PHP;SQL
+12269,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+12270,Java;Ruby;Swift
+12271,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12272,Dart;Java;Kotlin
+12273,HTML/CSS;JavaScript;TypeScript
+12274,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+12275,C++;C#;Dart;Java
+12276,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12277,Python
+12278,Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript;Python
+12279,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12280,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+12281,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12282,Java;JavaScript;Scala
+12283,Bash/Shell/PowerShell;C;C++;Python
+12284,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12285,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;Ruby;SQL
+12286,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+12287,HTML/CSS;JavaScript;Python
+12288,HTML/CSS;Java;JavaScript;SQL;TypeScript
+12289,Bash/Shell/PowerShell;C;Elixir;Go;Java;SQL
+12290,Bash/Shell/PowerShell;C++;Python;SQL
+12291,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+12292,C++;C#;HTML/CSS;JavaScript;SQL
+12293,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+12294,Python;SQL
+12295,Java;JavaScript
+12296,C#
+12297,HTML/CSS;JavaScript;PHP;Ruby;SQL
+12298,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Other(s):
+12299,Bash/Shell/PowerShell;C;C++;Java;Python
+12300,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+12301,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+12302,Bash/Shell/PowerShell;Python;Other(s):
+12303,C#;HTML/CSS;JavaScript;SQL
+12304,C#;JavaScript
+12305,Python
+12306,Java;Kotlin
+12307,Assembly;C;Java;R
+12308,HTML/CSS;JavaScript;PHP
+12309,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+12310,Elixir;HTML/CSS;Ruby
+12311,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;TypeScript
+12312,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+12313,C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+12314,C#;HTML/CSS;JavaScript;TypeScript
+12315,HTML/CSS;Java;JavaScript;PHP;SQL
+12316,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+12317,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Other(s):
+12318,Dart;SQL
+12319,Bash/Shell/PowerShell;C++;Java;Objective-C
+12320,C#;Go;HTML/CSS;JavaScript;SQL
+12321,HTML/CSS;Java;JavaScript;PHP;SQL
+12322,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+12323,Python;Other(s):
+12324,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+12325,C#;HTML/CSS;SQL;VBA;Other(s):
+12326,HTML/CSS;Java;PHP;SQL
+12327,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Python
+12328,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;R;SQL
+12329,C#;HTML/CSS;JavaScript;TypeScript
+12330,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12331,Bash/Shell/PowerShell;C;C++;C#;Java;Python
+12332,Java;Python;SQL
+12334,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+12335,Bash/Shell/PowerShell;Java;Python;SQL
+12336,HTML/CSS;Java;JavaScript;Python;SQL;VBA
+12337,C#
+12338,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+12339,R
+12340,JavaScript;PHP;SQL
+12341,Assembly;C;C++;Python
+12342,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+12343,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+12344,Python
+12345,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+12346,HTML/CSS;PHP;Python;SQL
+12347,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12348,Bash/Shell/PowerShell;C;Python;VBA
+12349,C++;JavaScript
+12350,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+12351,HTML/CSS;JavaScript;PHP;SQL
+12352,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Rust
+12353,Assembly;C;C++;Java
+12354,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+12355,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;VBA
+12356,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+12357,C++;Java;Kotlin;SQL
+12358,C++;HTML/CSS;Java;JavaScript
+12359,C;C++;Rust
+12360,HTML/CSS;Java;JavaScript;SQL;TypeScript
+12361,Bash/Shell/PowerShell;C#;VBA
+12362,HTML/CSS;JavaScript;Objective-C;PHP;Python
+12363,HTML/CSS;JavaScript;SQL;VBA
+12364,Dart;Go;HTML/CSS;JavaScript;Python;Ruby
+12365,Go;Python;Ruby;SQL
+12366,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+12367,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+12368,HTML/CSS;JavaScript;Ruby
+12369,Bash/Shell/PowerShell;Go;Python
+12370,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+12371,C;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+12372,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+12373,Python;SQL
+12374,C#;HTML/CSS;JavaScript;SQL;Other(s):
+12375,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+12376,Assembly;C++;Go;HTML/CSS;WebAssembly
+12377,Bash/Shell/PowerShell;C++;Go;Python;SQL;VBA
+12378,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12379,Bash/Shell/PowerShell;Python;Other(s):
+12380,C#;Objective-C;Python;Ruby;Swift
+12381,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+12382,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+12383,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+12384,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby
+12385,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python
+12386,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+12387,C++;C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+12388,C;C++;Python;SQL
+12389,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly;Other(s):
+12390,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+12391,Assembly;C;HTML/CSS;JavaScript;PHP;Python;SQL
+12392,Go;Python;SQL
+12393,Dart;Java;Kotlin;PHP
+12394,C#;HTML/CSS;JavaScript;SQL;Swift
+12395,HTML/CSS;SQL
+12396,Java;SQL
+12397,Swift
+12398,HTML/CSS;JavaScript;SQL;TypeScript
+12399,HTML/CSS;JavaScript;Other(s):
+12400,HTML/CSS;PHP;SQL
+12401,HTML/CSS;JavaScript;TypeScript
+12402,Assembly;C++;Elixir;Go;Java;JavaScript;Objective-C
+12403,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift
+12404,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12405,Kotlin;Swift;Other(s):
+12406,Assembly;Bash/Shell/PowerShell;C;Python
+12407,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;SQL;Other(s):
+12408,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+12409,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+12410,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+12411,HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+12412,HTML/CSS;Java;JavaScript;SQL;Swift
+12413,Java
+12414,Java;JavaScript;Ruby
+12415,Python
+12416,HTML/CSS;JavaScript;TypeScript
+12417,HTML/CSS;Java;Kotlin
+12418,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+12419,C;C++;HTML/CSS;JavaScript
+12420,HTML/CSS;JavaScript;PHP;TypeScript
+12421,C;C++;HTML/CSS;Java;Python
+12422,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+12423,HTML/CSS;JavaScript;Python;SQL
+12424,Objective-C;Swift
+12425,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+12426,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+12427,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12429,C#;HTML/CSS;JavaScript;SQL;VBA
+12430,Java;Kotlin
+12431,Bash/Shell/PowerShell;C;C++;Java
+12432,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+12433,C#;Java;Kotlin
+12434,Java;JavaScript;Python;R;SQL
+12435,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+12436,C#;HTML/CSS;JavaScript;SQL
+12437,C#;Java;TypeScript
+12438,Bash/Shell/PowerShell;C#;Python
+12439,HTML/CSS;JavaScript;PHP;TypeScript
+12440,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+12441,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+12442,Go;HTML/CSS;JavaScript;Python
+12443,C#;Go;SQL;TypeScript
+12444,C;Java;Objective-C;Python;Swift
+12445,HTML/CSS;JavaScript;PHP;SQL
+12446,Go;HTML/CSS;JavaScript;Ruby
+12447,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;Swift
+12448,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12449,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+12450,C;C++;Python
+12451,C;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+12452,C#;TypeScript
+12453,C#;HTML/CSS;JavaScript;Python;R;Scala;SQL
+12454,HTML/CSS;JavaScript;Objective-C;Swift;Other(s):
+12455,Bash/Shell/PowerShell;Other(s):
+12456,HTML/CSS;Java;JavaScript;SQL
+12457,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+12458,C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+12459,C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+12460,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+12461,HTML/CSS;Java;JavaScript;SQL;VBA
+12462,Java;Other(s):
+12463,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+12464,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12465,C++;Python
+12466,Elixir;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+12467,Java;PHP;Other(s):
+12468,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+12469,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12470,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+12471,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+12472,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+12473,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12474,HTML/CSS;Java;JavaScript;Python
+12475,Dart;HTML/CSS;JavaScript;PHP;SQL
+12476,HTML/CSS;Java;JavaScript;PHP;Python;Scala;TypeScript
+12477,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+12478,Java
+12479,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+12480,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+12481,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+12482,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Go;Java;JavaScript;Kotlin;Python;Rust;SQL
+12483,Bash/Shell/PowerShell;Go;Java;Ruby;SQL
+12484,C;C++;HTML/CSS;Java;JavaScript;Other(s):
+12485,Assembly;C;C++;C#;HTML/CSS;Python;Rust;Other(s):
+12486,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+12487,HTML/CSS;JavaScript
+12488,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+12489,Python;Other(s):
+12490,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+12491,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+12492,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+12493,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+12494,C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+12495,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+12496,Assembly;Python
+12497,C#;HTML/CSS;JavaScript;SQL
+12498,C++;HTML/CSS;JavaScript;PHP;Python;R;TypeScript
+12499,Assembly;Bash/Shell/PowerShell;C;Python
+12500,C#;HTML/CSS;Java;PHP;SQL
+12501,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+12502,HTML/CSS;Java;JavaScript;SQL;VBA
+12503,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+12504,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+12505,C#;HTML/CSS;JavaScript
+12506,C;C++;C#;HTML/CSS;PHP;Python;Rust;SQL
+12507,Java;JavaScript;Kotlin
+12508,C;HTML/CSS;Java;JavaScript;PHP;SQL
+12509,Java;Python;SQL
+12510,HTML/CSS;Java;Python;SQL
+12511,C++;C#;JavaScript;SQL
+12512,Bash/Shell/PowerShell;Objective-C;Python;Swift
+12513,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+12514,R
+12515,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+12516,Bash/Shell/PowerShell;C#;Java;JavaScript;Scala
+12517,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;Other(s):
+12518,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+12519,Swift
+12520,Go;HTML/CSS;JavaScript;Ruby;TypeScript
+12521,C++
+12522,Java;Python
+12523,C++
+12524,HTML/CSS;Java;JavaScript;Python;SQL
+12525,Java;JavaScript;TypeScript
+12526,HTML/CSS;JavaScript;Python;SQL
+12527,Java
+12528,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+12529,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+12530,C#;HTML/CSS;Java;JavaScript;SQL
+12531,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+12532,C#;SQL
+12534,C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+12535,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+12536,HTML/CSS;VBA;Other(s):
+12537,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+12538,Python
+12539,HTML/CSS;Java;JavaScript;TypeScript
+12540,HTML/CSS;JavaScript;TypeScript
+12541,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12542,C#;HTML/CSS;JavaScript;TypeScript
+12543,Dart;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+12544,C#;Other(s):
+12545,Bash/Shell/PowerShell;Go;Python
+12546,C;C#;HTML/CSS;Java
+12547,HTML/CSS;JavaScript;Python;Swift
+12548,Python
+12549,Bash/Shell/PowerShell;C#;SQL
+12550,C#;HTML/CSS;JavaScript;TypeScript
+12551,SQL;Swift
+12552,Kotlin;Swift
+12553,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+12554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12555,C;HTML/CSS;Java;JavaScript;PHP;SQL
+12556,C#;SQL;VBA
+12557,C;C++;HTML/CSS;JavaScript;Python
+12558,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+12559,JavaScript;PHP;Python;SQL
+12560,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+12561,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+12562,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+12563,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+12564,C++
+12565,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+12566,C#;JavaScript;SQL
+12567,C++;C#;HTML/CSS;JavaScript
+12568,Other(s):
+12569,Python
+12570,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+12571,C#;HTML/CSS;JavaScript;SQL
+12572,JavaScript
+12573,HTML/CSS;JavaScript
+12574,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;SQL
+12575,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+12576,Assembly;C++;Dart;Java;JavaScript;Kotlin;Python;R;Scala;SQL
+12577,C;C++;C#;HTML/CSS;Java;JavaScript;Other(s):
+12578,Java;JavaScript;SQL
+12579,JavaScript;Python;SQL
+12580,C#;Java;JavaScript;Objective-C;SQL;Swift
+12581,C#;Java;JavaScript;Python
+12582,C;C++
+12583,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+12584,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+12585,Java;Kotlin
+12586,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+12587,HTML/CSS;Java;JavaScript;PHP
+12588,HTML/CSS;JavaScript
+12589,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+12590,Java;Kotlin;Objective-C;Ruby;Swift
+12591,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+12593,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL;TypeScript;WebAssembly
+12594,C
+12595,C;C++;Python
+12596,HTML/CSS;Java;JavaScript;SQL;VBA
+12597,Python
+12598,C++;Python;Rust
+12599,Python
+12600,Clojure;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+12601,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+12602,Bash/Shell/PowerShell;Go;JavaScript;Python
+12603,Python;R;SQL;VBA
+12604,C#
+12605,C#;HTML/CSS;JavaScript;SQL;Swift
+12606,C;C++;Java;VBA
+12607,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+12608,C#;HTML/CSS;SQL
+12609,HTML/CSS;R;SQL
+12610,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+12611,Bash/Shell/PowerShell;Java;Scala
+12612,Java;Python;SQL;TypeScript
+12613,HTML/CSS;JavaScript;PHP;Python;Other(s):
+12614,JavaScript;PHP;Scala
+12615,Bash/Shell/PowerShell;C#;SQL;TypeScript
+12616,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+12617,Python;Rust;Scala;TypeScript
+12618,Bash/Shell/PowerShell;C#;Go;JavaScript
+12619,Bash/Shell/PowerShell;C;Java;Python;VBA
+12621,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+12622,C;C++;C#
+12623,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+12624,Dart;HTML/CSS;JavaScript;Python;SQL
+12625,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+12626,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Scala
+12627,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+12628,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12629,C;C++;HTML/CSS;Java;JavaScript
+12630,Bash/Shell/PowerShell;Python;Scala
+12631,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;PHP;SQL;VBA
+12632,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP
+12633,HTML/CSS;JavaScript;Ruby
+12634,C#;HTML/CSS;JavaScript;SQL;Other(s):
+12635,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+12636,Assembly;Bash/Shell/PowerShell;C++;Python
+12637,C#;JavaScript;TypeScript
+12638,Bash/Shell/PowerShell;C#;Python;SQL;Other(s):
+12639,C;HTML/CSS;JavaScript;Objective-C;PHP;SQL;WebAssembly
+12640,Python
+12641,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Ruby;Rust;Scala;SQL;TypeScript;Other(s):
+12642,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+12643,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+12644,C++;HTML/CSS;Java;JavaScript;TypeScript
+12645,HTML/CSS;Java;JavaScript;PHP;SQL
+12646,HTML/CSS;JavaScript
+12647,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python;SQL
+12648,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+12649,Bash/Shell/PowerShell;C;Elixir;Erlang;Go;JavaScript;WebAssembly;Other(s):
+12650,C;C++;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+12651,HTML/CSS;Java;SQL
+12652,HTML/CSS;JavaScript;PHP;Python;SQL
+12653,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12654,C#;Elixir;Java;JavaScript;SQL;TypeScript
+12655,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+12656,C++;Python
+12657,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12658,C;HTML/CSS;Python;SQL
+12659,Bash/Shell/PowerShell;Python;R
+12660,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+12661,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+12662,HTML/CSS;Java;JavaScript;SQL;TypeScript
+12663,Assembly;Bash/Shell/PowerShell;C;C++;Python
+12664,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+12665,C;C++;HTML/CSS;JavaScript;Python;SQL;Swift
+12666,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+12667,C;HTML/CSS;Java;JavaScript;Python
+12668,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Objective-C;Ruby;Rust;SQL;WebAssembly
+12669,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+12670,Elixir;HTML/CSS;JavaScript;Python;Swift;TypeScript
+12671,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+12672,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+12673,C;C++;Python;R;SQL
+12674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+12675,HTML/CSS;JavaScript;PHP;SQL
+12676,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12677,C#;HTML/CSS;JavaScript;SQL
+12678,Python;R;SQL
+12679,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+12680,C++;Python;Other(s):
+12681,C#;Java;JavaScript;SQL
+12682,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+12683,Python;R;SQL
+12684,Java;JavaScript
+12685,Java
+12686,C++;C#;HTML/CSS;SQL
+12687,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+12688,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+12689,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+12690,Swift
+12691,Python
+12692,Java;Other(s):
+12693,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+12694,HTML/CSS;Java;JavaScript;PHP;SQL
+12695,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+12696,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+12697,C;C#;Dart;HTML/CSS;JavaScript;Python;SQL
+12698,Bash/Shell/PowerShell;C;Java
+12699,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+12700,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+12701,C#;Rust
+12702,C#;JavaScript;Python;Ruby
+12703,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+12704,HTML/CSS;JavaScript;Python
+12706,HTML/CSS;JavaScript;Python;TypeScript
+12707,C#;HTML/CSS;JavaScript;PHP;SQL
+12708,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12709,C#;VBA;Other(s):
+12710,Bash/Shell/PowerShell;Ruby
+12711,Ruby
+12712,C++;C#;HTML/CSS;Java;Ruby;SQL;TypeScript;VBA
+12713,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+12714,C;Python;SQL;Swift
+12715,C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+12716,C++;C#;F#;Java;JavaScript;Python;SQL
+12717,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+12718,Java
+12719,C#;HTML/CSS;JavaScript;SQL;VBA
+12720,C#;HTML/CSS;JavaScript;SQL
+12721,HTML/CSS;PHP;Ruby;SQL
+12722,Bash/Shell/PowerShell;C++;F#;Go;HTML/CSS;JavaScript;Kotlin;Python;Scala;SQL
+12723,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+12724,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+12725,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;TypeScript
+12726,C++;Objective-C
+12727,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;Python;Ruby;SQL
+12728,C#;Java;Python;SQL
+12729,PHP;SQL
+12730,C++;HTML/CSS;JavaScript;PHP;SQL
+12731,C;C++;C#;Python
+12732,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+12733,JavaScript
+12734,HTML/CSS;JavaScript;PHP;Python;SQL
+12735,C++;HTML/CSS;JavaScript;PHP
+12736,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+12737,HTML/CSS;JavaScript;Ruby
+12738,HTML/CSS;JavaScript;PHP;SQL
+12739,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;VBA
+12740,Bash/Shell/PowerShell;C++;Java;Python;R
+12741,JavaScript;Objective-C;Swift
+12742,Java;Swift
+12743,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Ruby;Rust;TypeScript;WebAssembly
+12744,C#;HTML/CSS;JavaScript;SQL
+12745,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Rust;TypeScript;WebAssembly;Other(s):
+12746,C#;SQL
+12747,C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA;Other(s):
+12748,Bash/Shell/PowerShell;C;C++;Erlang;JavaScript;PHP;Python;Scala;SQL;Other(s):
+12749,C#;Swift
+12750,Bash/Shell/PowerShell;C++;HTML/CSS;Python;Swift
+12751,JavaScript
+12752,Bash/Shell/PowerShell;JavaScript;Python;SQL
+12754,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+12755,HTML/CSS;Java;JavaScript;TypeScript
+12756,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Python
+12757,HTML/CSS;JavaScript
+12758,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+12759,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+12760,C;C++;Elixir;Python;Rust
+12761,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+12762,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+12763,C#;HTML/CSS;JavaScript;Python;Other(s):
+12764,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+12765,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+12766,C#;HTML/CSS;JavaScript;Python;SQL
+12767,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly;Other(s):
+12768,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+12769,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+12770,HTML/CSS;JavaScript;Ruby
+12772,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+12773,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;VBA
+12774,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+12775,HTML/CSS;JavaScript;PHP;SQL
+12776,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12777,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+12778,C;Java;JavaScript;Kotlin;Python;SQL
+12780,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+12781,Go;HTML/CSS;JavaScript;PHP;SQL
+12782,C;C++;Other(s):
+12783,C#;TypeScript
+12784,Java;SQL
+12785,HTML/CSS;JavaScript;SQL;TypeScript
+12786,C;C++;Python
+12787,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Scala;SQL;Other(s):
+12788,HTML/CSS;Java;JavaScript;Python
+12789,C++;JavaScript;Python
+12790,Bash/Shell/PowerShell;C++;JavaScript;Python
+12791,HTML/CSS;JavaScript;TypeScript
+12792,Go;HTML/CSS;JavaScript;Ruby;TypeScript
+12793,Java
+12794,HTML/CSS;JavaScript;Python;SQL
+12795,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+12796,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+12797,JavaScript;Python
+12798,HTML/CSS;JavaScript;PHP;Ruby;SQL
+12799,HTML/CSS;JavaScript;PHP;Python;SQL
+12800,C#;HTML/CSS;JavaScript;SQL
+12801,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+12802,HTML/CSS;JavaScript;Python;Ruby
+12804,HTML/CSS;JavaScript;Python;R;SQL
+12805,HTML/CSS;JavaScript;Python
+12806,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+12807,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+12809,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+12810,HTML/CSS;JavaScript;Python;Other(s):
+12811,C
+12812,Bash/Shell/PowerShell;JavaScript;Kotlin;Objective-C;SQL;Swift
+12813,HTML/CSS;JavaScript;Ruby;SQL
+12814,Bash/Shell/PowerShell;C++;Python
+12815,Assembly;C#;JavaScript;Kotlin
+12816,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+12817,HTML/CSS;JavaScript;PHP;SQL
+12818,C#;SQL;VBA
+12819,Java;R
+12820,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+12821,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+12822,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+12823,C;C++;Java;Python
+12824,Assembly;C;HTML/CSS;Java;PHP;VBA
+12825,C#;HTML/CSS;JavaScript;SQL
+12826,C;C++;C#;SQL
+12827,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Scala;Other(s):
+12828,R
+12829,HTML/CSS;Java;JavaScript;Python;SQL
+12830,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12831,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;SQL
+12832,C;C++;Java;Objective-C;Swift
+12833,Bash/Shell/PowerShell;Ruby;Swift
+12834,HTML/CSS;JavaScript;PHP;TypeScript;WebAssembly
+12835,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift
+12836,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Other(s):
+12837,C#;HTML/CSS;JavaScript;SQL
+12838,C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python
+12839,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Other(s):
+12840,C#;HTML/CSS;JavaScript;PHP;SQL
+12841,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+12842,HTML/CSS;Java;JavaScript;PHP;SQL
+12843,Bash/Shell/PowerShell;Python;Rust;SQL
+12844,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+12845,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Other(s):
+12846,HTML/CSS;PHP;Python
+12847,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+12848,C#;HTML/CSS;JavaScript;SQL
+12849,C;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript
+12850,F#;Go;HTML/CSS;JavaScript;Scala;SQL;Other(s):
+12851,Assembly;C++;C#;JavaScript;TypeScript
+12852,C;C++;C#;TypeScript
+12853,C#;Java;JavaScript;Objective-C
+12854,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Rust;SQL;VBA
+12855,C#;HTML/CSS;JavaScript;SQL
+12856,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+12857,HTML/CSS;Java;JavaScript;SQL;TypeScript
+12858,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+12859,C#;HTML/CSS;JavaScript;SQL
+12860,Bash/Shell/PowerShell;Dart;Java;Kotlin;Swift
+12861,HTML/CSS;JavaScript;PHP;SQL
+12862,HTML/CSS;JavaScript;TypeScript
+12863,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+12864,HTML/CSS;JavaScript;PHP
+12865,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+12866,HTML/CSS;JavaScript;Python;SQL
+12867,Python;R;Other(s):
+12868,Go;Python;SQL
+12869,Java;JavaScript;Python
+12870,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+12871,C++;Python
+12872,C;C++;C#;JavaScript;PHP;VBA
+12873,Java;JavaScript;Python
+12874,C++;C#;JavaScript;Rust;SQL
+12875,C#;JavaScript;VBA
+12876,C#
+12877,Bash/Shell/PowerShell;Java;JavaScript;Python
+12878,Python;SQL
+12879,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12880,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+12881,HTML/CSS;JavaScript;PHP;SQL
+12882,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12883,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+12884,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;Swift
+12885,Bash/Shell/PowerShell;Go;JavaScript;Objective-C;Ruby;Swift;TypeScript;Other(s):
+12886,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+12887,Python
+12888,C;C++;C#;HTML/CSS;Java;PHP;SQL
+12889,Bash/Shell/PowerShell;C++;Python;SQL
+12890,HTML/CSS;Java;JavaScript;TypeScript
+12891,C#;HTML/CSS;Java;JavaScript;TypeScript;VBA
+12892,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;VBA
+12893,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Objective-C;SQL;VBA
+12894,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+12895,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;Swift;VBA
+12896,HTML/CSS;JavaScript;TypeScript
+12897,C;Java
+12898,C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+12899,C#;Java;JavaScript;PHP;Python;Rust;TypeScript
+12900,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12901,Go;Java;JavaScript;Python;SQL
+12902,Bash/Shell/PowerShell;Python;SQL
+12903,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+12904,Java;Python
+12905,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+12906,Java;Python
+12907,HTML/CSS;JavaScript
+12908,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+12909,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;R;TypeScript;Other(s):
+12910,C#;HTML/CSS;Java;Kotlin;Objective-C;SQL
+12911,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+12912,Bash/Shell/PowerShell;Java;Python;Scala
+12913,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+12914,JavaScript;PHP;SQL
+12915,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12917,HTML/CSS;JavaScript
+12918,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+12919,HTML/CSS;JavaScript;PHP
+12920,Bash/Shell/PowerShell;F#;SQL
+12921,Bash/Shell/PowerShell;Go;Java;JavaScript;TypeScript;Other(s):
+12922,Assembly;Bash/Shell/PowerShell;Ruby
+12923,C;HTML/CSS;Java;PHP;Python;SQL
+12924,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Objective-C;PHP;Python;Rust;SQL;VBA;Other(s):
+12925,HTML/CSS;JavaScript
+12926,Bash/Shell/PowerShell;Dart;Java;Kotlin;Python
+12927,Python
+12928,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift
+12929,C++;HTML/CSS;JavaScript;Ruby
+12930,C#;Go;Python
+12931,C#;JavaScript;SQL;TypeScript
+12932,Java;Python;Swift
+12933,Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript
+12934,HTML/CSS;Java;JavaScript;SQL
+12935,C#;Dart;HTML/CSS;Java;JavaScript;SQL
+12936,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+12937,HTML/CSS;JavaScript;TypeScript
+12938,Java;JavaScript;PHP;Python
+12939,Scala
+12940,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Scala;Swift
+12941,HTML/CSS;JavaScript;PHP;Ruby;SQL
+12942,C#;HTML/CSS;JavaScript;PHP;SQL
+12943,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+12944,Java;Scala
+12945,HTML/CSS;JavaScript;Python;SQL;TypeScript
+12946,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+12947,C#;HTML/CSS;JavaScript;SQL
+12948,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+12949,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+12950,Assembly;C;HTML/CSS;JavaScript;Python;Swift
+12951,HTML/CSS;JavaScript;TypeScript
+12952,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+12953,Bash/Shell/PowerShell;Python;R;Ruby;SQL
+12954,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+12955,Bash/Shell/PowerShell;C#;Go;HTML/CSS;SQL;TypeScript;Other(s):
+12956,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+12957,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+12958,JavaScript;Python
+12959,C#;HTML/CSS;JavaScript;Ruby;SQL
+12960,JavaScript
+12961,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+12962,Bash/Shell/PowerShell;C#;Go;Java;Python;SQL
+12963,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12964,Java;Kotlin;TypeScript
+12965,Java;JavaScript;Python;SQL
+12966,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+12967,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+12968,C#;HTML/CSS;JavaScript
+12969,HTML/CSS;Java;JavaScript;PHP;Python
+12970,Java;Other(s):
+12971,Java
+12972,Java;Scala;SQL
+12973,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+12974,Python
+12975,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+12976,C;Other(s):
+12977,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Other(s):
+12978,C;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+12979,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+12980,HTML/CSS;JavaScript;Ruby;SQL
+12981,Java;Python;SQL
+12982,Elixir;JavaScript;Python;Ruby;TypeScript
+12983,C#;Swift
+12984,C#;Java;SQL
+12985,Assembly;C;C++;Go
+12986,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+12987,HTML/CSS;JavaScript;PHP;SQL
+12988,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+12989,Assembly;Bash/Shell/PowerShell;C;C++;Python
+12990,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+12991,C#;HTML/CSS;JavaScript;SQL
+12992,HTML/CSS;JavaScript
+12993,Assembly;Bash/Shell/PowerShell;C;Java;SQL;Swift;Other(s):
+12994,JavaScript;PHP;Python;SQL
+12995,C#;HTML/CSS;JavaScript;SQL;TypeScript
+12996,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+12997,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+12998,HTML/CSS;Java;JavaScript;PHP;Python
+12999,C++;C#;HTML/CSS;Java;JavaScript
+13000,C#;HTML/CSS;PHP
+13001,C#;Go;HTML/CSS;JavaScript;SQL
+13002,C#;HTML/CSS;JavaScript;SQL
+13003,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;TypeScript;Other(s):
+13004,PHP
+13005,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+13006,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;Ruby;SQL
+13007,C#;HTML/CSS;Python;SQL;Other(s):
+13008,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Rust
+13009,C;C++;C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+13010,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+13011,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+13012,C;C++;HTML/CSS;JavaScript;TypeScript
+13014,JavaScript;Python;Ruby;SQL
+13015,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+13016,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+13017,HTML/CSS;JavaScript;Ruby
+13018,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+13019,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+13020,C++;Java
+13021,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+13022,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+13023,HTML/CSS;Java;JavaScript;SQL;TypeScript
+13024,Java
+13025,HTML/CSS
+13026,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+13027,C#;HTML/CSS;JavaScript
+13028,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+13029,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+13030,HTML/CSS;Java;JavaScript;Ruby;SQL
+13031,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+13032,HTML/CSS;JavaScript;PHP;Python
+13033,Python
+13034,Bash/Shell/PowerShell;Java
+13035,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+13036,Java;JavaScript;PHP;SQL
+13037,Python;SQL;VBA
+13038,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+13039,PHP
+13040,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13041,HTML/CSS;Java;JavaScript;SQL
+13042,Java;JavaScript;SQL
+13043,Java;JavaScript;Python;SQL
+13044,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+13045,C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+13046,HTML/CSS;Java;JavaScript;SQL
+13047,HTML/CSS;JavaScript;SQL;TypeScript
+13048,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+13049,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+13050,HTML/CSS;JavaScript;PHP;SQL
+13051,Python;R;Scala;SQL
+13052,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+13053,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+13054,HTML/CSS;JavaScript
+13055,HTML/CSS;JavaScript;Python;SQL;TypeScript
+13056,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+13057,Java;JavaScript;SQL
+13058,Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;Swift
+13059,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+13060,HTML/CSS;Java;JavaScript;Python
+13061,C#;HTML/CSS;JavaScript;TypeScript
+13062,HTML/CSS;JavaScript
+13063,HTML/CSS;JavaScript;PHP;SQL;VBA
+13064,Bash/Shell/PowerShell;C++
+13065,JavaScript
+13066,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+13067,C#;HTML/CSS;JavaScript;PHP
+13068,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+13069,C#;Python
+13070,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+13071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+13072,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+13073,Go;Java;Ruby;Scala
+13074,Dart;Java;Kotlin
+13075,HTML/CSS;JavaScript;TypeScript
+13076,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+13077,HTML/CSS;Java;PHP
+13078,C#;Go;HTML/CSS;JavaScript;Python;TypeScript
+13079,Java
+13080,Java;JavaScript;PHP;Scala;SQL
+13081,Bash/Shell/PowerShell;C;C++;Java
+13082,C;C++;HTML/CSS;Java;JavaScript;SQL
+13083,HTML/CSS;JavaScript;PHP;Ruby;SQL
+13084,HTML/CSS;JavaScript;Python;TypeScript
+13085,PHP;Ruby;SQL
+13086,Bash/Shell/PowerShell;C;Clojure;Java;JavaScript;Scala;Other(s):
+13087,Dart;Java;Kotlin;Objective-C;Swift
+13088,HTML/CSS;JavaScript;SQL
+13089,JavaScript
+13090,HTML/CSS;JavaScript
+13091,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+13092,Bash/Shell/PowerShell;JavaScript;PHP
+13093,Java;JavaScript;PHP
+13094,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+13095,HTML/CSS;JavaScript;Ruby
+13096,C#;HTML/CSS;PHP;SQL
+13097,HTML/CSS;Python
+13098,C#;SQL
+13099,Java;SQL
+13100,C;Python
+13101,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+13102,Java;Kotlin;Objective-C;Swift
+13103,Python;Other(s):
+13104,Java;Kotlin
+13105,HTML/CSS;JavaScript;SQL
+13106,HTML/CSS;JavaScript;Ruby;SQL
+13107,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL
+13108,Bash/Shell/PowerShell;C#;R;SQL
+13109,Bash/Shell/PowerShell;C;PHP;Python;SQL
+13110,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+13111,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;WebAssembly
+13112,JavaScript;Ruby
+13113,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+13114,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+13115,HTML/CSS;JavaScript;Python;SQL;TypeScript
+13116,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+13117,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+13118,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+13119,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+13120,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+13121,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+13122,C#;HTML/CSS;Java;JavaScript;Python
+13123,HTML/CSS;JavaScript;Python;SQL
+13124,Assembly;C;C++;Java;JavaScript;Python
+13125,HTML/CSS;Java;JavaScript;TypeScript
+13126,Bash/Shell/PowerShell;HTML/CSS;Python
+13127,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+13128,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13129,C#;HTML/CSS;JavaScript;PHP;SQL
+13130,C#;Java;SQL
+13131,C;C++;Clojure;Python;R
+13132,Bash/Shell/PowerShell;JavaScript;Python;R;Scala;SQL
+13133,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+13134,Assembly;C#;HTML/CSS;PHP;Other(s):
+13135,C++;Java;Python;SQL
+13136,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;SQL
+13137,SQL
+13138,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+13139,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Swift
+13140,C++;C#;Python;SQL
+13141,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13142,Go;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL
+13143,C#;HTML/CSS;JavaScript;Python;SQL
+13144,HTML/CSS;JavaScript;PHP
+13145,HTML/CSS;Java;JavaScript;Python;Swift
+13146,HTML/CSS;Java;TypeScript
+13147,Bash/Shell/PowerShell;C++;Ruby;Rust
+13148,Objective-C;Swift
+13149,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+13150,Bash/Shell/PowerShell;C;C++;Java;Python
+13151,C;Java;Kotlin;R;SQL;Other(s):
+13152,C;C++;HTML/CSS;Java;JavaScript
+13153,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Java;JavaScript;PHP;Python;SQL;VBA
+13154,C;C++;Java;Python;Other(s):
+13155,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python
+13156,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;SQL
+13157,C++;Python
+13158,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+13159,C#;HTML/CSS;JavaScript;SQL;VBA
+13160,C++;HTML/CSS;Java;JavaScript;TypeScript
+13161,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+13162,Bash/Shell/PowerShell;JavaScript
+13163,HTML/CSS;JavaScript
+13164,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+13165,Go;Python
+13166,C#;HTML/CSS;JavaScript;Python;VBA
+13167,C;Python
+13168,C#;JavaScript;SQL
+13169,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13170,C;C++;Java
+13171,Bash/Shell/PowerShell;Java
+13172,C++;C#;Java;JavaScript;PHP;SQL
+13173,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+13174,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Python;SQL;Other(s):
+13175,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Swift
+13176,C#;SQL;VBA
+13177,C#;HTML/CSS;JavaScript;TypeScript
+13178,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;VBA
+13179,C;C++;HTML/CSS;JavaScript;VBA
+13180,C#;JavaScript
+13181,Bash/Shell/PowerShell;C;C++;Go;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+13182,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+13183,C#;HTML/CSS;SQL;Swift
+13184,HTML/CSS;JavaScript;Objective-C;TypeScript
+13185,Java;JavaScript;TypeScript
+13186,Python;SQL
+13187,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+13188,C++;HTML/CSS;Python;Rust
+13189,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL
+13190,HTML/CSS;JavaScript;Ruby;TypeScript
+13191,C#;Java;SQL
+13193,HTML/CSS;JavaScript;Ruby
+13194,HTML/CSS;Java;JavaScript
+13195,HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+13196,Python
+13197,C;C#;Clojure;Java;JavaScript;Python;TypeScript
+13198,HTML/CSS;JavaScript;Other(s):
+13199,Bash/Shell/PowerShell;C;C++;Dart;Go;Java;JavaScript
+13200,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+13201,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+13202,HTML/CSS;JavaScript;SQL
+13203,C;C++;Java;JavaScript
+13204,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+13205,C++;Java;PHP;SQL
+13206,HTML/CSS;JavaScript;PHP;SQL
+13207,C;HTML/CSS;JavaScript;PHP;SQL
+13208,Bash/Shell/PowerShell;C;C#;JavaScript;Python
+13209,HTML/CSS;JavaScript;TypeScript
+13210,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+13211,C#;SQL
+13212,C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+13213,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+13214,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+13215,HTML/CSS;JavaScript
+13216,C++;Python;Other(s):
+13217,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+13218,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+13219,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+13220,Bash/Shell/PowerShell;C;Objective-C;Swift
+13221,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+13222,C#;HTML/CSS;Java;JavaScript;SQL
+13223,Java;JavaScript;Python;Ruby;SQL
+13224,HTML/CSS;JavaScript;Python;SQL
+13225,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Other(s):
+13226,HTML/CSS;JavaScript;PHP;SQL
+13227,Bash/Shell/PowerShell;Java;PHP;SQL
+13228,Bash/Shell/PowerShell;C;HTML/CSS;Python;Rust
+13229,C#;Python;SQL
+13230,PHP;SQL
+13231,Bash/Shell/PowerShell;C#;Python
+13232,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13233,C#;HTML/CSS;SQL
+13234,Elixir;Erlang;HTML/CSS;JavaScript;Ruby
+13235,HTML/CSS;Java;JavaScript;Python;SQL
+13236,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+13237,HTML/CSS;PHP;Python;SQL
+13238,PHP;Python;SQL;Other(s):
+13239,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript
+13240,HTML/CSS;SQL;TypeScript
+13241,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+13242,C;JavaScript;Python
+13243,C;HTML/CSS;PHP
+13244,HTML/CSS;JavaScript;SQL;TypeScript
+13245,HTML/CSS;Java;JavaScript
+13246,C#;HTML/CSS;TypeScript
+13247,C#;SQL
+13248,Bash/Shell/PowerShell;Java;Python;SQL
+13249,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+13250,C#;JavaScript;SQL;TypeScript
+13251,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+13252,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+13253,HTML/CSS;Java;SQL;TypeScript
+13254,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+13255,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+13256,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13257,C;C++;HTML/CSS;JavaScript;Python
+13258,Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Swift
+13259,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;R;SQL
+13260,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+13261,Bash/Shell/PowerShell;C#;SQL
+13262,C;C++;C#;HTML/CSS;Java;SQL
+13263,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+13264,C;C++;C#;Swift
+13265,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+13266,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+13267,HTML/CSS;Java;Python
+13268,Objective-C;Other(s):
+13269,HTML/CSS;JavaScript;TypeScript
+13270,Go;HTML/CSS;JavaScript;PHP
+13271,C#
+13272,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+13273,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL
+13274,HTML/CSS;Java;JavaScript;Python;Swift
+13275,Go;JavaScript;Python;Ruby
+13276,Java;Kotlin
+13277,HTML/CSS;JavaScript;PHP;SQL
+13278,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+13279,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+13280,Assembly;PHP
+13281,C;C++;Python
+13282,C#;SQL;TypeScript
+13283,Assembly;Bash/Shell/PowerShell;Java;JavaScript;Python
+13284,C;C++;JavaScript;SQL
+13285,Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+13286,C#;HTML/CSS;JavaScript;SQL
+13287,SQL;Other(s):
+13288,Bash/Shell/PowerShell;PHP;SQL
+13289,HTML/CSS;JavaScript;PHP;SQL
+13290,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+13292,C#;HTML/CSS;Java;Python;SQL;TypeScript
+13293,HTML/CSS;Java;JavaScript
+13294,HTML/CSS;Java;PHP;SQL
+13295,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+13296,C++;JavaScript;Python;SQL;TypeScript
+13297,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+13298,Bash/Shell/PowerShell;C#;Kotlin;Python;Swift
+13299,C;Python
+13300,C++
+13301,C;C++;Go;Java;Python;R;Rust;Swift
+13302,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+13303,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+13304,HTML/CSS;JavaScript
+13305,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+13306,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+13307,Bash/Shell/PowerShell;C++;Python
+13308,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+13309,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+13310,C;HTML/CSS;JavaScript;PHP;Python
+13312,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;VBA
+13313,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL;VBA
+13314,HTML/CSS;JavaScript;Python;Ruby
+13315,Bash/Shell/PowerShell;Objective-C;Python;Other(s):
+13316,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+13317,Bash/Shell/PowerShell;C#;SQL
+13318,JavaScript;PHP
+13319,C++;Java;Python;Scala;Other(s):
+13320,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13321,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+13322,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+13323,Python
+13324,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+13325,Bash/Shell/PowerShell;Python
+13326,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+13327,Bash/Shell/PowerShell;Java;Python
+13328,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift
+13329,Assembly;C++;C#;HTML/CSS;JavaScript;Swift
+13331,C#;HTML/CSS;TypeScript
+13332,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+13333,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+13334,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+13335,JavaScript;Python;TypeScript
+13336,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+13337,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+13338,C#;HTML/CSS;JavaScript;SQL
+13339,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+13340,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+13341,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13342,C++;C#;HTML/CSS;JavaScript;Python;SQL
+13343,R
+13344,Bash/Shell/PowerShell;C#
+13345,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;TypeScript
+13346,Dart;Elixir;F#;Go;Java;Kotlin;Python;Rust;Scala
+13347,Bash/Shell/PowerShell;C++;C#;HTML/CSS;SQL;VBA;Other(s):
+13348,C;Java;Kotlin;Python
+13349,Bash/Shell/PowerShell
+13350,Bash/Shell/PowerShell;C++;Ruby
+13351,C;C++;C#;PHP;Python;SQL
+13352,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+13353,C++;C#
+13354,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+13355,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;SQL
+13356,Other(s):
+13357,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+13358,HTML/CSS;Java;Python;SQL
+13359,Bash/Shell/PowerShell;Clojure;Java;R
+13360,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+13361,C#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+13362,HTML/CSS;PHP
+13363,C++;HTML/CSS;JavaScript;Python;SQL
+13364,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+13365,Dart;Java;Objective-C;Swift
+13366,HTML/CSS;Python
+13367,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+13368,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;VBA
+13369,Assembly;C;C++;VBA
+13370,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+13371,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+13372,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;Swift;TypeScript
+13373,C++;HTML/CSS;PHP;Python
+13374,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+13375,Bash/Shell/PowerShell;Java;TypeScript
+13376,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+13377,C;C++;C#;HTML/CSS;Java;JavaScript
+13378,Java
+13379,Java;Kotlin;SQL
+13380,HTML/CSS;Java;JavaScript;SQL
+13381,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+13382,Assembly;C;Java;JavaScript;Ruby;Scala
+13383,Bash/Shell/PowerShell;Java;Python
+13384,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+13385,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+13386,C++;Python;R
+13387,C#;JavaScript
+13388,Dart;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+13389,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+13390,C++;HTML/CSS;Java;PHP;Python;R;Swift
+13391,Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;PHP;SQL
+13392,HTML/CSS;Java;SQL
+13393,HTML/CSS;Java;JavaScript;PHP
+13394,HTML/CSS;Java;JavaScript;TypeScript
+13395,C;C++;Java;Python
+13396,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+13397,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Rust;TypeScript
+13398,C#;HTML/CSS;JavaScript;SQL
+13399,C#;JavaScript;VBA
+13400,HTML/CSS;JavaScript;TypeScript
+13401,C#;HTML/CSS;JavaScript;PHP;TypeScript
+13403,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+13404,HTML/CSS;JavaScript;PHP;Python;SQL
+13405,C#;HTML/CSS;JavaScript
+13406,Java;SQL
+13407,Bash/Shell/PowerShell;C#;JavaScript;Python;Swift
+13408,HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;Other(s):
+13409,HTML/CSS;JavaScript;PHP
+13410,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+13411,HTML/CSS;Java;JavaScript;SQL;VBA
+13412,Java;JavaScript;TypeScript
+13413,HTML/CSS;JavaScript;TypeScript
+13414,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+13415,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13416,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+13417,HTML/CSS;PHP
+13418,HTML/CSS;JavaScript;PHP
+13419,C;C++;HTML/CSS;Java;JavaScript;PHP;R;Swift
+13420,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript
+13421,Python;R;Other(s):
+13422,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+13423,Bash/Shell/PowerShell;C#;SQL;VBA;Other(s):
+13424,HTML/CSS;JavaScript;TypeScript
+13425,C;C++;C#;Java
+13426,C#;F#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+13427,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+13428,Bash/Shell/PowerShell;JavaScript;Python;SQL
+13429,Assembly;Dart;Kotlin;Rust
+13430,Assembly;C;Java;Python
+13431,JavaScript
+13432,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13433,C#;HTML/CSS;Java;Python
+13434,C#;HTML/CSS;JavaScript;PHP
+13435,C#;HTML/CSS;JavaScript;SQL
+13436,HTML/CSS;JavaScript;Python;Rust;TypeScript;WebAssembly
+13437,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Rust
+13438,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13439,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+13440,Clojure;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+13441,HTML/CSS;JavaScript;PHP
+13442,Bash/Shell/PowerShell;Clojure;Python;SQL
+13443,Bash/Shell/PowerShell;JavaScript
+13444,C#;HTML/CSS;JavaScript;SQL
+13445,Assembly;HTML/CSS;Java;Kotlin;Objective-C;PHP;Swift
+13446,C;Python;Other(s):
+13447,Objective-C;Swift
+13448,C++;C#;HTML/CSS;JavaScript;Python
+13449,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+13450,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;SQL
+13451,C#;HTML/CSS;JavaScript
+13452,C;C++;C#;HTML/CSS;JavaScript;Python
+13453,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Rust;Scala;SQL;Swift;TypeScript
+13454,C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+13455,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+13456,HTML/CSS;JavaScript;PHP;SQL
+13457,C;C++;HTML/CSS;Java;Python
+13458,Assembly;C;C++;Python;Other(s):
+13459,HTML/CSS;JavaScript;Python;SQL
+13460,HTML/CSS;Java;JavaScript;Python
+13461,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13462,C#;HTML/CSS;Java;JavaScript;PHP
+13463,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Scala
+13464,C;C++;Python
+13465,Java
+13466,Bash/Shell/PowerShell;Java;Kotlin
+13467,C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;Swift
+13468,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+13469,Bash/Shell/PowerShell;JavaScript;Python;SQL
+13470,C;HTML/CSS;Java;JavaScript;SQL
+13471,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+13472,HTML/CSS;JavaScript;PHP
+13473,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+13474,C#;Python;Scala;SQL;VBA
+13475,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;Python;Ruby;SQL
+13476,HTML/CSS;JavaScript;PHP;Python
+13477,Bash/Shell/PowerShell;HTML/CSS;Python;Rust;SQL;Swift;TypeScript
+13478,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+13479,Other(s):
+13481,C#;Java;JavaScript;SQL
+13482,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Rust
+13483,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Rust;SQL
+13484,Bash/Shell/PowerShell;C;C++
+13485,Bash/Shell/PowerShell;C++;Java;Python;SQL
+13486,Bash/Shell/PowerShell;JavaScript;Ruby;Rust;TypeScript
+13487,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+13488,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+13489,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+13490,Bash/Shell/PowerShell;HTML/CSS;Python;Scala;SQL
+13491,JavaScript;TypeScript
+13492,HTML/CSS;JavaScript;PHP;Python;SQL
+13493,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+13494,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;Other(s):
+13495,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+13496,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+13497,Dart;HTML/CSS;Java;JavaScript;PHP
+13498,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+13499,Bash/Shell/PowerShell;Clojure;Dart;Go;HTML/CSS;JavaScript;Other(s):
+13500,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly;Other(s):
+13501,Bash/Shell/PowerShell;C++;Python
+13502,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL;VBA;Other(s):
+13503,Assembly;Bash/Shell/PowerShell;C++;Java;Python;SQL
+13504,Assembly;Bash/Shell/PowerShell;C;C++;Python
+13505,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+13506,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;R;SQL
+13507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+13508,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13509,C#
+13510,HTML/CSS;JavaScript;Python
+13511,HTML/CSS;JavaScript;PHP;SQL
+13512,C;Java;JavaScript;Python;Scala;SQL
+13513,C;Java;Python
+13514,Bash/Shell/PowerShell;C#;JavaScript;SQL;VBA
+13515,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+13516,C#;Java;Swift
+13517,C#;HTML/CSS;Java;JavaScript;SQL
+13518,Assembly;C;C++;Go;Java;JavaScript;Python;Swift
+13519,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;Rust;SQL;Other(s):
+13520,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python
+13521,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+13522,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+13523,Bash/Shell/PowerShell;C#;Java
+13524,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+13525,C++;C#
+13526,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+13527,C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+13528,C#;JavaScript;Python;SQL
+13529,Bash/Shell/PowerShell;C;C++;Python;SQL;Other(s):
+13530,C#;Other(s):
+13531,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+13532,Assembly;HTML/CSS;Java;SQL
+13533,Python;Ruby;Swift
+13534,Java
+13535,Assembly;HTML/CSS;Java;SQL
+13536,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+13537,HTML/CSS;JavaScript
+13538,Clojure;Java;Python;Rust;Scala;SQL
+13539,Bash/Shell/PowerShell;Java;SQL
+13540,Bash/Shell/PowerShell;C++;C#;HTML/CSS;SQL;TypeScript
+13541,C#;SQL
+13542,HTML/CSS;JavaScript
+13543,Bash/Shell/PowerShell;C++;JavaScript;Python
+13544,Objective-C;SQL
+13545,HTML/CSS;Java;JavaScript;SQL;TypeScript
+13546,Objective-C
+13547,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+13548,HTML/CSS;PHP;SQL
+13549,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+13550,JavaScript
+13551,HTML/CSS;JavaScript;SQL;Other(s):
+13552,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+13553,HTML/CSS;JavaScript;SQL;TypeScript
+13554,PHP
+13555,C;C++;Python
+13556,HTML/CSS;Java;JavaScript;PHP;Python
+13557,C++;JavaScript;Python;SQL;WebAssembly
+13558,HTML/CSS;JavaScript;PHP;Python;Swift;TypeScript;WebAssembly
+13559,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+13560,JavaScript;Python
+13561,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+13562,HTML/CSS;JavaScript;PHP;SQL
+13563,C#;HTML/CSS;JavaScript;SQL
+13564,Java;Python
+13565,Bash/Shell/PowerShell;C#;SQL
+13566,Bash/Shell/PowerShell;Go;Java;Python;Scala;SQL
+13567,HTML/CSS;JavaScript;Ruby;SQL
+13568,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+13569,C#
+13570,HTML/CSS;JavaScript
+13571,Java;JavaScript;Python;Scala;SQL
+13572,C++;Clojure;HTML/CSS;JavaScript;Kotlin;Python;Rust;Other(s):
+13573,Java;Kotlin;Python;Ruby
+13574,Bash/Shell/PowerShell;C++;JavaScript;Kotlin;SQL;TypeScript
+13575,HTML/CSS;Java;Python
+13576,HTML/CSS;Java;JavaScript;SQL
+13577,PHP
+13578,Bash/Shell/PowerShell;Java;TypeScript;WebAssembly
+13579,C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+13580,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+13581,C++;C#;SQL
+13582,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+13583,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13584,C#;Java
+13585,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+13586,C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+13587,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+13588,HTML/CSS;JavaScript;PHP;TypeScript
+13589,Bash/Shell/PowerShell;R;Ruby;SQL
+13590,C++;HTML/CSS;Java;JavaScript;Python
+13591,Java
+13592,HTML/CSS;JavaScript;PHP
+13593,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+13594,C#;Python
+13595,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+13596,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+13597,C#;HTML/CSS;JavaScript
+13598,VBA;Other(s):
+13599,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13600,C#;Java;Python;Other(s):
+13601,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+13602,Python;R;SQL
+13603,Bash/Shell/PowerShell;C++;Python;Rust;SQL
+13604,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+13605,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+13606,C#;HTML/CSS;TypeScript;Other(s):
+13607,C;C++;R
+13608,HTML/CSS;PHP
+13609,C;C++;HTML/CSS;Java;SQL
+13610,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+13611,C#;HTML/CSS;Java
+13612,F#;Scala;SQL;Other(s):
+13613,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13614,C#;JavaScript;Objective-C;Swift
+13615,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+13616,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+13617,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+13618,Bash/Shell/PowerShell;C;C++;Java;Python
+13619,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13620,C#;HTML/CSS;SQL;VBA
+13621,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;VBA
+13623,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+13624,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+13625,Java;Python;Ruby;SQL
+13626,HTML/CSS;JavaScript;Ruby;SQL
+13627,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+13628,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL
+13629,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+13630,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;Scala;SQL;VBA
+13631,HTML/CSS;Java;JavaScript;TypeScript
+13632,Bash/Shell/PowerShell;C#;SQL
+13633,HTML/CSS;Java;JavaScript;Python;VBA
+13634,C#
+13635,HTML/CSS;JavaScript;Python;Other(s):
+13636,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+13637,Assembly;C;C++;Java;Kotlin;Python;R
+13638,C#;HTML/CSS;Java;JavaScript;Python
+13639,Dart;Go;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+13640,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+13641,HTML/CSS;JavaScript;PHP;SQL
+13642,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;Other(s):
+13643,C#;HTML/CSS;JavaScript;TypeScript
+13644,C#;HTML/CSS;JavaScript
+13645,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+13647,C;PHP
+13648,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Other(s):
+13649,C;C++;Java;Python
+13650,C#;HTML/CSS;JavaScript
+13651,Bash/Shell/PowerShell;C#;JavaScript;SQL
+13652,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+13653,Python;R;SQL
+13654,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+13655,HTML/CSS;JavaScript;SQL
+13656,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+13657,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+13658,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+13659,C;C++;Java;SQL;Other(s):
+13660,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+13661,Java;SQL;Other(s):
+13662,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13663,C#;Java;JavaScript;Swift
+13664,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+13665,C#;JavaScript;SQL;Other(s):
+13666,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+13667,SQL;VBA
+13668,Kotlin;Objective-C;Ruby;Swift
+13669,HTML/CSS;Java;JavaScript;SQL
+13670,Java
+13672,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+13673,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+13674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+13675,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+13676,Java
+13677,Bash/Shell/PowerShell;JavaScript;Python;Rust;Other(s):
+13678,C++;C#;HTML/CSS;Objective-C;Python;Swift
+13679,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+13680,HTML/CSS;JavaScript;PHP;Python;SQL
+13681,C++;C#;Java;Python;SQL
+13682,HTML/CSS;JavaScript;SQL
+13683,Bash/Shell/PowerShell;C#;SQL
+13684,C#;HTML/CSS;JavaScript;Python;SQL
+13685,HTML/CSS;Java;JavaScript;PHP;SQL
+13686,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+13687,Bash/Shell/PowerShell;Java;JavaScript
+13688,C;C++;C#;PHP;Python;TypeScript
+13689,HTML/CSS;JavaScript
+13690,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+13691,Bash/Shell/PowerShell;C#;Python;SQL
+13692,C++
+13693,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript;Other(s):
+13694,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+13695,Python;SQL
+13696,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13697,C;C++;Java;Python;SQL
+13698,C#;HTML/CSS;Java;JavaScript;Python;SQL
+13699,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13700,C;C++;C#;HTML/CSS;JavaScript;SQL
+13701,HTML/CSS;JavaScript;PHP;SQL
+13702,JavaScript;Python;R;SQL
+13703,Bash/Shell/PowerShell;Go;Python
+13704,Bash/Shell/PowerShell;C++;Python;Other(s):
+13705,C#;HTML/CSS;JavaScript;SQL
+13706,Bash/Shell/PowerShell;C#;F#;Go;JavaScript;Kotlin;Python;SQL;TypeScript
+13707,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python
+13708,C;Python;R
+13709,C;C++;HTML/CSS;Java
+13710,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13711,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala
+13712,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+13713,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+13714,C#;HTML/CSS;JavaScript;SQL;TypeScript
+13715,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+13716,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+13717,VBA
+13718,C#;JavaScript;SQL
+13719,HTML/CSS;JavaScript
+13720,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+13721,HTML/CSS;JavaScript;PHP;SQL;Swift
+13722,Clojure;HTML/CSS;PHP;SQL
+13723,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python
+13724,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+13725,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+13726,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+13727,Bash/Shell/PowerShell;C;Go;Java;Python;SQL
+13728,Objective-C;Swift
+13729,Bash/Shell/PowerShell;JavaScript;SQL
+13730,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+13731,C;C++;HTML/CSS;JavaScript;SQL
+13732,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+13733,Java;JavaScript;Kotlin;Python;SQL;Other(s):
+13734,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+13735,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+13736,Python;SQL;Other(s):
+13737,Assembly;C;C++;Python
+13738,C++;C#
+13739,C#;Scala
+13740,HTML/CSS;Java;JavaScript;Kotlin;Other(s):
+13741,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;Go;HTML/CSS;Python;Ruby;Rust;Scala
+13742,C#
+13743,JavaScript;PHP;SQL
+13744,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+13745,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;Swift;Other(s):
+13746,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+13747,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+13748,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+13749,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+13750,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;Kotlin
+13751,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+13752,HTML/CSS;JavaScript;Swift;Other(s):
+13753,HTML/CSS;JavaScript;PHP;SQL
+13754,Bash/Shell/PowerShell;Python
+13755,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+13756,C#;JavaScript;SQL
+13757,C#
+13758,Objective-C;R;Swift
+13759,Bash/Shell/PowerShell;C++;C#;Python;SQL
+13760,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python
+13761,HTML/CSS;JavaScript;TypeScript
+13762,HTML/CSS;JavaScript;PHP;TypeScript
+13763,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+13764,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+13765,Go;JavaScript;Python;TypeScript
+13766,Bash/Shell/PowerShell;C;C++
+13767,SQL;VBA
+13768,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+13769,JavaScript;Python
+13770,C++;Swift
+13771,C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+13772,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+13773,HTML/CSS;JavaScript;PHP;SQL
+13774,Bash/Shell/PowerShell;Java;Kotlin;Scala
+13775,HTML/CSS;JavaScript;Python
+13776,C#;HTML/CSS;PHP;Python;SQL
+13777,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13778,C;C++;Java;JavaScript;Kotlin;PHP;Python;R;Scala;TypeScript
+13779,C#;HTML/CSS;SQL;TypeScript;VBA
+13780,HTML/CSS;JavaScript;Objective-C;TypeScript
+13781,Bash/Shell/PowerShell;Go;SQL;Other(s):
+13782,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+13783,C#;PHP
+13784,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+13785,HTML/CSS;Java;JavaScript;PHP;SQL
+13786,C++;C#;HTML/CSS;Java;PHP;SQL
+13787,HTML/CSS;JavaScript;Python
+13788,HTML/CSS;Java;JavaScript;PHP;SQL
+13789,Objective-C;Swift
+13790,C++;Go;HTML/CSS;JavaScript;Scala;TypeScript
+13791,SQL
+13792,Bash/Shell/PowerShell;Python;SQL
+13793,HTML/CSS;Java;JavaScript;PHP
+13794,HTML/CSS;JavaScript;PHP;R
+13795,F#;HTML/CSS;Java;Python;Scala
+13796,Java;Kotlin
+13797,HTML/CSS;JavaScript;Python
+13798,C;C++;C#;HTML/CSS;JavaScript;Other(s):
+13799,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+13800,HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+13802,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+13803,Dart;HTML/CSS;JavaScript;Ruby;Other(s):
+13804,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+13805,C;Java;Python
+13806,Clojure;HTML/CSS;Java;JavaScript;SQL
+13807,C;C++;HTML/CSS;Java;JavaScript;Python;Scala
+13808,C#
+13809,Swift
+13810,HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+13811,HTML/CSS;JavaScript;Python
+13812,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13813,VBA;Other(s):
+13814,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+13815,C;C++;HTML/CSS;Java;Swift
+13816,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+13817,C++;HTML/CSS;JavaScript;PHP
+13818,Bash/Shell/PowerShell;C#;Java;Python;SQL
+13819,Bash/Shell/PowerShell;C;Objective-C;Python;SQL;Swift
+13820,C#;HTML/CSS;JavaScript;SQL
+13821,Assembly;C;C++;Python;R;Other(s):
+13822,HTML/CSS;Java;JavaScript;TypeScript
+13823,HTML/CSS;JavaScript;Python
+13824,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+13825,Other(s):
+13826,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;SQL
+13827,C#;Java;Python
+13828,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+13829,Elixir;JavaScript;Python
+13830,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+13831,C#
+13832,Rust;TypeScript
+13833,Bash/Shell/PowerShell;C#;Python;SQL
+13834,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+13835,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+13836,HTML/CSS;JavaScript;TypeScript
+13837,C#;HTML/CSS;JavaScript;PHP
+13838,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+13839,HTML/CSS;JavaScript;Ruby
+13840,C;C++;C#
+13841,Bash/Shell/PowerShell;C;Go;Java;Python;Rust;SQL
+13842,HTML/CSS;Java;JavaScript;SQL
+13843,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+13844,C#;HTML/CSS;Java;Python;SQL
+13845,HTML/CSS;JavaScript;TypeScript
+13846,Java;JavaScript
+13847,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+13848,C++;C#;HTML/CSS;JavaScript;SQL
+13849,C#;JavaScript;TypeScript
+13850,Java;JavaScript
+13851,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+13852,Dart;Objective-C;Python;Rust;SQL
+13853,C;C++;HTML/CSS
+13854,HTML/CSS;Java;JavaScript;SQL;TypeScript
+13855,Bash/Shell/PowerShell;C;Go
+13856,C#
+13857,HTML/CSS;JavaScript;SQL
+13858,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift
+13859,Python
+13860,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL;TypeScript
+13861,Go;Java;Python
+13862,C;C++;HTML/CSS;JavaScript;Python;Rust
+13863,HTML/CSS;JavaScript;PHP;SQL;VBA
+13864,HTML/CSS;JavaScript;SQL;Other(s):
+13865,HTML/CSS;JavaScript;PHP;SQL
+13866,HTML/CSS;Java;PHP;Python;SQL
+13867,HTML/CSS;JavaScript;PHP;SQL;VBA
+13868,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13869,Assembly;C;HTML/CSS;Java;PHP;SQL
+13870,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+13871,Java;Kotlin
+13872,Bash/Shell/PowerShell;C++
+13873,C#;Java;Kotlin
+13874,HTML/CSS;JavaScript;Ruby;SQL
+13875,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript
+13876,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+13877,C#;JavaScript
+13878,Bash/Shell/PowerShell;Java;Scala;SQL
+13879,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+13880,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+13881,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript;WebAssembly
+13882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+13883,HTML/CSS;Python;SQL;VBA
+13884,Ruby
+13885,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+13886,C++;C#;Clojure;Java;Kotlin;Python;R;Other(s):
+13887,Bash/Shell/PowerShell;C#;SQL
+13888,Assembly;Dart;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+13889,Bash/Shell/PowerShell;Python
+13890,HTML/CSS;JavaScript;Python;SQL
+13891,HTML/CSS;JavaScript;PHP;SQL
+13892,Bash/Shell/PowerShell;Python
+13893,Bash/Shell/PowerShell;C#;Dart;PHP;Swift
+13894,PHP;Rust;SQL;TypeScript
+13895,HTML/CSS;JavaScript
+13896,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13897,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+13898,Bash/Shell/PowerShell;Python;SQL
+13899,C++;HTML/CSS;Python;Swift
+13900,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+13901,Python
+13902,C#;F#
+13903,Bash/Shell/PowerShell;Python
+13904,JavaScript;TypeScript
+13905,Java;JavaScript;Scala
+13906,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Other(s):
+13907,Bash/Shell/PowerShell;C++;HTML/CSS;Objective-C;R;SQL
+13908,C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+13909,C#;Dart;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+13910,C#;Java;JavaScript;PHP;TypeScript
+13911,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+13913,Clojure;HTML/CSS;JavaScript
+13914,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+13915,HTML/CSS;JavaScript
+13916,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+13917,C#;HTML/CSS;TypeScript
+13918,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+13919,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+13920,HTML/CSS;JavaScript;TypeScript
+13921,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+13922,HTML/CSS;Java;JavaScript
+13923,HTML/CSS;JavaScript;SQL;TypeScript
+13924,Bash/Shell/PowerShell;C;C++;Python;Rust
+13925,SQL;VBA
+13926,Bash/Shell/PowerShell;C;C++;C#;Python
+13927,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+13928,C;C++;C#;Go;JavaScript;PHP;Python;SQL;TypeScript
+13929,C++;C#;Objective-C
+13930,C;C++
+13931,Java
+13932,HTML/CSS;JavaScript;TypeScript
+13933,C++;HTML/CSS;JavaScript;PHP;Python
+13934,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13935,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+13936,C++;SQL
+13937,C;C++;Java;Python;SQL
+13938,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+13939,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+13940,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+13941,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+13942,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+13943,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+13944,C++;Go;HTML/CSS;Java;JavaScript
+13945,HTML/CSS;JavaScript;PHP;SQL
+13946,C++
+13947,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;Ruby
+13948,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL;TypeScript
+13949,C++;C#;HTML/CSS;JavaScript;SQL
+13950,Java;Kotlin
+13951,Bash/Shell/PowerShell;C;C#;Erlang;HTML/CSS;Java;JavaScript;Ruby;TypeScript;Other(s):
+13952,Bash/Shell/PowerShell;C++;Go;Python
+13953,C;HTML/CSS;Java;JavaScript
+13954,C++;R;Swift
+13955,Assembly;Bash/Shell/PowerShell;C;Python
+13956,C#;HTML/CSS;JavaScript;TypeScript
+13957,Java
+13958,HTML/CSS;JavaScript;PHP;Python
+13959,C#;HTML/CSS;JavaScript;PHP;SQL
+13960,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+13961,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL;VBA
+13962,Bash/Shell/PowerShell;Python
+13963,C#;Kotlin;PHP
+13964,C;C++;SQL;Other(s):
+13965,C#;HTML/CSS;JavaScript;SQL
+13966,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+13967,C#;HTML/CSS;JavaScript;TypeScript
+13968,C
+13969,JavaScript;PHP
+13970,C;HTML/CSS;JavaScript;TypeScript
+13971,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+13972,C#;SQL
+13973,C#;Python;Other(s):
+13974,Python
+13975,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+13976,C#;HTML/CSS;JavaScript;SQL
+13977,Bash/Shell/PowerShell;C++;Python;Other(s):
+13978,HTML/CSS;JavaScript;PHP;SQL
+13979,Bash/Shell/PowerShell;C#;Java;Kotlin;Python;Scala;SQL
+13980,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python
+13981,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+13982,HTML/CSS;Java;JavaScript;PHP;SQL
+13983,C++;HTML/CSS;JavaScript;Python
+13984,C;C++;Python
+13985,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+13986,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;PHP;Python
+13987,JavaScript;Python
+13988,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+13989,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python
+13990,HTML/CSS;Java;PHP;Python;SQL
+13991,Bash/Shell/PowerShell;HTML/CSS;SQL
+13992,PHP
+13993,C++;C#;HTML/CSS;JavaScript
+13994,Java;Kotlin;Objective-C;Swift
+13995,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+13996,C#;HTML/CSS;JavaScript;SQL
+13997,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+13998,Bash/Shell/PowerShell;Python
+13999,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript;WebAssembly
+14000,C;C++;HTML/CSS;JavaScript;SQL
+14001,C++;Python
+14002,Bash/Shell/PowerShell;C#;Java;WebAssembly
+14003,C++;Clojure;Java;Scala
+14004,Java
+14005,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+14006,HTML/CSS;JavaScript;SQL;TypeScript
+14007,Python;Other(s):
+14008,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift
+14009,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+14010,HTML/CSS;JavaScript;SQL;Other(s):
+14011,C;HTML/CSS;Java;JavaScript;SQL
+14012,Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+14013,Java;Objective-C;PHP;Swift;Other(s):
+14014,HTML/CSS;Java;JavaScript;PHP;Python
+14015,Bash/Shell/PowerShell;Other(s):
+14016,Go;HTML/CSS;JavaScript;Python;SQL
+14017,TypeScript
+14018,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+14019,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+14020,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+14021,HTML/CSS;PHP;Python
+14022,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+14023,Assembly;Bash/Shell/PowerShell;C++;Java;Python;SQL
+14024,C#;TypeScript
+14025,Bash/Shell/PowerShell;C#;Java;SQL
+14026,HTML/CSS;JavaScript;Python;TypeScript
+14027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+14028,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift;VBA
+14029,C#;HTML/CSS;JavaScript;SQL
+14030,HTML/CSS;JavaScript
+14031,Go;HTML/CSS;TypeScript
+14032,C#;HTML/CSS;JavaScript;PHP;SQL
+14033,HTML/CSS;JavaScript;PHP;TypeScript
+14034,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+14035,Assembly;Bash/Shell/PowerShell;Java;PHP;Python;R;Scala;SQL
+14036,Bash/Shell/PowerShell;JavaScript;PHP;SQL;VBA
+14037,Bash/Shell/PowerShell;C++;JavaScript;Ruby;Other(s):
+14038,Bash/Shell/PowerShell;Go;Scala;SQL
+14039,C#;HTML/CSS;JavaScript;SQL
+14040,HTML/CSS;JavaScript;PHP
+14041,Bash/Shell/PowerShell;C;Java;Rust
+14042,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+14043,C;C++;Java;Python;R;SQL;Other(s):
+14044,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+14045,Java
+14046,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+14047,C#;HTML/CSS;PHP;SQL;VBA
+14048,Bash/Shell/PowerShell;Java;JavaScript;Python
+14049,C++;Java;JavaScript;Python;TypeScript
+14050,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;PHP;SQL
+14051,Bash/Shell/PowerShell;Java;Python;Rust;Scala;SQL
+14052,C#;F#;HTML/CSS;TypeScript
+14053,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+14054,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+14055,Bash/Shell/PowerShell;Clojure;Java;JavaScript
+14056,Java
+14057,C#;HTML/CSS;Java;JavaScript;SQL
+14058,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+14059,C#;Go
+14060,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14061,Bash/Shell/PowerShell;C#
+14063,JavaScript;PHP;SQL
+14064,HTML/CSS;Java;JavaScript;Python;R;SQL;Swift;TypeScript
+14065,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+14066,HTML/CSS;JavaScript;TypeScript
+14067,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14068,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+14069,JavaScript;Python
+14070,C;C++;Swift
+14071,Bash/Shell/PowerShell;C#;Java;JavaScript
+14072,HTML/CSS;JavaScript
+14073,Bash/Shell/PowerShell;Go;JavaScript;TypeScript
+14074,HTML/CSS;JavaScript;Python;TypeScript
+14075,HTML/CSS;JavaScript;Other(s):
+14076,HTML/CSS;JavaScript;PHP;Python;SQL
+14077,Bash/Shell/PowerShell;C;C#;Clojure;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+14078,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+14079,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+14080,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+14081,C#;HTML/CSS;JavaScript;Python;SQL
+14082,HTML/CSS;Java;PHP
+14083,HTML/CSS;Java;JavaScript;PHP;SQL
+14084,HTML/CSS;JavaScript;Ruby;SQL
+14085,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14086,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+14087,HTML/CSS;JavaScript
+14088,HTML/CSS;Java;JavaScript;TypeScript
+14089,C++;C#;HTML/CSS;JavaScript;Python;Scala;TypeScript
+14090,HTML/CSS;JavaScript;Python;SQL
+14091,C++;Java
+14092,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+14093,Bash/Shell/PowerShell;C;C++;HTML/CSS;VBA
+14094,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14095,C++;Python
+14096,HTML/CSS;Java;JavaScript;Python;SQL
+14097,Bash/Shell/PowerShell;C;C++;Java;Python
+14098,HTML/CSS;JavaScript;Python
+14099,C#;HTML/CSS;Java;PHP;Python;SQL
+14100,Java;Kotlin;Objective-C;Swift
+14101,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+14102,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+14103,C#;HTML/CSS;JavaScript;SQL;TypeScript
+14104,Bash/Shell/PowerShell;C;Python
+14105,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+14106,C;Java;VBA
+14107,Python;R;SQL
+14108,JavaScript;PHP
+14109,C#;HTML/CSS;JavaScript;SQL;TypeScript
+14110,C++;C#;Python;VBA
+14111,Bash/Shell/PowerShell;C;HTML/CSS;PHP;SQL
+14112,Elixir;HTML/CSS;Java;JavaScript;Ruby;SQL
+14114,C;C++;HTML/CSS;JavaScript;Python
+14115,HTML/CSS;JavaScript;PHP;SQL
+14116,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14117,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+14118,HTML/CSS;Java;PHP;SQL
+14119,Assembly;Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python;SQL
+14120,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+14121,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+14122,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+14123,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+14124,Bash/Shell/PowerShell;Python;SQL;VBA;Other(s):
+14125,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+14126,Java;JavaScript;Python;Scala;SQL
+14127,C#;HTML/CSS;JavaScript
+14128,C#;HTML/CSS;JavaScript;SQL;TypeScript
+14129,C;HTML/CSS;JavaScript
+14130,HTML/CSS;Java;JavaScript;SQL;TypeScript
+14131,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+14132,Bash/Shell/PowerShell;C#;Other(s):
+14133,C;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+14134,Assembly;C;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+14135,JavaScript;Python;Other(s):
+14136,HTML/CSS;JavaScript;PHP
+14137,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14138,C#;HTML/CSS;JavaScript;SQL
+14139,Python
+14141,Bash/Shell/PowerShell;HTML/CSS;Python;R;Other(s):
+14142,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+14143,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+14144,C;Java;JavaScript;PHP;Python;Scala;SQL
+14145,HTML/CSS;JavaScript;Swift;TypeScript
+14146,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+14147,C#;JavaScript;SQL
+14148,HTML/CSS;JavaScript
+14149,Python;SQL
+14150,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+14151,HTML/CSS;JavaScript;PHP
+14152,Python
+14153,Java;Other(s):
+14154,HTML/CSS;Java;JavaScript;SQL
+14155,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;SQL
+14156,C++;Python
+14157,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+14158,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+14159,JavaScript;Python
+14160,C#;SQL;Other(s):
+14161,JavaScript
+14162,Bash/Shell/PowerShell;Java
+14163,HTML/CSS;Java;JavaScript;Other(s):
+14164,HTML/CSS;JavaScript;PHP;SQL
+14165,Bash/Shell/PowerShell;C#
+14166,C#;HTML/CSS;Java;Python
+14167,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+14168,C;C++;Java
+14169,C#;SQL
+14170,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+14171,Assembly;C;C++;C#;F#;JavaScript;PHP;SQL
+14172,HTML/CSS;JavaScript;PHP
+14173,Bash/Shell/PowerShell;C++;Java;Python;R;Swift;Other(s):
+14174,C#;SQL;VBA
+14175,Java;Python;Swift
+14176,HTML/CSS;JavaScript;PHP;SQL
+14177,Bash/Shell/PowerShell;Java
+14178,Java;JavaScript
+14179,C#;HTML/CSS;SQL
+14180,HTML/CSS;Java;JavaScript;TypeScript
+14181,Assembly;C;C++;C#;R;SQL
+14182,C;C++;HTML/CSS;JavaScript;PHP;Other(s):
+14183,Assembly;Python
+14184,HTML/CSS;Java;JavaScript;SQL
+14185,Elixir;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14186,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+14187,Assembly;HTML/CSS;Java;JavaScript;Kotlin
+14188,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14189,Bash/Shell/PowerShell;Java;JavaScript;SQL
+14190,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+14191,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+14192,Java;Python;SQL
+14193,Python;Ruby;SQL
+14194,C#;HTML/CSS;JavaScript;PHP;SQL
+14195,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+14196,C#;JavaScript;Python;SQL
+14197,Bash/Shell/PowerShell;Java;Python
+14198,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+14199,C#;HTML/CSS;JavaScript;TypeScript
+14200,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14201,C#;HTML/CSS;JavaScript
+14202,C#;Java;JavaScript;SQL;VBA
+14203,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python
+14204,Bash/Shell/PowerShell;C;SQL
+14206,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;JavaScript;PHP;SQL
+14207,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14208,Bash/Shell/PowerShell;Python;R;VBA
+14209,HTML/CSS;JavaScript;PHP;SQL
+14210,Bash/Shell/PowerShell;Python;SQL
+14211,C#;JavaScript;SQL;VBA
+14212,Bash/Shell/PowerShell;Clojure;JavaScript
+14213,SQL
+14214,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+14215,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14216,C;C++
+14217,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14218,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+14219,HTML/CSS;JavaScript;SQL
+14220,C++;HTML/CSS;JavaScript;Python;Rust
+14221,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Other(s):
+14223,Python
+14224,C++;HTML/CSS;Java;JavaScript;Objective-C;Rust;Scala;SQL;Swift;TypeScript
+14225,HTML/CSS;JavaScript;PHP;SQL
+14226,HTML/CSS;JavaScript;TypeScript
+14227,Java;JavaScript;PHP;SQL
+14228,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+14229,HTML/CSS;JavaScript;PHP;TypeScript
+14230,Bash/Shell/PowerShell;C++;Python;Rust
+14231,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+14232,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+14233,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+14234,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14235,Java;Kotlin;Swift
+14236,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+14237,C#;HTML/CSS;JavaScript
+14239,HTML/CSS;JavaScript;PHP;SQL
+14240,HTML/CSS;Java;JavaScript;TypeScript
+14241,Java;Python;Scala;SQL
+14242,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+14243,C++;C#;Rust
+14244,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+14245,SQL;Other(s):
+14246,C#;HTML/CSS;JavaScript;PHP;SQL
+14247,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+14248,HTML/CSS;Java;SQL;TypeScript
+14249,C#;HTML/CSS;JavaScript;SQL
+14250,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+14251,Python;Swift
+14252,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;Other(s):
+14253,Bash/Shell/PowerShell;C#;Other(s):
+14254,HTML/CSS;JavaScript;TypeScript
+14255,Bash/Shell/PowerShell;C;Java;Python;SQL
+14256,Dart;HTML/CSS;JavaScript;TypeScript
+14257,Java
+14258,C#;Java;SQL
+14259,Python
+14260,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+14261,JavaScript;TypeScript
+14262,C#;SQL;VBA
+14263,Bash/Shell/PowerShell;C;C++;C#
+14264,C#;HTML/CSS;JavaScript;SQL;VBA
+14265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+14266,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+14267,C#;HTML/CSS;JavaScript;SQL
+14268,HTML/CSS;JavaScript;Python;SQL;Swift
+14269,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+14270,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Other(s):
+14271,Java;Python;Swift
+14272,Java;Python;R;SQL
+14273,Bash/Shell/PowerShell;Python
+14274,HTML/CSS;JavaScript;PHP
+14275,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+14276,Assembly;Bash/Shell/PowerShell;C++;C#;Java;JavaScript;SQL;TypeScript
+14277,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Other(s):
+14278,C#;VBA
+14279,Java;JavaScript;Python;Scala
+14280,C#;SQL
+14281,HTML/CSS;JavaScript;Python
+14282,C#;SQL
+14283,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+14284,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;TypeScript
+14285,Java;Objective-C;Swift
+14286,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+14287,HTML/CSS;JavaScript;Ruby
+14288,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;Scala
+14289,Java
+14290,C#;HTML/CSS;JavaScript
+14291,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+14292,HTML/CSS;JavaScript;PHP;SQL
+14293,Bash/Shell/PowerShell;C;C++
+14294,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+14295,JavaScript;Ruby
+14296,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+14297,C++;Elixir;Erlang;JavaScript;Python
+14298,C#;HTML/CSS;JavaScript;SQL;TypeScript
+14299,C#;F#;Kotlin;Rust;Swift
+14300,Bash/Shell/PowerShell;C#;Java
+14301,Java;Ruby;SQL
+14302,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+14303,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+14304,JavaScript;Ruby;SQL
+14305,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python
+14306,C#;HTML/CSS;JavaScript
+14307,Bash/Shell/PowerShell;Python;R;VBA
+14308,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+14309,Bash/Shell/PowerShell;JavaScript;Python;R;Ruby;SQL;VBA
+14310,Bash/Shell/PowerShell;Python;SQL
+14311,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+14313,Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;Java;Python;SQL
+14314,JavaScript
+14315,Bash/Shell/PowerShell;C;Go;HTML/CSS;PHP;R;SQL;Other(s):
+14316,C#;JavaScript;SQL;TypeScript
+14317,Bash/Shell/PowerShell;JavaScript;Python
+14318,C#;HTML/CSS;Java;JavaScript;SQL
+14319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+14320,HTML/CSS;JavaScript;PHP
+14321,Bash/Shell/PowerShell;Java;Python;SQL
+14322,Bash/Shell/PowerShell;SQL
+14323,Bash/Shell/PowerShell;Java;Python
+14324,HTML/CSS;JavaScript;PHP;TypeScript
+14325,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+14326,C#;Objective-C;Swift
+14327,C#;F#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+14328,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;PHP;Python;SQL
+14329,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL;Other(s):
+14330,C#;JavaScript;Python;SQL;VBA
+14331,HTML/CSS;Java;JavaScript
+14332,HTML/CSS;JavaScript;PHP;Python;SQL
+14333,Java;Scala;SQL;TypeScript
+14334,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript;Other(s):
+14335,HTML/CSS;JavaScript;PHP;SQL;Swift
+14336,HTML/CSS;JavaScript
+14337,HTML/CSS;JavaScript
+14338,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+14339,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+14340,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+14341,C#;Dart;HTML/CSS;JavaScript;TypeScript
+14342,JavaScript;Ruby;SQL
+14343,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+14344,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+14345,Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+14346,Go;Java;Python;Ruby;Scala
+14347,SQL;VBA
+14348,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+14349,C#;HTML/CSS;Java;Python
+14350,C#;PHP;SQL;VBA
+14351,C;C++;JavaScript;Python;SQL;Swift;TypeScript
+14352,Python;R
+14353,JavaScript
+14354,HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift;TypeScript
+14355,Bash/Shell/PowerShell
+14356,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+14357,JavaScript;R
+14358,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+14359,C#;F#;HTML/CSS;JavaScript;Python;Ruby;SQL
+14360,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Other(s):
+14361,Dart;HTML/CSS;JavaScript;SQL;TypeScript
+14362,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14363,HTML/CSS;Java;JavaScript;SQL
+14364,Bash/Shell/PowerShell;C
+14365,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL
+14366,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14367,C;C++;Python;Other(s):
+14368,HTML/CSS;JavaScript;Ruby
+14369,HTML/CSS;Objective-C;Python;Swift
+14370,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+14371,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+14372,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL
+14373,Bash/Shell/PowerShell;C;C++;Python;SQL
+14374,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+14375,Bash/Shell/PowerShell;C;Java;JavaScript;SQL;TypeScript;Other(s):
+14376,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;R;SQL
+14377,C#
+14378,Bash/Shell/PowerShell;C;C++;Java;Python;Scala;SQL
+14379,C#;Java;SQL
+14380,C#;Java;JavaScript;Python;TypeScript
+14381,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;TypeScript
+14382,C#;SQL
+14383,Bash/Shell/PowerShell;C#;JavaScript;SQL
+14384,JavaScript;Ruby;SQL
+14385,Go;HTML/CSS;JavaScript;Python;Ruby
+14386,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+14387,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+14389,HTML/CSS;Java;JavaScript;SQL
+14390,Java;Other(s):
+14391,C;HTML/CSS;JavaScript
+14392,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+14393,HTML/CSS;JavaScript;Ruby;SQL
+14394,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;VBA
+14395,Bash/Shell/PowerShell;C;C++;C#;SQL
+14396,C#;HTML/CSS;Java;PHP;Python;R;SQL
+14397,HTML/CSS;JavaScript;PHP
+14398,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+14399,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+14400,C++;C#;Java;JavaScript
+14401,C;C#;HTML/CSS;Java;JavaScript;PHP;Python
+14402,C#;Go;Python;SQL
+14403,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+14404,JavaScript
+14405,HTML/CSS;JavaScript;Python;SQL;VBA
+14406,C;Elixir;Python;Rust
+14407,Assembly;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+14408,Bash/Shell/PowerShell;Dart;Java;JavaScript;Kotlin;Swift
+14409,Bash/Shell/PowerShell;C#;SQL
+14410,HTML/CSS;JavaScript;Python;Other(s):
+14411,Bash/Shell/PowerShell;Elixir;Erlang;SQL
+14412,HTML/CSS;Java;JavaScript;SQL;Other(s):
+14413,Assembly;Bash/Shell/PowerShell;C;C++;Python
+14414,Java
+14415,Java;SQL;TypeScript
+14416,HTML/CSS;Java;JavaScript
+14417,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14418,HTML/CSS;JavaScript;SQL;Other(s):
+14419,JavaScript;Python
+14420,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+14421,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14422,Bash/Shell/PowerShell;C;C++;JavaScript;Python;R;SQL
+14423,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP
+14424,Bash/Shell/PowerShell;Clojure;Go;Python;SQL
+14425,Java;JavaScript;Kotlin;PHP;SQL;VBA
+14426,C#;HTML/CSS;JavaScript;PHP;SQL
+14427,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+14428,Python;Scala;SQL
+14429,Scala;SQL
+14430,C#;JavaScript;SQL
+14431,C;C++;Java;R;Rust
+14432,HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+14433,C#;JavaScript;Python
+14434,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+14435,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+14436,C;C++;HTML/CSS;PHP;Python;R;SQL
+14437,Java;Kotlin
+14438,Bash/Shell/PowerShell;C;C#;Clojure;Java;JavaScript;PHP;Python;Ruby
+14439,Bash/Shell/PowerShell;C;Python
+14440,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+14441,C++;Dart;HTML/CSS;Java;SQL
+14442,C;HTML/CSS;JavaScript;PHP
+14443,HTML/CSS;JavaScript;SQL;Other(s):
+14445,Objective-C;PHP;Swift
+14446,HTML/CSS;Java;JavaScript;Python;SQL
+14447,Bash/Shell/PowerShell;Java;SQL
+14448,Bash/Shell/PowerShell;C#;HTML/CSS;Objective-C;SQL
+14449,Python;SQL
+14450,Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+14451,Java;JavaScript;SQL
+14452,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+14453,C;HTML/CSS;Java;Python
+14454,Assembly;Java;SQL
+14455,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14456,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+14457,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+14458,Bash/Shell/PowerShell;C;C++;C#;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+14459,C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+14460,Assembly;JavaScript;TypeScript
+14461,C#
+14462,Bash/Shell/PowerShell;JavaScript;Kotlin;Ruby
+14463,C++;HTML/CSS;SQL
+14464,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+14465,Java;JavaScript;Python;SQL
+14466,Go;Java;Python;Scala
+14467,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14468,HTML/CSS;Java;JavaScript;Python;VBA
+14469,C++;C#;HTML/CSS;JavaScript;SQL
+14470,C#;HTML/CSS;JavaScript;Python;SQL
+14471,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+14472,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+14473,Go;HTML/CSS;Objective-C;PHP;Python
+14474,C++;C#;HTML/CSS;JavaScript
+14475,Python
+14476,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+14477,C;C++;C#;Erlang;Go;JavaScript;VBA
+14478,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+14479,C#;Dart;JavaScript;Swift;TypeScript
+14480,Bash/Shell/PowerShell;C#;SQL;TypeScript
+14481,C;C#;HTML/CSS;Java;PHP
+14482,Bash/Shell/PowerShell;C#;JavaScript;PHP
+14483,C#;HTML/CSS;JavaScript;Python;R
+14484,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+14486,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+14487,Java;PHP
+14488,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+14489,Bash/Shell/PowerShell;JavaScript;Python;R;Scala;SQL
+14490,C#;HTML/CSS;JavaScript
+14491,Bash/Shell/PowerShell;Python;R;SQL
+14492,Bash/Shell/PowerShell;Python
+14493,Go;Java
+14494,PHP
+14495,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Python;SQL;VBA
+14496,HTML/CSS;Java;SQL
+14497,HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+14498,HTML/CSS;JavaScript;PHP
+14499,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+14500,Bash/Shell/PowerShell;C;C++;Python
+14501,C;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+14502,Bash/Shell/PowerShell;Java;Python;SQL
+14503,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+14504,Bash/Shell/PowerShell;JavaScript;Python;SQL
+14505,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+14506,Assembly;Bash/Shell/PowerShell;C;Java;PHP;Ruby
+14507,HTML/CSS;Java;JavaScript;SQL;TypeScript
+14508,Assembly;C++
+14509,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14510,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+14511,Bash/Shell/PowerShell;JavaScript;Other(s):
+14512,Elixir;JavaScript;Ruby;SQL
+14513,C#;HTML/CSS;JavaScript;TypeScript
+14514,HTML/CSS;Java;JavaScript
+14515,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;Ruby;Other(s):
+14516,C#;HTML/CSS;Python;SQL
+14517,Java;Kotlin
+14518,C#;JavaScript;SQL;TypeScript
+14519,HTML/CSS;Java;JavaScript;PHP;SQL
+14520,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14521,Bash/Shell/PowerShell
+14522,HTML/CSS;JavaScript;Python;SQL
+14523,C++;Python
+14524,C++;C#;SQL
+14525,HTML/CSS;Java;JavaScript;PHP;Rust;TypeScript
+14526,C++;Java;TypeScript
+14527,HTML/CSS;Java;Python;R;Scala
+14528,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+14530,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+14531,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+14532,Elixir;Java
+14533,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+14534,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+14535,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+14536,C#;Go;JavaScript;TypeScript
+14537,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+14538,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+14539,HTML/CSS;Java;SQL
+14540,C#;Java;JavaScript;PHP;SQL
+14541,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+14542,HTML/CSS;JavaScript;PHP;SQL
+14543,HTML/CSS;Java;JavaScript;SQL;Swift
+14544,Bash/Shell/PowerShell;Java;Kotlin;Python
+14545,Java;Ruby
+14546,HTML/CSS;Java;SQL
+14547,Bash/Shell/PowerShell;C;Java;Python;SQL;Other(s):
+14548,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;SQL
+14549,Java;Kotlin
+14550,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;TypeScript;WebAssembly
+14551,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14552,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+14553,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL;TypeScript
+14554,Clojure
+14556,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+14557,Bash/Shell/PowerShell;Java;Python;SQL
+14558,C#;JavaScript;Python;SQL;TypeScript
+14559,C++;TypeScript
+14560,SQL
+14561,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+14562,HTML/CSS;Java;Python;SQL
+14563,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+14565,C#;HTML/CSS;JavaScript;SQL
+14566,HTML/CSS;JavaScript;Python
+14567,Java;SQL
+14568,C;C++;Java
+14569,C;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+14570,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14571,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Scala;SQL
+14572,C++
+14573,Assembly;Java;Python
+14574,HTML/CSS;Java;JavaScript;Python
+14575,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;Other(s):
+14576,C#;Elixir;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+14577,C#;HTML/CSS;JavaScript;SQL
+14578,C;C++;HTML/CSS;JavaScript;PHP
+14579,Python;SQL
+14580,HTML/CSS;JavaScript;PHP;SQL
+14581,C#;HTML/CSS;JavaScript;SQL
+14582,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+14583,Bash/Shell/PowerShell;C;C#
+14584,C;C++;Java
+14585,C;Java
+14586,HTML/CSS;JavaScript
+14587,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+14588,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Other(s):
+14589,HTML/CSS;JavaScript;Ruby;SQL
+14590,HTML/CSS;JavaScript;PHP
+14591,C;C++;JavaScript;WebAssembly;Other(s):
+14592,Bash/Shell/PowerShell;C;C++;Python
+14593,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+14594,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+14595,HTML/CSS;Java;SQL;VBA
+14596,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+14597,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+14598,HTML/CSS;JavaScript;PHP;Swift
+14599,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+14600,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+14601,C#;HTML/CSS;JavaScript;SQL
+14602,JavaScript;Python
+14603,C++;Python
+14604,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+14605,HTML/CSS;JavaScript;Python
+14606,HTML/CSS;JavaScript;PHP
+14607,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+14608,C#;SQL
+14609,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+14610,C#;HTML/CSS;JavaScript;PHP;SQL
+14611,Java;SQL
+14612,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+14613,Java;JavaScript;Python
+14614,Java
+14615,C#;HTML/CSS;JavaScript;SQL;TypeScript
+14616,Bash/Shell/PowerShell;C;C++;SQL
+14617,HTML/CSS;JavaScript;PHP;SQL
+14618,Bash/Shell/PowerShell;C++;C#;Python;R;SQL;VBA
+14619,HTML/CSS;JavaScript
+14620,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+14621,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+14622,Java;JavaScript
+14623,Bash/Shell/PowerShell;Go;HTML/CSS;Python;Rust;Swift;TypeScript
+14624,Go;HTML/CSS;JavaScript;Rust;SQL
+14625,HTML/CSS;JavaScript;TypeScript
+14626,C;C++;Clojure;Erlang;Ruby;SQL
+14627,C++;HTML/CSS;Java;Python;SQL
+14628,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+14629,C++;Java
+14630,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+14631,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL
+14632,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+14633,C++;C#;HTML/CSS;JavaScript;Python
+14634,C;Python;Scala
+14635,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+14636,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14637,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+14638,R
+14639,Python
+14640,C#;HTML/CSS;JavaScript;SQL;TypeScript
+14641,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+14642,Python;R;SQL
+14643,C++;HTML/CSS;Java;JavaScript;PHP;Python;WebAssembly
+14644,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+14645,C#;HTML/CSS;Java;JavaScript;Python;SQL
+14646,HTML/CSS;JavaScript;PHP;SQL
+14647,C#;F#;HTML/CSS;JavaScript;TypeScript
+14648,C#;HTML/CSS;JavaScript;Python;SQL
+14649,Python;Other(s):
+14650,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+14651,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+14652,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL;TypeScript
+14653,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+14655,Bash/Shell/PowerShell;C#;Java;JavaScript;Objective-C;SQL;TypeScript
+14656,Bash/Shell/PowerShell;Go;Python
+14657,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+14658,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+14659,Go;JavaScript;Python
+14660,Java;SQL
+14661,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+14662,HTML/CSS;Java;JavaScript;PHP;TypeScript
+14664,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP
+14665,Bash/Shell/PowerShell;C;HTML/CSS;Python;Swift
+14666,Objective-C;Swift
+14667,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala
+14668,Java;JavaScript;SQL;TypeScript
+14669,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+14670,HTML/CSS;JavaScript;Other(s):
+14671,C#;HTML/CSS;JavaScript;SQL
+14672,C;C++;Elixir;Java;JavaScript;Ruby
+14673,Bash/Shell/PowerShell;C#;Java
+14674,Assembly;Bash/Shell/PowerShell;C;Python;Other(s):
+14675,C++
+14676,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;VBA;Other(s):
+14677,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14678,Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;Python;Swift
+14679,C#;HTML/CSS;Java;JavaScript;TypeScript
+14680,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL
+14681,JavaScript;PHP;SQL
+14682,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+14683,HTML/CSS;JavaScript;SQL;Other(s):
+14684,C;C++;Python
+14685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+14686,HTML/CSS;JavaScript;TypeScript
+14687,C#;HTML/CSS;Java;JavaScript
+14688,Bash/Shell/PowerShell;C#;SQL
+14689,HTML/CSS;JavaScript;R
+14690,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14691,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+14692,HTML/CSS;Java;JavaScript;Python;SQL
+14693,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+14694,HTML/CSS;JavaScript
+14695,HTML/CSS;Java;JavaScript;SQL;TypeScript
+14696,HTML/CSS;JavaScript;PHP;SQL
+14697,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP
+14698,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+14699,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;Ruby;TypeScript
+14700,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14701,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+14702,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+14703,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+14704,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+14705,C++;Python
+14706,C#;Go;Java;Kotlin;SQL;TypeScript
+14707,HTML/CSS;JavaScript;PHP;TypeScript
+14708,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14709,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+14710,HTML/CSS;JavaScript;PHP;SQL
+14711,JavaScript;Python;TypeScript;Other(s):
+14712,C#;JavaScript;Ruby;SQL;TypeScript
+14713,Bash/Shell/PowerShell;Java;PHP;SQL
+14714,Bash/Shell/PowerShell;C++;C#;WebAssembly
+14715,Java;Python;Other(s):
+14716,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+14717,C#;HTML/CSS;JavaScript;TypeScript
+14718,C;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+14719,C#;HTML/CSS;Java;JavaScript
+14720,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+14721,Assembly;Bash/Shell/PowerShell;C;C++;Python;R
+14722,C;C++;C#;HTML/CSS;Java
+14723,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+14725,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Swift;VBA
+14726,C#;Objective-C;Swift
+14727,C++
+14728,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14729,HTML/CSS;JavaScript;SQL;TypeScript
+14730,HTML/CSS;JavaScript;Ruby
+14731,Bash/Shell/PowerShell;Go;Java;JavaScript;R
+14732,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+14733,Bash/Shell/PowerShell;Kotlin;TypeScript
+14734,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14735,HTML/CSS;JavaScript;TypeScript
+14738,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+14739,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;TypeScript
+14740,Assembly;HTML/CSS;JavaScript;Python;SQL
+14741,Go;JavaScript;Python;SQL
+14742,C;C#;HTML/CSS;Java;JavaScript;PHP;Python
+14743,HTML/CSS;JavaScript;SQL
+14744,Bash/Shell/PowerShell;C;Objective-C;Swift
+14745,C++;C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+14746,C;C++;Java;Python;R;SQL;Other(s):
+14747,Java;JavaScript;Ruby;SQL;Other(s):
+14748,HTML/CSS;Java;JavaScript
+14749,Python;SQL
+14750,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;Swift;TypeScript
+14751,C#;HTML/CSS;JavaScript;TypeScript
+14752,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+14753,Go;Python;Ruby;SQL
+14754,C#;JavaScript;SQL
+14755,Bash/Shell/PowerShell;C++;C#
+14756,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;SQL
+14757,Java;JavaScript;PHP;SQL
+14758,Other(s):
+14759,HTML/CSS;Java;JavaScript
+14760,Java;SQL
+14761,Java;JavaScript
+14762,Assembly;Go;JavaScript;Python;SQL
+14763,C#;Other(s):
+14764,Bash/Shell/PowerShell;C;C++;Java;JavaScript
+14765,Bash/Shell/PowerShell;C;C++;Python
+14766,Assembly;HTML/CSS;Java;JavaScript;Other(s):
+14767,C++;C#
+14768,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+14769,HTML/CSS;Java;JavaScript;Swift;Other(s):
+14770,C++;HTML/CSS;JavaScript
+14771,HTML/CSS;Java;JavaScript;SQL;VBA
+14772,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+14773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+14774,Python
+14775,C;C++;Python
+14776,C#;HTML/CSS;JavaScript;SQL;VBA
+14777,C;C++;Java;Kotlin
+14778,C#;HTML/CSS;JavaScript;SQL
+14779,C++;C#
+14780,Java
+14781,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+14782,C#;Clojure;Go;HTML/CSS;Java;JavaScript;SQL
+14783,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+14784,C#;R
+14785,C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;VBA
+14786,HTML/CSS;JavaScript;Python;SQL;TypeScript
+14787,Assembly;Bash/Shell/PowerShell;C;C++
+14788,C;C#;Dart;HTML/CSS;Java;JavaScript;PHP
+14789,Rust
+14790,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+14791,Assembly;Bash/Shell/PowerShell;C++;JavaScript;TypeScript
+14792,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14793,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+14794,C;C++;HTML/CSS;Java;JavaScript;SQL
+14795,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+14796,Bash/Shell/PowerShell;C;C++;Java;JavaScript
+14797,C#;SQL
+14798,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+14799,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+14800,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+14801,C#;HTML/CSS;Java;PHP;SQL
+14802,HTML/CSS;PHP;SQL
+14803,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Swift;TypeScript
+14804,C#;HTML/CSS;JavaScript;TypeScript
+14805,C++;Clojure;HTML/CSS;JavaScript;Python;TypeScript
+14806,HTML/CSS;Java;JavaScript;PHP;SQL
+14807,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Other(s):
+14808,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+14809,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+14810,Java;PHP;Swift
+14811,Python
+14812,Bash/Shell/PowerShell;Python;Ruby
+14813,C#;HTML/CSS;JavaScript;SQL
+14814,Bash/Shell/PowerShell;C;C++;Python
+14815,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;TypeScript
+14816,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;TypeScript;Other(s):
+14817,Bash/Shell/PowerShell;Go;Python
+14818,Java;JavaScript;Kotlin;Ruby;SQL
+14819,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+14820,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+14821,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python
+14822,Dart
+14823,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+14824,C#;SQL
+14825,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+14827,Bash/Shell/PowerShell;Java;JavaScript;SQL;VBA
+14828,C#;Erlang;HTML/CSS;JavaScript;SQL;TypeScript
+14829,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+14830,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+14831,C#;HTML/CSS;JavaScript;PHP;SQL
+14832,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+14833,C#;Java;Objective-C;Swift
+14834,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;Python;Swift
+14835,Bash/Shell/PowerShell;JavaScript;TypeScript;Other(s):
+14836,Go;Rust
+14837,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+14838,C;HTML/CSS;JavaScript;PHP;SQL
+14839,C#
+14840,C#;Java;Kotlin;SQL;Other(s):
+14841,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+14843,Go;Java;JavaScript;Python;SQL
+14844,Objective-C;Swift
+14845,Dart;HTML/CSS;JavaScript;TypeScript
+14846,C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift;TypeScript
+14847,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+14849,Bash/Shell/PowerShell;Python
+14850,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+14851,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+14852,C++;C#;HTML/CSS;JavaScript;PHP;Rust
+14853,Java;SQL;Other(s):
+14854,Python
+14855,C#
+14856,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+14857,HTML/CSS;Java;JavaScript;SQL
+14858,Bash/Shell/PowerShell;Java;Python
+14859,HTML/CSS;JavaScript
+14860,HTML/CSS;JavaScript;TypeScript
+14861,C#
+14862,HTML/CSS;JavaScript
+14863,C;C++;Java;Python
+14864,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Other(s):
+14865,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+14866,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+14867,JavaScript;SQL;VBA
+14868,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+14869,Java;Python
+14870,C;C++;Java;PHP;Python
+14872,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+14873,Java;JavaScript;Python;Scala
+14874,HTML/CSS;JavaScript;Ruby
+14875,C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+14876,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+14877,C;C#;JavaScript;Python;Rust;SQL;TypeScript
+14878,HTML/CSS;JavaScript;PHP
+14879,HTML/CSS;JavaScript;PHP;Ruby;SQL
+14880,Java;Other(s):
+14881,HTML/CSS;JavaScript
+14882,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Swift
+14883,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+14884,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+14885,Java;SQL
+14886,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+14887,C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+14888,C++;JavaScript;Kotlin;Ruby;SQL;TypeScript
+14889,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+14890,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+14891,Go;HTML/CSS;JavaScript;PHP;SQL
+14892,Bash/Shell/PowerShell;Clojure;Python;SQL;Other(s):
+14893,Java;Kotlin;Ruby;SQL
+14894,JavaScript;PHP;SQL;TypeScript
+14895,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+14896,Clojure;Go;Python
+14897,Bash/Shell/PowerShell;Java;Scala
+14898,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+14899,C#;HTML/CSS;PHP
+14900,C#;HTML/CSS;JavaScript;SQL
+14901,Bash/Shell/PowerShell;Java;Scala;SQL
+14902,Elixir;Erlang;SQL
+14903,C#;SQL;VBA;Other(s):
+14904,C++;Objective-C;Python;Swift
+14905,HTML/CSS;JavaScript
+14906,JavaScript;PHP;Python;Ruby;TypeScript
+14907,HTML/CSS;JavaScript;PHP;SQL
+14908,C#;Go;Java;SQL
+14909,Bash/Shell/PowerShell;C;C++;Java
+14910,C;HTML/CSS;JavaScript;Python
+14911,C#;JavaScript;SQL
+14912,HTML/CSS;Python;R;SQL
+14913,Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+14914,C#;HTML/CSS;JavaScript;SQL;VBA
+14915,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+14916,HTML/CSS;JavaScript;PHP;SQL
+14917,JavaScript;PHP;SQL;Other(s):
+14918,HTML/CSS;JavaScript;PHP
+14919,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;VBA
+14920,HTML/CSS;JavaScript;Python;SQL;Swift
+14921,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript
+14922,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14923,HTML/CSS;Java;JavaScript;Other(s):
+14924,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+14925,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+14926,Java
+14927,C#;Java;JavaScript;Python;Scala;SQL
+14928,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+14929,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+14930,C#;HTML/CSS;JavaScript;SQL;TypeScript
+14931,C#
+14932,HTML/CSS;Java;JavaScript;Python;SQL
+14933,HTML/CSS;JavaScript
+14934,Other(s):
+14935,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+14936,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14937,HTML/CSS;Java;JavaScript
+14938,Bash/Shell/PowerShell;Python;R;VBA
+14939,Assembly;Elixir;HTML/CSS;Python;Rust;Other(s):
+14940,Java;JavaScript;Ruby;Swift
+14941,C;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+14942,C;C++;C#;Go;JavaScript;Python
+14943,Java;Rust;Other(s):
+14944,Bash/Shell/PowerShell;C++;Python
+14945,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+14946,PHP
+14947,C#;Java;Kotlin;SQL;Swift
+14948,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+14949,HTML/CSS;JavaScript;VBA
+14950,JavaScript
+14951,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;R;SQL
+14952,Bash/Shell/PowerShell;Python
+14953,HTML/CSS;JavaScript;TypeScript
+14954,Python;VBA
+14955,HTML/CSS;Java
+14956,Assembly;HTML/CSS;Java;Python
+14957,C#;HTML/CSS;JavaScript;PHP;SQL
+14958,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;Rust;SQL
+14959,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+14960,HTML/CSS;JavaScript;PHP
+14961,C#;HTML/CSS;Java;JavaScript
+14962,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+14963,HTML/CSS;JavaScript;SQL
+14964,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+14965,C#;HTML/CSS;JavaScript;Python;SQL
+14966,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+14967,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+14968,C;C++;Python
+14969,JavaScript;Python
+14970,Python
+14971,HTML/CSS;JavaScript;TypeScript
+14972,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+14973,C++;Python
+14974,HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+14975,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+14976,Go;HTML/CSS;JavaScript
+14977,Bash/Shell/PowerShell;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+14978,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+14979,Bash/Shell/PowerShell;C;C++;Objective-C;Python;Swift
+14980,C++;C#;HTML/CSS
+14981,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14982,Bash/Shell/PowerShell;C++;C#;JavaScript;PHP;Python;Other(s):
+14983,C#;Java;JavaScript;Ruby;SQL
+14984,C++;C#;Python
+14985,C++
+14986,Python;R;Other(s):
+14987,HTML/CSS;JavaScript;PHP;SQL
+14988,C;C++;Python;Other(s):
+14989,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14990,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+14991,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+14992,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+14993,HTML/CSS;Java;Kotlin;Python;SQL
+14994,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+14995,HTML/CSS;JavaScript;PHP;Python
+14996,Python
+14997,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+14998,HTML/CSS;JavaScript;Python
+14999,HTML/CSS;JavaScript;PHP;SQL
+15000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+15001,HTML/CSS;JavaScript;PHP;SQL
+15002,Scala;SQL;Other(s):
+15003,Python;R
+15004,HTML/CSS;Java;JavaScript;SQL;TypeScript
+15005,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+15006,Bash/Shell/PowerShell;C#;Python;SQL
+15007,HTML/CSS;Java;JavaScript;Python;SQL
+15008,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+15009,C;HTML/CSS;Java;PHP;Python;Scala;SQL
+15010,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+15011,Bash/Shell/PowerShell;HTML/CSS;Python
+15012,C++;C#;SQL
+15014,Python;SQL;Other(s):
+15015,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Ruby;SQL
+15016,C;C++;HTML/CSS;Java;Scala;SQL
+15017,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+15018,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;VBA;WebAssembly
+15019,C++;C#;SQL
+15020,Java;JavaScript;Python
+15021,C;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+15022,Bash/Shell/PowerShell;Python;Scala
+15023,Objective-C;Swift
+15024,Elixir;Erlang;JavaScript;Python;Ruby
+15025,HTML/CSS;Java;JavaScript;PHP;SQL
+15026,C++;HTML/CSS;JavaScript;Python;SQL
+15027,Python
+15028,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+15029,VBA
+15030,C#;HTML/CSS;Java;JavaScript;SQL
+15031,Bash/Shell/PowerShell;C++;Java;PHP;Python;R;Scala;SQL
+15032,HTML/CSS;JavaScript;PHP;SQL
+15033,Bash/Shell/PowerShell;C#;SQL
+15034,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+15035,C#;Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+15036,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+15037,JavaScript;TypeScript
+15038,C#
+15039,HTML/CSS;Java;JavaScript;SQL
+15040,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;WebAssembly
+15041,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15042,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+15043,Java;Kotlin;SQL;Other(s):
+15044,HTML/CSS;Java;PHP;Python
+15046,C#;HTML/CSS;JavaScript;SQL
+15047,C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+15048,C;C++;HTML/CSS;Objective-C;PHP;SQL
+15049,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15050,Bash/Shell/PowerShell;C++;Java;JavaScript;TypeScript;WebAssembly
+15051,Assembly;C;Java;Swift
+15052,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15053,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+15054,HTML/CSS;Java;JavaScript;Python;R;SQL
+15055,Java;JavaScript
+15056,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+15057,Bash/Shell/PowerShell;JavaScript;Python
+15058,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15059,HTML/CSS;JavaScript;Python;SQL
+15060,C;Go;HTML/CSS;JavaScript
+15061,Bash/Shell/PowerShell;C#;Python;R;SQL;VBA
+15062,HTML/CSS;JavaScript;PHP;SQL
+15063,HTML/CSS;JavaScript;PHP;Python;SQL
+15064,C;C++
+15065,HTML/CSS;JavaScript;PHP;SQL
+15066,C#;HTML/CSS;JavaScript;SQL
+15067,HTML/CSS;Java;JavaScript;PHP;SQL
+15068,Assembly;C++
+15069,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Other(s):
+15070,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+15071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+15072,C#;SQL
+15073,Assembly;Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+15074,HTML/CSS;Java;PHP;SQL
+15075,Java;JavaScript
+15076,HTML/CSS;JavaScript;PHP;SQL
+15077,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+15078,HTML/CSS;JavaScript
+15079,Bash/Shell/PowerShell;C++;Other(s):
+15080,Clojure;F#;Java;Kotlin;Scala;Other(s):
+15081,HTML/CSS;Ruby
+15082,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+15083,Bash/Shell/PowerShell;C++;C#;VBA
+15084,Python;SQL
+15085,Clojure
+15086,Swift
+15087,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+15088,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+15089,Go;HTML/CSS;Java;JavaScript
+15090,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+15091,Java;JavaScript;TypeScript
+15092,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+15094,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+15095,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+15096,HTML/CSS;Java;PHP;SQL;TypeScript
+15097,HTML/CSS;Java;JavaScript
+15098,HTML/CSS;JavaScript;PHP
+15099,Bash/Shell/PowerShell;C#;PHP;Python;SQL
+15100,Assembly;Bash/Shell/PowerShell;C;C++;Python
+15101,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+15102,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Other(s):
+15103,Bash/Shell/PowerShell;C;Java;Python
+15104,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+15105,Assembly
+15106,HTML/CSS;Java;Scala
+15107,HTML/CSS;JavaScript;PHP
+15108,C;Python
+15109,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby
+15110,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+15111,Java
+15112,C++;Java
+15113,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+15114,HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+15115,C++;HTML/CSS;Java;Swift
+15116,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+15117,Assembly;Bash/Shell/PowerShell;C;C#;Java;Objective-C
+15118,Bash/Shell/PowerShell;Java;JavaScript;Python
+15119,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+15120,R
+15121,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+15122,Dart;Java;JavaScript;Kotlin
+15123,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+15124,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+15125,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15126,Java;JavaScript;Python;SQL
+15127,PHP;Python;SQL
+15128,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15129,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+15130,HTML/CSS
+15131,HTML/CSS;JavaScript
+15132,Bash/Shell/PowerShell;C;C++;Python
+15133,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+15134,C++;C#;HTML/CSS;JavaScript;PHP;R
+15135,Dart;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+15136,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+15137,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+15138,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust
+15139,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+15140,HTML/CSS;JavaScript;PHP;SQL
+15141,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+15142,HTML/CSS;JavaScript;PHP
+15143,Bash/Shell/PowerShell;Java
+15144,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15145,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+15146,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+15147,Bash/Shell/PowerShell;C;C++
+15148,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Other(s):
+15149,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+15150,Clojure
+15151,Objective-C;PHP;Python;SQL;Swift
+15152,C;HTML/CSS;Java;JavaScript;Python
+15154,HTML/CSS;JavaScript;PHP;TypeScript
+15155,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+15156,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Rust;SQL;Other(s):
+15157,Swift
+15158,HTML/CSS;JavaScript;PHP
+15159,Bash/Shell/PowerShell;HTML/CSS;Java
+15161,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python
+15162,C#;HTML/CSS;TypeScript
+15163,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+15164,Java;Python;Other(s):
+15165,JavaScript;PHP
+15166,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+15167,C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+15168,HTML/CSS;Java;Kotlin;SQL
+15169,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+15170,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+15171,HTML/CSS;Java;JavaScript;PHP;SQL
+15172,C;C#;Java;Objective-C;Ruby;Swift
+15173,HTML/CSS;Java;JavaScript;SQL
+15175,Swift
+15176,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+15178,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+15179,HTML/CSS;Java;Python;SQL;TypeScript
+15180,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+15181,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+15182,JavaScript;R
+15183,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+15184,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+15185,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+15186,JavaScript;PHP
+15187,C#;HTML/CSS;JavaScript;TypeScript
+15188,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+15189,Bash/Shell/PowerShell;Java;SQL
+15190,HTML/CSS;JavaScript
+15191,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+15192,Python
+15193,C#;HTML/CSS;Python;SQL
+15194,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+15195,HTML/CSS;JavaScript;Swift
+15196,C
+15197,Ruby;Other(s):
+15198,HTML/CSS;PHP;Python;R;SQL
+15199,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15200,C++;C#;Python;R;SQL
+15201,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+15202,C++;HTML/CSS;JavaScript;PHP;SQL
+15203,HTML/CSS;JavaScript
+15204,HTML/CSS;JavaScript
+15205,C
+15206,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+15207,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15209,HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL
+15210,C++;HTML/CSS;Java
+15211,C++;Python
+15212,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+15213,Bash/Shell/PowerShell;Java;JavaScript;Python
+15214,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15215,Java;JavaScript;SQL;Other(s):
+15216,HTML/CSS;JavaScript;PHP;SQL
+15217,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+15218,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15219,HTML/CSS;Java;JavaScript;PHP;SQL
+15220,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+15221,HTML/CSS;JavaScript;Python
+15222,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+15223,Bash/Shell/PowerShell;C;C++;Java;Ruby;SQL;Other(s):
+15224,C#;Java;Objective-C;Swift
+15225,Java;PHP;Python;SQL
+15226,Bash/Shell/PowerShell;Go;Java;Kotlin;Objective-C;Python;SQL;Swift
+15227,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+15228,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+15229,C#;Java
+15230,HTML/CSS;JavaScript;Other(s):
+15231,HTML/CSS;Python;SQL;VBA
+15232,Assembly;C;C#;SQL
+15233,Assembly;Go;PHP
+15234,Bash/Shell/PowerShell;Python;SQL
+15235,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+15236,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15237,HTML/CSS;JavaScript;PHP;SQL
+15238,HTML/CSS;JavaScript;PHP;SQL
+15239,C#;HTML/CSS;JavaScript;SQL
+15240,Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;HTML/CSS;Java;JavaScript;Python;SQL
+15241,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript
+15242,HTML/CSS;Java;JavaScript;PHP;TypeScript
+15243,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+15244,Other(s):
+15245,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+15246,HTML/CSS;JavaScript;PHP
+15247,Bash/Shell/PowerShell;Java
+15248,Bash/Shell/PowerShell;C#;SQL
+15249,HTML/CSS;JavaScript;PHP;SQL
+15250,Bash/Shell/PowerShell;Python;R
+15251,Assembly;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python
+15252,HTML/CSS;Java;JavaScript;SQL
+15253,HTML/CSS;Java
+15254,HTML/CSS;JavaScript;PHP;TypeScript
+15255,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+15256,HTML/CSS;Python
+15257,C;C++;Java
+15258,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15259,HTML/CSS;Java;SQL
+15260,Java;Other(s):
+15261,HTML/CSS;JavaScript;Python;TypeScript
+15262,C++;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+15263,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+15264,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+15265,C#;HTML/CSS;JavaScript;SQL
+15266,C#;HTML/CSS;JavaScript;SQL
+15267,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+15268,HTML/CSS;JavaScript;PHP
+15269,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Swift
+15270,C#;HTML/CSS;JavaScript;TypeScript
+15271,Bash/Shell/PowerShell;PHP;Python;Ruby;SQL
+15272,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+15273,Assembly;Java;Python
+15274,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+15275,Go;Java;Kotlin;Other(s):
+15276,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+15277,C#;HTML/CSS;JavaScript;SQL
+15278,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+15279,HTML/CSS;JavaScript;SQL
+15280,JavaScript
+15281,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+15282,Java;JavaScript;SQL;TypeScript
+15283,HTML/CSS;JavaScript;PHP;SQL
+15284,HTML/CSS;Java;JavaScript;PHP;SQL
+15285,HTML/CSS;Java;JavaScript;SQL
+15286,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+15287,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+15288,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15289,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+15290,JavaScript;Ruby
+15291,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15292,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;TypeScript;VBA;Other(s):
+15293,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+15294,Objective-C;Swift
+15295,Python
+15296,Python;R
+15297,Go;JavaScript;PHP;SQL
+15298,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+15299,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+15300,C;HTML/CSS;JavaScript;Python;SQL
+15301,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+15302,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+15303,HTML/CSS;Java;JavaScript
+15304,HTML/CSS;JavaScript;PHP;Python;Swift
+15305,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+15306,C#;HTML/CSS;Java;JavaScript;SQL
+15307,Go;HTML/CSS;Java;JavaScript;Python;SQL
+15308,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+15309,HTML/CSS;Java;Kotlin
+15310,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Swift;TypeScript;VBA
+15311,Python;SQL
+15312,Bash/Shell/PowerShell;JavaScript
+15313,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15314,C#
+15315,HTML/CSS;Java;JavaScript;SQL;Other(s):
+15316,HTML/CSS;JavaScript;PHP;Rust;SQL
+15317,C;C++;Go;Python;R;Swift
+15318,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+15319,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;TypeScript;VBA
+15320,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;Swift;TypeScript
+15322,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+15323,C#;HTML/CSS;JavaScript;SQL
+15324,C
+15325,Python
+15326,Assembly;C#;Other(s):
+15327,JavaScript;PHP
+15328,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+15329,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala
+15330,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL;Other(s):
+15331,C++;Java;Python
+15332,Bash/Shell/PowerShell;C++;Java;R
+15333,C#;HTML/CSS;Java;JavaScript;SQL
+15334,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+15335,JavaScript;TypeScript
+15336,Assembly;HTML/CSS;JavaScript;PHP;SQL
+15337,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+15338,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;WebAssembly;Other(s):
+15339,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+15340,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+15341,HTML/CSS;PHP
+15342,Assembly;Bash/Shell/PowerShell;WebAssembly
+15343,C;HTML/CSS;Java;JavaScript;Python
+15344,C++;Python;SQL
+15345,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+15346,C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+15347,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+15348,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;Ruby;TypeScript
+15349,C;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+15350,C#;HTML/CSS;Java;SQL
+15351,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+15352,C++;HTML/CSS;JavaScript;Python;SQL
+15354,C#;HTML/CSS;JavaScript;SQL
+15355,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+15356,C#;HTML/CSS;Python;SQL
+15357,HTML/CSS;JavaScript
+15359,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Ruby
+15360,C;HTML/CSS;JavaScript;Python;Ruby
+15361,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+15362,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+15363,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15364,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+15365,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+15366,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+15367,Bash/Shell/PowerShell;Java;JavaScript
+15368,C;C#;HTML/CSS;JavaScript;SQL
+15369,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15370,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+15372,Assembly;C#;HTML/CSS;Java;JavaScript;SQL
+15373,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+15374,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+15375,C++;Python
+15376,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+15377,Java;JavaScript;SQL;TypeScript
+15378,Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;TypeScript
+15379,C#;JavaScript;Python;TypeScript
+15381,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+15382,C;C++;HTML/CSS;Java;SQL
+15383,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+15384,C#;SQL
+15385,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+15386,JavaScript
+15387,Go;HTML/CSS;JavaScript;Python
+15388,Bash/Shell/PowerShell;C++;Go;Kotlin;Ruby
+15389,C#;HTML/CSS;JavaScript;SQL
+15390,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+15391,Python
+15392,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Other(s):
+15393,Java
+15394,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+15395,C#;Objective-C;Swift
+15396,Bash/Shell/PowerShell;Python;R;SQL
+15397,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+15398,C#;JavaScript;Python;Ruby;SQL
+15399,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+15400,HTML/CSS;JavaScript
+15401,C#;HTML/CSS;JavaScript;SQL;VBA
+15402,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+15403,Assembly;C++;HTML/CSS;JavaScript;PHP;Other(s):
+15404,Bash/Shell/PowerShell;C;HTML/CSS;Objective-C
+15405,HTML/CSS;Java;PHP
+15406,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15407,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15408,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+15409,JavaScript;Ruby
+15410,C++;C#;HTML/CSS;JavaScript;Rust;SQL
+15411,Bash/Shell/PowerShell;C#;HTML/CSS
+15412,Bash/Shell/PowerShell;C;C++;HTML/CSS;Objective-C
+15413,C#;Java;JavaScript;Kotlin;TypeScript
+15414,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+15415,C++;HTML/CSS;Java;JavaScript;TypeScript
+15416,HTML/CSS;JavaScript;PHP;SQL
+15417,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+15418,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+15419,C;JavaScript
+15420,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R
+15421,C++;SQL;VBA
+15422,Bash/Shell/PowerShell;Java;Python;SQL
+15423,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;VBA;WebAssembly
+15424,Bash/Shell/PowerShell;Java;Python;Other(s):
+15425,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+15426,C#;HTML/CSS;JavaScript;SQL
+15427,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+15428,C++;HTML/CSS;JavaScript;PHP;TypeScript
+15429,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+15430,Java
+15431,HTML/CSS;JavaScript;PHP;Ruby
+15432,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+15433,HTML/CSS;JavaScript;Python
+15434,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+15435,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+15436,HTML/CSS;PHP
+15437,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+15438,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+15439,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+15440,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+15441,Assembly;C;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+15442,HTML/CSS;Java;JavaScript;SQL
+15443,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;R;Ruby
+15444,HTML/CSS;Python;SQL
+15445,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15446,Java;JavaScript;PHP;SQL
+15447,HTML/CSS;Python;R
+15448,C++;C#;Java;JavaScript;Python
+15449,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+15450,HTML/CSS;JavaScript;SQL
+15451,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript
+15452,Bash/Shell/PowerShell;C#;Go;JavaScript;Ruby;SQL;TypeScript
+15453,Scala
+15454,C#
+15455,C;C++;C#;Java
+15456,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+15457,Bash/Shell/PowerShell;C#;F#;JavaScript;SQL;TypeScript
+15458,SQL
+15459,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15460,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15461,Other(s):
+15462,HTML/CSS;Java;Objective-C;PHP;SQL;Swift
+15463,C#;Java;JavaScript;PHP;SQL
+15464,C#;Python;SQL;Other(s):
+15465,Java;SQL
+15466,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15467,Java
+15468,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15469,HTML/CSS;JavaScript
+15470,C;C++;Java;JavaScript;TypeScript
+15471,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15472,Java;Python;R;SQL
+15474,C;C++;Java;PHP;Python
+15475,Dart;Python;SQL
+15476,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+15477,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Objective-C;Python;SQL;Other(s):
+15478,HTML/CSS;Java;JavaScript;SQL
+15479,Assembly;Bash/Shell/PowerShell;C;Python
+15480,C;C++;HTML/CSS;Java;JavaScript;PHP
+15481,HTML/CSS;Java;JavaScript;Python;SQL
+15482,Java;JavaScript
+15483,HTML/CSS;PHP;Python;R;SQL;VBA
+15484,JavaScript;Ruby;SQL
+15485,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+15486,C++;SQL;Other(s):
+15487,HTML/CSS;JavaScript;PHP;Python
+15488,HTML/CSS;Java;Kotlin
+15489,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+15490,Python;SQL;Other(s):
+15491,C++;HTML/CSS;PHP;Python;SQL
+15492,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+15493,C#;HTML/CSS;JavaScript;SQL
+15494,C#;HTML/CSS;Java;JavaScript;Kotlin
+15495,Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+15496,R;SQL
+15497,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+15498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+15499,Bash/Shell/PowerShell;HTML/CSS
+15500,HTML/CSS;JavaScript;TypeScript
+15501,Objective-C;Swift
+15502,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+15503,Bash/Shell/PowerShell;HTML/CSS;Python;Swift;Other(s):
+15504,Bash/Shell/PowerShell;C;Java
+15505,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+15507,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15508,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+15509,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+15510,Bash/Shell/PowerShell;C++;JavaScript;Python
+15511,Java
+15512,C#;JavaScript;SQL
+15513,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;VBA;Other(s):
+15514,Bash/Shell/PowerShell;C;Java;SQL
+15515,VBA
+15516,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+15517,Python
+15518,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15519,Bash/Shell/PowerShell;C#;JavaScript;Objective-C;Ruby;Swift
+15520,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+15521,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15522,HTML/CSS;JavaScript;Python;TypeScript
+15523,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+15524,Java;Kotlin;SQL;Swift
+15525,C#;HTML/CSS;Java;JavaScript;TypeScript
+15526,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+15527,Go
+15528,Bash/Shell/PowerShell;C#;Java;Objective-C;SQL
+15529,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+15530,R;SQL;Other(s):
+15531,C;C#;Java;Python;SQL;VBA
+15532,C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+15533,C#;Java;JavaScript
+15534,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+15535,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+15536,HTML/CSS;Java;JavaScript;Python;R;SQL
+15537,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+15538,Assembly;C;C++;Java
+15539,C;C++;HTML/CSS;Java;SQL
+15540,Bash/Shell/PowerShell;C#;Python;SQL
+15541,C#;Java
+15542,HTML/CSS;JavaScript;Python
+15543,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+15544,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15545,HTML/CSS;JavaScript;PHP;SQL
+15546,Assembly;C;C++;Java;SQL
+15547,PHP
+15548,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+15549,HTML/CSS;Java;JavaScript;PHP;SQL
+15550,C;Go;Java;JavaScript;Python;Ruby;Rust;SQL
+15551,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15552,PHP
+15553,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;VBA
+15554,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+15556,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+15557,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;Python;Other(s):
+15558,C++;HTML/CSS;Java;Python
+15559,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+15560,C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+15561,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+15562,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+15563,HTML/CSS;JavaScript
+15564,Bash/Shell/PowerShell;C++;Python;Other(s):
+15565,Java;Kotlin
+15566,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+15567,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15568,JavaScript;VBA
+15569,HTML/CSS;Java;JavaScript;Python
+15570,HTML/CSS;PHP;TypeScript
+15571,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Other(s):
+15572,Assembly;C#;HTML/CSS;SQL;TypeScript
+15573,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+15574,HTML/CSS;JavaScript;PHP;SQL
+15575,C#;HTML/CSS;JavaScript;PHP;TypeScript
+15576,HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+15577,R
+15578,C++;HTML/CSS;JavaScript;PHP;SQL
+15579,C#;HTML/CSS;JavaScript;SQL
+15580,HTML/CSS;Java;SQL;TypeScript
+15581,C#;HTML/CSS;JavaScript;Python;SQL
+15582,HTML/CSS;Java;JavaScript;Swift
+15583,C#;HTML/CSS;JavaScript;PHP;SQL
+15584,Bash/Shell/PowerShell;C#;Python;R;SQL;TypeScript
+15585,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+15586,Java;JavaScript;R;SQL
+15587,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+15588,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+15589,HTML/CSS;JavaScript;TypeScript
+15590,HTML/CSS;JavaScript;TypeScript
+15591,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+15592,Bash/Shell/PowerShell;Python
+15593,C;C++;Java;Kotlin;R;SQL
+15594,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+15595,Go;HTML/CSS;PHP;SQL;TypeScript
+15596,HTML/CSS;JavaScript;Python;SQL
+15597,C#;HTML/CSS;JavaScript;Kotlin;Objective-C;Swift
+15598,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+15599,HTML/CSS;JavaScript;PHP;SQL
+15600,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;TypeScript
+15601,C#;Java
+15602,C;C++;HTML/CSS;JavaScript;SQL;Other(s):
+15603,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+15604,HTML/CSS;Java;JavaScript;TypeScript;VBA
+15605,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+15606,C#;SQL
+15607,Java;JavaScript
+15608,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+15609,Assembly;C;C++;C#;HTML/CSS;JavaScript;SQL
+15610,SQL;VBA
+15611,HTML/CSS;JavaScript
+15612,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15613,C#
+15614,HTML/CSS;JavaScript;Ruby;SQL
+15615,Go;HTML/CSS;JavaScript;PHP;Python
+15616,Bash/Shell/PowerShell;C++;Python;SQL
+15617,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+15618,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+15619,R;SQL;VBA
+15621,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;TypeScript
+15622,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15623,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+15624,Assembly;JavaScript
+15625,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+15626,Java;JavaScript;SQL
+15627,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+15628,C#;HTML/CSS;JavaScript;SQL;Swift
+15629,Other(s):
+15630,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;WebAssembly
+15632,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+15633,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+15634,C++;Python;Swift
+15635,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;Other(s):
+15636,Bash/Shell/PowerShell;Python
+15637,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15638,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15639,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+15640,Bash/Shell/PowerShell;C;Go;Java;Python
+15641,C#;HTML/CSS;JavaScript;SQL;VBA
+15642,C;C++;C#;HTML/CSS;JavaScript;SQL
+15643,C#;F#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+15644,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+15645,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+15646,HTML/CSS;Java;JavaScript;SQL
+15647,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+15648,Bash/Shell/PowerShell;C;C++;Python
+15649,Java;Kotlin;Python;Swift
+15650,Python;R;SQL
+15651,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15652,C;C++;Java;Python
+15653,JavaScript;PHP
+15654,C++;C#;SQL
+15655,Other(s):
+15656,C;C++;HTML/CSS;Java;JavaScript;SQL
+15657,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+15658,Java
+15659,C#;Go;Java;Kotlin;Python
+15660,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+15661,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+15662,Go;HTML/CSS;Java;Python;R;SQL
+15663,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+15664,C;C++;Java;Python
+15665,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15666,C#;HTML/CSS;JavaScript;TypeScript
+15667,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+15668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+15669,C#;JavaScript;SQL
+15670,Java
+15671,HTML/CSS;JavaScript;PHP;TypeScript
+15672,Go;JavaScript;SQL
+15673,HTML/CSS;Python
+15674,C#;HTML/CSS;JavaScript;SQL
+15675,Bash/Shell/PowerShell;JavaScript;Ruby
+15676,HTML/CSS;JavaScript;PHP;Python;SQL
+15677,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+15678,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+15679,JavaScript;Ruby
+15680,HTML/CSS;JavaScript;VBA
+15681,HTML/CSS;JavaScript;PHP;SQL
+15682,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+15683,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+15684,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Swift
+15685,Bash/Shell/PowerShell;C;Python
+15686,C#;Java;JavaScript;Python;Scala;TypeScript
+15687,Assembly;Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+15688,Java;VBA
+15689,C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+15690,C;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala
+15691,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;Swift
+15692,C#;JavaScript;SQL
+15693,HTML/CSS;SQL;VBA
+15694,Java;Kotlin;SQL
+15695,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+15696,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15697,C++;Python
+15698,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+15699,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+15700,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+15701,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+15702,C#;Java;Other(s):
+15703,Bash/Shell/PowerShell;C#;SQL
+15704,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+15705,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15706,C#
+15707,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL
+15708,C;C++;HTML/CSS;Java
+15709,Go;HTML/CSS;JavaScript;Rust;SQL
+15710,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+15711,C#;PHP;TypeScript
+15712,C#
+15713,C#;Java;PHP;Python;R
+15714,C++;HTML/CSS
+15715,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15716,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+15717,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+15718,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+15719,Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL;TypeScript
+15720,Go;HTML/CSS;JavaScript
+15722,HTML/CSS;JavaScript;TypeScript
+15723,Java;Ruby
+15724,C#;Java;Kotlin
+15725,Bash/Shell/PowerShell;SQL;VBA
+15726,Python;SQL
+15727,Assembly;Bash/Shell/PowerShell;C;Java;SQL
+15728,C#;HTML/CSS;JavaScript;SQL
+15729,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+15730,C;C++;Java;JavaScript;Python;SQL
+15731,C++;C#;HTML/CSS;Java;Kotlin;Rust;SQL
+15732,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15733,HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+15734,Python;VBA
+15735,Python
+15736,JavaScript;PHP;Python
+15737,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15738,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15739,Clojure;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+15740,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+15741,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;R
+15742,C;C++;Python
+15743,Java
+15744,Dart;Java;Kotlin;TypeScript
+15745,Assembly;Bash/Shell/PowerShell;C;C++;F#
+15746,Java;SQL
+15747,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+15748,C;C++;Java;Python
+15749,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+15750,C++;HTML/CSS;Java;JavaScript;Kotlin
+15751,HTML/CSS;Java;SQL;TypeScript
+15752,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+15753,C#;HTML/CSS;JavaScript;PHP;SQL
+15754,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+15755,Ruby
+15756,C#;HTML/CSS;JavaScript;PHP
+15757,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;TypeScript
+15758,C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+15759,C++;Java
+15760,Java;JavaScript;Kotlin
+15761,Dart;Kotlin;Swift
+15762,Bash/Shell/PowerShell;Python
+15763,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+15764,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15765,C;C++;PHP;Ruby
+15766,Python
+15767,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Other(s):
+15768,HTML/CSS;JavaScript;PHP;SQL
+15769,C#;Java;JavaScript;SQL
+15770,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL
+15771,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+15772,HTML/CSS;Java;Kotlin;R
+15773,HTML/CSS;JavaScript;PHP;SQL;VBA
+15774,Assembly;Bash/Shell/PowerShell;C
+15775,C#;Ruby;TypeScript
+15776,HTML/CSS;Java;JavaScript;R;SQL
+15777,HTML/CSS;JavaScript;PHP;SQL
+15778,HTML/CSS;Java;JavaScript;TypeScript
+15779,Assembly;HTML/CSS;JavaScript
+15780,C#;Java;SQL;VBA
+15781,C#;HTML/CSS;JavaScript;SQL
+15782,C;C#;VBA;Other(s):
+15783,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+15784,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+15785,HTML/CSS;Java;JavaScript;SQL
+15786,Java;JavaScript;Python;Rust
+15787,C#;HTML/CSS;Java;JavaScript;Python;R
+15788,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+15789,JavaScript
+15790,Bash/Shell/PowerShell;Clojure;Java
+15791,HTML/CSS;JavaScript;PHP;SQL
+15792,C#;HTML/CSS;Java;JavaScript;SQL
+15793,C;C++
+15794,HTML/CSS;JavaScript;PHP;SQL
+15795,HTML/CSS;JavaScript;PHP;SQL
+15796,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+15797,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+15798,C#;JavaScript;SQL
+15799,HTML/CSS;JavaScript
+15801,C#;Java
+15802,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15803,Bash/Shell/PowerShell;C;C++;Python
+15804,R
+15805,C#;HTML/CSS;JavaScript;Python
+15806,Bash/Shell/PowerShell;C++;Java;SQL;TypeScript;Other(s):
+15807,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+15808,Java;Python
+15809,C#;HTML/CSS;JavaScript;SQL;VBA
+15810,HTML/CSS;JavaScript
+15811,C#;JavaScript;SQL;TypeScript
+15812,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;TypeScript
+15813,HTML/CSS;JavaScript;PHP;Python;R;SQL
+15814,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+15815,JavaScript;SQL;VBA
+15816,C++;C#;HTML/CSS;Java;JavaScript;SQL
+15817,HTML/CSS;Java;JavaScript;SQL;TypeScript
+15818,Assembly;C
+15819,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+15820,C#;SQL
+15821,Bash/Shell/PowerShell;Java;SQL
+15822,Java;Python
+15823,HTML/CSS;Java;JavaScript;SQL
+15824,Java;Kotlin;Swift
+15825,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python;SQL
+15826,Bash/Shell/PowerShell;C++;Java;Rust
+15827,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15828,JavaScript;Python
+15829,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+15830,Elixir;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Swift;TypeScript
+15832,R;SQL
+15833,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15834,HTML/CSS;Java;JavaScript;PHP;R;SQL
+15835,C;HTML/CSS;Java;JavaScript;SQL
+15836,C#
+15837,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+15838,Bash/Shell/PowerShell;C++;JavaScript;Swift
+15839,HTML/CSS;JavaScript;PHP
+15840,C;HTML/CSS;Java;PHP;Python;SQL
+15841,HTML/CSS;JavaScript;PHP;SQL
+15842,C#;HTML/CSS;JavaScript;TypeScript
+15843,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+15844,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+15845,HTML/CSS;JavaScript;Python;TypeScript
+15846,C;C++;JavaScript
+15847,C#;JavaScript;TypeScript
+15848,Bash/Shell/PowerShell;Java;Python;SQL
+15849,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+15850,C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+15851,C#;HTML/CSS;JavaScript;SQL
+15852,Erlang;Python;Other(s):
+15853,Python
+15854,C#;HTML/CSS;JavaScript;TypeScript
+15855,Bash/Shell/PowerShell;JavaScript;Objective-C;Ruby;Swift
+15856,HTML/CSS;Java;SQL;Other(s):
+15857,HTML/CSS;JavaScript;Kotlin;Python;SQL
+15858,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+15859,Bash/Shell/PowerShell;Python;Scala;SQL;Other(s):
+15860,HTML/CSS;JavaScript;PHP;SQL
+15861,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+15862,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+15863,HTML/CSS;JavaScript;Python;R;SQL;VBA
+15864,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15865,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+15866,HTML/CSS;JavaScript;PHP
+15867,C#;SQL;Other(s):
+15868,Bash/Shell/PowerShell;C#;Java;Python;SQL;TypeScript
+15869,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+15870,C++;Python
+15871,HTML/CSS;Java;JavaScript;SQL;TypeScript
+15872,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+15873,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;VBA;Other(s):
+15874,Bash/Shell/PowerShell;C++
+15875,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java
+15876,C++;C#;Python
+15877,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+15878,C#;SQL
+15879,Java;JavaScript;Ruby;SQL
+15880,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+15881,Bash/Shell/PowerShell;Java;Python;Other(s):
+15882,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL;WebAssembly
+15883,C;Python
+15884,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+15885,C++;Python
+15886,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R
+15887,HTML/CSS;Python;Other(s):
+15889,Java;Kotlin
+15890,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+15891,Java;JavaScript;TypeScript
+15892,C#;HTML/CSS;Java;JavaScript
+15893,Assembly;Bash/Shell/PowerShell;C;Other(s):
+15894,C#;HTML/CSS;JavaScript;PHP;SQL
+15895,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+15896,HTML/CSS;PHP
+15897,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15898,Assembly;Bash/Shell/PowerShell;C;Clojure;Go;Python
+15899,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL;WebAssembly;Other(s):
+15900,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+15901,HTML/CSS;Java;JavaScript;Objective-C;Python
+15902,HTML/CSS;PHP
+15903,C;Go;HTML/CSS;Java;JavaScript;Kotlin
+15904,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+15905,C#;HTML/CSS;JavaScript;SQL;VBA
+15906,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Rust;Scala;TypeScript
+15907,HTML/CSS;JavaScript
+15908,Bash/Shell/PowerShell;JavaScript;Scala
+15909,C;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Scala;SQL;Swift
+15910,C;Java;JavaScript;Kotlin;Python;Rust
+15911,HTML/CSS;Java;JavaScript;PHP;TypeScript
+15912,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Python;R;Ruby;SQL;Swift;VBA
+15913,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15914,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+15915,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+15916,C#;HTML/CSS;Java;JavaScript;Scala;SQL
+15917,C#;HTML/CSS;Java;JavaScript;Python;SQL
+15918,HTML/CSS;JavaScript
+15919,Assembly;C++;C#;HTML/CSS;Java;Objective-C;Python;Swift
+15920,C;C++;C#;Python
+15921,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+15922,C;HTML/CSS;JavaScript;Objective-C;Swift;WebAssembly
+15923,Java
+15924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+15926,HTML/CSS;Java;JavaScript;SQL;TypeScript
+15927,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15928,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+15929,HTML/CSS;JavaScript;Python;SQL
+15930,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R
+15931,HTML/CSS;JavaScript;Python
+15932,VBA
+15933,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+15934,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;SQL
+15935,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+15936,HTML/CSS;JavaScript;Python;SQL
+15937,Bash/Shell/PowerShell;C;C++;C#;SQL;VBA
+15938,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+15939,C#;HTML/CSS;Java;JavaScript;SQL
+15940,C;C++;Java;JavaScript;Python;Rust;Other(s):
+15941,C#;JavaScript;SQL
+15942,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+15943,C#;HTML/CSS;JavaScript;SQL
+15944,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+15945,C;C++;Java;SQL
+15946,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+15947,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+15948,Python
+15949,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+15950,HTML/CSS;JavaScript;Python;SQL
+15951,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+15952,C#;HTML/CSS;JavaScript;Python;SQL
+15953,Go;HTML/CSS;JavaScript
+15954,C;C++;JavaScript;PHP;Python
+15955,HTML/CSS;JavaScript;PHP;Python;SQL
+15956,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+15957,HTML/CSS;Java;JavaScript;PHP;Other(s):
+15958,Bash/Shell/PowerShell;JavaScript
+15959,C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+15960,JavaScript;PHP;SQL
+15961,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+15962,C#;Dart;HTML/CSS;JavaScript;Python;TypeScript
+15963,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+15964,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+15965,C;C++;C#;Java;JavaScript;SQL
+15966,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+15967,PHP
+15968,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+15969,C#;Java;JavaScript;SQL
+15970,Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+15971,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+15972,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;VBA
+15973,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+15974,C#;HTML/CSS;JavaScript;TypeScript
+15975,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+15976,Assembly;C;Java;Python
+15977,HTML/CSS;Java;JavaScript;TypeScript
+15978,C;C++;C#;JavaScript;Kotlin;PHP;R;VBA
+15979,Dart;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+15980,HTML/CSS;Java;JavaScript;SQL;Other(s):
+15981,Elixir;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+15982,HTML/CSS;JavaScript;PHP;SQL
+15983,C#;HTML/CSS;JavaScript;SQL;TypeScript
+15984,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+15985,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+15986,C;C++;JavaScript;Objective-C
+15987,C;C#
+15988,Kotlin;Python
+15989,C;C++
+15990,C;C++;Python
+15991,Java;Kotlin;Objective-C;Swift
+15992,HTML/CSS;Java;SQL;TypeScript
+15993,C#;SQL
+15994,HTML/CSS;Java;JavaScript
+15995,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+15996,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;SQL
+15997,HTML/CSS;Java;PHP
+15999,C#;HTML/CSS;Java;JavaScript
+16000,C;JavaScript;Objective-C;Python;Rust;Swift;Other(s):
+16001,C;C++;HTML/CSS;PHP;R;Ruby;SQL
+16002,C++;Java
+16003,JavaScript;PHP
+16004,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16005,Bash/Shell/PowerShell;Java;SQL
+16006,JavaScript;PHP;Python;SQL
+16007,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16008,C++;HTML/CSS;JavaScript;TypeScript
+16009,Bash/Shell/PowerShell;Java;Python;R;SQL
+16010,Java;Kotlin;R;Other(s):
+16011,C++;C#;HTML/CSS;Java;JavaScript;SQL
+16012,C;C++;C#;HTML/CSS;Other(s):
+16013,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Python;Swift;Other(s):
+16014,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+16015,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16016,C#;HTML/CSS;JavaScript;SQL
+16017,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+16018,JavaScript;Python;Ruby;SQL
+16019,Bash/Shell/PowerShell;Java;Scala
+16020,C++;Dart;Go;Java;JavaScript;TypeScript;WebAssembly
+16021,C#;HTML/CSS;JavaScript;SQL;Other(s):
+16022,C#;Java;Python;R;SQL
+16023,Assembly;C;C++;Java;JavaScript;Objective-C;Rust
+16024,Assembly;Bash/Shell/PowerShell;C#;Elixir;JavaScript;Rust;Scala;SQL
+16025,C++;HTML/CSS;Java;Python;SQL
+16026,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+16027,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16028,C#;HTML/CSS;JavaScript;TypeScript
+16029,Bash/Shell/PowerShell;Python
+16030,Other(s):
+16031,C;Java;R;Other(s):
+16032,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16033,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+16034,Bash/Shell/PowerShell;C#
+16035,C#;JavaScript;Ruby;SQL
+16036,C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;R;SQL
+16037,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+16038,HTML/CSS;Java;JavaScript;PHP
+16039,Java;SQL
+16040,C++;C#;Python
+16041,HTML/CSS;Java;JavaScript;PHP;SQL
+16042,Bash/Shell/PowerShell;C;Python
+16043,Java;Kotlin
+16044,Bash/Shell/PowerShell
+16045,C++;C#;HTML/CSS;Java;PHP
+16046,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+16047,PHP;Ruby;SQL
+16048,Python
+16049,Assembly;HTML/CSS;Java;PHP;Python;R;Ruby;Rust;SQL;TypeScript
+16050,HTML/CSS;JavaScript;Python;R;SQL;VBA
+16051,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+16052,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+16053,Bash/Shell/PowerShell;C#;Dart;Java;JavaScript;Objective-C;PHP;TypeScript;Other(s):
+16054,C#;HTML/CSS;JavaScript;Python;R;SQL
+16055,C++;C#;HTML/CSS
+16056,C#;Java;Objective-C;Swift
+16057,C;Java;Objective-C;R;Ruby;SQL;Swift
+16058,JavaScript;Python
+16059,Go;Python;Ruby
+16060,Bash/Shell/PowerShell;Python
+16061,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+16062,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16063,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+16064,HTML/CSS;JavaScript;PHP;SQL
+16065,Bash/Shell/PowerShell;Python;Other(s):
+16066,HTML/CSS;Kotlin;R;Rust;SQL;TypeScript;WebAssembly
+16067,C;HTML/CSS;JavaScript;PHP;Python
+16068,C#;Java;Kotlin;Python;Swift
+16069,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+16070,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+16071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+16072,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+16073,C;C++;C#;Java;Python;SQL
+16074,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+16075,C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+16076,Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Rust;SQL;Swift;TypeScript
+16077,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+16078,C++;PHP;Rust;SQL
+16079,Clojure;Go;HTML/CSS;Java;Python;TypeScript
+16080,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+16081,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+16082,Go;Ruby
+16083,HTML/CSS;JavaScript;SQL;TypeScript
+16084,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL;Other(s):
+16085,Java;Kotlin;Python
+16086,Objective-C;Swift
+16087,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+16088,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+16089,C;C++;Elixir;Erlang;Go;Java;JavaScript;Kotlin;Python;Rust
+16090,C#
+16091,HTML/CSS;Java;JavaScript;Objective-C
+16092,C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+16093,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+16094,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+16095,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+16096,C;C++;HTML/CSS;Java;JavaScript;Python
+16097,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+16098,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+16099,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16100,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+16101,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+16104,Java;Kotlin
+16105,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+16106,HTML/CSS;PHP;Python;Rust;SQL
+16107,C#;JavaScript
+16108,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+16109,C++;C#;HTML/CSS;JavaScript;SQL
+16110,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+16111,Python;R;Scala;SQL
+16112,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+16113,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+16115,C++;JavaScript;PHP;SQL;Other(s):
+16116,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Objective-C;Python;SQL
+16117,C#;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+16118,Dart;Go;Java;JavaScript;Python;Scala
+16119,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+16120,C#;HTML/CSS;SQL;Other(s):
+16121,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+16122,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;Python;R;Scala;SQL
+16123,Java;JavaScript;SQL
+16124,Assembly;Bash/Shell/PowerShell;C;C++
+16125,HTML/CSS;JavaScript;Other(s):
+16126,HTML/CSS;JavaScript;PHP
+16127,Assembly;C;C++;Go;HTML/CSS;Java;Python
+16128,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+16129,Assembly;C;C#;F#;HTML/CSS;Java;JavaScript;Python;Other(s):
+16130,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+16131,C
+16133,C;HTML/CSS;Java;JavaScript;Objective-C;SQL
+16134,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+16135,Clojure;JavaScript;SQL;TypeScript
+16136,C#;HTML/CSS;JavaScript;Python;SQL
+16137,HTML/CSS;Java;JavaScript;Python
+16138,C;C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+16139,Clojure;HTML/CSS;Java;JavaScript
+16140,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+16141,Bash/Shell/PowerShell;SQL
+16142,HTML/CSS;JavaScript;PHP;SQL
+16143,HTML/CSS;JavaScript;Python;Ruby;SQL
+16144,HTML/CSS;JavaScript;TypeScript
+16145,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16146,HTML/CSS;JavaScript;VBA
+16147,Java;Python;SQL;Other(s):
+16148,Bash/Shell/PowerShell;HTML/CSS;R
+16150,HTML/CSS;Java;JavaScript;SQL
+16151,JavaScript;Python
+16152,HTML/CSS;JavaScript;PHP;Python
+16153,HTML/CSS;JavaScript;Python
+16154,C#
+16155,Bash/Shell/PowerShell;JavaScript;SQL;TypeScript
+16156,Java;JavaScript;PHP
+16157,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+16158,Bash/Shell/PowerShell;Elixir;JavaScript;Ruby
+16159,Other(s):
+16160,HTML/CSS;JavaScript;Python
+16161,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+16162,R
+16163,HTML/CSS;Python
+16164,HTML/CSS;JavaScript;TypeScript
+16165,C#;Go
+16166,C#;JavaScript;SQL;TypeScript
+16167,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+16168,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+16169,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+16170,Python
+16171,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Elixir;Erlang;Java;Scala
+16172,C#;HTML/CSS;JavaScript
+16173,Ruby
+16174,HTML/CSS;JavaScript;PHP
+16175,HTML/CSS;Java;Objective-C
+16176,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16177,HTML/CSS;JavaScript;Ruby;SQL
+16178,C#;SQL
+16179,Java
+16180,C++;HTML/CSS;Java;JavaScript
+16181,Bash/Shell/PowerShell;C;C#;F#;Other(s):
+16182,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+16183,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+16184,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+16185,Java;Swift
+16186,C#;F#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+16187,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+16188,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+16189,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+16190,C;C#;Java;JavaScript;Kotlin
+16191,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby
+16192,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+16193,Clojure;HTML/CSS;JavaScript
+16195,Assembly;C;C++;C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;Rust;TypeScript
+16196,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript;WebAssembly
+16197,Bash/Shell/PowerShell;Java;TypeScript
+16198,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+16199,Go;HTML/CSS;JavaScript;Python
+16200,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+16201,C#;HTML/CSS;JavaScript
+16202,C++;Elixir;Erlang;Go;JavaScript;Python;R;Rust;VBA;WebAssembly
+16203,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16204,Java
+16205,C#;HTML/CSS;JavaScript;SQL
+16206,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;SQL;TypeScript;Other(s):
+16207,Bash/Shell/PowerShell;Java;Python
+16208,Bash/Shell/PowerShell;C;Python
+16209,HTML/CSS;JavaScript;Python;SQL
+16211,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+16212,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+16213,Go;JavaScript
+16214,Java;PHP;Other(s):
+16215,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Rust;SQL;TypeScript;Other(s):
+16216,C++;Java;JavaScript;PHP
+16217,C#;SQL
+16218,C++;HTML/CSS;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript;WebAssembly
+16219,Java;JavaScript
+16220,HTML/CSS;JavaScript;PHP
+16221,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+16222,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+16224,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP
+16225,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+16226,HTML/CSS;JavaScript;Scala;TypeScript
+16227,HTML/CSS;JavaScript;Other(s):
+16228,HTML/CSS;JavaScript;PHP;SQL
+16229,JavaScript;PHP;Python
+16230,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+16231,C;C++;Python
+16232,HTML/CSS;JavaScript
+16233,Bash/Shell/PowerShell;PHP;Python;SQL
+16234,HTML/CSS;JavaScript;PHP
+16235,C#;SQL
+16236,HTML/CSS;JavaScript;PHP;SQL
+16237,C#;JavaScript;SQL;TypeScript
+16238,Bash/Shell/PowerShell;C#;SQL
+16239,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA;WebAssembly
+16240,Assembly;C;Erlang;Other(s):
+16241,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+16242,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+16243,HTML/CSS;JavaScript;PHP;Python
+16244,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python
+16245,C++;C#;JavaScript;SQL;VBA
+16246,Bash/Shell/PowerShell;C#;HTML/CSS;Kotlin;SQL;TypeScript
+16247,HTML/CSS;Java;JavaScript;PHP
+16248,Go;JavaScript;Python;SQL
+16249,HTML/CSS;Java;JavaScript
+16250,HTML/CSS;JavaScript;Python
+16251,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Scala;TypeScript
+16252,Bash/Shell/PowerShell;Java;PHP
+16253,Assembly;C;HTML/CSS;JavaScript;Python;Other(s):
+16254,C;HTML/CSS;JavaScript;PHP;Python
+16255,C#;HTML/CSS;SQL
+16256,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+16257,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+16258,HTML/CSS;JavaScript;Swift;TypeScript
+16259,Bash/Shell/PowerShell;C;C++;Python
+16260,Assembly;C;HTML/CSS;JavaScript
+16261,Bash/Shell/PowerShell;C++;C#;PHP;Python
+16262,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+16263,HTML/CSS;JavaScript;PHP;Swift
+16264,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+16265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+16266,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16267,HTML/CSS;JavaScript;Objective-C;Python;TypeScript
+16268,Java;JavaScript;TypeScript
+16269,C++;C#;HTML/CSS;PHP;SQL
+16270,JavaScript;Python;R;SQL
+16271,HTML/CSS;JavaScript;Ruby;SQL
+16272,Bash/Shell/PowerShell;C;C++;Java;Ruby
+16273,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+16274,HTML/CSS;Java;Ruby
+16275,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+16276,C;C++;C#
+16277,C#;HTML/CSS;JavaScript;TypeScript
+16278,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+16279,JavaScript;Swift
+16280,C#;Python
+16281,Python
+16282,C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+16283,Assembly;C++;HTML/CSS;JavaScript;Python;TypeScript
+16284,C;HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+16285,C;HTML/CSS;Java;PHP;Python;Scala
+16286,C;C++;HTML/CSS;JavaScript;Python
+16287,C#;SQL
+16288,Bash/Shell/PowerShell;Python;SQL
+16289,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16290,Bash/Shell/PowerShell;C;SQL;Other(s):
+16291,C#;Elixir;HTML/CSS;Java;JavaScript;PHP;SQL
+16292,HTML/CSS;JavaScript;Objective-C;SQL;Other(s):
+16293,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+16294,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+16295,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+16296,HTML/CSS;JavaScript;PHP;SQL
+16297,Bash/Shell/PowerShell;PHP;Python;SQL
+16298,Python;SQL
+16299,Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+16300,C;C++;Python
+16301,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+16302,HTML/CSS;JavaScript;PHP;SQL
+16303,Go;JavaScript;SQL
+16304,HTML/CSS;JavaScript;SQL;Other(s):
+16305,Bash/Shell/PowerShell;C++;JavaScript;Python;R
+16306,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16307,C#;SQL
+16308,Java;JavaScript;Python;Scala
+16309,Java
+16310,Go;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+16311,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+16312,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+16313,C#;Java;Objective-C;Swift
+16314,HTML/CSS;JavaScript;PHP;Python;SQL
+16315,Assembly;C;C++;C#;Java;Kotlin;Objective-C;SQL;Swift
+16316,Java;JavaScript;PHP;Python
+16317,HTML/CSS;Java;SQL
+16318,HTML/CSS;JavaScript;TypeScript
+16319,HTML/CSS;JavaScript;PHP;SQL
+16320,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16321,Java;Python;R;VBA
+16322,Bash/Shell/PowerShell;Python
+16323,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+16324,C++;HTML/CSS;Python;R;VBA
+16325,HTML/CSS;Java;JavaScript;Python
+16326,C;HTML/CSS;JavaScript;Python;Ruby;SQL
+16327,JavaScript
+16328,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript;VBA
+16329,C;HTML/CSS;Java;JavaScript;PHP;SQL
+16330,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;SQL
+16331,C#;PHP;SQL;TypeScript
+16332,C;Go;HTML/CSS;JavaScript;Ruby;SQL
+16333,HTML/CSS;Java;JavaScript;SQL;TypeScript
+16334,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+16335,Java;Scala
+16336,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+16337,C#;Python
+16338,Bash/Shell/PowerShell;C++;Java;Objective-C;SQL;Swift
+16339,Assembly;Bash/Shell/PowerShell;C;Erlang;Java;Python;Scala;SQL
+16340,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+16341,Bash/Shell/PowerShell;Go;JavaScript
+16342,C#;F#;TypeScript
+16343,Bash/Shell/PowerShell;C;Python;Ruby
+16344,HTML/CSS;Java;JavaScript;Kotlin;SQL
+16345,Objective-C;Swift
+16346,Python;R
+16347,HTML/CSS;Java;JavaScript;SQL;VBA
+16348,HTML/CSS;Java;JavaScript;SQL;Other(s):
+16349,HTML/CSS;Java;Kotlin;PHP;SQL;TypeScript
+16350,Bash/Shell/PowerShell;Python;Scala;SQL
+16351,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+16352,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16353,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+16354,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+16355,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+16356,Bash/Shell/PowerShell;HTML/CSS;Python
+16357,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript
+16358,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+16359,HTML/CSS;JavaScript;TypeScript
+16360,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL;TypeScript
+16361,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby
+16362,HTML/CSS;Java;TypeScript
+16363,Assembly;C++;HTML/CSS;Java;JavaScript;Python;SQL
+16364,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+16365,Bash/Shell/PowerShell;Python;VBA
+16366,C++;Dart;HTML/CSS;JavaScript;Objective-C;Swift
+16367,Bash/Shell/PowerShell;Java;Python;SQL
+16368,C#;Java;JavaScript;SQL;TypeScript
+16369,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+16370,HTML/CSS;JavaScript;PHP;SQL
+16371,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+16372,Java
+16373,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;TypeScript
+16374,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16375,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+16376,Java;Python;Swift
+16377,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+16378,C;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16379,Dart;Java;JavaScript
+16380,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+16381,HTML/CSS;JavaScript;PHP;SQL
+16382,HTML/CSS;Java;JavaScript
+16383,HTML/CSS;JavaScript;Ruby
+16384,Other(s):
+16385,C++;Java;SQL
+16386,Bash/Shell/PowerShell;C;C#;Elixir;HTML/CSS;Java;JavaScript;SQL;VBA
+16387,C#
+16388,C#;HTML/CSS;Java;JavaScript;PHP;Python
+16389,C#;HTML/CSS;JavaScript;SQL
+16390,Java;Python
+16391,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16392,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+16393,C#;HTML/CSS;JavaScript;SQL
+16394,Bash/Shell/PowerShell;C
+16395,HTML/CSS;Java;JavaScript;TypeScript
+16396,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Rust;TypeScript
+16397,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+16398,SQL
+16399,HTML/CSS;Java;JavaScript
+16400,Elixir;HTML/CSS;JavaScript;PHP;Ruby
+16401,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16402,C#;SQL
+16403,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript;WebAssembly
+16404,HTML/CSS;JavaScript;TypeScript
+16405,Java;JavaScript;TypeScript
+16406,Bash/Shell/PowerShell;Python
+16407,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16408,C;C++;Dart;Java;Swift
+16409,HTML/CSS;Java;JavaScript;SQL
+16410,C#;HTML/CSS;JavaScript
+16411,Bash/Shell/PowerShell;JavaScript;Kotlin;Python;SQL;TypeScript
+16412,Java;JavaScript;Python
+16413,Python;SQL
+16414,C#;HTML/CSS;Java;JavaScript;SQL
+16415,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+16416,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+16417,Bash/Shell/PowerShell;C#
+16418,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;Python
+16419,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+16420,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+16421,C++;JavaScript;Other(s):
+16422,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+16423,HTML/CSS;JavaScript;PHP;SQL
+16424,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL
+16425,Java;Kotlin
+16426,C#;Java;SQL
+16427,C++;Go;HTML/CSS;Python
+16428,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16429,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R
+16430,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+16431,HTML/CSS;JavaScript;SQL;VBA
+16432,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust
+16433,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+16434,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+16435,C++;C#
+16436,C#;HTML/CSS;JavaScript;SQL
+16437,Objective-C;Swift
+16438,Python;R;SQL
+16439,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+16440,C#;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+16441,HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;Swift
+16442,C#;JavaScript;Python;TypeScript
+16443,HTML/CSS;Java;JavaScript;TypeScript
+16444,C++;C#;TypeScript
+16445,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16446,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+16447,C#;SQL
+16448,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+16449,HTML/CSS;JavaScript;PHP;TypeScript
+16450,HTML/CSS;JavaScript;Kotlin;SQL;Swift
+16451,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+16452,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+16453,Java;Kotlin
+16454,Python;R;SQL
+16455,HTML/CSS;JavaScript;PHP;SQL
+16456,Bash/Shell/PowerShell;C;Python
+16457,JavaScript
+16458,HTML/CSS;JavaScript;Ruby
+16459,HTML/CSS;Java;JavaScript;SQL
+16460,C#;HTML/CSS;JavaScript;Swift
+16461,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+16462,HTML/CSS;JavaScript;SQL
+16463,Bash/Shell/PowerShell;C;C++;C#;Java;R;SQL;VBA
+16464,HTML/CSS;JavaScript;PHP;Python;SQL
+16465,Bash/Shell/PowerShell;C#;Objective-C;Python;Swift
+16466,Java
+16467,Bash/Shell/PowerShell;C;C++;Java;Python
+16468,C;C++;HTML/CSS;Java;JavaScript;PHP;R
+16469,HTML/CSS;SQL;VBA
+16470,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Swift;VBA
+16471,Java;Python
+16472,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16473,HTML/CSS;JavaScript
+16474,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+16475,HTML/CSS;JavaScript;PHP;SQL
+16476,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+16477,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+16478,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+16479,C;HTML/CSS;Java;JavaScript;Python;SQL
+16480,Bash/Shell/PowerShell
+16481,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+16482,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+16483,Bash/Shell/PowerShell;C;C++;C#;Python;VBA
+16484,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+16485,C;Java
+16486,C#;JavaScript;SQL;TypeScript
+16487,HTML/CSS;JavaScript;TypeScript
+16488,HTML/CSS;JavaScript
+16489,C#;Dart;HTML/CSS;Java;Kotlin;Objective-C
+16490,C++;Elixir;HTML/CSS;JavaScript;Other(s):
+16492,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Other(s):
+16493,HTML/CSS;JavaScript;PHP;SQL
+16494,HTML/CSS;Java;JavaScript;Python;SQL
+16495,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+16496,HTML/CSS;JavaScript;PHP;SQL
+16497,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+16498,HTML/CSS;JavaScript;PHP
+16499,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16501,HTML/CSS;JavaScript;Ruby;SQL
+16503,C++;C#
+16504,HTML/CSS;JavaScript;Python;SQL
+16505,C#;Go;HTML/CSS;Java;JavaScript;SQL
+16506,Bash/Shell/PowerShell;Elixir;JavaScript;Ruby
+16507,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;Rust;SQL
+16508,C#;Go;HTML/CSS;JavaScript;Ruby;SQL;Swift;VBA
+16509,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+16510,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript
+16511,JavaScript
+16512,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;Other(s):
+16513,Java
+16514,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+16515,C;C++;HTML/CSS;JavaScript;PHP;SQL
+16516,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+16517,C;C++;HTML/CSS;Java
+16518,Clojure;HTML/CSS;Java;PHP
+16519,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+16520,HTML/CSS;JavaScript;PHP;TypeScript
+16521,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+16522,Java
+16523,HTML/CSS;Java;TypeScript
+16524,Bash/Shell/PowerShell;JavaScript;R;Ruby
+16525,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+16526,Bash/Shell/PowerShell;Python;SQL
+16527,Assembly;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+16528,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+16529,Bash/Shell/PowerShell;Go;Java;TypeScript
+16530,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;R;SQL
+16531,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+16532,HTML/CSS;Python
+16533,Bash/Shell/PowerShell;Python;SQL
+16535,C#;HTML/CSS;JavaScript
+16536,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+16537,C;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+16538,Scala
+16539,HTML/CSS;JavaScript;TypeScript
+16540,Assembly;C;C++;Java;Ruby;Other(s):
+16541,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+16542,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16543,HTML/CSS;JavaScript;TypeScript
+16544,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Other(s):
+16545,Java;JavaScript;Python;SQL
+16546,C;C++
+16547,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+16548,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala
+16549,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;SQL
+16550,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+16551,Python
+16552,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL
+16553,HTML/CSS;JavaScript
+16554,HTML/CSS;JavaScript;SQL;TypeScript
+16555,HTML/CSS;JavaScript;PHP;SQL
+16556,Bash/Shell/PowerShell;Python;SQL
+16557,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+16558,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+16559,Java
+16560,HTML/CSS;JavaScript;Other(s):
+16561,Bash/Shell/PowerShell;C#;JavaScript;Python;R;SQL
+16562,HTML/CSS;JavaScript;Python
+16563,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+16564,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R
+16565,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+16566,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+16567,Bash/Shell/PowerShell;Go;Python
+16568,JavaScript;PHP;Python;SQL
+16569,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL;Other(s):
+16570,HTML/CSS;JavaScript;Python
+16571,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+16572,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;SQL;Other(s):
+16573,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+16574,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;Python
+16575,Assembly
+16576,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+16577,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL
+16578,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Rust;SQL;Swift;TypeScript
+16579,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+16580,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+16581,Java;Kotlin;Python;SQL
+16582,HTML/CSS;JavaScript;PHP
+16583,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+16584,C++;HTML/CSS;JavaScript
+16585,C++;HTML/CSS;JavaScript;SQL
+16586,C#;HTML/CSS;JavaScript;SQL
+16587,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+16588,HTML/CSS;PHP;SQL
+16589,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+16590,Python
+16591,Go;HTML/CSS;Java;JavaScript;Python;SQL
+16592,HTML/CSS;JavaScript;Python
+16593,C#;HTML/CSS;JavaScript;SQL;VBA
+16594,HTML/CSS;Java;JavaScript;Python
+16595,R;SQL
+16596,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+16597,C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+16598,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+16599,Assembly;Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;Python;R;SQL;WebAssembly
+16600,Bash/Shell/PowerShell;C;Other(s):
+16601,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+16602,Bash/Shell/PowerShell;Java
+16603,HTML/CSS;R
+16604,C#;TypeScript
+16605,C#;Go;JavaScript;SQL
+16606,HTML/CSS;Java;JavaScript;Python;SQL
+16607,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16608,HTML/CSS;Java
+16609,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+16611,C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+16612,C#;HTML/CSS;Java;JavaScript;SQL
+16613,PHP
+16614,C#;HTML/CSS;JavaScript;TypeScript
+16615,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL
+16616,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Scala;TypeScript
+16617,Bash/Shell/PowerShell;Clojure
+16618,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+16619,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16620,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+16621,C#;Other(s):
+16622,C#;HTML/CSS;JavaScript;SQL
+16623,Bash/Shell/PowerShell;Java;Kotlin
+16624,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Rust
+16625,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+16626,Assembly;C;HTML/CSS;Java;PHP;Python;R;VBA
+16627,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+16628,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+16629,HTML/CSS;JavaScript;TypeScript
+16630,Bash/Shell/PowerShell;C++
+16631,C;C#;Python;TypeScript
+16632,HTML/CSS;JavaScript;PHP;SQL
+16633,HTML/CSS;JavaScript;PHP;Python;VBA
+16634,JavaScript;PHP
+16635,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+16636,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R;Other(s):
+16638,C++;HTML/CSS;Java;JavaScript
+16639,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust;SQL;TypeScript;WebAssembly
+16640,Python;SQL
+16641,Java;JavaScript;Other(s):
+16642,Bash/Shell/PowerShell;Java;JavaScript;Python
+16643,HTML/CSS;JavaScript;PHP;SQL;Swift
+16644,C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+16645,C;HTML/CSS;Java;JavaScript
+16646,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16647,HTML/CSS;JavaScript;Python;TypeScript
+16648,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16649,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+16650,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+16651,HTML/CSS;JavaScript;PHP;SQL
+16652,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+16653,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16654,Assembly;HTML/CSS;JavaScript;SQL
+16655,C#;SQL
+16656,Java;JavaScript;SQL;TypeScript
+16657,Assembly;Java;SQL
+16658,C++;JavaScript;Python;R;SQL
+16659,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+16660,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+16661,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+16662,Bash/Shell/PowerShell;C;HTML/CSS;Swift
+16663,HTML/CSS;Java;JavaScript;Python;SQL
+16664,HTML/CSS;JavaScript;PHP;SQL
+16665,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+16666,SQL;VBA
+16668,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+16669,HTML/CSS;Java;JavaScript;PHP;TypeScript
+16670,Elixir;Erlang;HTML/CSS;Java;JavaScript
+16671,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+16672,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+16673,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+16674,C;HTML/CSS;JavaScript;Python
+16675,C;Python;Ruby
+16676,Bash/Shell/PowerShell;Java;JavaScript;SQL
+16677,C;C++;C#;Java
+16678,Bash/Shell/PowerShell;C;HTML/CSS;Python
+16680,JavaScript;TypeScript
+16681,C;C++;C#;F#;HTML/CSS;JavaScript;SQL
+16682,C++;C#;HTML/CSS;Java;JavaScript;SQL
+16683,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Swift
+16684,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+16685,Java;JavaScript
+16686,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+16687,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+16688,HTML/CSS;JavaScript;TypeScript
+16689,HTML/CSS;JavaScript;PHP;Python;Ruby
+16690,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+16691,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;SQL
+16692,Ruby;SQL
+16693,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript;VBA;WebAssembly
+16694,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+16695,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16696,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+16697,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+16698,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+16699,SQL;VBA
+16700,HTML/CSS;Java;JavaScript;SQL;TypeScript
+16701,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16702,C++;C#;Java
+16703,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+16704,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+16705,HTML/CSS;JavaScript;Ruby
+16706,C#;HTML/CSS;JavaScript;SQL;VBA
+16707,C++;Java;SQL
+16708,C#;HTML/CSS;JavaScript;TypeScript
+16709,Bash/Shell/PowerShell;Go;Objective-C;Python
+16710,Java
+16711,C++;C#;HTML/CSS;Java;JavaScript;Python
+16712,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+16713,HTML/CSS;JavaScript;PHP
+16714,SQL;Other(s):
+16715,HTML/CSS;Java;JavaScript;PHP;SQL
+16716,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+16717,Assembly;Bash/Shell/PowerShell;C;C#;Erlang;HTML/CSS;Java;Python;SQL
+16718,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+16719,C#;PHP;R;SQL
+16720,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+16721,HTML/CSS;JavaScript;PHP
+16722,C#;HTML/CSS;Java;JavaScript;Python
+16723,Python
+16724,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+16725,Python
+16726,Java;JavaScript
+16727,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+16728,C;C++
+16729,HTML/CSS;JavaScript;Ruby;SQL
+16730,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+16731,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala
+16732,HTML/CSS;JavaScript;Python;SQL
+16733,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+16734,Java
+16735,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+16736,C++;Java
+16737,C#;JavaScript;SQL
+16739,Assembly;JavaScript;Python;R;SQL
+16740,Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL
+16741,C#;HTML/CSS;JavaScript;SQL
+16742,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+16743,Bash/Shell/PowerShell;Clojure;Python;Ruby
+16744,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+16745,C#;F#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+16746,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16747,Bash/Shell/PowerShell;Go;JavaScript;Python;Rust;Scala;SQL
+16748,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16749,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Objective-C;Python;R;Ruby;SQL;Swift;VBA
+16750,C;C++;Python
+16752,PHP;SQL
+16753,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16754,HTML/CSS;JavaScript;SQL;TypeScript
+16755,C;C++
+16756,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin
+16757,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+16758,SQL;Other(s):
+16759,C#;HTML/CSS;JavaScript;SQL
+16760,Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;Rust;Swift;TypeScript
+16761,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+16762,Bash/Shell/PowerShell;Go;Python;SQL
+16763,C;C++;Java;JavaScript;Python;SQL
+16764,C;C++;HTML/CSS;Java;SQL
+16765,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16766,Bash/Shell/PowerShell;C++;Erlang;Go;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+16767,Objective-C;Swift
+16768,Assembly;C#;Java;JavaScript;PHP;SQL
+16769,HTML/CSS;Java;JavaScript;Kotlin;Ruby
+16770,Bash/Shell/PowerShell;JavaScript;Python;SQL;Other(s):
+16772,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+16773,C#;SQL
+16774,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16775,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+16776,Bash/Shell/PowerShell;C#;JavaScript;SQL
+16777,C#;SQL
+16778,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+16779,HTML/CSS;JavaScript;Ruby;SQL
+16780,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+16781,Bash/Shell/PowerShell;Java;JavaScript;Rust;TypeScript
+16782,Swift
+16783,Bash/Shell/PowerShell;C;Other(s):
+16784,HTML/CSS;JavaScript;PHP;Python;R;SQL
+16785,Bash/Shell/PowerShell;C;C++;Erlang;Python
+16786,Assembly;C;C++;Python
+16787,HTML/CSS;JavaScript
+16788,Elixir;HTML/CSS;JavaScript;Ruby
+16789,Elixir;HTML/CSS;JavaScript;Python;Ruby;Swift
+16790,Assembly;HTML/CSS;Java;JavaScript;Python;TypeScript
+16791,Bash/Shell/PowerShell;C++;PHP;Python;SQL
+16792,Bash/Shell/PowerShell;C;HTML/CSS;Java;Other(s):
+16793,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;SQL;Swift
+16794,C++;C#;HTML/CSS;JavaScript;SQL
+16795,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+16796,C;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+16797,Swift
+16798,C;C++;Java;SQL
+16799,Assembly;C;C++;Python
+16800,HTML/CSS;JavaScript;Python
+16801,C#;HTML/CSS;JavaScript
+16802,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+16803,Assembly;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+16804,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+16805,Java
+16806,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+16807,Elixir;HTML/CSS;JavaScript;TypeScript
+16808,Bash/Shell/PowerShell;C;Python;SQL;TypeScript
+16809,Java
+16810,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+16811,C#;HTML/CSS;JavaScript;SQL
+16812,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+16813,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+16814,HTML/CSS;JavaScript;Python;SQL;Other(s):
+16815,HTML/CSS;JavaScript;TypeScript
+16816,C#;HTML/CSS;PHP;SQL
+16817,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16818,HTML/CSS;JavaScript;PHP
+16819,Bash/Shell/PowerShell;Java;SQL
+16820,Other(s):
+16821,C++;HTML/CSS;Java;JavaScript;Python
+16822,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+16823,Java
+16824,C++;HTML/CSS;JavaScript;PHP;SQL
+16825,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+16826,Assembly;HTML/CSS;Java;JavaScript;Python;SQL
+16827,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+16828,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+16829,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16830,C#;HTML/CSS;JavaScript;Python;R
+16831,C#;SQL;TypeScript
+16832,C;C++;Rust
+16833,C#;Java;R;Ruby
+16834,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+16835,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+16836,Assembly;C++;C#;R;SQL
+16837,Java;PHP;Python
+16839,Java;Python
+16840,HTML/CSS;Java;JavaScript;SQL
+16841,C;C++;Java;VBA;WebAssembly
+16843,C#;HTML/CSS;SQL
+16844,HTML/CSS;JavaScript
+16845,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Kotlin;Rust
+16846,Go;Java
+16847,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;TypeScript
+16848,HTML/CSS;JavaScript;R;Ruby;SQL
+16849,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+16850,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16851,HTML/CSS;JavaScript;Python;SQL
+16852,C;C#;HTML/CSS;JavaScript;Ruby
+16853,Java;Python;R;SQL
+16854,Bash/Shell/PowerShell;C;C++;Go;Java;Python;R
+16855,C++
+16856,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Swift;VBA
+16857,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+16858,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+16859,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+16860,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+16861,Python
+16862,HTML/CSS;JavaScript;Python
+16863,Assembly;C;C++;Java;Rust;Scala;TypeScript
+16864,C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+16865,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16866,C;C++;Java;Objective-C;Swift
+16867,Go;JavaScript;PHP;Python;Ruby;SQL
+16868,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+16869,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+16870,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+16871,Java;Python;Scala;SQL
+16872,C;C#;HTML/CSS;Python
+16873,C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+16874,HTML/CSS;JavaScript;R
+16875,Go;HTML/CSS;JavaScript;PHP;Python
+16876,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+16877,C#
+16878,SQL
+16879,HTML/CSS;JavaScript;PHP
+16880,Java;SQL
+16881,JavaScript;Python
+16882,Bash/Shell/PowerShell;C;Python
+16883,HTML/CSS;JavaScript;PHP
+16885,VBA
+16886,Objective-C;Swift
+16887,Bash/Shell/PowerShell;Python;Other(s):
+16888,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Go;Java;Python;Other(s):
+16889,C#
+16890,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16891,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Swift
+16892,C#;JavaScript;SQL;TypeScript
+16893,HTML/CSS;JavaScript;Python
+16894,C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+16895,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;Scala;SQL;TypeScript
+16896,HTML/CSS;Java
+16897,HTML/CSS;JavaScript;PHP
+16898,C;C++;C#;JavaScript;PHP;SQL;Other(s):
+16899,HTML/CSS;Java
+16900,HTML/CSS;JavaScript;TypeScript
+16901,HTML/CSS;Java;JavaScript;PHP;SQL
+16902,Assembly;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+16903,C#;HTML/CSS;JavaScript;SQL;TypeScript
+16904,Java;Scala
+16905,HTML/CSS;Java;JavaScript
+16906,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+16907,C#;Go;HTML/CSS;JavaScript;SQL
+16908,JavaScript
+16909,C#;HTML/CSS;JavaScript;PHP;SQL
+16910,Python;Ruby;SQL
+16911,C;C++;C#;Dart;Java;Kotlin;Python;SQL;Swift
+16912,C#;HTML/CSS;JavaScript;SQL
+16913,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+16914,Bash/Shell/PowerShell;Scala;SQL;VBA;Other(s):
+16915,Dart;Go;Java;Rust;SQL
+16916,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;Swift
+16917,HTML/CSS;JavaScript;TypeScript
+16918,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+16919,Bash/Shell/PowerShell;Clojure;HTML/CSS
+16920,Bash/Shell/PowerShell;C;C++;Python
+16921,Bash/Shell/PowerShell;C++;C#;Python;SQL
+16922,Java
+16923,C;C++;HTML/CSS;JavaScript;PHP;Python
+16924,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+16925,Java;PHP;SQL
+16926,HTML/CSS;JavaScript;SQL
+16927,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+16928,HTML/CSS;JavaScript;Ruby;SQL
+16929,C#;Dart;HTML/CSS;JavaScript;SQL
+16930,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+16931,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+16932,C;C++;HTML/CSS;JavaScript
+16933,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL
+16934,HTML/CSS;Python;R;SQL;VBA
+16935,C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+16936,C++;C#;Java;Kotlin;Python
+16937,HTML/CSS;Python;SQL;Swift
+16938,C#
+16939,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+16940,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+16941,Bash/Shell/PowerShell;C;C#;PHP;Python;Scala;SQL;Other(s):
+16942,C#
+16943,C;HTML/CSS;Java;Python
+16944,Assembly;Bash/Shell/PowerShell;C;C++;Python
+16945,C++;C#;Clojure;Go;Java;JavaScript;Kotlin;Python;Rust;Scala;TypeScript
+16946,HTML/CSS;Objective-C;PHP;Ruby;Swift
+16947,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+16948,HTML/CSS;JavaScript;Python;SQL;VBA
+16949,Bash/Shell/PowerShell;C#;F#;Go;JavaScript;SQL;TypeScript
+16950,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+16951,Assembly;C;C++;C#
+16952,HTML/CSS;Java;JavaScript;TypeScript
+16953,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Swift
+16954,Bash/Shell/PowerShell;C;C#;JavaScript;TypeScript
+16955,Assembly;Bash/Shell/PowerShell;C;Java;Python
+16956,Bash/Shell/PowerShell;C#
+16957,Bash/Shell/PowerShell;C#;Python;Other(s):
+16958,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;R;SQL
+16959,HTML/CSS;JavaScript;Python;TypeScript;VBA
+16960,HTML/CSS;JavaScript;PHP;Python;SQL
+16961,HTML/CSS;JavaScript;PHP;Python;SQL
+16962,C#;HTML/CSS;JavaScript
+16963,C++;Clojure;HTML/CSS;JavaScript;Python;Other(s):
+16964,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+16965,C#;HTML/CSS;JavaScript;SQL
+16966,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+16968,Assembly;C++;C#;Python;Other(s):
+16969,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Scala;SQL;Other(s):
+16970,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+16971,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+16972,Bash/Shell/PowerShell;C++;R
+16973,C#;HTML/CSS;JavaScript;SQL;VBA
+16974,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+16975,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+16976,C++;C#;HTML/CSS;JavaScript;Python;WebAssembly
+16977,Assembly;C;C++;C#;HTML/CSS;SQL;Swift
+16978,Go;Python;TypeScript
+16979,Bash/Shell/PowerShell;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+16980,JavaScript;Python;SQL
+16981,C#;HTML/CSS;SQL
+16982,Python
+16983,Swift
+16984,C#;JavaScript
+16985,Java;Kotlin
+16986,C++;HTML/CSS;JavaScript;Objective-C;Other(s):
+16987,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL
+16988,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;Swift
+16989,R
+16990,HTML/CSS;JavaScript
+16991,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+16992,C#;JavaScript;Ruby;SQL
+16993,C#;SQL;Other(s):
+16994,C#;HTML/CSS;Java;SQL
+16995,Java;Scala;SQL
+16996,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+16997,Java;JavaScript
+16998,JavaScript;Python;Rust
+16999,Go;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+17000,Java;PHP;Python;SQL
+17001,HTML/CSS;Java;Python;Scala;SQL;TypeScript
+17002,C;C++;Java;PHP;Python;Other(s):
+17003,C#;JavaScript
+17004,Python
+17005,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+17006,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17007,HTML/CSS;JavaScript;Python;SQL
+17008,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+17009,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17010,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Swift;TypeScript
+17011,HTML/CSS;Java;SQL
+17012,Dart;Java;Kotlin
+17013,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python
+17014,Java;JavaScript;SQL
+17015,C++;C#;HTML/CSS;JavaScript;PHP
+17016,Bash/Shell/PowerShell;C++;Go;Python;SQL
+17017,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+17018,Java;Python
+17019,HTML/CSS;JavaScript;Ruby
+17020,Bash/Shell/PowerShell
+17021,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+17022,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+17023,HTML/CSS;JavaScript
+17024,C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+17025,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17026,C;C++;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+17028,PHP;Python;SQL
+17029,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript;VBA
+17030,Bash/Shell/PowerShell;Clojure;Go;Java;Python;SQL
+17031,Bash/Shell/PowerShell;Python
+17032,HTML/CSS;JavaScript;PHP;SQL
+17033,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+17034,C++
+17035,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+17036,Bash/Shell/PowerShell;Python;Other(s):
+17037,Assembly;Bash/Shell/PowerShell;C;C++;Go;JavaScript
+17038,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+17039,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+17040,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;PHP;Python;SQL
+17041,HTML/CSS;JavaScript;PHP
+17042,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+17043,Java;Objective-C;PHP
+17044,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+17045,C#;HTML/CSS;Java;PHP;Python;SQL
+17046,Java;JavaScript;SQL
+17047,HTML/CSS;JavaScript;PHP;SQL
+17048,HTML/CSS;JavaScript;PHP;SQL
+17049,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+17050,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17051,Kotlin;PHP
+17052,HTML/CSS;JavaScript;Python;Rust;TypeScript
+17053,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL
+17054,C;Java;Kotlin
+17055,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+17056,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+17057,C;Python
+17058,HTML/CSS;JavaScript;Python;Ruby;SQL
+17059,C;C++;HTML/CSS;Java;JavaScript;PHP
+17060,C;C++;JavaScript
+17061,JavaScript
+17062,Bash/Shell/PowerShell;C#;Python;SQL
+17063,HTML/CSS;Java;JavaScript;SQL
+17064,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;VBA
+17065,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;Rust;WebAssembly
+17066,HTML/CSS;Java;JavaScript;SQL
+17067,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+17068,C;C++;C#;Other(s):
+17069,C;C++;Java;JavaScript;Python;Rust
+17070,JavaScript;Objective-C;Python;SQL;Swift
+17071,Java;JavaScript;SQL
+17072,JavaScript;Ruby
+17073,C#;JavaScript;SQL
+17075,Python
+17076,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;TypeScript
+17077,C#
+17078,Assembly;C;HTML/CSS;JavaScript;SQL
+17079,C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+17080,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+17081,C#;Python
+17082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+17083,HTML/CSS;Java;JavaScript;SQL
+17084,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+17086,HTML/CSS;JavaScript;PHP;TypeScript
+17087,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+17088,HTML/CSS;JavaScript;PHP;Python;SQL
+17089,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17090,HTML/CSS;JavaScript;PHP;Ruby
+17091,C#;HTML/CSS;JavaScript;PHP;SQL
+17092,HTML/CSS;Java;JavaScript;PHP;SQL
+17093,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;Scala;SQL
+17094,Bash/Shell/PowerShell;C;Python
+17095,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+17096,C#;HTML/CSS;JavaScript;TypeScript
+17097,C#;HTML/CSS;JavaScript;TypeScript
+17098,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+17099,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+17100,C;C++;Other(s):
+17101,HTML/CSS;JavaScript
+17102,Bash/Shell/PowerShell;PHP;SQL
+17103,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+17104,HTML/CSS;JavaScript;Python;SQL;Other(s):
+17105,HTML/CSS;JavaScript
+17106,HTML/CSS;Java;JavaScript;Python
+17107,Java;Kotlin
+17108,C#
+17109,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript;VBA
+17110,HTML/CSS;JavaScript;Python;SQL
+17111,C#;HTML/CSS;JavaScript;SQL
+17112,Python;R;SQL
+17114,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+17115,C#;HTML/CSS;JavaScript
+17116,Java;Swift
+17117,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+17118,HTML/CSS;Java;JavaScript;PHP;SQL
+17119,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+17120,JavaScript;PHP;Ruby;Scala;SQL
+17121,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17122,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+17123,Bash/Shell/PowerShell;C;Clojure;Java;Kotlin;Python;Rust
+17124,Assembly;C#;Go;JavaScript;SQL
+17125,HTML/CSS;Java;PHP;Scala;SQL
+17126,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+17127,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+17128,Java
+17129,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+17130,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+17131,C#;HTML/CSS;JavaScript;SQL;Swift
+17132,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;R;SQL;WebAssembly
+17133,Bash/Shell/PowerShell;C++;C#;Dart;JavaScript;Kotlin;Python;SQL
+17135,Bash/Shell/PowerShell;Java;JavaScript;SQL
+17136,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+17137,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+17138,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+17139,Java;Other(s):
+17140,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+17141,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+17142,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL
+17143,HTML/CSS;SQL;Other(s):
+17144,C++;HTML/CSS;JavaScript;Python;SQL
+17145,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17146,C;C#;HTML/CSS;Java
+17147,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+17149,HTML/CSS;JavaScript;SQL
+17150,HTML/CSS;JavaScript;SQL;Other(s):
+17151,C;C++
+17152,C;C++;HTML/CSS;Java;SQL;Other(s):
+17153,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17154,HTML/CSS;JavaScript;PHP;SQL
+17155,HTML/CSS;JavaScript;PHP
+17156,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+17157,C;C++;Java;Objective-C;Swift
+17158,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+17159,C++;Dart;Java;Kotlin;Python;Swift;Other(s):
+17160,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+17161,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+17162,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+17163,C#;HTML/CSS;JavaScript;SQL
+17164,HTML/CSS;JavaScript;TypeScript
+17165,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+17166,Java;JavaScript;SQL
+17167,HTML/CSS;PHP;Python;R
+17168,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+17169,Assembly;C;C++;C#;JavaScript;Python;SQL;TypeScript
+17170,Java;JavaScript;Python;Ruby;SQL
+17171,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+17172,HTML/CSS;JavaScript;PHP;SQL
+17173,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17174,Java
+17175,HTML/CSS;Java;JavaScript;Kotlin;Python
+17176,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;TypeScript
+17177,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+17178,C++;Objective-C;Swift
+17179,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+17180,C#;Go;Python;SQL;TypeScript
+17181,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17182,Bash/Shell/PowerShell;Python;Rust;Swift
+17183,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Other(s):
+17184,Java;JavaScript;Kotlin
+17185,HTML/CSS;JavaScript;PHP
+17186,PHP
+17187,C;C++;HTML/CSS;Java
+17188,JavaScript;SQL
+17189,C#;Java;JavaScript;Kotlin
+17190,C++;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+17191,Bash/Shell/PowerShell;C;C++;Python
+17192,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+17193,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+17194,Go;Python;SQL
+17195,Python;Other(s):
+17196,Go;Python;Scala
+17197,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17198,C#;HTML/CSS;Python;SQL;Other(s):
+17199,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+17200,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+17201,C;C++;HTML/CSS;Java;Python;R;Other(s):
+17202,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17203,C#;Java;Kotlin;Scala
+17204,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Swift
+17205,C#;HTML/CSS;JavaScript;SQL;VBA
+17206,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+17207,Assembly;C++;JavaScript;PHP;Python
+17208,Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17209,Bash/Shell/PowerShell;C++;C#;Dart;JavaScript;Python
+17210,HTML/CSS;JavaScript;Ruby;SQL
+17211,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+17212,Bash/Shell/PowerShell;Java;Kotlin
+17213,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+17214,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+17215,HTML/CSS;JavaScript;PHP
+17216,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+17217,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;TypeScript
+17218,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17219,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+17220,Assembly;C;C++;C#;Python
+17221,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+17222,HTML/CSS;PHP;SQL
+17223,Java;Objective-C;Swift
+17224,C#
+17225,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Python;Ruby;TypeScript;Other(s):
+17226,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+17227,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Other(s):
+17228,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+17229,HTML/CSS;JavaScript;Python
+17230,Bash/Shell/PowerShell;C++
+17231,C++
+17232,HTML/CSS;JavaScript
+17233,C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+17234,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+17235,JavaScript;PHP;SQL
+17236,C;C++;C#
+17237,Bash/Shell/PowerShell;C#;Java;Python;SQL
+17238,HTML/CSS;Java;Kotlin;Python;Ruby;SQL
+17239,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+17240,Bash/Shell/PowerShell;PHP;SQL;TypeScript
+17241,SQL;Other(s):
+17242,Bash/Shell/PowerShell;Elixir;Go;Java;JavaScript;Python;Ruby;SQL
+17243,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+17244,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL
+17245,C#;JavaScript;Python
+17246,Clojure;HTML/CSS;Java;JavaScript;Swift
+17247,Bash/Shell/PowerShell;Go;Java;Python;Rust;SQL
+17248,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+17249,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17250,C#;HTML/CSS;JavaScript
+17251,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+17252,Python
+17253,C#;HTML/CSS;PHP;SQL
+17254,HTML/CSS;Java;JavaScript;SQL
+17255,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;R;Ruby;SQL
+17256,Objective-C;Swift
+17257,C#;Python;R;SQL
+17258,Bash/Shell/PowerShell;C;C++;Python;SQL
+17259,C++;C#;Java;Python;TypeScript
+17260,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17261,Bash/Shell/PowerShell;Clojure;Java;Python
+17262,C;C++;C#;HTML/CSS;Java;Objective-C;Python;SQL;VBA
+17263,C;C#;HTML/CSS;SQL
+17264,HTML/CSS;Java;JavaScript
+17265,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Rust
+17267,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17268,C#;HTML/CSS;TypeScript
+17269,HTML/CSS;JavaScript;TypeScript
+17270,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+17271,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+17272,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+17273,HTML/CSS;JavaScript;TypeScript
+17274,Go;JavaScript;Python
+17275,C#;F#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+17276,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17277,HTML/CSS;Java;JavaScript;SQL
+17278,Ruby
+17279,Python
+17280,HTML/CSS;Java;JavaScript;PHP;SQL
+17281,Bash/Shell/PowerShell;C;C++;Python
+17282,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+17283,HTML/CSS;JavaScript;PHP
+17284,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+17285,Ruby
+17286,Objective-C;SQL;Swift
+17287,C#
+17288,Go;Java;Python;SQL
+17289,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+17291,Python
+17292,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+17293,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+17294,C#;HTML/CSS;JavaScript;PHP;SQL
+17295,Go;HTML/CSS;JavaScript;Kotlin;Objective-C;TypeScript
+17296,C#;HTML/CSS;Java;JavaScript;TypeScript
+17297,C#;Java;JavaScript;PHP;SQL
+17298,HTML/CSS;Python
+17299,HTML/CSS;Java;JavaScript;PHP;SQL
+17300,C#;HTML/CSS;JavaScript
+17301,HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+17302,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17303,C++;Java
+17304,C++;C#;Java;JavaScript;Python;SQL
+17305,Bash/Shell/PowerShell;C;C++;Java;Python
+17306,Java;SQL
+17308,Bash/Shell/PowerShell;Go;SQL
+17309,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+17310,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+17311,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+17312,Go;JavaScript;Python;Scala;TypeScript;Other(s):
+17313,Assembly;C#;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+17314,Bash/Shell/PowerShell;C++
+17315,Assembly;HTML/CSS;JavaScript;TypeScript
+17316,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python
+17317,HTML/CSS;JavaScript
+17318,C#;HTML/CSS;JavaScript;SQL;VBA
+17319,Bash/Shell/PowerShell;PHP;SQL
+17320,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+17321,C#;Java;Other(s):
+17322,C++;C#
+17323,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17324,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+17325,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+17326,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Rust;SQL
+17327,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+17328,HTML/CSS;JavaScript;PHP;SQL
+17329,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+17330,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust
+17331,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL
+17332,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17333,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17334,HTML/CSS;PHP
+17335,HTML/CSS;JavaScript;PHP;Other(s):
+17336,HTML/CSS;JavaScript;Ruby
+17337,HTML/CSS;Java;JavaScript;Python
+17338,HTML/CSS;JavaScript;Python
+17339,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R
+17340,Java;Python;R;SQL
+17341,HTML/CSS;Java;Python
+17342,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+17343,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17344,C;C++;Python;Rust
+17345,C;C++;HTML/CSS;Java;Python;R;SQL
+17346,C#;HTML/CSS;JavaScript;Kotlin;Python;SQL
+17347,C++
+17348,Bash/Shell/PowerShell;C++;Java;JavaScript;SQL
+17349,HTML/CSS;JavaScript;PHP
+17350,Python
+17351,C#
+17352,C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+17353,HTML/CSS;JavaScript;TypeScript
+17354,Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+17355,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17356,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+17357,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+17358,Java;Kotlin
+17359,Java;Python;Scala;SQL
+17360,C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA;Other(s):
+17361,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+17362,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+17363,C#;HTML/CSS;JavaScript;SQL;VBA
+17364,C#;HTML/CSS;Java;JavaScript;SQL
+17365,Assembly;C;C#
+17366,C#;JavaScript;Python;SQL
+17367,Go;Java;Python
+17368,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17369,Go;Java;Ruby;Rust
+17370,HTML/CSS;JavaScript;TypeScript
+17371,Bash/Shell/PowerShell;C;Dart;HTML/CSS;JavaScript;SQL
+17372,C++;C#;HTML/CSS;JavaScript;SQL
+17373,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+17374,C++;C#;SQL;VBA;Other(s):
+17375,C#;HTML/CSS;PHP;Python;SQL
+17376,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+17377,Java
+17378,Java;JavaScript;SQL
+17379,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+17380,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+17381,Bash/Shell/PowerShell;Python;Rust
+17382,Java
+17383,HTML/CSS;JavaScript
+17384,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;TypeScript;WebAssembly
+17385,HTML/CSS;Java;JavaScript;Python;SQL
+17386,C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+17387,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+17388,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+17389,Java;JavaScript
+17390,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+17391,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+17392,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+17393,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+17394,Dart;Java;Swift;TypeScript
+17395,HTML/CSS;Java;R;SQL
+17396,HTML/CSS;Java;JavaScript;Other(s):
+17397,Java
+17398,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+17399,C#;HTML/CSS;JavaScript;SQL;Other(s):
+17400,Python;R;SQL
+17401,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+17402,Bash/Shell/PowerShell;C;JavaScript;Kotlin;Python;Ruby;TypeScript
+17403,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift
+17404,C;C++
+17405,C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+17406,Assembly;HTML/CSS;Java;JavaScript
+17407,Bash/Shell/PowerShell;JavaScript;PHP
+17408,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+17409,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+17410,Python
+17411,C#;HTML/CSS;JavaScript;SQL
+17412,C#;JavaScript
+17413,C#;HTML/CSS;JavaScript;SQL
+17414,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17415,C#;HTML/CSS;JavaScript
+17416,HTML/CSS;Java;JavaScript
+17417,Objective-C;Swift
+17418,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+17419,Swift
+17420,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Swift;TypeScript
+17421,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17422,Bash/Shell/PowerShell;Clojure;JavaScript;Python;R;Ruby;SQL
+17423,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Swift;TypeScript
+17424,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+17426,Java
+17427,HTML/CSS;JavaScript;PHP;TypeScript
+17428,HTML/CSS;JavaScript
+17429,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17430,C;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+17431,C;C++;Objective-C;PHP;Swift
+17432,C++;C#;HTML/CSS;JavaScript;SQL
+17433,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+17434,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+17435,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+17436,HTML/CSS;Java;JavaScript;Python;SQL
+17437,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+17438,Java;Kotlin;Scala;SQL
+17439,Java;JavaScript;Scala
+17440,C++;C#;Python;R;Ruby;SQL;VBA
+17441,C#;JavaScript;Python;SQL;TypeScript
+17442,C;C++;C#;HTML/CSS;Java;Objective-C;Python;Other(s):
+17443,Java;JavaScript
+17444,HTML/CSS;JavaScript;Python
+17445,Bash/Shell/PowerShell;C#;Scala;Other(s):
+17446,Python
+17447,Bash/Shell/PowerShell;Go;Java;Python;SQL
+17448,Bash/Shell/PowerShell;Java;Objective-C;Python;Ruby;Swift
+17449,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+17450,HTML/CSS;Java;Python;VBA
+17451,Bash/Shell/PowerShell;C++;Python;SQL
+17452,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17453,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+17454,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17455,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+17456,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+17457,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+17458,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17459,Java;SQL
+17460,Bash/Shell/PowerShell;C++;C#
+17461,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Swift;TypeScript
+17462,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+17463,C#;Java
+17464,HTML/CSS;JavaScript
+17465,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+17466,C;Python;Other(s):
+17467,HTML/CSS;Java;PHP;SQL;Other(s):
+17468,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+17469,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+17470,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+17471,C++;Java;Python
+17472,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+17473,C#;Go;HTML/CSS;JavaScript;SQL
+17474,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+17475,Kotlin
+17476,Assembly;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+17477,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+17478,Bash/Shell/PowerShell;Python;SQL;Other(s):
+17479,Go;HTML/CSS;JavaScript;SQL
+17480,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+17481,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+17482,C#;HTML/CSS;JavaScript
+17483,C
+17484,Python
+17485,Java
+17486,Python
+17487,Assembly;C;C++;Rust
+17488,Go;JavaScript;Ruby;Rust;SQL
+17489,HTML/CSS;JavaScript
+17490,Java;JavaScript;SQL
+17491,Bash/Shell/PowerShell;C;C++;JavaScript;SQL
+17492,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17493,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17494,HTML/CSS;JavaScript;PHP;TypeScript
+17495,Bash/Shell/PowerShell;Clojure;Java;Python;Scala;SQL;Other(s):
+17496,Python
+17497,HTML/CSS;Java;JavaScript;SQL
+17498,Bash/Shell/PowerShell;C;C++;Python;SQL
+17499,HTML/CSS;Java;JavaScript;TypeScript
+17500,C++;JavaScript;PHP;SQL
+17501,C;Java
+17502,PHP
+17503,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+17504,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+17505,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+17506,Bash/Shell/PowerShell;C;Python
+17507,C;C#;HTML/CSS;Java;PHP;SQL
+17508,C#;HTML/CSS;SQL;Other(s):
+17510,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+17511,HTML/CSS;Java;JavaScript;SQL
+17512,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin
+17513,C#;HTML/CSS;JavaScript;SQL;Other(s):
+17514,Java
+17515,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+17516,C#;SQL
+17517,JavaScript;Swift
+17518,HTML/CSS
+17519,HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+17520,HTML/CSS;JavaScript;PHP
+17521,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+17522,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+17523,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+17524,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+17525,HTML/CSS;JavaScript;PHP
+17526,Python;Ruby
+17527,HTML/CSS;JavaScript;PHP;Python;R;SQL
+17528,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+17529,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17530,Bash/Shell/PowerShell;C;Python
+17531,HTML/CSS;JavaScript;PHP;SQL
+17532,C#;HTML/CSS;JavaScript;PHP;SQL
+17533,C#
+17534,C#;HTML/CSS;JavaScript;SQL
+17535,Python;SQL;VBA
+17536,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+17537,Python
+17538,C#;SQL
+17539,C#;HTML/CSS;SQL;TypeScript
+17540,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;Kotlin;Python;Scala;SQL
+17541,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;VBA
+17542,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+17543,C#;Erlang;HTML/CSS;JavaScript;TypeScript
+17544,Kotlin
+17545,SQL
+17546,C#;HTML/CSS;Java;PHP;SQL
+17547,C++;Java;Python
+17548,C#;Clojure;HTML/CSS;Java;JavaScript;PHP;SQL
+17549,Java;JavaScript;SQL
+17550,C#;HTML/CSS;JavaScript;Python;SQL
+17551,C;C++;C#;HTML/CSS;JavaScript;Python
+17552,HTML/CSS;JavaScript;PHP;Python;SQL
+17553,HTML/CSS;Java;JavaScript;SQL
+17554,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+17555,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+17556,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+17557,Bash/Shell/PowerShell;C#
+17558,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+17559,C++;JavaScript;Kotlin;PHP;TypeScript
+17560,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+17561,Bash/Shell/PowerShell;C#;JavaScript
+17562,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+17563,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Swift;TypeScript
+17564,HTML/CSS;JavaScript;PHP;SQL;VBA
+17565,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17566,Assembly;C;Java;JavaScript;PHP;SQL
+17567,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+17568,Java;JavaScript;SQL
+17569,Java;JavaScript;Python
+17570,Objective-C;Swift
+17571,HTML/CSS;JavaScript;PHP
+17572,Bash/Shell/PowerShell;C
+17573,Bash/Shell/PowerShell;Clojure;Java;Ruby;SQL
+17574,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+17575,C#;Dart;Elixir;Java;Kotlin;SQL;Swift
+17576,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Scala
+17577,C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+17578,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17579,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Scala;SQL;Swift
+17580,C#;HTML/CSS;JavaScript;TypeScript
+17581,HTML/CSS;JavaScript;PHP;SQL
+17582,HTML/CSS;JavaScript;PHP;SQL
+17583,Objective-C;Python;SQL;Swift
+17584,HTML/CSS;Java;JavaScript;PHP;SQL
+17585,C;C#;HTML/CSS;Java;JavaScript;SQL
+17586,C#;HTML/CSS;JavaScript;SQL
+17587,HTML/CSS;JavaScript;PHP;SQL
+17588,C#;SQL
+17589,Bash/Shell/PowerShell;SQL
+17590,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+17591,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;Rust;Scala;SQL
+17592,Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript;Python;Ruby;Rust;SQL
+17593,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;Scala;SQL;TypeScript;VBA;Other(s):
+17594,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+17595,HTML/CSS;JavaScript;Python;SQL
+17596,Bash/Shell/PowerShell;C;C#;Go;JavaScript;Python;Rust;TypeScript
+17597,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17598,Bash/Shell/PowerShell;Java;Scala;SQL
+17599,JavaScript
+17600,HTML/CSS
+17601,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Rust;TypeScript
+17602,C#;HTML/CSS;JavaScript;PHP
+17603,C;C++;HTML/CSS;JavaScript;PHP;SQL
+17604,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+17605,HTML/CSS;JavaScript;PHP;Python;SQL
+17606,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;Scala;TypeScript
+17607,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+17608,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17609,Bash/Shell/PowerShell;PHP;Other(s):
+17610,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+17611,Bash/Shell/PowerShell;HTML/CSS
+17612,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+17613,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+17614,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+17615,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+17616,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+17617,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17618,Scala
+17619,Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;Ruby;Swift
+17620,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;Ruby;SQL
+17621,C++;Go;Java;Kotlin
+17622,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Other(s):
+17623,C#;Elixir;HTML/CSS;PHP;SQL;TypeScript
+17624,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+17625,HTML/CSS;Java;JavaScript;Kotlin;Scala
+17626,JavaScript;TypeScript
+17627,C;Java;Python
+17628,HTML/CSS;Java;SQL
+17629,C;HTML/CSS;JavaScript;PHP;Python
+17630,C#
+17631,Objective-C;Ruby;Swift
+17632,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+17633,C++;Python
+17634,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+17635,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+17636,JavaScript;Swift
+17637,C#;JavaScript;TypeScript
+17639,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17640,Java;JavaScript;PHP;SQL;Swift
+17641,HTML/CSS;Java;JavaScript;SQL
+17642,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL
+17643,C;C++;HTML/CSS;Java;JavaScript;Python
+17644,C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+17645,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+17646,JavaScript;R
+17647,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+17649,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;SQL
+17650,HTML/CSS;JavaScript;Python;SQL
+17651,Bash/Shell/PowerShell;C;Python
+17652,HTML/CSS;JavaScript;Ruby;TypeScript;VBA
+17653,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+17654,JavaScript
+17655,C#;JavaScript;PHP
+17656,C#;HTML/CSS;JavaScript;SQL
+17657,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+17658,Assembly;C++;HTML/CSS;Java;JavaScript;Python;SQL
+17659,Java;JavaScript;SQL;TypeScript
+17660,Bash/Shell/PowerShell;C#;Python
+17661,HTML/CSS;JavaScript;PHP;SQL
+17662,Bash/Shell/PowerShell;Go;JavaScript;Ruby;SQL
+17663,HTML/CSS;JavaScript;Ruby
+17664,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17665,C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly
+17666,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+17667,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Python;SQL
+17668,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+17669,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+17670,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+17671,Swift
+17672,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP
+17673,HTML/CSS;Python;R;SQL
+17674,Java;PHP
+17675,C#;HTML/CSS;JavaScript;PHP
+17676,Bash/Shell/PowerShell;PHP;SQL
+17677,Go;Python
+17678,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+17679,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+17680,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Python;R;SQL
+17681,C#;Java;Kotlin
+17682,C#;HTML/CSS;JavaScript;SQL
+17683,Swift
+17684,R
+17685,HTML/CSS;Java;PHP;SQL
+17686,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+17687,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+17688,C#
+17689,HTML/CSS;Java;JavaScript;PHP;SQL
+17690,C#;HTML/CSS;JavaScript;SQL
+17691,Python
+17692,Objective-C;Swift
+17693,Java;Kotlin;Ruby
+17694,C;C++;C#;Dart;HTML/CSS;Java;JavaScript
+17695,Java;Python;R;SQL
+17696,C++;C#;HTML/CSS;JavaScript;SQL
+17697,C#;SQL
+17698,Bash/Shell/PowerShell;C;C++;Go;Python;Rust;Other(s):
+17699,HTML/CSS;JavaScript;TypeScript
+17700,C;HTML/CSS;PHP;Python;VBA
+17701,Bash/Shell/PowerShell;C;C++;Python
+17702,C#;HTML/CSS;Java;JavaScript;Python
+17703,C++
+17704,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+17705,PHP
+17707,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+17708,HTML/CSS;JavaScript;PHP;SQL
+17709,Swift
+17710,Java;JavaScript;Objective-C;Python;Swift
+17711,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17712,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;VBA;Other(s):
+17713,C#;JavaScript
+17714,Bash/Shell/PowerShell;C#;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+17715,Java;Python;SQL
+17716,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+17717,HTML/CSS;JavaScript;PHP;SQL
+17718,HTML/CSS;JavaScript;PHP;SQL
+17719,HTML/CSS;JavaScript;PHP
+17720,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+17721,C;C#;HTML/CSS;Java;JavaScript;PHP
+17722,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17723,HTML/CSS;Java;JavaScript;SQL
+17724,HTML/CSS;Java;JavaScript
+17725,HTML/CSS;Java;JavaScript;SQL
+17726,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+17727,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+17728,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+17729,Bash/Shell/PowerShell;Go;Java;Python;SQL
+17730,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+17731,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;R
+17732,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+17733,C#
+17735,Bash/Shell/PowerShell;C++;Java;JavaScript;Rust
+17736,Clojure;Java;JavaScript;Python;SQL;TypeScript
+17737,R;VBA
+17738,C;C++;C#
+17739,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+17740,Bash/Shell/PowerShell;C;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+17741,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+17742,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+17743,C#;HTML/CSS;JavaScript
+17744,C#;HTML/CSS;JavaScript
+17745,HTML/CSS;Java;JavaScript
+17746,Java;JavaScript
+17747,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+17748,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Swift
+17750,HTML/CSS;Java;JavaScript;Python
+17751,Java;SQL
+17752,Bash/Shell/PowerShell;HTML/CSS;Python;R;Ruby;SQL;Other(s):
+17753,Java;JavaScript;Kotlin;Objective-C;Swift
+17754,C;HTML/CSS;Java;JavaScript;PHP;SQL
+17755,C++;Dart;JavaScript;Swift
+17756,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Java;JavaScript;Python;Ruby;Rust;SQL
+17757,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+17758,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript;Other(s):
+17759,Bash/Shell/PowerShell;Python;SQL
+17761,C#;JavaScript;Python;Scala;SQL
+17762,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+17763,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17764,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+17765,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17766,HTML/CSS;Java;JavaScript;Kotlin;SQL
+17767,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17768,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17769,HTML/CSS;JavaScript;PHP;SQL
+17770,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+17771,HTML/CSS;Java;JavaScript;PHP;SQL
+17772,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+17773,HTML/CSS;Java;JavaScript;R;SQL
+17774,Assembly;C;C++;F#;Java;JavaScript;Python;Ruby;TypeScript
+17775,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+17776,HTML/CSS;JavaScript;SQL
+17777,Bash/Shell/PowerShell;Python
+17778,C;C++;Java;SQL
+17779,HTML/CSS;JavaScript;SQL
+17780,Bash/Shell/PowerShell;C#;JavaScript;Python
+17781,HTML/CSS;JavaScript;PHP;Python;SQL
+17782,Java;Python
+17783,HTML/CSS;JavaScript;TypeScript
+17784,Python;VBA
+17785,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+17786,HTML/CSS;JavaScript;Python
+17787,C#;SQL;Other(s):
+17788,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17789,HTML/CSS;Java;JavaScript;Python;SQL
+17790,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+17791,HTML/CSS;Java;JavaScript;Swift;TypeScript
+17792,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+17793,C;C#;Java;Python;Other(s):
+17794,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;TypeScript
+17795,Assembly;C;C++;C#;HTML/CSS;PHP;Python;SQL
+17796,Bash/Shell/PowerShell;Java;PHP;Python;TypeScript
+17797,C;Go;JavaScript;Python;R
+17798,HTML/CSS;Java;JavaScript;SQL;TypeScript
+17799,HTML/CSS;JavaScript;PHP
+17800,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;WebAssembly
+17801,Java
+17802,HTML/CSS;JavaScript;SQL;Other(s):
+17803,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+17804,JavaScript
+17805,Objective-C;Swift
+17806,Bash/Shell/PowerShell;Elixir;Erlang;JavaScript
+17808,C++;HTML/CSS;Java;JavaScript;Python;SQL
+17809,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+17810,HTML/CSS;JavaScript;PHP;Python
+17811,Python;SQL
+17812,Java
+17813,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+17814,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17815,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17816,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;VBA
+17817,C;C++;Go;HTML/CSS;JavaScript;TypeScript;Other(s):
+17818,HTML/CSS;JavaScript;Python;TypeScript
+17819,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17820,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;TypeScript
+17821,Other(s):
+17822,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17823,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+17824,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+17825,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;R;SQL;TypeScript
+17826,Java;Objective-C
+17827,C#;HTML/CSS;Java;JavaScript;SQL
+17828,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+17829,HTML/CSS;Python;Swift;VBA
+17830,C++;C#;HTML/CSS;JavaScript;SQL
+17831,C#;HTML/CSS;JavaScript;SQL
+17832,Bash/Shell/PowerShell;JavaScript;Python;SQL
+17833,HTML/CSS;JavaScript;PHP;SQL
+17834,C#;JavaScript;SQL
+17835,C#;HTML/CSS;Java;JavaScript;SQL
+17836,HTML/CSS;Ruby
+17837,JavaScript;Python;SQL;Other(s):
+17838,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+17839,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+17840,Bash/Shell/PowerShell;C++;Objective-C;Python;Scala;SQL;Swift
+17841,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17842,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17843,HTML/CSS;JavaScript;PHP;SQL
+17844,C#;Dart;HTML/CSS;JavaScript;PHP;SQL
+17845,C#;HTML/CSS;JavaScript
+17846,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+17847,C;HTML/CSS;PHP;Python;R;SQL
+17848,JavaScript;Python;R;SQL
+17849,Clojure;Elixir;HTML/CSS;JavaScript;Ruby;TypeScript
+17850,HTML/CSS;Java;JavaScript;PHP;SQL
+17851,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL;TypeScript
+17852,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+17853,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+17854,HTML/CSS;JavaScript;PHP
+17855,Bash/Shell/PowerShell;JavaScript;Python;SQL
+17856,Bash/Shell/PowerShell;Go;Python
+17857,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+17858,HTML/CSS;Java
+17859,HTML/CSS;Java;JavaScript;SQL
+17860,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+17861,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+17862,Objective-C;Swift
+17863,C;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+17864,C;C++
+17866,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript
+17867,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript
+17868,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+17869,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala
+17870,C++;Python;Other(s):
+17871,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+17873,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17874,Bash/Shell/PowerShell;C;C++;Python
+17875,C#;HTML/CSS;JavaScript;SQL
+17876,C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17877,C++;Java;Kotlin;Python;Other(s):
+17878,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17879,C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+17880,Java;JavaScript;SQL;TypeScript;Other(s):
+17881,C++;Python
+17882,Bash/Shell/PowerShell;Dart;Java;Kotlin;Python;R
+17883,HTML/CSS;Scala;SQL;Other(s):
+17884,C++;Python
+17885,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+17886,C#;HTML/CSS
+17887,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+17888,C;HTML/CSS;JavaScript;PHP;R;Scala;SQL;Other(s):
+17889,JavaScript;Python
+17890,Bash/Shell/PowerShell;Java;Python
+17891,Java;JavaScript;PHP
+17892,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+17893,Python;VBA
+17894,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17895,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+17896,Go;HTML/CSS;JavaScript;TypeScript
+17897,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+17898,HTML/CSS;Java;JavaScript
+17899,C#;Python;SQL
+17900,C;C++;Java;Kotlin;SQL
+17901,Bash/Shell/PowerShell;C;C++;Kotlin;Python;Rust;WebAssembly
+17902,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17903,JavaScript;Python;TypeScript
+17904,C#;HTML/CSS;JavaScript;SQL
+17906,Java
+17907,HTML/CSS;JavaScript;Python;SQL
+17908,C#;HTML/CSS;JavaScript;Python;Other(s):
+17909,Bash/Shell/PowerShell;Elixir;Python
+17910,Bash/Shell/PowerShell;Python;Scala;SQL
+17911,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+17912,Bash/Shell/PowerShell;Java;JavaScript;Ruby;Scala;TypeScript
+17913,HTML/CSS;JavaScript;PHP;SQL
+17914,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+17915,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;Swift
+17916,C;C++;Java;SQL
+17917,Bash/Shell/PowerShell;Clojure;Java;Kotlin;Python;Scala;SQL
+17918,C#;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+17919,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;Ruby;Swift;TypeScript
+17920,HTML/CSS;JavaScript
+17921,Bash/Shell/PowerShell;JavaScript;Ruby
+17922,C++;C#;Java;Python;Other(s):
+17923,HTML/CSS;Java;JavaScript;Swift
+17924,Java
+17925,Java;Python
+17926,C#;HTML/CSS;JavaScript;Objective-C;SQL
+17927,Assembly;Bash/Shell/PowerShell;C;C++
+17928,HTML/CSS;JavaScript;Python
+17929,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+17930,C++;Python
+17931,HTML/CSS;JavaScript;TypeScript
+17932,Java;SQL
+17933,Python
+17934,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+17935,C;C++;Python
+17936,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+17937,C;Swift
+17938,HTML/CSS;JavaScript;PHP
+17939,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+17940,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+17941,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17942,Bash/Shell/PowerShell;C
+17943,HTML/CSS;Python
+17944,Bash/Shell/PowerShell;C++;C#;Python
+17945,Bash/Shell/PowerShell;Python;R
+17946,C#;HTML/CSS;JavaScript;SQL
+17947,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+17948,HTML/CSS;JavaScript;Python
+17949,Bash/Shell/PowerShell;C#;Java;JavaScript;Rust;TypeScript;WebAssembly
+17950,PHP
+17951,Bash/Shell/PowerShell;C;Java;Other(s):
+17952,HTML/CSS;JavaScript;PHP;Scala;SQL
+17953,Go;Ruby;Rust
+17954,Python
+17955,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+17956,HTML/CSS;JavaScript;TypeScript
+17957,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+17958,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+17959,Assembly;Bash/Shell/PowerShell;C;C++;Python
+17960,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Ruby;SQL
+17961,R;SQL
+17962,C#;SQL
+17964,HTML/CSS;JavaScript;PHP;TypeScript
+17965,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+17966,C#;JavaScript;PHP
+17967,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+17968,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+17969,Assembly;Go;HTML/CSS;Java;JavaScript;PHP;WebAssembly
+17970,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+17971,Bash/Shell/PowerShell;Go;Java;Python;Scala
+17972,C;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+17973,JavaScript;PHP
+17974,Swift
+17975,HTML/CSS;Java;SQL;TypeScript
+17976,C;C++;HTML/CSS;Java;JavaScript;PHP;Swift
+17977,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+17978,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+17979,HTML/CSS;JavaScript
+17980,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+17981,Bash/Shell/PowerShell;C++;Python;Other(s):
+17982,Bash/Shell/PowerShell;Go;JavaScript;SQL;TypeScript
+17983,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+17984,Java;JavaScript;PHP
+17985,Bash/Shell/PowerShell;C#
+17986,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;TypeScript
+17987,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+17988,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;TypeScript
+17989,C#;HTML/CSS;JavaScript;SQL;TypeScript
+17990,Bash/Shell/PowerShell;Go
+17991,C#;Java
+17992,HTML/CSS;JavaScript;Ruby;SQL
+17993,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Rust;SQL
+17994,Dart;Java;Kotlin;Scala;Swift
+17995,HTML/CSS;PHP;SQL
+17996,Java
+17997,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+17998,C#
+17999,HTML/CSS;Java;JavaScript;SQL
+18000,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;Swift;TypeScript
+18001,Java;JavaScript;PHP;SQL
+18002,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+18003,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+18004,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+18005,Bash/Shell/PowerShell
+18006,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Swift;TypeScript
+18007,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python
+18008,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+18009,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+18010,Assembly;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;SQL;Other(s):
+18011,C;C++
+18012,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18013,HTML/CSS;PHP;Python
+18014,Bash/Shell/PowerShell;C#
+18015,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+18016,Bash/Shell/PowerShell;C#;R;SQL;VBA
+18017,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+18018,Bash/Shell/PowerShell;C;C++;Python
+18019,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+18020,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+18021,Assembly;Bash/Shell/PowerShell;C;C++;Python
+18022,Bash/Shell/PowerShell;C;C++;Erlang;Python;SQL;Swift
+18023,C;C++;Python;SQL
+18024,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python
+18025,HTML/CSS;JavaScript;Python
+18026,HTML/CSS;JavaScript;Ruby;SQL
+18027,HTML/CSS;JavaScript;Objective-C;SQL;Swift
+18028,Bash/Shell/PowerShell;Python;SQL
+18029,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+18030,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+18031,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+18033,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18034,HTML/CSS;JavaScript;PHP;Python
+18035,HTML/CSS;JavaScript;PHP;SQL
+18036,C#;F#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+18038,HTML/CSS;JavaScript;PHP;SQL
+18039,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+18040,HTML/CSS;JavaScript
+18041,Java;Kotlin;PHP;Other(s):
+18042,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+18043,HTML/CSS;Java;JavaScript;Ruby;SQL
+18044,C#;HTML/CSS;Java;JavaScript;SQL
+18045,Assembly;C;C++;HTML/CSS;Java;Python;SQL
+18046,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+18047,HTML/CSS;JavaScript;Python
+18048,C;HTML/CSS;Java;JavaScript;SQL;VBA
+18049,JavaScript;Python
+18050,C;Python
+18051,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+18052,Go;HTML/CSS;Java;JavaScript;Python
+18053,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;VBA
+18054,C;C++;HTML/CSS;SQL;Other(s):
+18055,HTML/CSS;JavaScript
+18056,C#;SQL;Other(s):
+18057,C#;HTML/CSS;Java;Python
+18058,HTML/CSS;Java;JavaScript;Other(s):
+18059,C;C++;HTML/CSS;Java;JavaScript;PHP
+18060,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;SQL
+18061,C#;HTML/CSS;JavaScript;SQL
+18062,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+18063,R;SQL;VBA
+18064,SQL
+18065,HTML/CSS;Java;PHP;SQL;Swift
+18066,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+18067,Bash/Shell/PowerShell;C#;Python;TypeScript
+18068,HTML/CSS;JavaScript;PHP
+18069,JavaScript
+18070,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+18071,R
+18072,C;HTML/CSS;Java;JavaScript;Python;SQL
+18073,C;C++;Java
+18074,Java;TypeScript
+18075,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+18076,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+18077,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+18078,C#;HTML/CSS;Java;SQL
+18079,HTML/CSS;JavaScript;PHP;Python
+18080,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+18081,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+18082,HTML/CSS
+18083,HTML/CSS;JavaScript;Python;Ruby;Swift
+18084,C;HTML/CSS;JavaScript;PHP
+18085,C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+18086,C;Java;SQL
+18087,C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+18088,Go;Java;Rust;SQL
+18089,Java
+18090,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+18091,C#;HTML/CSS;JavaScript;TypeScript
+18092,Java;Kotlin;Other(s):
+18093,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA;Other(s):
+18094,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;Python
+18095,JavaScript;Python;Rust;SQL
+18096,C;Objective-C;Swift
+18097,C#;F#;Python;SQL;VBA
+18098,Bash/Shell/PowerShell;Python;R;SQL;VBA
+18099,Bash/Shell/PowerShell;C#;Python
+18100,JavaScript;PHP;SQL
+18101,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;SQL;TypeScript
+18102,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+18103,Java;Kotlin;Objective-C;Swift
+18104,Java;PHP
+18105,JavaScript;PHP;Python
+18106,C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+18107,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18108,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Other(s):
+18109,C#;JavaScript;PHP
+18110,Bash/Shell/PowerShell;Python;Other(s):
+18112,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+18113,Elixir;JavaScript;Ruby
+18114,Python
+18115,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift
+18116,HTML/CSS;JavaScript;PHP;Other(s):
+18117,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18118,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA;Other(s):
+18119,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL;Other(s):
+18120,Bash/Shell/PowerShell;Java
+18121,Python
+18122,C;Python;R
+18123,Assembly;C;HTML/CSS;JavaScript;Python;Other(s):
+18124,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18125,C#;HTML/CSS;JavaScript;SQL
+18126,Bash/Shell/PowerShell;C#;SQL
+18127,JavaScript;PHP;Scala;SQL
+18128,HTML/CSS;Python
+18129,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+18130,HTML/CSS;Java;JavaScript;PHP;SQL
+18131,Assembly;C;C++;JavaScript;Python;Ruby
+18132,C#;HTML/CSS;JavaScript;SQL
+18133,C++;HTML/CSS;JavaScript;Python;SQL
+18134,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18135,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript
+18136,HTML/CSS;Other(s):
+18137,C;JavaScript;Rust;TypeScript
+18138,Bash/Shell/PowerShell;C;C++;Python
+18139,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+18140,JavaScript;Python;TypeScript
+18141,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;R;Other(s):
+18142,C#;PHP;SQL;VBA
+18143,C++;HTML/CSS;JavaScript;PHP;TypeScript
+18144,Bash/Shell/PowerShell;C;C++;Objective-C;SQL;Swift
+18145,C++;C#;HTML/CSS;JavaScript;SQL
+18146,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+18147,C#
+18148,C;HTML/CSS;Java;Python;SQL
+18149,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18150,Bash/Shell/PowerShell;Java;Python
+18151,Assembly;HTML/CSS;Java;Python;SQL
+18152,C#;Go;Java;JavaScript;Kotlin
+18153,Java
+18154,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+18155,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+18156,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18157,Bash/Shell/PowerShell;Python;R
+18158,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+18159,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+18160,HTML/CSS;Java;JavaScript
+18161,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+18162,HTML/CSS;JavaScript;PHP;SQL
+18163,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+18164,Java;Kotlin;Python;SQL
+18165,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL;Other(s):
+18166,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+18167,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+18168,Java;Python
+18169,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+18170,HTML/CSS;Python;Swift
+18171,HTML/CSS;JavaScript;TypeScript
+18172,C++
+18173,Bash/Shell/PowerShell;C#;JavaScript;Python;TypeScript
+18174,Java;Swift
+18175,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+18176,Objective-C;Swift
+18177,C#;Go;Java
+18178,C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+18179,HTML/CSS;JavaScript;TypeScript
+18180,JavaScript
+18181,HTML/CSS;Java;JavaScript;PHP;SQL
+18182,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+18183,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+18184,HTML/CSS;Java;JavaScript;SQL
+18185,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+18186,HTML/CSS;JavaScript;Swift
+18187,R;SQL
+18188,Ruby
+18189,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+18190,C;C++;C#;HTML/CSS;JavaScript;Python
+18191,C;C++;Java;JavaScript;Python;Other(s):
+18192,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+18193,JavaScript;TypeScript
+18194,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+18195,C#;HTML/CSS;Java;JavaScript;PHP
+18196,HTML/CSS;JavaScript;PHP
+18197,C#;HTML/CSS;JavaScript;SQL
+18198,Java;JavaScript
+18199,C#;HTML/CSS;JavaScript;PHP;SQL
+18200,Bash/Shell/PowerShell;C;C++
+18201,C;C#;Python;SQL
+18202,C++;C#;Python
+18203,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+18204,C#;JavaScript;SQL
+18205,Assembly;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+18206,HTML/CSS;JavaScript;PHP;Ruby
+18207,C#;JavaScript;SQL
+18208,HTML/CSS;JavaScript;Python;SQL
+18209,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+18210,HTML/CSS;Java;JavaScript;PHP;SQL
+18211,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift;TypeScript
+18212,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18213,Python;SQL
+18214,C++;C#;HTML/CSS;Java;JavaScript;SQL
+18215,Clojure;HTML/CSS;Rust;SQL
+18216,Bash/Shell/PowerShell;C#;JavaScript
+18217,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18218,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby
+18219,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18220,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+18221,C#;HTML/CSS;JavaScript;SQL
+18222,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;Swift
+18223,C;C++;Python
+18224,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+18225,HTML/CSS;Java;JavaScript;Python
+18226,C#;JavaScript;SQL;TypeScript
+18228,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+18229,C#;SQL
+18230,HTML/CSS;Java;JavaScript;Kotlin
+18231,C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+18232,Assembly;Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+18233,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+18234,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;R;Rust;SQL
+18235,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+18236,HTML/CSS;JavaScript;PHP;SQL
+18237,HTML/CSS;JavaScript;PHP;SQL
+18238,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+18239,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+18240,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+18241,C#;F#;HTML/CSS;SQL
+18242,C++;HTML/CSS;JavaScript;PHP;Rust;SQL
+18243,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+18244,Bash/Shell/PowerShell;C;HTML/CSS;SQL;VBA;Other(s):
+18245,HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+18246,Java
+18247,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+18248,HTML/CSS;JavaScript;Python
+18249,Assembly;Bash/Shell/PowerShell;C;Python
+18250,Go;HTML/CSS;Python
+18251,C#;Java;SQL;TypeScript
+18252,C;Python;SQL;VBA
+18253,HTML/CSS;PHP
+18254,Assembly;C;Python;SQL
+18255,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+18257,HTML/CSS;JavaScript;PHP
+18258,HTML/CSS;JavaScript;Kotlin
+18259,C++;C#;Go;JavaScript;Rust
+18260,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL;Swift
+18261,C;C++;Java;Kotlin;Objective-C;SQL;Swift
+18262,Bash/Shell/PowerShell;C;C++;C#;Erlang;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Scala;SQL;VBA
+18263,HTML/CSS;JavaScript;Python;SQL;TypeScript
+18264,C++;Go;Java
+18265,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18266,HTML/CSS;JavaScript;Python
+18267,JavaScript;Python
+18268,HTML/CSS;Java;PHP;Python
+18269,Java;Swift
+18270,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+18271,C#;HTML/CSS;JavaScript;SQL
+18272,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+18273,R
+18274,C#;JavaScript;TypeScript
+18275,Java;JavaScript;Python;Ruby
+18276,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+18277,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+18278,Bash/Shell/PowerShell;C;C++;C#;Java
+18279,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;TypeScript;VBA
+18280,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+18281,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18282,JavaScript;Python;Ruby
+18283,Bash/Shell/PowerShell;HTML/CSS;Python;Swift
+18284,C#;SQL
+18285,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Rust;SQL
+18286,C#;JavaScript;SQL;TypeScript
+18287,HTML/CSS;Java;Python
+18288,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+18289,Java;TypeScript
+18290,Other(s):
+18291,Swift
+18292,Java;JavaScript;SQL
+18293,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+18294,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+18295,C#;HTML/CSS;JavaScript;SQL
+18296,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+18297,C#;Go;HTML/CSS;JavaScript;PHP;Rust
+18298,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+18299,JavaScript;PHP
+18300,C;C++;C#;Java;JavaScript;SQL
+18301,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+18302,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+18303,Elixir;Erlang;HTML/CSS;Java
+18304,HTML/CSS;Java;JavaScript;SQL;TypeScript
+18305,C++
+18306,HTML/CSS;JavaScript;PHP;Python;SQL
+18307,C#;HTML/CSS;JavaScript;SQL
+18308,HTML/CSS;JavaScript;Ruby;Rust;TypeScript
+18309,Go;JavaScript;PHP;Python;TypeScript
+18310,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;SQL;Other(s):
+18311,Assembly;Python;R
+18312,Bash/Shell/PowerShell;C++;HTML/CSS;Ruby;SQL
+18313,Java;Kotlin
+18314,C;Python
+18315,Assembly;Bash/Shell/PowerShell
+18316,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+18317,VBA
+18318,Bash/Shell/PowerShell;Go
+18319,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+18320,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+18321,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+18322,Bash/Shell/PowerShell;C++;Java;SQL
+18323,C;C++;C#;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+18324,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+18325,Assembly;C#;F#;Other(s):
+18326,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+18327,HTML/CSS;Java;JavaScript;SQL
+18328,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;Other(s):
+18329,JavaScript
+18330,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+18331,C++;C#;SQL
+18332,HTML/CSS;Java;JavaScript;Python
+18333,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+18334,Bash/Shell/PowerShell;Java;JavaScript;Python
+18335,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+18336,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+18337,JavaScript;Objective-C;Swift
+18338,C;Other(s):
+18339,HTML/CSS;Java
+18340,Clojure;Java;JavaScript;Ruby
+18341,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+18342,Java;Kotlin;SQL
+18343,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;TypeScript;Other(s):
+18344,C;C++;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+18345,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18346,Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+18347,C++;Python;R
+18348,Bash/Shell/PowerShell;Python;R;SQL
+18349,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+18350,Java;JavaScript;Python
+18351,Go;JavaScript;PHP;Python;SQL
+18352,HTML/CSS;Java;JavaScript;SQL;TypeScript
+18353,Bash/Shell/PowerShell;Java
+18354,HTML/CSS;JavaScript;Python;Swift
+18355,Go;HTML/CSS;JavaScript;PHP
+18356,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18357,Java;JavaScript
+18358,HTML/CSS;JavaScript;Python;Other(s):
+18359,C;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python
+18360,PHP
+18361,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+18362,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+18363,Bash/Shell/PowerShell;C++;Java;Python
+18364,Objective-C;Swift
+18365,Python;SQL
+18366,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+18367,HTML/CSS;JavaScript;Python;Ruby;Other(s):
+18368,C++;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript
+18369,Python;Other(s):
+18370,C++;HTML/CSS
+18371,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+18372,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;R;Scala;SQL
+18373,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+18374,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+18375,C#;HTML/CSS;JavaScript;SQL
+18376,Bash/Shell/PowerShell;C#;Clojure;Swift;Other(s):
+18377,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+18378,Bash/Shell/PowerShell;Python;R;Other(s):
+18379,C++;C#;HTML/CSS;TypeScript
+18380,Bash/Shell/PowerShell;C;HTML/CSS
+18381,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+18382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+18383,Assembly;C;C++;JavaScript;PHP;SQL;VBA
+18384,C#;Java
+18385,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+18386,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18387,Elixir;HTML/CSS;Ruby;SQL
+18389,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+18390,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+18391,JavaScript;PHP;Ruby;SQL
+18392,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+18393,Bash/Shell/PowerShell;C#;Python
+18394,HTML/CSS;Java;JavaScript;PHP;Python
+18395,C#;SQL
+18396,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18397,C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL
+18398,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18399,HTML/CSS;JavaScript;Ruby;SQL
+18400,Assembly;Go;HTML/CSS;JavaScript;Python;Other(s):
+18401,HTML/CSS;JavaScript;Python;SQL
+18402,C;HTML/CSS;JavaScript;Python;R
+18403,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL
+18404,C#;HTML/CSS;Java;JavaScript;SQL
+18405,C
+18406,C;C++;Python
+18407,HTML/CSS;JavaScript;PHP;SQL
+18408,C++;Java;Kotlin
+18409,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+18410,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+18411,C++;HTML/CSS;Python
+18412,Bash/Shell/PowerShell;C;C++;C#;Python
+18413,Bash/Shell/PowerShell;Dart;JavaScript
+18414,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+18415,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+18416,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+18417,Bash/Shell/PowerShell;JavaScript;PHP;Ruby;SQL;Other(s):
+18418,HTML/CSS;JavaScript;PHP;SQL
+18419,PHP
+18420,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+18421,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18422,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+18423,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+18424,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+18425,HTML/CSS;Java;JavaScript;PHP;TypeScript
+18426,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+18427,Assembly;C++;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+18428,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+18429,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+18430,C#;Java;Kotlin;Python;Swift
+18431,C;HTML/CSS;JavaScript;PHP;SQL
+18432,C;Python;Other(s):
+18433,Erlang;Java;Kotlin;Python;Swift
+18434,Bash/Shell/PowerShell;C;Java;Python
+18435,C#;HTML/CSS;SQL;VBA
+18436,C#;Java;JavaScript;Kotlin;SQL
+18437,C#;HTML/CSS;JavaScript;TypeScript
+18438,Java;Kotlin;Python;Swift
+18439,Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;Python
+18440,F#;Go;Java;Python;SQL;Other(s):
+18441,C#;SQL
+18442,SQL;VBA;Other(s):
+18443,Bash/Shell/PowerShell;C;Python
+18444,Bash/Shell/PowerShell;Java
+18445,C#;HTML/CSS;JavaScript;TypeScript
+18446,C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+18448,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+18449,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+18450,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+18451,HTML/CSS;Java;JavaScript;SQL
+18452,Java
+18453,HTML/CSS;JavaScript;Python;Ruby;SQL
+18454,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+18455,JavaScript;Python;SQL;TypeScript
+18456,HTML/CSS;JavaScript;PHP
+18457,Bash/Shell/PowerShell;HTML/CSS;Objective-C;Python;Ruby;Swift
+18458,C#;HTML/CSS;JavaScript;SQL
+18459,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA;WebAssembly
+18460,HTML/CSS;JavaScript;PHP;Python;TypeScript
+18461,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Kotlin;Python;SQL;Other(s):
+18462,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+18463,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+18464,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+18465,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+18466,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+18467,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+18468,C#;HTML/CSS;Java;JavaScript
+18469,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;SQL
+18470,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+18471,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;SQL
+18472,Bash/Shell/PowerShell;C#;F#;SQL
+18473,HTML/CSS;JavaScript;TypeScript
+18474,C#
+18475,HTML/CSS;Java;JavaScript;Python;SQL
+18476,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+18477,Bash/Shell/PowerShell;C;Python
+18478,C;C++;C#;Go;Java;JavaScript;Python;TypeScript
+18479,C#
+18480,Bash/Shell/PowerShell;C#;SQL
+18481,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;TypeScript
+18482,HTML/CSS;Java;Python;VBA
+18483,HTML/CSS;Java;JavaScript;Swift
+18484,HTML/CSS;Java;JavaScript;SQL
+18485,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python
+18486,C++;C#
+18487,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+18488,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+18489,Bash/Shell/PowerShell;C++;C#;Python
+18490,C#;Java;Python
+18491,Go;HTML/CSS;JavaScript;Python;Swift;TypeScript
+18492,Java;JavaScript
+18493,Bash/Shell/PowerShell;Elixir;Erlang;Python;SQL
+18494,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+18495,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+18496,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+18497,C#;Python;SQL;Swift
+18498,Bash/Shell/PowerShell;C;C++;Python
+18499,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+18500,Bash/Shell/PowerShell;C#;F#;JavaScript;Python;Scala;SQL;Other(s):
+18501,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+18502,C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+18503,C#;Java;Kotlin;SQL
+18504,Python
+18505,Bash/Shell/PowerShell;C++;Java;Python
+18506,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+18507,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Other(s):
+18508,C#;HTML/CSS;Other(s):
+18509,C#;Elixir;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18510,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+18511,Clojure;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+18512,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+18513,C#;HTML/CSS;JavaScript;SQL
+18514,C;C#;HTML/CSS;JavaScript;Python;SQL
+18515,C#;Java;JavaScript;Python;TypeScript
+18516,Java;Kotlin;SQL
+18517,HTML/CSS;Python;SQL
+18518,Clojure;Java;JavaScript;Python;SQL
+18519,Bash/Shell/PowerShell;Java;Kotlin;Python;Ruby;SQL;Other(s):
+18520,HTML/CSS;JavaScript;PHP;SQL
+18521,HTML/CSS;JavaScript
+18522,Bash/Shell/PowerShell;C#;F#;Java;SQL
+18523,Dart;HTML/CSS;JavaScript;TypeScript
+18524,Assembly;Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+18525,HTML/CSS;JavaScript;TypeScript
+18526,Ruby;SQL
+18527,Python;Other(s):
+18528,HTML/CSS;JavaScript
+18529,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+18530,Bash/Shell/PowerShell;C++;C#;Java;Python;Scala
+18531,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+18532,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+18533,Dart;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+18534,C;C++;C#;Java;Swift
+18535,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+18536,C#;SQL
+18537,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL
+18538,C#;HTML/CSS;JavaScript;TypeScript
+18539,PHP
+18540,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+18541,HTML/CSS;JavaScript;Ruby;SQL
+18542,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+18543,C#;SQL
+18544,HTML/CSS;Java;JavaScript;Python;SQL
+18545,C#;HTML/CSS;JavaScript
+18546,C#;HTML/CSS;JavaScript;SQL;VBA
+18547,C#;Java;JavaScript;Ruby
+18548,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+18549,HTML/CSS;JavaScript;PHP;SQL
+18550,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+18551,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+18552,Java;Kotlin;Objective-C
+18553,HTML/CSS;JavaScript;Python;R
+18554,Assembly;Bash/Shell/PowerShell;C;JavaScript;R
+18555,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+18556,Python;Other(s):
+18557,JavaScript;Python
+18558,C#;Java;JavaScript
+18559,C#;F#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+18560,C;HTML/CSS;Java;JavaScript;R;SQL
+18561,Go;HTML/CSS;Java;JavaScript;PHP
+18562,Python;R;SQL
+18563,C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+18564,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Python;R
+18565,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Rust;SQL;WebAssembly
+18566,Go;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+18567,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+18568,HTML/CSS;Java;JavaScript
+18569,HTML/CSS;Java;JavaScript;PHP
+18570,HTML/CSS;JavaScript;Python;SQL
+18571,Bash/Shell/PowerShell;C#;JavaScript;SQL
+18572,HTML/CSS;JavaScript;Ruby
+18573,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18574,C;HTML/CSS;JavaScript;PHP
+18575,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+18576,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+18577,HTML/CSS;JavaScript;PHP;SQL
+18578,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+18579,C#
+18580,C#;HTML/CSS;JavaScript;TypeScript;VBA
+18581,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+18582,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+18583,Java;Python;SQL;Swift
+18584,HTML/CSS;JavaScript;PHP;SQL
+18585,HTML/CSS;Java;JavaScript;SQL
+18586,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+18587,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18588,C++;HTML/CSS;Java;JavaScript;Python;SQL
+18589,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+18590,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+18591,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+18592,C#;Go;JavaScript;TypeScript;Other(s):
+18593,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+18594,Bash/Shell/PowerShell;C#;Go;JavaScript;PHP;Python;SQL
+18595,Bash/Shell/PowerShell;Go;Python;SQL
+18596,C++;Erlang;Go;Java;JavaScript;Kotlin;Python
+18597,Bash/Shell/PowerShell;C#;JavaScript
+18598,HTML/CSS;Java;JavaScript
+18599,C;HTML/CSS;Java;JavaScript;PHP;Python
+18600,C#;HTML/CSS;JavaScript;SQL
+18601,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+18602,Go;HTML/CSS;Java;Python;Rust
+18603,C#;JavaScript;Python;TypeScript
+18604,C#;SQL;VBA
+18605,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+18606,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+18607,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin;PHP;Python;Scala;SQL;VBA
+18608,HTML/CSS;JavaScript;PHP;TypeScript
+18609,HTML/CSS;JavaScript;SQL;TypeScript
+18610,Go;HTML/CSS;JavaScript;PHP
+18611,HTML/CSS;Java;JavaScript;SQL
+18612,Java;TypeScript
+18613,HTML/CSS;JavaScript;Python;TypeScript
+18614,R
+18615,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+18616,HTML/CSS;Java;JavaScript;PHP;SQL
+18617,Objective-C;Swift
+18618,C;HTML/CSS;JavaScript;PHP;TypeScript
+18619,C;JavaScript;Python;SQL
+18620,HTML/CSS;JavaScript;TypeScript
+18621,Go;Java;JavaScript
+18622,Bash/Shell/PowerShell;C#
+18623,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+18624,C;C++;Python;Scala
+18625,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+18626,Java;JavaScript
+18627,Go;HTML/CSS;JavaScript;TypeScript;WebAssembly
+18628,HTML/CSS;JavaScript;PHP;SQL
+18629,C++;HTML/CSS;JavaScript;Python;R;SQL
+18630,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;R;SQL
+18631,C#;HTML/CSS;SQL
+18632,C;C++;Java;JavaScript;Python
+18633,Assembly;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+18634,HTML/CSS;JavaScript;PHP;SQL
+18635,Other(s):
+18636,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Python;Other(s):
+18637,HTML/CSS;Java;JavaScript;SQL;Other(s):
+18638,C;C++;HTML/CSS;Java
+18639,PHP;SQL
+18640,C;R
+18641,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+18642,HTML/CSS;JavaScript
+18643,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+18644,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;JavaScript;Python;SQL
+18645,HTML/CSS;Java;PHP;SQL
+18646,Bash/Shell/PowerShell;Dart;Elixir;Erlang;HTML/CSS;JavaScript;Python
+18647,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+18648,JavaScript;Swift
+18649,HTML/CSS;Java;JavaScript;PHP;Python
+18650,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+18651,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18652,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+18653,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+18654,Bash/Shell/PowerShell;C++;Python;SQL
+18655,C++;C#;HTML/CSS;Java;JavaScript;SQL
+18656,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+18657,TypeScript
+18658,Swift
+18659,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+18660,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+18661,HTML/CSS;JavaScript;TypeScript
+18662,HTML/CSS;Python;R
+18663,C#;HTML/CSS;JavaScript;Python;R;Ruby;SQL;TypeScript
+18664,Java;SQL
+18665,Java;Python
+18666,C;C#;HTML/CSS;Java
+18667,C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+18668,C;C++;HTML/CSS;Java;Python;SQL
+18669,HTML/CSS;Java;JavaScript;Python;SQL
+18670,C#;HTML/CSS;JavaScript;SQL
+18671,Python;SQL
+18672,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+18673,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18674,Java;JavaScript;Kotlin;TypeScript
+18675,C#;JavaScript;SQL
+18676,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Objective-C;Python;SQL
+18677,HTML/CSS;JavaScript;Ruby;SQL
+18678,Assembly;Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+18679,Java
+18680,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+18681,Java;JavaScript;Python;TypeScript
+18682,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18683,C;C#;Java;JavaScript;SQL
+18684,Java
+18685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+18686,HTML/CSS;JavaScript;PHP;SQL
+18687,Bash/Shell/PowerShell;Java;JavaScript
+18688,HTML/CSS;JavaScript;Python;SQL
+18689,HTML/CSS;JavaScript;PHP
+18690,JavaScript;Objective-C;Swift
+18691,Bash/Shell/PowerShell;C;C++;C#;Python;TypeScript
+18692,Bash/Shell/PowerShell;JavaScript;Ruby;Other(s):
+18693,C++;Java
+18694,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;Other(s):
+18695,C;C++;JavaScript;Python;Ruby
+18696,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+18697,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+18698,C#;HTML/CSS;JavaScript;Python;Ruby
+18699,HTML/CSS;JavaScript;Kotlin;TypeScript
+18700,C++;C#;F#;SQL
+18701,Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;SQL;VBA
+18702,C;C++;HTML/CSS;Java
+18703,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+18704,HTML/CSS;JavaScript;PHP;Python;SQL
+18705,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+18706,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+18707,C++;HTML/CSS;JavaScript;PHP;R;SQL
+18708,JavaScript;Scala
+18709,Bash/Shell/PowerShell;C;C++;Python
+18710,Bash/Shell/PowerShell;Java;Python;SQL
+18711,Java;JavaScript;SQL
+18712,HTML/CSS;JavaScript;PHP;SQL
+18713,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+18714,C;C++;C#;Other(s):
+18715,C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+18716,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+18717,C#;Java;Python;TypeScript
+18718,Bash/Shell/PowerShell;C#;HTML/CSS;Python;TypeScript
+18719,C++;Objective-C;Swift
+18720,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+18721,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+18722,Java;Scala
+18723,Bash/Shell/PowerShell;C;Java;JavaScript;Objective-C;SQL;TypeScript
+18724,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+18725,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18726,Swift
+18727,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+18728,HTML/CSS;JavaScript;Ruby;SQL
+18729,Assembly;C;C++;Java;Python;SQL;Swift
+18730,Java;JavaScript;Python;R;Scala;SQL
+18731,C;C++;HTML/CSS;JavaScript;Python;WebAssembly
+18732,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+18733,C++;C#;HTML/CSS;Java
+18734,JavaScript;Ruby
+18735,C#;HTML/CSS;JavaScript;TypeScript
+18736,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18737,C++;Python
+18738,Assembly;HTML/CSS;SQL
+18739,C#;HTML/CSS;Java;PHP;SQL
+18740,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+18741,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+18742,C#;JavaScript;SQL;TypeScript
+18743,HTML/CSS;JavaScript;PHP;TypeScript
+18744,HTML/CSS;JavaScript;PHP
+18745,C#;HTML/CSS;JavaScript;SQL
+18746,Java
+18747,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+18748,HTML/CSS;JavaScript;PHP
+18749,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL
+18750,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+18751,HTML/CSS;JavaScript;Python
+18752,C
+18753,Bash/Shell/PowerShell;Python;Ruby;SQL
+18754,Assembly;Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+18755,C#;HTML/CSS;JavaScript;TypeScript
+18756,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+18757,C++
+18758,Java;JavaScript
+18759,Java;Kotlin;Objective-C;Swift
+18760,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Other(s):
+18761,C++;HTML/CSS;JavaScript;Python
+18762,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+18763,C;C++
+18764,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+18765,Java;JavaScript;Kotlin;PHP
+18766,HTML/CSS;JavaScript;PHP;SQL
+18767,Java;JavaScript;Python;SQL;TypeScript
+18768,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+18769,Dart;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript
+18770,Java;R;Scala
+18771,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+18772,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+18773,C;HTML/CSS;Java;JavaScript;PHP
+18774,JavaScript;Swift;TypeScript
+18775,Bash/Shell/PowerShell;Java;PHP
+18776,Python;R;SQL;VBA
+18777,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+18778,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+18779,Bash/Shell/PowerShell;Python
+18781,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL
+18782,Bash/Shell/PowerShell;C#;SQL
+18783,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18784,HTML/CSS;JavaScript;PHP
+18785,C#;HTML/CSS;JavaScript;SQL
+18786,Assembly;Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Ruby
+18787,HTML/CSS;JavaScript;PHP;SQL
+18788,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+18789,Bash/Shell/PowerShell;Java;SQL
+18790,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+18791,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL
+18792,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+18793,Scala;SQL
+18794,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Rust
+18795,C#
+18796,Java;JavaScript;SQL;TypeScript
+18797,HTML/CSS;JavaScript;PHP;TypeScript
+18798,C;HTML/CSS;JavaScript;PHP;SQL;VBA
+18799,HTML/CSS;Java;JavaScript;SQL;VBA
+18800,C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+18801,C++;C#;HTML/CSS;JavaScript
+18802,C#;HTML/CSS;JavaScript;SQL
+18803,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+18804,Assembly;Bash/Shell/PowerShell;C;C++;PHP;Python;Other(s):
+18805,C;C++;C#;Java;SQL
+18806,Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+18807,C#;HTML/CSS;JavaScript;Python;R;SQL
+18808,R;SQL
+18809,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+18810,HTML/CSS;Objective-C;Ruby;SQL;Swift
+18811,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+18812,C#;HTML/CSS;Java;JavaScript
+18813,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+18814,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+18815,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18816,HTML/CSS;Java;JavaScript;Python;SQL
+18817,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+18818,HTML/CSS;Java;JavaScript;Scala;SQL
+18819,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+18820,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+18821,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;SQL
+18822,Python
+18823,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java
+18824,HTML/CSS;Java;JavaScript;SQL;TypeScript
+18825,HTML/CSS;Java
+18826,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;VBA
+18827,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+18828,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+18829,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+18830,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+18831,Objective-C;Swift
+18832,Bash/Shell/PowerShell;C;C++;C#;Python
+18833,HTML/CSS;Java;JavaScript;PHP;SQL
+18834,HTML/CSS;JavaScript;PHP
+18835,Bash/Shell/PowerShell;C++;C#;JavaScript;SQL
+18836,HTML/CSS;JavaScript;TypeScript
+18837,HTML/CSS;Java;PHP;Python
+18838,HTML/CSS;Java;JavaScript;SQL;TypeScript
+18839,Assembly;Bash/Shell/PowerShell;C;C#;Java;SQL;Other(s):
+18840,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+18841,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+18842,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+18843,Go;Java;JavaScript;SQL
+18844,C#;HTML/CSS;JavaScript;SQL;Other(s):
+18845,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+18846,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+18847,C;C++;Java;Kotlin;Scala;SQL
+18848,HTML/CSS;JavaScript;PHP
+18849,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL;TypeScript
+18850,HTML/CSS;JavaScript;PHP;R;Ruby
+18851,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+18852,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;Swift
+18853,HTML/CSS;JavaScript;SQL;Other(s):
+18854,Java;SQL;Other(s):
+18855,C++;C#;HTML/CSS;JavaScript
+18856,Bash/Shell/PowerShell;Java;Python;SQL
+18857,HTML/CSS;JavaScript;PHP;Python;SQL
+18858,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+18859,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+18860,C;C++;C#;Java;JavaScript;Python
+18861,HTML/CSS;JavaScript;PHP;TypeScript
+18862,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+18863,Java;JavaScript;SQL
+18864,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+18865,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+18866,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+18867,C#;SQL
+18868,Bash/Shell/PowerShell;Erlang;HTML/CSS;Python;SQL
+18869,Assembly;C;C++;Java;PHP;SQL
+18870,Java;SQL
+18871,C#;HTML/CSS;JavaScript;SQL
+18872,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;Rust
+18873,HTML/CSS;Java;SQL;TypeScript
+18874,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+18875,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+18876,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+18877,Other(s):
+18878,HTML/CSS;Java;JavaScript;Python
+18879,C#;HTML/CSS;JavaScript;SQL
+18880,C;HTML/CSS;Java;JavaScript;SQL
+18881,HTML/CSS;JavaScript;TypeScript
+18882,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+18883,C++;C#;HTML/CSS;JavaScript;SQL
+18884,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;TypeScript
+18885,SQL
+18886,Bash/Shell/PowerShell;JavaScript;PHP;Rust;TypeScript;WebAssembly
+18887,C;C++;Python
+18888,C#;HTML/CSS;Java;Python
+18889,Java;SQL
+18890,Java;Kotlin;PHP
+18891,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+18892,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+18893,C#;Go;HTML/CSS;JavaScript;TypeScript
+18894,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+18895,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Other(s):
+18896,HTML/CSS;Java;JavaScript;PHP;SQL
+18897,C++;C#;HTML/CSS;Python;SQL
+18898,JavaScript;PHP;Python;SQL;TypeScript
+18899,Bash/Shell/PowerShell;C#
+18900,JavaScript;TypeScript
+18901,Bash/Shell/PowerShell;C#;Erlang;F#;HTML/CSS;JavaScript;Scala;SQL;TypeScript;Other(s):
+18902,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+18903,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+18904,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+18905,C#;HTML/CSS;Java;JavaScript;SQL
+18906,C#;Java;SQL
+18907,C++
+18908,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+18909,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;WebAssembly
+18910,JavaScript;Ruby;SQL
+18911,HTML/CSS;JavaScript;Objective-C;VBA
+18912,C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+18913,C++;C#;PHP;SQL
+18914,JavaScript;Python;SQL
+18915,Bash/Shell/PowerShell;C;C++;Objective-C;Python;Swift
+18916,C#;HTML/CSS;JavaScript;Python
+18917,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+18918,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+18919,HTML/CSS;JavaScript;Rust
+18920,Java;JavaScript;Kotlin;TypeScript
+18921,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+18922,Assembly;Bash/Shell/PowerShell;C++;Python;Rust
+18923,Java
+18924,C#;HTML/CSS;JavaScript;SQL;TypeScript
+18925,HTML/CSS;JavaScript;PHP;SQL
+18926,Assembly;C;C#;Ruby;Scala;Other(s):
+18927,Java;JavaScript;Python
+18928,Bash/Shell/PowerShell;JavaScript
+18929,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+18930,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+18931,SQL
+18932,Java;Kotlin
+18933,C#;HTML/CSS;JavaScript;SQL
+18934,C;C++;Python
+18935,Bash/Shell/PowerShell;Java;JavaScript;Python
+18936,Bash/Shell/PowerShell;Java;Kotlin;Python
+18937,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+18938,HTML/CSS;Java;JavaScript;SQL
+18939,Go;Java
+18940,Bash/Shell/PowerShell;C;Java;SQL
+18941,C#;HTML/CSS;JavaScript;Python;SQL;Swift;VBA
+18942,C++
+18943,C;C++;Objective-C;R;Swift
+18944,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+18945,C;C++;HTML/CSS;JavaScript;Ruby;SQL
+18946,Bash/Shell/PowerShell;C#;SQL
+18947,Java;PHP;Scala;TypeScript
+18948,Java;Python;Scala;SQL
+18949,HTML/CSS;Java;JavaScript;Python;SQL
+18950,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+18951,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python
+18952,HTML/CSS;JavaScript;TypeScript
+18953,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+18954,C;C++;Python;Rust
+18955,C++;C#
+18956,Java;SQL
+18957,Other(s):
+18958,Java
+18959,HTML/CSS;JavaScript;Python
+18960,Python;R;SQL;Other(s):
+18961,Java;Python;SQL
+18962,Bash/Shell/PowerShell;C#;Python;SQL
+18963,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+18964,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+18965,Bash/Shell/PowerShell;Python
+18966,C;C++;Java;Objective-C;PHP;Python;R;SQL;Swift
+18967,HTML/CSS;JavaScript;Python
+18968,C#
+18969,Bash/Shell/PowerShell;Go;R
+18970,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+18971,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+18972,SQL;Other(s):
+18973,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+18974,Java;JavaScript;TypeScript
+18975,C#;Java;Python;SQL
+18976,HTML/CSS;Java;JavaScript;SQL;TypeScript
+18977,HTML/CSS;JavaScript;PHP;SQL
+18978,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+18979,Bash/Shell/PowerShell;Java;Python
+18980,Java;SQL
+18981,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+18982,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+18983,HTML/CSS;JavaScript;TypeScript
+18984,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python
+18985,Assembly;C++;HTML/CSS;SQL
+18986,C;Python;R;SQL;Swift
+18987,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;R;SQL
+18988,C#;HTML/CSS
+18989,Bash/Shell/PowerShell;Go;Python
+18990,C#;HTML/CSS;JavaScript;TypeScript
+18991,C#;HTML/CSS;JavaScript;TypeScript
+18992,Go;Python
+18993,Bash/Shell/PowerShell;C;C++
+18994,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+18995,HTML/CSS;JavaScript;TypeScript
+18996,Assembly;C;C++;HTML/CSS;Python;Rust
+18997,HTML/CSS;Java;PHP
+18998,HTML/CSS;JavaScript
+18999,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;Swift
+19000,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+19001,C#;HTML/CSS;JavaScript;PHP;TypeScript
+19002,HTML/CSS;Python;R;VBA
+19003,Java;SQL
+19004,C#;SQL
+19005,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+19006,HTML/CSS;JavaScript;PHP;SQL
+19007,Bash/Shell/PowerShell;C#;R;SQL
+19008,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+19009,Assembly;C++;HTML/CSS;Java;Python
+19010,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+19011,Java;Python
+19012,C;HTML/CSS;JavaScript;Python
+19013,HTML/CSS;JavaScript;Python;SQL
+19014,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+19015,C#;Go;HTML/CSS;PHP;Python
+19016,C;C++;Python
+19017,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+19018,C;C#;Python;SQL;Other(s):
+19019,HTML/CSS;JavaScript;Python;SQL
+19020,R;VBA
+19021,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+19022,Python
+19023,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+19024,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA;Other(s):
+19025,C#;Python
+19026,C#
+19027,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+19028,C++;C#;Objective-C
+19029,C++;C#
+19030,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+19031,Python
+19032,Bash/Shell/PowerShell;Java;Scala;SQL
+19033,PHP
+19034,HTML/CSS;JavaScript;PHP
+19035,JavaScript
+19036,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;R
+19037,Java
+19038,C#;Go;HTML/CSS;JavaScript;Python;SQL
+19039,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+19040,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+19041,JavaScript;PHP;TypeScript
+19042,Dart;HTML/CSS;Java;JavaScript;SQL
+19043,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+19044,Python
+19045,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+19046,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Swift;Other(s):
+19047,Bash/Shell/PowerShell;C++;Clojure;Elixir;F#;Go;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+19048,Java
+19049,HTML/CSS;JavaScript;SQL;Other(s):
+19050,C
+19051,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19052,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+19053,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift
+19054,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+19055,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL;VBA
+19056,C#;HTML/CSS;JavaScript;TypeScript
+19057,HTML/CSS;Java;JavaScript;PHP;Python
+19058,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19059,C++;C#;Dart;HTML/CSS;Java;JavaScript;Python
+19060,C#;Java;JavaScript;Python;SQL;TypeScript;VBA
+19061,C;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript;WebAssembly
+19062,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+19063,Bash/Shell/PowerShell;Java;Python;SQL;Swift
+19064,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+19065,JavaScript;Swift
+19066,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19067,Clojure;Java
+19068,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19069,Bash/Shell/PowerShell;Java;JavaScript
+19070,Clojure;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+19071,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+19072,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+19073,C;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+19074,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19075,Bash/Shell/PowerShell;Python;SQL;Other(s):
+19076,Assembly;C;HTML/CSS;Java;Objective-C;Swift
+19077,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+19078,C;C++;C#;SQL
+19079,Python
+19080,Java;JavaScript;Kotlin;SQL
+19081,C#;JavaScript;SQL
+19082,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript;VBA
+19083,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+19084,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;Python;Ruby
+19085,JavaScript;PHP
+19086,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+19087,C#;HTML/CSS;JavaScript;TypeScript
+19088,C++;C#;Other(s):
+19089,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+19090,HTML/CSS;JavaScript;PHP;SQL
+19091,JavaScript;TypeScript
+19092,HTML/CSS;Java;JavaScript;SQL;TypeScript
+19093,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R;Swift;Other(s):
+19094,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+19095,Bash/Shell/PowerShell;C++;C#;SQL;Other(s):
+19096,Assembly;C;Java;JavaScript
+19097,C#;HTML/CSS;JavaScript;SQL
+19098,C#;HTML/CSS;JavaScript;SQL
+19100,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19101,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;SQL
+19102,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+19103,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+19104,Bash/Shell/PowerShell;Java;SQL;Other(s):
+19105,Go;HTML/CSS;JavaScript;TypeScript
+19106,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+19107,C;C++;HTML/CSS
+19109,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+19110,HTML/CSS;Java;JavaScript;PHP;SQL
+19111,HTML/CSS;JavaScript;PHP;SQL
+19112,C#;HTML/CSS;JavaScript;SQL
+19113,C#;HTML/CSS;Java;JavaScript;SQL
+19114,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+19115,C;Java;SQL
+19116,C++;JavaScript
+19117,C++
+19118,Other(s):
+19119,C#;HTML/CSS;JavaScript;SQL
+19120,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;TypeScript
+19121,Java;Python
+19122,Python
+19123,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+19124,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+19125,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+19126,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;PHP;Python;SQL
+19127,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+19128,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+19129,Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+19130,JavaScript;Rust
+19131,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+19132,C#;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+19133,C#
+19134,HTML/CSS;JavaScript;PHP
+19135,C++
+19136,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+19137,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+19138,C;C++;C#;F#;JavaScript;SQL;TypeScript
+19139,Bash/Shell/PowerShell;Python;SQL
+19140,C#;Java;JavaScript
+19141,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+19142,C#;Python
+19143,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+19144,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+19145,Bash/Shell/PowerShell;SQL
+19146,Bash/Shell/PowerShell;C++;Python;SQL
+19147,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+19148,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+19149,HTML/CSS;JavaScript;Python;R;Ruby;SQL
+19150,HTML/CSS;JavaScript;Ruby
+19151,Bash/Shell/PowerShell;Go;Java;SQL
+19152,Java;JavaScript
+19153,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+19154,Bash/Shell/PowerShell;Ruby;Other(s):
+19155,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+19156,Assembly;C;Java;Python;Other(s):
+19157,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python
+19158,HTML/CSS;Java;SQL;Other(s):
+19159,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+19160,HTML/CSS;Java;JavaScript;Python;SQL
+19161,JavaScript
+19162,Bash/Shell/PowerShell;Objective-C;Swift
+19163,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+19164,HTML/CSS;Java;JavaScript;Python;SQL
+19165,C++;R
+19166,HTML/CSS;PHP;SQL
+19167,HTML/CSS;JavaScript;Python
+19168,C++;C#;Go;HTML/CSS;Java;JavaScript;Python;VBA
+19169,C;C++;C#;Java;Kotlin
+19170,C;Java;Kotlin;Objective-C;Swift
+19171,HTML/CSS;Java;Python;Swift
+19172,HTML/CSS;JavaScript;PHP
+19173,C;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+19174,HTML/CSS;JavaScript;TypeScript
+19175,HTML/CSS;JavaScript
+19176,C#;HTML/CSS;JavaScript;SQL
+19177,Java
+19178,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19179,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+19180,C;C++;PHP;SQL;Other(s):
+19181,HTML/CSS
+19182,HTML/CSS;JavaScript;Ruby;Other(s):
+19183,C#;Java;JavaScript;Python;Scala;SQL
+19184,HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+19185,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+19186,C;C++;C#;HTML/CSS;SQL;Other(s):
+19187,HTML/CSS;JavaScript;Python;Swift
+19188,C#
+19189,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+19190,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+19191,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+19192,C;HTML/CSS;Java;JavaScript;PHP;SQL
+19193,C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+19194,Assembly;C;C++;Python;R
+19195,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19196,C#;HTML/CSS;JavaScript;SQL
+19197,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Rust;SQL
+19198,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+19199,HTML/CSS;JavaScript;Ruby;SQL
+19200,Objective-C;Swift
+19201,C#;HTML/CSS;JavaScript;SQL
+19202,C++;HTML/CSS;Java;JavaScript;Kotlin;Ruby
+19203,HTML/CSS;JavaScript;PHP;Python;Other(s):
+19204,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19205,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+19206,C++;Go;HTML/CSS;Java;PHP;Python
+19207,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+19208,C;C++;C#;HTML/CSS;Java
+19209,Go;HTML/CSS;JavaScript;Python
+19210,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+19211,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+19212,C#;Other(s):
+19213,C++;HTML/CSS;JavaScript;TypeScript
+19214,JavaScript;Python;SQL
+19215,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+19216,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+19217,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+19218,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19219,Python;R;Rust
+19220,HTML/CSS;JavaScript;TypeScript
+19221,Assembly;Bash/Shell/PowerShell;C;C++;Python
+19222,HTML/CSS;Java;JavaScript;SQL;TypeScript
+19223,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+19224,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+19225,Java;SQL;Swift
+19226,Python
+19227,Assembly;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19228,C#;HTML/CSS;JavaScript;PHP
+19229,HTML/CSS;JavaScript;TypeScript
+19230,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+19231,JavaScript;PHP;SQL
+19232,Bash/Shell/PowerShell;C++
+19233,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19234,C#;Objective-C;Swift
+19235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+19236,HTML/CSS;JavaScript;Swift
+19237,SQL;Other(s):
+19238,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+19239,C#;SQL
+19240,C#
+19241,JavaScript;Python
+19242,Bash/Shell/PowerShell;C;Python;Other(s):
+19243,VBA
+19244,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19245,Bash/Shell/PowerShell;Python;SQL
+19246,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+19247,C#;HTML/CSS
+19248,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+19249,Java;JavaScript;Swift;VBA
+19250,C;C++;Java;Kotlin;SQL
+19251,C;C++;Python
+19252,C#;JavaScript;VBA
+19253,C#;HTML/CSS;Java;JavaScript;Python
+19254,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19255,Bash/Shell/PowerShell;C;Python
+19256,Assembly;Java
+19257,Go;JavaScript;PHP
+19258,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+19259,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+19260,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL
+19261,Bash/Shell/PowerShell;Dart;Go;Python;SQL;Swift
+19262,C#;HTML/CSS;SQL;VBA
+19263,Assembly;C#;HTML/CSS;Java;Kotlin;TypeScript
+19264,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Ruby;SQL;TypeScript
+19265,C;C++;Go;Python;Rust;SQL
+19266,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+19267,Java;SQL
+19268,C++
+19269,C#;HTML/CSS;JavaScript;SQL
+19270,VBA;Other(s):
+19271,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+19272,Scala
+19273,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;SQL
+19274,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+19275,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Swift
+19276,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript
+19277,Bash/Shell/PowerShell;C;C++;C#;Objective-C;Swift
+19278,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+19279,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+19281,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+19282,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL;Other(s):
+19283,HTML/CSS;JavaScript
+19285,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+19286,Java;Kotlin
+19287,Go;Java;SQL
+19288,JavaScript;TypeScript
+19289,HTML/CSS;JavaScript;PHP;Ruby;SQL
+19290,C;C++;HTML/CSS;JavaScript;PHP;SQL
+19291,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL
+19292,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19293,Dart;Java;Kotlin
+19294,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala
+19295,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+19296,SQL;Other(s):
+19297,Go;Java;JavaScript;Kotlin;Python;Ruby
+19298,Bash/Shell/PowerShell;C;Java;Python;Scala;SQL
+19299,Bash/Shell/PowerShell;Objective-C;Python;Ruby;Swift
+19300,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;WebAssembly
+19301,Bash/Shell/PowerShell;Go;Python
+19302,SQL;VBA
+19303,HTML/CSS;JavaScript;SQL
+19304,Java;Python;Ruby;Swift
+19305,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+19306,Python;VBA
+19307,C;C++;Go;Java;Python;R;SQL
+19308,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+19309,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;TypeScript
+19310,HTML/CSS;JavaScript;TypeScript
+19311,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+19312,HTML/CSS;JavaScript
+19313,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+19314,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;SQL
+19315,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;SQL
+19316,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;PHP;SQL
+19317,HTML/CSS;Java;JavaScript;SQL
+19318,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+19319,HTML/CSS;JavaScript
+19320,Bash/Shell/PowerShell;C;C++;Python;SQL
+19321,Assembly;Java;JavaScript
+19322,C#;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Ruby
+19323,Objective-C;SQL;Swift
+19324,C;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+19325,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19326,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+19327,C;HTML/CSS;Java;Objective-C;PHP;SQL;Swift
+19328,HTML/CSS;JavaScript
+19329,Java;Kotlin;Objective-C
+19330,HTML/CSS;JavaScript;PHP;SQL
+19331,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+19332,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+19333,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+19334,HTML/CSS;JavaScript;PHP
+19335,Bash/Shell/PowerShell;Go;HTML/CSS;Objective-C;Python;Ruby;Swift
+19336,C++;HTML/CSS;JavaScript;Ruby
+19337,Bash/Shell/PowerShell;Python
+19338,Python
+19339,C#;JavaScript;SQL;VBA
+19340,Assembly;C;Elixir;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+19341,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19342,HTML/CSS;JavaScript;PHP
+19343,C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+19344,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+19345,C#;HTML/CSS;JavaScript;TypeScript
+19346,C#;Java;JavaScript;PHP;TypeScript
+19347,C#;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19348,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;Ruby
+19349,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+19350,JavaScript;Objective-C;Python;Swift;Other(s):
+19351,Python;R;Scala;SQL
+19352,Java;JavaScript;Python;SQL;Swift;TypeScript
+19353,C;C++;Java;JavaScript;PHP;Python;SQL
+19354,SQL
+19355,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+19356,Java;Kotlin;SQL
+19357,Java;JavaScript;Python;SQL
+19358,C;C#;HTML/CSS;JavaScript;SQL
+19359,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+19360,Bash/Shell/PowerShell;HTML/CSS
+19361,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+19362,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+19363,C;Other(s):
+19364,C#;HTML/CSS;JavaScript;SQL
+19365,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19366,C;C++;C#;Python;SQL
+19367,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;Ruby;TypeScript
+19368,C
+19369,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19370,Go;PHP;SQL
+19371,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;WebAssembly
+19372,Bash/Shell/PowerShell;Elixir;JavaScript;Ruby;SQL;TypeScript
+19373,HTML/CSS;JavaScript;PHP
+19374,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+19375,C#;Dart;JavaScript;Python
+19376,C;C++;C#;Java;JavaScript;TypeScript
+19377,HTML/CSS;JavaScript
+19378,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+19379,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+19380,Bash/Shell/PowerShell;Python;SQL
+19381,Python
+19382,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19383,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+19384,Java;Scala
+19385,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+19386,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+19387,Bash/Shell/PowerShell;C;Python
+19388,Other(s):
+19389,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+19390,HTML/CSS;Java;JavaScript;SQL;TypeScript
+19391,HTML/CSS;Java;JavaScript;SQL
+19392,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;TypeScript
+19393,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+19394,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19395,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19396,Bash/Shell/PowerShell;Go;Python;SQL
+19397,C;Java;JavaScript;SQL;VBA
+19398,HTML/CSS;Java;JavaScript;Python
+19399,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+19400,Bash/Shell/PowerShell;JavaScript;Python;SQL
+19401,Bash/Shell/PowerShell;C#;Python;SQL
+19402,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19403,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+19404,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+19405,HTML/CSS;Java;JavaScript;TypeScript
+19406,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+19407,C#;Elixir;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+19408,C;HTML/CSS;JavaScript;Objective-C;Python;Swift
+19409,Bash/Shell/PowerShell;JavaScript;PHP;Python;Ruby;SQL
+19410,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+19411,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19412,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+19413,Assembly;Kotlin;Python;Ruby;Rust;Swift;TypeScript;WebAssembly
+19414,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+19415,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19416,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+19417,Bash/Shell/PowerShell;C#;JavaScript;SQL
+19418,C#;HTML/CSS;Java;JavaScript;PHP;Python
+19419,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19420,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+19421,HTML/CSS;JavaScript;Other(s):
+19422,C#;HTML/CSS;Java;JavaScript;SQL
+19423,Java;JavaScript;Objective-C;PHP;SQL;Swift
+19424,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19425,HTML/CSS;Java;JavaScript;SQL
+19426,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19427,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+19428,Other(s):
+19429,C;C++;HTML/CSS;Java;JavaScript;SQL
+19430,C#;HTML/CSS;SQL;TypeScript
+19431,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+19432,Assembly;Bash/Shell/PowerShell;C;Go;Java;JavaScript;PHP;Python;SQL;TypeScript
+19433,Bash/Shell/PowerShell;Scala
+19434,HTML/CSS;JavaScript;PHP;SQL
+19435,Java;Kotlin
+19436,PHP
+19437,C;C++;C#
+19438,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+19439,Bash/Shell/PowerShell;C#;HTML/CSS;Python;Rust;SQL;Other(s):
+19440,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+19441,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19442,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+19443,C#;F#;Java;JavaScript
+19444,Bash/Shell/PowerShell;Java;SQL
+19446,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+19447,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+19448,Java;JavaScript;Python
+19449,Bash/Shell/PowerShell;C#;SQL;TypeScript
+19450,C++;JavaScript;Python;Swift
+19451,Clojure;HTML/CSS;Java;JavaScript;SQL
+19452,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+19453,Bash/Shell/PowerShell;C;HTML/CSS;Python;Other(s):
+19454,C;C++;HTML/CSS;Java;JavaScript;Python
+19455,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+19456,C;C++;Java;JavaScript
+19457,HTML/CSS;JavaScript;PHP
+19458,Objective-C
+19459,Assembly;Bash/Shell/PowerShell;Go;Python;Other(s):
+19460,HTML/CSS;JavaScript;PHP;SQL
+19461,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Swift
+19462,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL;Other(s):
+19463,C#;HTML/CSS;JavaScript;SQL;Other(s):
+19464,C;C++;C#;HTML/CSS;Java;JavaScript;Rust;SQL
+19465,HTML/CSS;Java;JavaScript;Python;SQL
+19466,HTML/CSS;JavaScript;Python;SQL
+19467,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Swift
+19468,Bash/Shell/PowerShell;Java;Python
+19469,C#;HTML/CSS;JavaScript;SQL
+19470,JavaScript;TypeScript
+19471,HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+19473,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;SQL
+19474,HTML/CSS;PHP;SQL
+19475,Python
+19476,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+19477,C#;F#;SQL
+19478,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19479,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+19480,C#;HTML/CSS;JavaScript;Python
+19481,C;C++;Java;Kotlin;PHP;SQL
+19482,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19483,C;Java
+19484,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+19485,HTML/CSS;JavaScript;R;SQL;Other(s):
+19486,HTML/CSS;JavaScript;PHP;Python;SQL
+19487,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+19488,JavaScript;Python
+19489,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+19490,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+19491,Bash/Shell/PowerShell;Go;Java;JavaScript
+19492,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+19493,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+19494,Bash/Shell/PowerShell;C#;JavaScript;SQL
+19495,C;C++;HTML/CSS;JavaScript;Python;SQL
+19496,C;C++;Objective-C;PHP;SQL;Swift
+19497,Java;SQL
+19498,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+19499,C#;HTML/CSS;JavaScript;PHP;TypeScript
+19500,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python
+19501,JavaScript;Python;TypeScript
+19502,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+19503,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19504,Bash/Shell/PowerShell;Java;SQL
+19505,C;C#;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+19506,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;VBA
+19507,HTML/CSS;JavaScript;Python;VBA
+19508,Bash/Shell/PowerShell;C++;Python;SQL
+19509,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+19510,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19511,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19512,Elixir;Erlang;JavaScript;Python;Ruby;SQL;TypeScript
+19513,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+19514,HTML/CSS;JavaScript;Ruby
+19515,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+19516,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+19517,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly;Other(s):
+19518,HTML/CSS;JavaScript;TypeScript
+19519,C#;HTML/CSS;JavaScript;SQL
+19520,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+19521,C#;Java
+19522,Java
+19523,C++;HTML/CSS;Java;JavaScript;Other(s):
+19524,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19525,C++;HTML/CSS;JavaScript;Python
+19526,C#;HTML/CSS;JavaScript;Python;TypeScript
+19527,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+19528,Bash/Shell/PowerShell;HTML/CSS;Python
+19529,C#
+19530,HTML/CSS;JavaScript;PHP;Python;SQL
+19531,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+19532,HTML/CSS;JavaScript;TypeScript
+19533,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+19534,Python;Swift
+19535,HTML/CSS;JavaScript;PHP
+19536,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+19537,C;C++
+19538,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin;SQL
+19539,JavaScript
+19540,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+19541,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL
+19542,HTML/CSS;Java;JavaScript;Other(s):
+19543,Java;SQL;Other(s):
+19544,HTML/CSS
+19545,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+19546,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL
+19547,Bash/Shell/PowerShell;C;Go;Java;Kotlin;Python
+19548,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+19549,C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+19550,HTML/CSS;JavaScript;TypeScript
+19551,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+19552,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+19553,HTML/CSS;JavaScript;PHP
+19554,C;C++;HTML/CSS;JavaScript;Ruby;SQL
+19555,C;C++;C#;HTML/CSS;JavaScript;SQL
+19556,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+19557,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Scala;Swift
+19558,C#;HTML/CSS;JavaScript;SQL
+19559,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+19560,JavaScript;Python
+19561,HTML/CSS;JavaScript
+19562,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+19563,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+19564,Bash/Shell/PowerShell;Java;Python
+19565,C++;JavaScript;Python;SQL
+19566,C#;HTML/CSS;Python
+19567,Java;SQL
+19568,C++;C#
+19569,Elixir;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+19570,C++;HTML/CSS;Java;JavaScript
+19571,HTML/CSS;Java;JavaScript
+19572,C#
+19573,Bash/Shell/PowerShell;C++;Python
+19574,Bash/Shell/PowerShell;C;C++;PHP;Python
+19575,HTML/CSS;Java;JavaScript;SQL;TypeScript
+19576,HTML/CSS;Java;Python;TypeScript
+19577,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+19578,C;C#;Java;Objective-C;Swift
+19579,Bash/Shell/PowerShell;C#;Python
+19580,Kotlin;Swift
+19581,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;TypeScript
+19582,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+19583,Rust;SQL;Other(s):
+19584,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+19585,HTML/CSS;JavaScript;PHP;Other(s):
+19586,Java;JavaScript;Python;Swift;TypeScript
+19587,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+19588,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19589,Bash/Shell/PowerShell;C#;Elixir;Java;JavaScript;Ruby;SQL
+19590,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+19591,Bash/Shell/PowerShell;JavaScript;PHP;SQL;VBA
+19592,C++;C#;HTML/CSS;JavaScript
+19593,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+19594,Scala
+19595,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift;TypeScript
+19596,Elixir;Go;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+19597,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+19598,Java;Python;Swift
+19599,Go;Kotlin;PHP;Python;Swift
+19600,Bash/Shell/PowerShell;Go;Python;SQL
+19601,HTML/CSS;JavaScript;Python;SQL
+19603,HTML/CSS;JavaScript;SQL
+19604,C#;HTML/CSS;JavaScript;SQL
+19605,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;TypeScript
+19606,JavaScript;TypeScript
+19607,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+19608,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+19609,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+19610,HTML/CSS;JavaScript
+19611,C#;HTML/CSS;JavaScript;TypeScript
+19612,C++;HTML/CSS;Java;Python
+19613,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+19614,HTML/CSS;JavaScript;PHP
+19615,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+19616,HTML/CSS;JavaScript;Python;R
+19617,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL;TypeScript;Other(s):
+19618,C#;HTML/CSS;TypeScript
+19619,C#;F#;Go;JavaScript;PHP;Rust
+19620,C;Python
+19621,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+19622,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+19623,C#;HTML/CSS;JavaScript;PHP;VBA
+19624,Go;Python
+19625,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+19626,HTML/CSS;JavaScript;SQL;Other(s):
+19627,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19628,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Python;SQL;Other(s):
+19629,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19630,Java;Python
+19631,VBA
+19632,C;C++;Python;TypeScript
+19633,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;Python;R;Ruby;Scala
+19634,C#;R;SQL
+19636,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;TypeScript
+19637,C;Rust;SQL;Other(s):
+19638,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+19639,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+19640,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+19641,SQL
+19642,HTML/CSS;JavaScript
+19643,HTML/CSS;Java;JavaScript;PHP;Swift
+19644,Swift
+19645,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19646,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19647,Go;Java;TypeScript
+19648,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+19649,C#;Python;SQL
+19650,C;C++;JavaScript;SQL
+19651,Bash/Shell/PowerShell;C;C++;C#;Python
+19652,Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;SQL;Swift
+19653,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+19654,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Ruby;SQL;Swift;TypeScript
+19655,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+19656,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19657,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+19658,Python
+19659,C++;C#;HTML/CSS
+19660,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+19661,Java;Kotlin
+19662,C;C++;HTML/CSS;Java;JavaScript;Python
+19663,JavaScript
+19664,HTML/CSS;JavaScript;PHP
+19665,C++;Java;Python;R;SQL
+19666,C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+19667,HTML/CSS;JavaScript;PHP
+19668,HTML/CSS;JavaScript
+19669,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19670,C;C++;Java;Python;Scala;SQL
+19671,Assembly;C;Java;Python;R;SQL;Swift
+19672,C++
+19673,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19674,Bash/Shell/PowerShell;SQL
+19675,HTML/CSS;JavaScript;R
+19676,HTML/CSS;JavaScript;PHP;SQL
+19677,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+19678,C;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+19679,C#;SQL
+19680,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+19681,Python;SQL
+19682,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+19683,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+19684,Python;SQL
+19685,C#;HTML/CSS;Java;JavaScript;PHP;Python
+19686,C++;PHP;Other(s):
+19687,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+19688,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+19689,C#;HTML/CSS;Java;JavaScript;TypeScript
+19690,Bash/Shell/PowerShell;Java
+19691,C++;C#;HTML/CSS;Java;PHP;Python;SQL
+19692,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+19693,C;C++;C#;HTML/CSS;Java
+19694,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19695,Java;JavaScript;Python;TypeScript
+19696,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19697,HTML/CSS;Java;JavaScript;PHP
+19698,C#;HTML/CSS;JavaScript;PHP;SQL
+19699,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;TypeScript
+19700,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+19701,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+19702,C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+19703,Other(s):
+19704,C;Go;Python;Rust
+19705,JavaScript;Python
+19706,C#;HTML/CSS;JavaScript;TypeScript
+19707,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+19708,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+19709,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+19710,Bash/Shell/PowerShell;C;C++;C#;Python
+19711,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+19712,Java;JavaScript
+19713,Java;Kotlin;Swift
+19714,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+19715,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python;R;Rust;Scala;SQL;TypeScript
+19716,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+19717,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+19718,Assembly;Clojure;Java
+19719,Java;JavaScript;PHP;SQL;TypeScript
+19720,Assembly;C;C#;HTML/CSS;JavaScript;PHP;SQL
+19721,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+19722,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+19723,Bash/Shell/PowerShell;Java;Scala
+19724,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+19725,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19726,HTML/CSS;JavaScript
+19727,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+19728,C;C++;C#;Java;JavaScript;PHP;SQL
+19729,Python;R;SQL;Other(s):
+19730,C#;JavaScript;Python;Rust;SQL
+19731,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+19732,HTML/CSS;PHP;SQL
+19733,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+19734,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+19735,HTML/CSS;JavaScript
+19736,HTML/CSS;JavaScript
+19737,C;HTML/CSS;Java;JavaScript;TypeScript
+19738,HTML/CSS;Python;Other(s):
+19739,Bash/Shell/PowerShell;Clojure;Go;Python;SQL
+19740,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+19741,C#;HTML/CSS;JavaScript;SQL
+19742,HTML/CSS;JavaScript;PHP
+19743,Go;JavaScript;Python;Ruby;SQL
+19744,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+19745,HTML/CSS;Java;JavaScript;PHP;SQL
+19746,HTML/CSS;JavaScript;TypeScript
+19747,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python
+19748,HTML/CSS;JavaScript;PHP;SQL
+19749,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript
+19750,HTML/CSS;Java
+19751,Java;JavaScript
+19752,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+19753,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+19754,Java;JavaScript;Python;Ruby;SQL
+19755,HTML/CSS;JavaScript;PHP;Python
+19756,HTML/CSS;Java;JavaScript;SQL;TypeScript
+19757,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+19759,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+19760,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+19761,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19762,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+19763,C;C++;C#;HTML/CSS;Java;JavaScript
+19764,Java;JavaScript;Kotlin;Ruby;SQL
+19765,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+19766,HTML/CSS;Java;JavaScript;SQL
+19767,Elixir;Erlang;Java;JavaScript;Python;Ruby;TypeScript
+19768,Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+19769,Bash/Shell/PowerShell;VBA
+19770,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+19771,VBA
+19772,HTML/CSS;JavaScript
+19773,C++;HTML/CSS;JavaScript;Python
+19775,Bash/Shell/PowerShell;C;Other(s):
+19776,Bash/Shell/PowerShell;C++;C#;Python;SQL
+19777,HTML/CSS;JavaScript;SQL;Other(s):
+19778,Bash/Shell/PowerShell;Python;SQL
+19779,C;HTML/CSS;Objective-C;Swift
+19780,C#;Go;JavaScript;Python;TypeScript
+19781,Bash/Shell/PowerShell;C;C++;Other(s):
+19782,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+19785,JavaScript;Ruby
+19786,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+19787,Bash/Shell/PowerShell;Python
+19788,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Scala;SQL
+19789,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19790,HTML/CSS;JavaScript;PHP
+19791,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+19792,Bash/Shell/PowerShell;JavaScript;PHP;SQL;Other(s):
+19793,C++;Python
+19794,C;C++;C#;JavaScript
+19795,C#;HTML/CSS;JavaScript;TypeScript
+19796,C;C++;Go;Java;SQL
+19798,C#;Java;JavaScript;TypeScript
+19799,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+19800,C++;Java;JavaScript;Python
+19801,Java;Ruby
+19802,C#;HTML/CSS;JavaScript;SQL
+19803,C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+19804,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+19805,C#;F#;HTML/CSS;JavaScript;Python;SQL
+19806,Go;HTML/CSS;JavaScript;PHP;SQL
+19807,Assembly;C;C++;C#;Clojure;HTML/CSS;Java;PHP;Python;SQL
+19808,R
+19809,Python;SQL
+19810,Bash/Shell/PowerShell
+19811,C#;HTML/CSS;JavaScript;TypeScript
+19812,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby
+19813,Bash/Shell/PowerShell;C++;C#;JavaScript;PHP;Python;SQL
+19814,HTML/CSS;Java;JavaScript;SQL
+19815,Bash/Shell/PowerShell;C;Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+19816,C++;JavaScript;Objective-C;Python;Swift
+19817,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19818,Java;JavaScript;Python;Ruby;Scala;SQL
+19819,C#;Python
+19820,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL;VBA
+19821,Java
+19822,Java
+19823,HTML/CSS;JavaScript
+19824,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+19825,C;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+19826,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;TypeScript
+19827,HTML/CSS;JavaScript;SQL;TypeScript
+19828,Bash/Shell/PowerShell;Python;SQL
+19829,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript;WebAssembly
+19830,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+19831,Bash/Shell/PowerShell;Python;SQL
+19832,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+19833,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+19834,JavaScript;PHP
+19835,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+19836,HTML/CSS;Java;JavaScript;TypeScript
+19837,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+19838,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+19839,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+19840,VBA
+19841,C#;HTML/CSS;JavaScript;SQL
+19842,Dart;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Swift
+19843,HTML/CSS;JavaScript;Ruby;SQL
+19844,C#;SQL
+19845,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL;VBA
+19846,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+19847,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19848,C#;HTML/CSS;JavaScript;PHP;Rust;SQL;VBA
+19849,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;SQL
+19850,C#;Java
+19851,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+19852,Go;HTML/CSS;JavaScript;Ruby
+19853,Dart;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+19854,Swift
+19855,Bash/Shell/PowerShell;Python;SQL
+19856,HTML/CSS;Java;JavaScript;Rust;TypeScript
+19857,C;HTML/CSS;Java;JavaScript;Python;SQL
+19858,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+19859,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+19860,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+19861,JavaScript
+19862,Python;R
+19863,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+19864,Assembly;Bash/Shell/PowerShell;C;C#;Go;Python;Rust
+19865,C;Python;Other(s):
+19866,HTML/CSS;Java;JavaScript;SQL
+19867,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+19868,C#
+19869,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19870,C#;SQL
+19871,Elixir;Java;Scala;Other(s):
+19872,Python
+19873,C++;C#;Python
+19874,HTML/CSS;Java;JavaScript
+19875,HTML/CSS;JavaScript;TypeScript
+19876,HTML/CSS;Java;JavaScript;PHP;SQL
+19877,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+19878,C#;SQL
+19879,Java;JavaScript;Python;SQL;TypeScript
+19880,C#;F#;JavaScript;SQL
+19881,Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;F#;Go;HTML/CSS;JavaScript;Kotlin;Python;R;Rust;Scala;TypeScript;Other(s):
+19882,C;C++;Java;SQL
+19883,HTML/CSS;JavaScript;PHP;SQL
+19884,Bash/Shell/PowerShell;C#;JavaScript
+19885,C;HTML/CSS;PHP;SQL
+19886,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+19887,C#;HTML/CSS;JavaScript;TypeScript
+19888,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;R;Scala;SQL
+19889,HTML/CSS;JavaScript;PHP
+19890,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+19891,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;SQL
+19892,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+19893,C;C++;Java;Python
+19894,C;C++;Java;SQL;Other(s):
+19895,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+19896,C;C++
+19897,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Ruby;SQL
+19898,HTML/CSS;JavaScript
+19899,C;C#;HTML/CSS;Java;JavaScript;SQL
+19900,Dart;HTML/CSS;TypeScript
+19901,Bash/Shell/PowerShell;C++;C#;Python
+19902,HTML/CSS;JavaScript;SQL
+19903,Go;Python
+19904,C#;JavaScript
+19905,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+19906,C#;HTML/CSS;JavaScript;SQL
+19907,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;VBA
+19908,C#;HTML/CSS;JavaScript;SQL;TypeScript
+19909,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+19910,Assembly;Bash/Shell/PowerShell;C;C++;Python
+19911,HTML/CSS;JavaScript;PHP
+19912,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+19913,C#;HTML/CSS;JavaScript
+19914,HTML/CSS;JavaScript;Ruby;Other(s):
+19915,C;C++;C#;JavaScript;PHP;Python
+19916,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+19917,HTML/CSS;Java;PHP;SQL
+19918,Other(s):
+19919,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+19920,C#;Dart;F#;Go;Java;JavaScript;Python;TypeScript;VBA
+19921,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+19922,C#;JavaScript
+19923,C++;HTML/CSS;Java;PHP
+19924,JavaScript;Python;Scala
+19925,HTML/CSS;JavaScript
+19926,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+19927,C#;F#;HTML/CSS;JavaScript;TypeScript
+19928,HTML/CSS;JavaScript;PHP;Other(s):
+19929,C++;HTML/CSS;JavaScript;PHP;SQL
+19930,C++
+19931,C;Python;Rust;SQL
+19932,C#;HTML/CSS;JavaScript;PHP;SQL
+19933,Bash/Shell/PowerShell;Ruby;Other(s):
+19934,Bash/Shell/PowerShell;C#;F#;JavaScript;SQL;TypeScript
+19935,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+19936,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19937,C;HTML/CSS;Python
+19938,C;HTML/CSS
+19939,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+19940,Python
+19941,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+19942,C++;Java;Python
+19943,HTML/CSS;JavaScript;PHP;SQL
+19944,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+19945,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Swift
+19946,JavaScript
+19947,C;JavaScript;Python
+19948,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+19949,C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+19950,HTML/CSS;JavaScript;PHP
+19951,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;WebAssembly
+19952,Java;SQL;TypeScript
+19953,Bash/Shell/PowerShell;Java;JavaScript
+19954,C#;HTML/CSS;JavaScript;PHP;SQL
+19955,HTML/CSS;JavaScript;PHP
+19956,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+19957,Bash/Shell/PowerShell;C#;Go;Java;Python;Scala;SQL
+19958,PHP;SQL
+19959,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Kotlin;PHP;Python;SQL
+19960,HTML/CSS;JavaScript;Python;SQL
+19961,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+19962,HTML/CSS;Java;JavaScript;SQL;Swift
+19963,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+19964,Dart;HTML/CSS;Java;JavaScript;TypeScript
+19965,C#;HTML/CSS;JavaScript;Python;SQL
+19966,Java
+19967,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+19968,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+19969,HTML/CSS;JavaScript;PHP;SQL
+19970,HTML/CSS;JavaScript;PHP;Python;SQL
+19971,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+19972,C#;HTML/CSS;JavaScript
+19973,Bash/Shell/PowerShell;Java;Python
+19974,C;C#;SQL;VBA
+19975,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Rust
+19976,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+19977,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+19978,C#
+19979,C#;HTML/CSS;JavaScript;Python;SQL
+19980,HTML/CSS;JavaScript;Python
+19981,C++;C#;HTML/CSS;Java;Python;SQL
+19982,C#;HTML/CSS;Java;Swift;TypeScript;Other(s):
+19983,Bash/Shell/PowerShell;Java;JavaScript;SQL
+19984,Bash/Shell/PowerShell;C;C++;C#;Go;Java
+19985,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+19986,Dart;HTML/CSS;JavaScript;PHP;Ruby;SQL
+19987,C;C++
+19988,Java;JavaScript;SQL;Swift
+19989,JavaScript;Objective-C;Swift
+19990,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+19991,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL;Swift;TypeScript
+19992,C;HTML/CSS;Java;JavaScript;Python;SQL
+19993,C;Python
+19994,C#;HTML/CSS;JavaScript;SQL
+19995,C#;Java;JavaScript;SQL
+19996,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;SQL;Other(s):
+19997,Bash/Shell/PowerShell;R
+19998,C;C++;Java;SQL
+19999,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+20001,C#;Go;Python
+20002,Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript;Python;TypeScript
+20003,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+20004,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+20005,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+20006,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+20007,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+20008,C#;HTML/CSS;JavaScript;SQL
+20009,C;C++;Java;VBA
+20010,HTML/CSS;Java;JavaScript
+20011,C++;HTML/CSS;Java;Kotlin;Scala;SQL
+20012,Bash/Shell/PowerShell;Java;JavaScript;SQL
+20013,HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+20014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+20015,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20016,HTML/CSS;JavaScript;PHP;SQL
+20017,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+20018,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+20019,C;C#;HTML/CSS;Python
+20020,C;Python
+20021,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+20022,HTML/CSS;JavaScript;Python;Rust;SQL;WebAssembly;Other(s):
+20023,HTML/CSS;Java;JavaScript;Kotlin;SQL
+20024,HTML/CSS;JavaScript;PHP;Python;SQL
+20025,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+20026,Bash/Shell/PowerShell;Java;Other(s):
+20027,Bash/Shell/PowerShell;C#;F#;JavaScript;Python;Scala
+20029,Java;Kotlin
+20030,C++;HTML/CSS;Scala;TypeScript
+20031,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+20032,HTML/CSS;Python
+20033,HTML/CSS;JavaScript
+20034,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+20035,Python;Scala
+20036,C#;Java;JavaScript;PHP;SQL
+20037,HTML/CSS;JavaScript;Python;Other(s):
+20038,Erlang;HTML/CSS;Python;Ruby;SQL;TypeScript
+20039,C#;HTML/CSS;SQL;VBA
+20040,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript;VBA
+20041,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+20042,Other(s):
+20043,JavaScript;Python;TypeScript
+20044,Java;JavaScript
+20045,Dart;Java;Kotlin;R;Scala
+20046,Bash/Shell/PowerShell;C;HTML/CSS;Python;Scala;SQL;Other(s):
+20047,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+20048,Bash/Shell/PowerShell;C++;C#;SQL
+20049,HTML/CSS;JavaScript;Python;SQL
+20050,Bash/Shell/PowerShell;C;Erlang;PHP;Python;SQL
+20052,HTML/CSS;JavaScript;PHP;TypeScript
+20053,HTML/CSS;JavaScript;Python;SQL
+20054,HTML/CSS;Java;JavaScript;SQL
+20055,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+20056,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20057,C++;Java;SQL
+20058,C#;JavaScript;SQL
+20059,C++;C#;HTML/CSS;Java;VBA
+20060,HTML/CSS;Java;PHP;SQL;VBA
+20061,C;C++;C#;Java;PHP;Python;SQL
+20062,Bash/Shell/PowerShell;Python;R;Other(s):
+20063,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+20064,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+20065,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+20066,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+20067,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20068,C++;C#;HTML/CSS;VBA
+20069,C;C++;Java
+20070,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;Rust
+20071,C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+20072,Bash/Shell/PowerShell;Go
+20073,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+20074,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+20075,C++;C#;Java;JavaScript;SQL
+20076,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+20077,JavaScript;Python
+20078,HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+20079,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+20080,C#;SQL
+20081,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20082,C;C++;HTML/CSS;JavaScript;PHP
+20083,C#;Kotlin;Python
+20084,C;C++;Java;Python;SQL
+20085,Python;Ruby;SQL
+20086,Java;SQL
+20087,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+20088,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;Other(s):
+20089,Bash/Shell/PowerShell;Python
+20090,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+20092,Python
+20093,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+20094,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Other(s):
+20095,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20097,C#;SQL
+20098,JavaScript;SQL
+20099,JavaScript;Python
+20100,C;C#;HTML/CSS;Java;JavaScript;PHP;Python
+20101,Python;Other(s):
+20102,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+20103,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20104,C#;HTML/CSS;JavaScript;PHP;SQL
+20105,JavaScript;PHP;SQL
+20106,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+20107,Java;Python
+20108,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+20109,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20110,Bash/Shell/PowerShell;PHP;Python;R
+20111,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+20112,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+20113,HTML/CSS;Java;JavaScript;SQL;TypeScript
+20114,Java;JavaScript;Swift
+20115,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Ruby;SQL;TypeScript;WebAssembly
+20116,HTML/CSS;JavaScript
+20117,HTML/CSS;JavaScript
+20118,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+20119,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+20120,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+20121,HTML/CSS;Java;JavaScript
+20122,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+20123,Python;Other(s):
+20124,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+20125,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+20126,C#;HTML/CSS;Java;JavaScript
+20127,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+20128,Elixir
+20129,Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+20130,C#;SQL;Other(s):
+20131,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+20132,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+20133,Objective-C
+20134,C#;F#;HTML/CSS;Java;JavaScript;Python
+20135,Assembly
+20136,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20137,Python;R;Scala;SQL
+20138,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+20139,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+20140,C#;HTML/CSS;JavaScript;Ruby;SQL;Swift;TypeScript
+20141,C;C++;C#;HTML/CSS;JavaScript;Ruby;SQL
+20142,Assembly;C#;HTML/CSS;JavaScript;PHP;SQL
+20143,C;HTML/CSS;Java;JavaScript
+20144,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+20145,C#;HTML/CSS;JavaScript;SQL
+20146,HTML/CSS;Java;JavaScript;SQL;Other(s):
+20147,HTML/CSS;Java;JavaScript;Python;SQL
+20148,HTML/CSS;Python;Ruby
+20149,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+20150,HTML/CSS;Java;JavaScript;PHP;SQL
+20151,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+20152,HTML/CSS;JavaScript;TypeScript
+20153,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20154,Dart;Python
+20155,C#;HTML/CSS;JavaScript;SQL
+20156,Bash/Shell/PowerShell;Java;JavaScript;Other(s):
+20157,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;PHP;Python;SQL;Swift;TypeScript
+20158,Bash/Shell/PowerShell;C;Python;R
+20159,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Swift;TypeScript
+20160,HTML/CSS;Java;PHP
+20161,C;C++;C#;Java;Python;SQL;Other(s):
+20162,C#;HTML/CSS;JavaScript;VBA
+20163,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+20164,Bash/Shell/PowerShell;Dart;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+20165,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+20166,Java;Python;Swift
+20167,C;C++;JavaScript;PHP;SQL
+20168,Bash/Shell/PowerShell;C#;SQL
+20169,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;VBA
+20170,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20171,C#;HTML/CSS;JavaScript;Python
+20172,C#
+20173,HTML/CSS;JavaScript;PHP
+20174,JavaScript;Swift;TypeScript
+20175,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20176,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+20177,HTML/CSS;PHP;Python;SQL
+20178,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+20179,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20180,C++;HTML/CSS;Java;JavaScript;Python
+20181,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python
+20182,C;C++;C#;Java;Kotlin;Objective-C;Python;Swift
+20183,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;SQL
+20185,Python;Other(s):
+20186,HTML/CSS;JavaScript
+20187,Bash/Shell/PowerShell;Python
+20188,C;C++;Java;Python
+20189,JavaScript
+20190,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+20191,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+20192,Bash/Shell/PowerShell;PHP;Ruby;TypeScript
+20193,Bash/Shell/PowerShell;Java;SQL;Other(s):
+20194,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+20195,HTML/CSS;JavaScript;PHP;SQL
+20196,Bash/Shell/PowerShell;Java
+20197,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;Scala;SQL;TypeScript
+20198,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+20199,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+20200,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+20201,Java;Kotlin;SQL
+20202,Python;Ruby
+20203,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+20204,C++;Other(s):
+20205,Python
+20206,C#;HTML/CSS;JavaScript;SQL
+20207,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;Scala;SQL;VBA
+20208,Assembly;C#;Java;Python;SQL
+20209,Objective-C;Swift
+20210,C++;HTML/CSS;Java;JavaScript;Python
+20211,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20212,Bash/Shell/PowerShell;C;Java
+20213,Elixir;Erlang;Go;Objective-C;Python;R;Ruby;Swift
+20214,Bash/Shell/PowerShell;C#;SQL
+20215,C++
+20216,C#;Java;JavaScript;PHP;Python;SQL;TypeScript
+20217,C;C++;C#;Python;SQL
+20218,HTML/CSS;JavaScript;PHP
+20219,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+20220,Assembly;Bash/Shell/PowerShell;C;Java;Python;Other(s):
+20221,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;Other(s):
+20222,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+20223,HTML/CSS;JavaScript;PHP;SQL
+20224,HTML/CSS;Java;SQL
+20225,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+20226,HTML/CSS;JavaScript;PHP
+20227,HTML/CSS;JavaScript;PHP;Ruby;SQL
+20228,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+20229,C#;SQL
+20230,HTML/CSS;JavaScript;TypeScript
+20231,HTML/CSS;Java;JavaScript;PHP
+20232,Bash/Shell/PowerShell;C;C++;Swift;TypeScript;Other(s):
+20233,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Other(s):
+20234,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20235,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+20236,C#;HTML/CSS;JavaScript;PHP;SQL
+20237,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+20238,C#;HTML/CSS;JavaScript
+20239,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala
+20240,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL
+20241,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+20242,Bash/Shell/PowerShell;C#;JavaScript;SQL
+20243,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+20244,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+20245,Bash/Shell/PowerShell;Clojure;Go;Python;Ruby
+20246,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+20247,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+20248,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+20249,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL;TypeScript
+20250,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20251,JavaScript;SQL;TypeScript
+20252,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+20253,C;C++;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+20254,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20255,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Python;TypeScript
+20256,C++;Java;JavaScript;Python;R;SQL
+20257,HTML/CSS;JavaScript;PHP;Ruby;Swift;TypeScript
+20258,HTML/CSS;JavaScript;PHP;SQL
+20259,HTML/CSS;Java;Other(s):
+20260,HTML/CSS;JavaScript;SQL
+20261,Java
+20262,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+20263,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20264,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python
+20265,HTML/CSS;JavaScript;Python;SQL
+20266,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+20267,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL;Other(s):
+20268,C;Java;JavaScript;Python
+20269,HTML/CSS;JavaScript
+20270,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20271,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+20272,Bash/Shell/PowerShell;Python
+20273,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+20274,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20275,JavaScript;Kotlin;Swift
+20276,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+20277,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;R;Rust;SQL
+20278,C#;HTML/CSS;Java;WebAssembly
+20279,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20280,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+20281,Python;SQL
+20282,HTML/CSS;Python;R;Other(s):
+20283,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+20284,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+20285,C#;HTML/CSS;JavaScript;SQL
+20286,Assembly;Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+20287,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;Scala;SQL;Swift;Other(s):
+20288,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;R;Ruby;SQL;Swift
+20289,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+20290,Bash/Shell/PowerShell;Python;SQL
+20291,Elixir;JavaScript;Ruby;SQL;TypeScript;Other(s):
+20292,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+20293,C++;C#;Java;Python;SQL
+20294,C;C++;C#;Python
+20295,C#;HTML/CSS;JavaScript;SQL
+20296,C;C++;Java;Python;SQL
+20297,C#;HTML/CSS;JavaScript;PHP;SQL
+20298,JavaScript;Python
+20299,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20300,HTML/CSS;JavaScript;PHP;SQL
+20302,Bash/Shell/PowerShell;C#;F#;Go;JavaScript;SQL
+20303,Assembly;Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;Rust
+20304,C;C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python
+20305,HTML/CSS
+20306,Go;HTML/CSS;JavaScript;Objective-C
+20307,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript;WebAssembly
+20308,C++;Python
+20309,HTML/CSS;Java;JavaScript;SQL;TypeScript
+20310,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Objective-C;PHP
+20311,HTML/CSS;Java;JavaScript;SQL
+20312,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+20313,HTML/CSS;Java;JavaScript;Objective-C;Swift
+20314,Python;Rust
+20315,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;VBA
+20316,Swift
+20317,Go;Python
+20318,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+20319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+20320,Java;JavaScript;Kotlin;Python
+20321,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20322,Assembly;Bash/Shell/PowerShell;C;C++
+20323,HTML/CSS;JavaScript
+20324,Dart;Python
+20325,Bash/Shell/PowerShell;C++;Go;Python
+20326,C#;Java;JavaScript;SQL
+20327,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+20328,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+20329,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+20330,Bash/Shell/PowerShell;C;Java;Python
+20331,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+20332,C;C++;Java;Python;R;SQL
+20333,C++;C#;Java;Kotlin
+20334,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;VBA
+20335,C#;PHP
+20336,C
+20337,Java
+20338,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20339,C++;Java;PHP
+20340,Java;Kotlin;PHP
+20341,C#;HTML/CSS;JavaScript;SQL
+20342,C++;C#;HTML/CSS;Java;Objective-C
+20343,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;SQL
+20344,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+20345,C#;HTML/CSS;JavaScript;SQL
+20346,Java;JavaScript;SQL
+20347,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+20348,HTML/CSS;Java;JavaScript;PHP;SQL
+20349,Bash/Shell/PowerShell;C;C++;Java;Python
+20350,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+20351,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+20352,C++;Go;Java;Python;Ruby;SQL
+20353,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+20354,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20355,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+20356,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+20357,Bash/Shell/PowerShell;Java;Python;Rust;Swift
+20358,HTML/CSS;Python;R;SQL
+20359,HTML/CSS;JavaScript;VBA
+20360,Java;SQL
+20361,C++;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+20362,Bash/Shell/PowerShell;C++;Objective-C;Python;Swift
+20363,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+20364,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20365,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+20366,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+20367,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+20368,HTML/CSS;Java;Kotlin
+20369,Java;JavaScript;Kotlin;SQL
+20372,Bash/Shell/PowerShell;Java;Python;SQL
+20373,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20374,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+20375,HTML/CSS;JavaScript;Ruby;SQL
+20376,C#;Dart;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+20377,Bash/Shell/PowerShell;Go;Ruby;Rust
+20378,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20379,C#;Go;HTML/CSS;JavaScript;Python;R
+20380,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;SQL
+20381,HTML/CSS;JavaScript;Python
+20382,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20383,HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;TypeScript
+20384,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;Rust;TypeScript
+20385,HTML/CSS;Python;SQL;VBA
+20386,C#;HTML/CSS;JavaScript;SQL
+20387,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+20388,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+20389,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+20390,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20391,HTML/CSS;JavaScript
+20392,Other(s):
+20393,Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL;Other(s):
+20394,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Objective-C;Python;SQL
+20395,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+20396,Bash/Shell/PowerShell;C#;SQL
+20397,Java;JavaScript;Python
+20398,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+20399,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+20400,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL
+20401,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+20402,C;C++;HTML/CSS;PHP;SQL;VBA
+20403,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+20404,C;C++;Objective-C;Python
+20405,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+20406,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL;Swift;TypeScript;WebAssembly
+20407,Bash/Shell/PowerShell;Python
+20408,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20409,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20410,JavaScript;Python;SQL
+20411,C#;HTML/CSS;JavaScript;SQL
+20412,C++;Java;Python
+20413,HTML/CSS;Java;SQL
+20414,Assembly;Bash/Shell/PowerShell;C;C#;JavaScript;PHP;Python;Ruby;SQL;Swift
+20415,Go;Python
+20416,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20417,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+20418,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20419,Bash/Shell/PowerShell;C#;Java;SQL
+20420,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+20421,C#;Java;JavaScript;TypeScript
+20422,C#;HTML/CSS;JavaScript;PHP;SQL
+20423,Java
+20424,HTML/CSS;JavaScript;VBA
+20425,C++;C#;HTML/CSS;Java;SQL;Swift
+20426,Go;Java
+20427,Java;SQL
+20428,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+20429,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;Swift;TypeScript
+20430,C++;Python
+20431,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+20432,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;JavaScript;Objective-C;Swift
+20433,Bash/Shell/PowerShell;JavaScript;Kotlin;R;SQL;VBA;Other(s):
+20434,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+20435,HTML/CSS;Java;JavaScript
+20436,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+20437,C#;Dart
+20438,Java;TypeScript
+20439,Bash/Shell/PowerShell;JavaScript;Python;SQL
+20440,C#;JavaScript
+20441,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+20442,HTML/CSS;PHP
+20443,Bash/Shell/PowerShell;Clojure;Scala
+20444,C;C++;HTML/CSS;Java;JavaScript;SQL
+20445,Bash/Shell/PowerShell;C#;Go;Java;Kotlin
+20446,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+20447,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+20448,C;HTML/CSS;Java;PHP;Python;VBA
+20449,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+20450,Python
+20451,Java;Kotlin
+20452,C;C++;HTML/CSS;Python
+20453,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+20454,HTML/CSS;JavaScript;Python
+20455,R;Other(s):
+20456,Bash/Shell/PowerShell;C#;Go;Python
+20457,C#;HTML/CSS;JavaScript;SQL
+20458,C#;HTML/CSS;JavaScript;SQL
+20459,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20460,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20461,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Rust;SQL
+20462,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+20463,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+20464,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+20465,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20466,HTML/CSS;JavaScript;PHP
+20467,HTML/CSS;JavaScript;Ruby
+20468,JavaScript;Python
+20469,C#;Dart;HTML/CSS;JavaScript;Kotlin;Ruby;Scala;SQL
+20470,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+20471,C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Scala;SQL
+20472,C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+20473,C#;HTML/CSS;JavaScript;PHP;SQL
+20474,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+20475,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+20476,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+20477,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+20478,C;C++;C#;HTML/CSS;JavaScript;PHP
+20479,C#;Python
+20480,Scala
+20481,C++;C#;HTML/CSS;Java;JavaScript;SQL
+20482,HTML/CSS;JavaScript;PHP;SQL
+20483,Java;JavaScript;Python;Rust;SQL;Other(s):
+20484,HTML/CSS;JavaScript;PHP;SQL
+20485,JavaScript;Python;Rust;SQL
+20486,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+20487,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Rust
+20488,Python;R
+20489,HTML/CSS;JavaScript;TypeScript
+20490,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+20491,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+20492,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+20493,C#;HTML/CSS;JavaScript;SQL
+20494,C#;HTML/CSS;JavaScript;SQL;Other(s):
+20495,Go;Java;Kotlin;Python;TypeScript
+20496,HTML/CSS;JavaScript;Ruby
+20497,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20498,Java;Python;Scala;SQL
+20499,C#;HTML/CSS;JavaScript;SQL
+20500,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+20501,Bash/Shell/PowerShell;Erlang;Go;Java;JavaScript;Python
+20502,C#;Dart;HTML/CSS;JavaScript;SQL
+20503,C#;HTML/CSS;JavaScript
+20504,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust;TypeScript
+20505,JavaScript;Python
+20506,Bash/Shell/PowerShell;C;C++;C#;Python
+20507,C++;Java;Objective-C;Swift
+20508,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+20509,C;HTML/CSS;Java;JavaScript;PHP;SQL
+20510,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20511,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python
+20512,C++;C#;Java;JavaScript;SQL
+20513,C;HTML/CSS;JavaScript;SQL
+20514,C#;JavaScript;SQL
+20515,Bash/Shell/PowerShell;Java
+20516,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+20517,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+20518,Bash/Shell/PowerShell;PHP;Python;Ruby;SQL
+20519,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;VBA
+20520,Java;Kotlin
+20521,HTML/CSS;JavaScript
+20522,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20523,HTML/CSS;Java;JavaScript;TypeScript
+20524,C;C++;C#;HTML/CSS;Python
+20525,C++;Python
+20526,C;HTML/CSS;JavaScript;PHP;SQL
+20527,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Swift
+20528,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+20529,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+20530,HTML/CSS;Java;JavaScript;SQL
+20531,Java;JavaScript
+20532,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20533,C#;JavaScript;PHP;Python;Ruby;SQL
+20534,HTML/CSS;Java;JavaScript
+20535,C++;HTML/CSS;Java;Python
+20536,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+20537,Bash/Shell/PowerShell;Python
+20538,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+20539,C#;Dart;Go;HTML/CSS
+20540,C#;HTML/CSS;JavaScript;PHP;SQL
+20541,Kotlin
+20542,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+20543,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust
+20544,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+20545,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+20546,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;SQL;Swift
+20547,C#;SQL
+20548,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20549,Bash/Shell/PowerShell;JavaScript;Python;SQL
+20550,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;Scala
+20551,C;SQL
+20552,HTML/CSS;Java;JavaScript;Scala;SQL
+20553,Assembly;C;C++;C#;Clojure;JavaScript;PHP;R;Scala;SQL;VBA
+20554,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+20555,Python;R;SQL
+20556,C;C#;Java;Python
+20557,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+20558,Bash/Shell/PowerShell;HTML/CSS;R
+20559,C#;HTML/CSS;JavaScript;SQL
+20560,Bash/Shell/PowerShell;C;C++;R
+20561,SQL;VBA
+20562,Java;JavaScript;Python;Scala;SQL;TypeScript
+20563,Python
+20564,C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+20565,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+20566,Python
+20568,HTML/CSS;JavaScript;PHP;SQL
+20570,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+20571,HTML/CSS;JavaScript;PHP;SQL
+20572,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+20573,C++;HTML/CSS;JavaScript;R
+20574,Bash/Shell/PowerShell;C;C#;Go;JavaScript;PHP;SQL;TypeScript
+20575,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL;Swift
+20576,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;WebAssembly
+20577,Bash/Shell/PowerShell;Go;Java;SQL
+20578,Java;JavaScript
+20579,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+20580,C;C++;C#;Dart;Java;JavaScript;TypeScript
+20581,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20582,C#;Swift
+20583,HTML/CSS;Python
+20584,Java
+20585,C;HTML/CSS;JavaScript;PHP;Python;SQL
+20586,C#;HTML/CSS;JavaScript;SQL
+20587,HTML/CSS;Java;JavaScript
+20588,C#;JavaScript;SQL;Other(s):
+20589,Java
+20590,C#;Clojure;JavaScript;SQL
+20591,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+20592,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript;VBA
+20593,Java;JavaScript;SQL
+20594,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+20595,HTML/CSS;JavaScript;Python
+20596,Assembly;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+20597,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20598,C#;HTML/CSS;JavaScript;Python;SQL
+20599,C++;Python
+20600,Objective-C;Swift
+20601,HTML/CSS;JavaScript;PHP;SQL
+20602,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+20603,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20604,HTML/CSS;JavaScript;TypeScript
+20605,HTML/CSS;JavaScript;PHP;SQL
+20606,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+20607,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript
+20608,Python;R;SQL;Other(s):
+20609,Bash/Shell/PowerShell;Java;Python
+20610,Python;SQL;VBA
+20611,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala
+20612,HTML/CSS;Java;JavaScript;PHP;SQL
+20613,HTML/CSS;JavaScript;Ruby;Scala;SQL;TypeScript
+20614,C#;HTML/CSS;JavaScript;PHP;SQL
+20615,C;C++;HTML/CSS;JavaScript;Python;SQL
+20616,HTML/CSS;JavaScript
+20617,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+20618,C#;Go;Java;JavaScript;Kotlin;Swift;TypeScript
+20619,HTML/CSS;JavaScript;PHP;Python;SQL
+20620,Bash/Shell/PowerShell;C++;Go;JavaScript;Objective-C;Python;Rust
+20621,Bash/Shell/PowerShell;C++;Go;JavaScript;PHP;TypeScript
+20622,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+20623,Go;HTML/CSS;Java;JavaScript;TypeScript
+20624,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20625,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+20626,Bash/Shell/PowerShell;Java;JavaScript;Ruby;Rust;Scala;SQL;TypeScript
+20627,C;C++;C#
+20628,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+20629,HTML/CSS;JavaScript;R;SQL
+20630,HTML/CSS;JavaScript;PHP;WebAssembly
+20631,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+20632,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL
+20633,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+20634,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20636,Java;JavaScript;TypeScript
+20637,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20638,Go;HTML/CSS;JavaScript;SQL
+20639,Go;JavaScript;Python;SQL;TypeScript
+20640,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+20641,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+20642,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+20643,C++;HTML/CSS;Other(s):
+20644,C;HTML/CSS;Java;JavaScript
+20645,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+20646,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+20647,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20648,Bash/Shell/PowerShell;Go;Java
+20649,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+20650,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+20651,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20652,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+20653,C;C++;HTML/CSS;Java;Python
+20654,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+20655,Bash/Shell/PowerShell;C;C++;Python;VBA;Other(s):
+20656,C;C++;Go;HTML/CSS;Python
+20657,Bash/Shell/PowerShell;C;JavaScript;Python;SQL
+20658,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+20659,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+20660,C#;Go;HTML/CSS;TypeScript
+20661,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+20662,HTML/CSS;JavaScript
+20663,C#;Java;JavaScript;PHP;Python;SQL;Other(s):
+20664,HTML/CSS;JavaScript;SQL;TypeScript
+20665,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL
+20666,Bash/Shell/PowerShell;C;Python;Other(s):
+20667,Assembly;C++;C#;HTML/CSS;JavaScript;PHP;Ruby;Rust
+20668,JavaScript;Ruby;SQL
+20669,C;C++;HTML/CSS;Java;SQL
+20670,Assembly;C;Java;Python;SQL
+20671,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+20672,HTML/CSS;JavaScript;PHP;TypeScript
+20673,C++;Python
+20674,Bash/Shell/PowerShell;Python;R;SQL
+20675,HTML/CSS;JavaScript;PHP;SQL
+20676,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+20677,C;C++;Java;Python
+20678,HTML/CSS;PHP
+20679,Bash/Shell/PowerShell;Java;Python;SQL
+20680,HTML/CSS;Java;JavaScript
+20681,HTML/CSS;Java;JavaScript;PHP;SQL
+20682,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+20683,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;TypeScript;WebAssembly
+20684,Python
+20685,Java;Kotlin
+20686,Java;Kotlin
+20687,Java;JavaScript
+20689,Bash/Shell/PowerShell;C;Python;Ruby;Other(s):
+20690,Java;SQL
+20691,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+20692,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+20693,C;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+20694,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;TypeScript
+20695,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+20696,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+20697,Python;R;SQL
+20698,HTML/CSS;JavaScript
+20699,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+20700,Python
+20701,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+20703,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+20704,C#;HTML/CSS;JavaScript;PHP;TypeScript
+20705,C#
+20706,HTML/CSS;JavaScript;PHP;SQL
+20707,Bash/Shell/PowerShell;C++;Java;JavaScript;Other(s):
+20708,C;C++
+20709,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+20710,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+20711,C;C++;HTML/CSS;Java;Python;SQL
+20712,C;HTML/CSS;Java;JavaScript;PHP;Python;R;Swift
+20713,C#;JavaScript;Scala;TypeScript
+20714,Java;R;SQL;TypeScript
+20715,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+20716,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+20717,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+20718,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+20719,HTML/CSS;JavaScript;PHP;SQL
+20720,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+20721,Bash/Shell/PowerShell;C#;HTML/CSS;Python;TypeScript
+20722,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Swift;TypeScript
+20723,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20724,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+20725,C#;HTML/CSS;SQL
+20726,C#;HTML/CSS;JavaScript
+20727,Java;JavaScript;Python
+20728,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+20729,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20730,C++;HTML/CSS;Python;SQL
+20731,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20732,HTML/CSS;Java;JavaScript;Python;SQL
+20733,C#;HTML/CSS;JavaScript
+20734,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+20735,HTML/CSS;Java;JavaScript;SQL
+20736,Go;Java;Ruby;Scala;TypeScript
+20737,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+20738,C;C++;C#;Java;JavaScript;PHP;Python;R;Other(s):
+20739,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20740,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;Ruby;SQL;TypeScript
+20741,JavaScript;PHP;SQL;TypeScript
+20742,C#;HTML/CSS;JavaScript;SQL
+20743,C;C++;Java;JavaScript;PHP
+20744,HTML/CSS;Java;JavaScript;Python;TypeScript
+20745,Bash/Shell/PowerShell;JavaScript;Python
+20746,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+20747,Java;JavaScript;Objective-C;SQL;TypeScript
+20748,Java;JavaScript;Python;Scala;VBA
+20749,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20750,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+20751,HTML/CSS;JavaScript;Python;Ruby
+20752,C#;Java
+20753,HTML/CSS;JavaScript;Python;SQL;TypeScript
+20754,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+20755,HTML/CSS;JavaScript;PHP;SQL
+20756,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;TypeScript;Other(s):
+20757,HTML/CSS;JavaScript
+20758,C++;C#
+20759,C#;HTML/CSS;JavaScript;TypeScript
+20760,C#;HTML/CSS;JavaScript;Python;TypeScript
+20761,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+20762,C;C#;Objective-C
+20763,HTML/CSS;Java;Kotlin;Rust;SQL
+20764,Bash/Shell/PowerShell;SQL
+20765,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+20766,C#;Go;PHP
+20767,C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+20768,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA;Other(s):
+20769,Java;JavaScript
+20770,HTML/CSS;Java;JavaScript;SQL
+20771,HTML/CSS;JavaScript
+20772,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+20773,HTML/CSS;JavaScript;PHP
+20774,Python
+20775,C#;Go;Java;JavaScript;Ruby;SQL;TypeScript
+20776,C#;HTML/CSS;JavaScript;Python
+20777,C#;SQL;TypeScript
+20778,Bash/Shell/PowerShell;Clojure;HTML/CSS;Python;Other(s):
+20779,HTML/CSS;JavaScript;Ruby
+20780,C#;TypeScript
+20781,HTML/CSS;JavaScript;Python;R;Other(s):
+20782,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20783,Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+20784,C;C++;HTML/CSS;JavaScript;Python;Rust;Swift;TypeScript
+20785,Assembly;HTML/CSS;JavaScript;SQL
+20786,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Other(s):
+20788,HTML/CSS;Java;JavaScript;SQL;TypeScript
+20789,Bash/Shell/PowerShell;JavaScript
+20790,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20791,C;Java;PHP;Python;SQL
+20792,C;C++;JavaScript
+20793,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+20794,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+20795,C#;HTML/CSS;Java;JavaScript;SQL
+20796,HTML/CSS;JavaScript;PHP;Ruby
+20797,Java;SQL
+20798,Bash/Shell/PowerShell;Java;Python;TypeScript
+20799,Bash/Shell/PowerShell;C++;C#;Python
+20800,Python;R;SQL
+20801,JavaScript;PHP;SQL
+20802,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+20803,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Other(s):
+20804,C#;HTML/CSS;JavaScript;SQL
+20805,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+20806,C#;Java;SQL
+20807,Java;Kotlin;TypeScript
+20808,Bash/Shell/PowerShell;C++;C#;HTML/CSS;PHP;SQL
+20809,Bash/Shell/PowerShell;C++;Python;Other(s):
+20810,Assembly;C;Other(s):
+20811,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+20812,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+20813,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL;TypeScript
+20814,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+20815,C;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+20816,HTML/CSS;JavaScript;PHP;SQL
+20817,C++;Python
+20818,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+20819,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Java;JavaScript;Python;Ruby;SQL;VBA
+20820,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+20821,C;C++;Java;Kotlin;SQL
+20822,C;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL
+20823,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+20824,Bash/Shell/PowerShell;Python;SQL
+20825,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+20826,Java
+20827,C++;C#;Java
+20828,HTML/CSS;Java;JavaScript;Python;SQL
+20829,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+20830,Elixir;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+20831,Assembly;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+20832,HTML/CSS;Java;TypeScript
+20833,C#;JavaScript;Python;SQL;TypeScript
+20835,C#;HTML/CSS;JavaScript;SQL
+20836,C#;HTML/CSS;JavaScript;SQL
+20837,C#;HTML/CSS;JavaScript;SQL
+20838,C#;HTML/CSS;JavaScript;SQL;VBA
+20839,Bash/Shell/PowerShell;Java;JavaScript
+20840,C#;HTML/CSS;JavaScript;SQL
+20841,Assembly;C;C++;C#;HTML/CSS;Java;PHP;SQL
+20842,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+20843,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+20844,Go;JavaScript;Ruby;Rust;SQL;WebAssembly
+20845,SQL;Other(s):
+20847,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+20848,HTML/CSS;PHP;Other(s):
+20849,Python;R;Ruby;Other(s):
+20850,HTML/CSS;JavaScript;PHP;SQL
+20851,Elixir;JavaScript;TypeScript
+20852,HTML/CSS;JavaScript;SQL
+20853,Java;Kotlin
+20854,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20855,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+20856,C;C++;C#;Other(s):
+20857,Bash/Shell/PowerShell;C++;Python;Rust;Other(s):
+20858,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+20859,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+20860,C#;HTML/CSS;JavaScript;SQL;TypeScript
+20862,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+20863,HTML/CSS;JavaScript;Python;Ruby;TypeScript;Other(s):
+20864,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+20865,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+20866,HTML/CSS;JavaScript
+20867,C#;HTML/CSS;JavaScript;SQL
+20868,C#;HTML/CSS;JavaScript;SQL;Other(s):
+20869,Java;Kotlin
+20870,C;HTML/CSS;Java;JavaScript;PHP;SQL
+20871,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+20872,HTML/CSS;JavaScript;PHP;SQL
+20873,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python
+20874,HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+20875,JavaScript;Swift;TypeScript
+20876,Java;Python;Scala
+20877,Assembly
+20878,HTML/CSS;Java;JavaScript;PHP;R;VBA
+20879,Java;Kotlin;Other(s):
+20880,Bash/Shell/PowerShell;Python
+20881,C++;Python
+20882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+20883,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+20884,C#;JavaScript;SQL
+20885,C;C#;HTML/CSS;Java;Objective-C
+20886,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+20887,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20888,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+20889,Java;JavaScript;Python;Scala;SQL
+20890,C#
+20891,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+20893,Java;Kotlin;SQL;Swift
+20894,Python;Ruby
+20895,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+20896,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20897,HTML/CSS;Java;JavaScript;SQL
+20898,C;C#;Dart;HTML/CSS;Java;Python
+20899,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+20900,HTML/CSS;Java;JavaScript;Ruby;SQL
+20901,C#;SQL;Other(s):
+20902,C++;JavaScript
+20903,Bash/Shell/PowerShell;C;C#
+20904,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+20905,C#;HTML/CSS;Java;JavaScript;SQL
+20906,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+20907,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+20908,Bash/Shell/PowerShell;Java;Python;SQL
+20909,C++;C#;HTML/CSS;Java;JavaScript;Python
+20910,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+20911,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+20912,HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+20913,C#
+20914,C;HTML/CSS;Python
+20915,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+20916,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+20917,C;C++;C#;HTML/CSS;Java;Objective-C;SQL;Swift;VBA
+20918,HTML/CSS;Java;JavaScript
+20919,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+20920,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+20921,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+20922,Bash/Shell/PowerShell;JavaScript;Python;SQL
+20923,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+20924,C#;HTML/CSS;Python;SQL
+20925,C#;HTML/CSS;JavaScript;SQL
+20926,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+20927,C#;HTML/CSS;JavaScript;SQL
+20928,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+20929,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+20930,C++;JavaScript;R
+20931,C;C++;HTML/CSS;JavaScript
+20932,Bash/Shell/PowerShell;C++;Python
+20933,Go;HTML/CSS;JavaScript;Ruby;SQL
+20934,Swift
+20935,C#;HTML/CSS;JavaScript;SQL;Other(s):
+20936,C#;HTML/CSS;JavaScript;SQL;VBA
+20937,C;Dart;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript;WebAssembly
+20938,JavaScript;TypeScript
+20939,HTML/CSS;JavaScript;PHP;SQL
+20940,C#;F#;HTML/CSS;Java;SQL
+20941,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+20942,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;WebAssembly;Other(s):
+20943,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+20944,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+20945,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;PHP;Python;Swift
+20946,JavaScript;Python
+20947,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+20948,Bash/Shell/PowerShell;C;Java;Python;SQL
+20949,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+20950,Java;Kotlin;SQL
+20951,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+20952,Go;HTML/CSS;JavaScript
+20953,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+20954,HTML/CSS;JavaScript;PHP;TypeScript
+20955,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+20956,Python;R;SQL
+20957,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+20958,HTML/CSS;JavaScript;Python;SQL
+20959,Ruby;SQL
+20960,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+20961,Bash/Shell/PowerShell;C;C++;Elixir;Java;Python;Ruby;Scala;Other(s):
+20962,Java;Python
+20963,C#;SQL
+20964,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+20965,C;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+20966,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+20967,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL;Other(s):
+20968,Assembly;C++;HTML/CSS;JavaScript;Python
+20969,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+20970,HTML/CSS;JavaScript;PHP
+20971,HTML/CSS;JavaScript
+20972,C#;HTML/CSS;SQL;VBA
+20973,Bash/Shell/PowerShell;C++;Python
+20974,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+20975,C++;C#;Go;HTML/CSS;JavaScript;PHP
+20976,Bash/Shell/PowerShell;JavaScript;PHP;Python
+20977,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;JavaScript;Python;Rust;TypeScript
+20978,Python;Other(s):
+20979,HTML/CSS;Java;JavaScript;PHP;SQL
+20980,Go;Java;JavaScript;Objective-C;PHP;SQL;Swift
+20981,JavaScript
+20982,C#;HTML/CSS;Java;JavaScript;TypeScript
+20983,C;C++;Go;JavaScript
+20984,HTML/CSS;JavaScript;SQL;TypeScript
+20985,C#;HTML/CSS;PHP;Python
+20986,Assembly;Java
+20987,Java
+20988,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+20989,HTML/CSS;Java;JavaScript;Python
+20990,HTML/CSS;Java;JavaScript;Python;TypeScript
+20991,HTML/CSS;JavaScript
+20992,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;VBA
+20993,C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+20994,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL
+20995,Java;PHP;SQL;Swift
+20996,Python;SQL;Other(s):
+20997,C#;HTML/CSS;JavaScript;SQL
+20998,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+20999,Python;R
+21000,Assembly;Bash/Shell/PowerShell;C;C++;Python
+21001,Bash/Shell/PowerShell;C#;Objective-C;Swift
+21002,C;C++;Java;Python
+21003,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Swift
+21004,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+21005,Bash/Shell/PowerShell;Python;R;SQL
+21006,HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+21007,Bash/Shell/PowerShell;Java;Python;Scala;Other(s):
+21009,C#;HTML/CSS;JavaScript;SQL
+21010,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript
+21011,C++;HTML/CSS;JavaScript;Objective-C;Python;Swift
+21012,Bash/Shell/PowerShell;Python;R
+21013,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+21014,C#;HTML/CSS;JavaScript
+21015,C++;SQL;VBA
+21016,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript
+21017,Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+21018,HTML/CSS;JavaScript;PHP;SQL
+21019,HTML/CSS;JavaScript;PHP;SQL
+21020,HTML/CSS;Java;JavaScript;SQL
+21021,C;Java
+21022,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+21023,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+21024,HTML/CSS;Java;JavaScript;Python;TypeScript
+21025,Bash/Shell/PowerShell;C++;Java;JavaScript;Ruby;TypeScript
+21026,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+21027,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;Other(s):
+21028,C;C++;C#;Python
+21029,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+21030,Bash/Shell/PowerShell;Python;SQL
+21031,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+21032,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+21033,HTML/CSS;Java;JavaScript;SQL
+21034,HTML/CSS;JavaScript;TypeScript
+21035,C++;Python
+21036,Bash/Shell/PowerShell;C++;Python;SQL
+21037,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL;TypeScript;VBA
+21038,HTML/CSS;JavaScript;Ruby
+21039,Bash/Shell/PowerShell;Python
+21040,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+21041,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+21042,C#;Java;JavaScript
+21043,JavaScript;TypeScript
+21044,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+21045,HTML/CSS;Java;JavaScript;PHP;SQL
+21046,HTML/CSS;JavaScript;PHP
+21047,Bash/Shell/PowerShell;C;C++;C#;Java;R
+21048,Bash/Shell/PowerShell;Java;JavaScript;Python;R;Scala;SQL
+21049,HTML/CSS;JavaScript;TypeScript
+21050,TypeScript
+21051,JavaScript;Python;Other(s):
+21052,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+21053,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Other(s):
+21054,Bash/Shell/PowerShell;C++;C#;JavaScript;Objective-C;SQL;Swift;TypeScript;VBA
+21055,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+21056,Python;Other(s):
+21057,Assembly;Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+21058,C#;HTML/CSS;JavaScript;Python;SQL
+21059,Bash/Shell/PowerShell;C++;Java;Python
+21060,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+21061,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21062,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+21063,Objective-C;Swift
+21064,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+21065,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;Scala
+21066,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+21067,C;C++;Python
+21068,C;C++;HTML/CSS;JavaScript;Python
+21069,C++
+21070,Java
+21071,C;HTML/CSS;Java;JavaScript;Swift;TypeScript
+21072,Bash/Shell/PowerShell;C;C++;Java;Python
+21073,Bash/Shell/PowerShell;C;JavaScript;Python;Ruby
+21074,C#;JavaScript;SQL;TypeScript
+21075,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+21076,HTML/CSS;JavaScript;Python;SQL
+21077,C#;HTML/CSS;JavaScript;SQL
+21078,C;HTML/CSS;JavaScript;PHP;Python
+21079,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+21080,Java;Kotlin
+21081,C++;C#;HTML/CSS;Java;JavaScript;Python
+21082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+21083,C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+21084,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;PHP;Python
+21085,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+21086,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Ruby
+21087,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+21088,C#;PHP;Python
+21089,C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+21090,C;Java;SQL
+21091,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+21092,HTML/CSS;JavaScript
+21093,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+21094,JavaScript
+21095,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+21096,Bash/Shell/PowerShell;C;C#;Objective-C;TypeScript
+21097,C#;Clojure;Python;SQL
+21098,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;SQL
+21100,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+21101,Bash/Shell/PowerShell;C;SQL;VBA
+21102,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+21103,SQL
+21104,HTML/CSS;Java;JavaScript;TypeScript
+21105,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA;Other(s):
+21106,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+21107,Bash/Shell/PowerShell;C#;Elixir;Python
+21108,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;SQL
+21109,Bash/Shell/PowerShell
+21110,Bash/Shell/PowerShell;C++;Java;Python;R
+21111,C#;Dart;F#
+21112,Bash/Shell/PowerShell;R;Rust;Scala
+21113,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+21114,Objective-C;Python;Swift
+21115,HTML/CSS;Python
+21116,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+21117,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+21119,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+21120,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+21121,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+21122,C;Dart;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+21123,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+21124,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+21125,C#;HTML/CSS;JavaScript;R;SQL
+21126,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21127,HTML/CSS;JavaScript;PHP;SQL
+21128,JavaScript;Rust
+21129,HTML/CSS;Java;JavaScript;Python;SQL
+21130,C#;Java;Python;Scala
+21131,Java
+21132,HTML/CSS;Java;JavaScript;PHP;SQL
+21133,HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+21134,JavaScript;Python;Ruby
+21135,Java
+21136,C#;JavaScript;Python;SQL
+21137,HTML/CSS;JavaScript;PHP;Python
+21138,Bash/Shell/PowerShell;Go;Java;Kotlin;SQL
+21139,Bash/Shell/PowerShell;C;C++;C#;R;Other(s):
+21140,HTML/CSS;JavaScript;Ruby
+21141,C#;HTML/CSS;JavaScript;TypeScript
+21142,HTML/CSS;JavaScript;Python
+21143,Bash/Shell/PowerShell;C++;C#;SQL
+21144,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+21145,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+21146,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala
+21147,C;HTML/CSS;JavaScript;Swift
+21148,SQL
+21149,C
+21150,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+21151,Java;Kotlin;Python
+21152,HTML/CSS;Java;JavaScript
+21153,HTML/CSS;JavaScript;Python
+21154,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+21155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+21156,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;Rust
+21157,Java
+21158,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+21159,Swift
+21160,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+21161,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;WebAssembly
+21162,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;VBA
+21163,HTML/CSS;JavaScript;PHP
+21164,HTML/CSS;JavaScript;PHP;SQL
+21165,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+21166,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+21167,C#;HTML/CSS;JavaScript;PHP;SQL
+21168,Java;JavaScript;Kotlin;TypeScript
+21169,Bash/Shell/PowerShell;Java;Kotlin
+21170,Bash/Shell/PowerShell;Go;Java;Kotlin;Scala;SQL
+21171,Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;JavaScript;Kotlin;Python;R;Ruby;Rust;Scala;SQL;Other(s):
+21172,JavaScript
+21173,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+21174,HTML/CSS;Java;JavaScript;Python;SQL
+21175,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+21176,C++;C#;Java;SQL
+21177,C#;JavaScript;SQL
+21178,Assembly;C++;HTML/CSS;JavaScript
+21179,C#;HTML/CSS;JavaScript;SQL
+21180,Bash/Shell/PowerShell;C++;C#;HTML/CSS;SQL
+21181,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+21182,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+21184,Bash/Shell/PowerShell;C;Clojure;Python;SQL
+21185,HTML/CSS;JavaScript
+21186,HTML/CSS;JavaScript;PHP
+21187,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+21188,HTML/CSS;JavaScript;Python;SQL
+21189,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+21190,Python;R
+21191,Bash/Shell/PowerShell;C;Python
+21192,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+21193,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;Python;Rust;Scala;SQL;Swift
+21194,Erlang;Go;JavaScript;PHP;SQL;TypeScript;Other(s):
+21196,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;SQL;Other(s):
+21197,Bash/Shell/PowerShell;Elixir;Python;SQL
+21198,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+21199,C#;JavaScript
+21200,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Swift
+21201,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+21202,HTML/CSS;Java;JavaScript
+21203,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+21204,C++;Java;Python
+21205,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+21206,HTML/CSS;Java;JavaScript;SQL
+21207,C;C++;HTML/CSS;Java;SQL
+21208,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+21209,HTML/CSS;JavaScript;Python
+21210,HTML/CSS;PHP
+21211,Java
+21212,Bash/Shell/PowerShell;C++;Python
+21213,Java;Scala
+21214,Assembly;C;Java;Objective-C;PHP
+21215,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+21216,C;C++;HTML/CSS;JavaScript;PHP;Python;VBA
+21217,HTML/CSS;JavaScript;PHP;Other(s):
+21218,HTML/CSS;Java;PHP;VBA
+21219,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+21220,C#;HTML/CSS;Python
+21221,HTML/CSS;JavaScript;PHP
+21222,Go;HTML/CSS;JavaScript;TypeScript;WebAssembly
+21223,C++;Clojure;Java
+21224,JavaScript
+21225,Java;Kotlin;VBA
+21226,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+21227,Java
+21228,HTML/CSS;Java;JavaScript;Python
+21229,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+21230,C#;JavaScript;TypeScript
+21231,HTML/CSS;Java;JavaScript;Python
+21232,C#;HTML/CSS;JavaScript
+21233,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+21234,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Python
+21235,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL
+21236,C#;HTML/CSS;JavaScript;PHP;TypeScript
+21237,Go;HTML/CSS;Python
+21238,Clojure;HTML/CSS;JavaScript;Scala;SQL
+21239,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21240,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift;TypeScript
+21241,C;C++;Java;Kotlin
+21242,Assembly
+21243,Python;SQL
+21244,Assembly;HTML/CSS;JavaScript;Python;SQL
+21245,C#;SQL
+21247,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Rust
+21248,HTML/CSS;JavaScript
+21249,C++;Go;HTML/CSS;JavaScript;Python;SQL
+21250,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+21251,HTML/CSS;Java;JavaScript;SQL
+21252,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+21253,Bash/Shell/PowerShell;JavaScript
+21254,C#;SQL
+21255,Bash/Shell/PowerShell;C;C++;Python
+21256,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+21257,C++;C#;Java;Objective-C
+21258,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+21259,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Other(s):
+21260,C++;HTML/CSS;JavaScript;SQL
+21261,C#;HTML/CSS;JavaScript;PHP
+21262,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21263,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+21264,C;C++;HTML/CSS
+21265,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+21266,Java;Kotlin;Objective-C;Swift
+21267,C#
+21268,C++;HTML/CSS;JavaScript;SQL
+21269,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;SQL
+21270,Bash/Shell/PowerShell;Python;R;SQL
+21271,Clojure;HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+21272,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+21273,JavaScript;Python;SQL
+21274,HTML/CSS;Java;JavaScript;SQL
+21275,C++;SQL
+21276,Bash/Shell/PowerShell;Java;Python
+21277,HTML/CSS;PHP;SQL
+21278,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+21279,HTML/CSS;Java;Python
+21280,Assembly;Bash/Shell/PowerShell;Java;Python;Rust;SQL
+21281,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+21282,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+21283,Bash/Shell/PowerShell;SQL
+21284,Python
+21285,C;C++;C#;JavaScript
+21286,Java;Other(s):
+21287,C#;HTML/CSS;JavaScript;SQL
+21288,Assembly;Bash/Shell/PowerShell;C;C++;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+21289,HTML/CSS;JavaScript
+21290,Bash/Shell/PowerShell;C;C++;Python
+21291,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+21292,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+21293,C;C++;HTML/CSS;JavaScript;Python
+21294,Assembly;Bash/Shell/PowerShell;C++;Python;Rust;TypeScript
+21295,C;Python
+21296,Bash/Shell/PowerShell;Java
+21297,Swift
+21298,HTML/CSS;JavaScript;PHP;SQL
+21299,HTML/CSS;JavaScript
+21300,Bash/Shell/PowerShell;Go;Python;SQL
+21301,HTML/CSS;Java;JavaScript;Python;SQL
+21302,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+21303,C#
+21304,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+21305,C#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+21306,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;Python
+21307,C#;HTML/CSS;JavaScript
+21308,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+21309,Elixir;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+21310,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+21311,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;R;SQL;Swift
+21312,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+21313,R
+21314,Python;SQL
+21315,C++;HTML/CSS;Java;Kotlin;PHP;SQL;Swift
+21316,C;C++
+21317,Go;HTML/CSS;Java;JavaScript;SQL
+21318,C++
+21319,HTML/CSS;JavaScript;Objective-C;SQL;Other(s):
+21320,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+21321,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+21322,Bash/Shell/PowerShell;Python;SQL
+21324,Bash/Shell/PowerShell;Go;Java
+21325,HTML/CSS;JavaScript;SQL
+21326,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+21327,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+21328,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+21329,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript
+21330,Bash/Shell/PowerShell;Python;R;SQL
+21331,HTML/CSS;Java;JavaScript;Python;TypeScript
+21332,C;C++
+21333,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+21334,C;HTML/CSS;Java
+21335,HTML/CSS;JavaScript;PHP
+21336,HTML/CSS;JavaScript;Python;SQL
+21337,C#;HTML/CSS;JavaScript;PHP;Python
+21338,Python;SQL
+21339,JavaScript;Kotlin;Swift
+21340,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript
+21341,Bash/Shell/PowerShell;Go;PHP;SQL
+21342,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+21343,C#;HTML/CSS;Java;JavaScript;SQL
+21344,Bash/Shell/PowerShell;C++
+21345,C#;HTML/CSS;Java;JavaScript;Python;SQL
+21346,HTML/CSS
+21347,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;Other(s):
+21348,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;Python
+21349,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby
+21350,Go;HTML/CSS;Java;JavaScript;Python;SQL
+21351,Bash/Shell/PowerShell;Python;R
+21352,HTML/CSS;PHP;Python
+21353,C#;Python
+21354,JavaScript
+21355,HTML/CSS;JavaScript;TypeScript
+21356,HTML/CSS;JavaScript;SQL
+21357,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Rust;SQL;VBA;WebAssembly
+21358,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+21359,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Kotlin;Python;SQL;Swift
+21360,Bash/Shell/PowerShell;Python;SQL
+21361,Java;Objective-C;Swift
+21362,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+21363,C#;Dart;Go;SQL
+21364,HTML/CSS;JavaScript;PHP;SQL
+21365,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+21366,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+21367,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+21368,Bash/Shell/PowerShell;PHP;Python;SQL
+21369,C#;JavaScript;Objective-C;Python;Swift
+21370,C;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+21371,Bash/Shell/PowerShell;C;Java;JavaScript;PHP
+21372,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+21373,HTML/CSS;JavaScript;SQL;TypeScript
+21374,Assembly;C;C++;Java;SQL
+21375,Objective-C;Swift
+21376,HTML/CSS;JavaScript;SQL;VBA
+21377,C#;SQL
+21378,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+21379,C;C++
+21380,HTML/CSS;Java;JavaScript;TypeScript
+21381,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21382,C++;Java;Python
+21383,C;C++;HTML/CSS;JavaScript;PHP;SQL
+21384,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;SQL
+21385,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA;WebAssembly
+21386,Python
+21387,HTML/CSS;Java;Kotlin;SQL
+21388,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+21389,Kotlin;Python
+21390,C#
+21391,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+21392,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+21393,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+21394,Assembly;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Other(s):
+21395,C#;HTML/CSS;JavaScript;SQL;TypeScript
+21396,Java;Kotlin
+21397,Objective-C;Ruby;SQL;Swift
+21398,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+21399,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL;Swift;TypeScript
+21400,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+21401,C#;JavaScript;Python;Other(s):
+21402,HTML/CSS
+21403,Java;Swift
+21404,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+21405,C;HTML/CSS;JavaScript;TypeScript
+21406,C;C++;HTML/CSS;Java;JavaScript;PHP
+21407,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+21408,HTML/CSS;JavaScript;TypeScript
+21409,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+21410,C++;Python;SQL
+21411,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+21412,HTML/CSS;JavaScript;PHP;SQL
+21413,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Kotlin;Python;Rust;SQL
+21414,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+21415,PHP
+21416,C;C++;Python;SQL
+21417,Java;Swift
+21418,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL;TypeScript;Other(s):
+21419,HTML/CSS;Java;JavaScript;Python;Ruby
+21420,HTML/CSS;JavaScript;TypeScript
+21421,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+21422,HTML/CSS;JavaScript;SQL
+21423,HTML/CSS;JavaScript;PHP;SQL
+21424,Bash/Shell/PowerShell;Java;PHP;SQL
+21425,HTML/CSS;JavaScript
+21426,C#;HTML/CSS;JavaScript;SQL;VBA
+21427,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Rust;TypeScript
+21428,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python
+21429,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21430,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+21431,HTML/CSS;JavaScript;Ruby;TypeScript
+21432,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+21433,HTML/CSS;Java;JavaScript;SQL;Other(s):
+21434,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL
+21435,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+21436,Swift
+21437,C++;C#;HTML/CSS;JavaScript
+21438,Java
+21439,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+21440,HTML/CSS;PHP;SQL
+21441,C#;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+21442,C++;C#;HTML/CSS;Java;JavaScript;SQL
+21443,Bash/Shell/PowerShell;C;Python
+21444,JavaScript;PHP;SQL
+21445,HTML/CSS;JavaScript;PHP;Python;TypeScript
+21446,Python;SQL;Other(s):
+21447,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21448,C#;HTML/CSS;JavaScript;PHP;SQL
+21449,Bash/Shell/PowerShell;Python
+21450,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL
+21451,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+21452,C++;JavaScript;Python;Rust
+21453,Java;TypeScript
+21455,Swift
+21456,C++;C#;SQL;VBA
+21457,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+21458,HTML/CSS;JavaScript;PHP;TypeScript
+21459,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL
+21460,Java;PHP;SQL
+21461,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+21462,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+21463,Scala
+21464,HTML/CSS;JavaScript;PHP
+21465,C#;HTML/CSS;JavaScript;SQL
+21466,C;HTML/CSS;JavaScript;PHP
+21467,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+21468,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+21469,C#;HTML/CSS;JavaScript
+21470,C
+21471,PHP;Python;SQL
+21473,HTML/CSS;Java
+21474,HTML/CSS;JavaScript;PHP;Python;SQL
+21475,Bash/Shell/PowerShell;C++;C#;SQL
+21476,HTML/CSS;JavaScript;PHP
+21477,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+21478,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+21479,HTML/CSS;JavaScript;SQL;TypeScript
+21480,Bash/Shell/PowerShell;Java;Kotlin;SQL
+21481,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+21482,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;Other(s):
+21483,C#;HTML/CSS
+21484,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+21485,Bash/Shell/PowerShell;C;C#;Python
+21486,HTML/CSS;JavaScript;PHP;SQL
+21487,C#;HTML/CSS;JavaScript;SQL
+21488,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL;TypeScript
+21489,C#;Clojure;HTML/CSS;Java;JavaScript;Python
+21490,SQL;Other(s):
+21491,Assembly;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+21492,Bash/Shell/PowerShell;C++;Python
+21493,Bash/Shell/PowerShell;C;Erlang;Go;Java;JavaScript;Python;Rust
+21494,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+21495,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+21496,C#;JavaScript;Python;SQL;VBA
+21497,HTML/CSS;Java;PHP;SQL
+21498,PHP;SQL
+21499,Elixir
+21500,Python;Scala;SQL
+21501,C;HTML/CSS;Python
+21502,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+21503,Bash/Shell/PowerShell;Go;SQL
+21504,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+21505,Java
+21506,PHP
+21507,C;C++;C#;VBA
+21508,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL
+21509,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript;WebAssembly
+21510,Bash/Shell/PowerShell;C++;Go;JavaScript;Python
+21511,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+21512,C
+21513,Java;JavaScript;Python;SQL;TypeScript
+21514,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+21515,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;PHP;Python;Scala;SQL
+21516,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+21517,Assembly;C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+21518,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+21520,HTML/CSS;Java;JavaScript;TypeScript
+21521,C#;HTML/CSS;JavaScript;PHP;SQL
+21522,HTML/CSS;Java;JavaScript;Other(s):
+21523,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+21524,HTML/CSS;JavaScript;SQL
+21525,Python;R
+21526,HTML/CSS;JavaScript;Python;Rust
+21527,Java;SQL
+21528,C++;C#;HTML/CSS;Java;JavaScript;R;SQL
+21529,Bash/Shell/PowerShell;JavaScript;SQL;Swift
+21530,C;C#;HTML/CSS;JavaScript;SQL
+21531,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+21532,HTML/CSS;Java;JavaScript;PHP;SQL
+21533,Java
+21534,Bash/Shell/PowerShell;JavaScript;Swift
+21535,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;Rust
+21536,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+21537,Python;R;VBA
+21538,Bash/Shell/PowerShell;Python;R;SQL
+21539,Bash/Shell/PowerShell;PHP;Python
+21540,Bash/Shell/PowerShell;HTML/CSS;Python;R
+21541,HTML/CSS;JavaScript;PHP
+21542,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+21543,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript;WebAssembly
+21544,HTML/CSS;JavaScript;Python;R;SQL
+21545,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+21546,C;C++;C#;Dart;Go;HTML/CSS;JavaScript;Python;Rust;Other(s):
+21547,C#;HTML/CSS;JavaScript;SQL
+21548,HTML/CSS;Python
+21549,C++;Go;Python;TypeScript
+21550,C#;HTML/CSS;JavaScript;SQL;WebAssembly
+21551,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;SQL
+21552,Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+21553,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+21554,Bash/Shell/PowerShell;C;C++
+21555,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+21556,Bash/Shell/PowerShell;Go;JavaScript;R;Ruby;SQL;TypeScript;Other(s):
+21557,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby
+21558,Bash/Shell/PowerShell;Python;Other(s):
+21559,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift;Other(s):
+21560,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21561,C#;HTML/CSS;TypeScript
+21562,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+21563,Go;HTML/CSS;Java;JavaScript;Python;SQL
+21564,C;Objective-C;Python;Swift
+21565,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+21566,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Ruby
+21567,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+21568,HTML/CSS;Java;JavaScript;SQL
+21569,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;SQL
+21570,C++;C#;SQL
+21571,JavaScript;Swift
+21572,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;SQL
+21573,C++;C#;Clojure;Dart;Java;Kotlin;Scala
+21574,Python;R
+21575,HTML/CSS;JavaScript;PHP;SQL
+21576,HTML/CSS;JavaScript;Python;R;SQL
+21577,C++;Python
+21578,JavaScript;PHP;SQL;TypeScript
+21579,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Ruby
+21580,C;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+21581,Bash/Shell/PowerShell;C#;JavaScript
+21582,C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+21583,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+21584,Bash/Shell/PowerShell;Java;SQL
+21585,Bash/Shell/PowerShell;Python;SQL
+21586,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+21587,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+21588,Ruby;Scala;SQL
+21589,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+21590,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+21591,Python;R
+21592,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+21593,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+21594,Bash/Shell/PowerShell;C#;SQL;VBA
+21595,C;SQL
+21596,Java;Kotlin;SQL
+21597,Bash/Shell/PowerShell;Python;SQL
+21598,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21599,HTML/CSS;JavaScript;Swift;VBA
+21600,HTML/CSS;JavaScript;Ruby;SQL
+21601,JavaScript
+21602,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+21603,Dart;Kotlin;SQL
+21604,C;C++;HTML/CSS;Java;JavaScript;SQL
+21605,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+21606,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;VBA
+21607,Bash/Shell/PowerShell;C++;C#;F#;JavaScript;Python;R;SQL;TypeScript;VBA
+21608,C#;JavaScript;SQL;TypeScript
+21609,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+21610,HTML/CSS;Java
+21611,C#;SQL
+21612,HTML/CSS;JavaScript;PHP;Python
+21613,Java
+21614,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+21615,HTML/CSS;Java;JavaScript;SQL;TypeScript
+21616,Bash/Shell/PowerShell;C;Python;Other(s):
+21617,Bash/Shell/PowerShell;C;C++;Java;Python
+21618,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+21619,C#
+21620,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+21621,Go;HTML/CSS;Java;JavaScript;Objective-C;Scala;SQL;Swift;TypeScript
+21622,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+21623,Bash/Shell/PowerShell;C#;Erlang;Go;HTML/CSS;JavaScript;Python;Scala;SQL;WebAssembly
+21624,C;Go;HTML/CSS;Java;Python;Ruby;Rust;SQL;Other(s):
+21625,Java;JavaScript;PHP
+21626,C#;Java
+21627,Go;HTML/CSS;JavaScript;SQL
+21628,Java;JavaScript;Scala;SQL
+21629,HTML/CSS;JavaScript;PHP;Python;SQL
+21630,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;VBA
+21631,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+21632,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+21633,HTML/CSS;JavaScript;PHP;SQL
+21634,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+21635,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+21636,Clojure;HTML/CSS;Java;JavaScript;SQL
+21638,Assembly;C;C++;C#;Python
+21639,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+21640,Assembly;Bash/Shell/PowerShell;C;C++;Python
+21641,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+21642,HTML/CSS;JavaScript;PHP;SQL
+21643,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+21644,Assembly;Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;Ruby
+21645,HTML/CSS;JavaScript;PHP
+21646,Bash/Shell/PowerShell;C;C++;Rust
+21647,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+21648,C#;HTML/CSS;VBA
+21649,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+21650,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+21651,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+21652,C;C++;Dart;HTML/CSS;JavaScript;Rust;SQL;Swift;TypeScript;WebAssembly
+21653,Python
+21654,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+21655,C++;HTML/CSS;JavaScript;PHP;Python
+21656,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21657,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+21658,Bash/Shell/PowerShell;Go;Python
+21659,HTML/CSS;JavaScript;Ruby
+21660,HTML/CSS;JavaScript;Ruby;SQL
+21661,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+21662,HTML/CSS;JavaScript;PHP;Ruby;SQL
+21663,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+21664,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+21665,HTML/CSS;JavaScript;PHP;SQL
+21666,C;C++;HTML/CSS;PHP;Python
+21667,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+21668,HTML/CSS;Java;JavaScript;Swift
+21669,C#;JavaScript;Swift
+21670,Go;Java;PHP;Python;SQL
+21671,JavaScript;Scala;SQL
+21672,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+21673,C;C#;HTML/CSS;JavaScript;SQL;VBA
+21674,C#;Java;PHP;Python
+21675,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+21676,HTML/CSS;JavaScript;PHP;SQL
+21677,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+21678,C#;SQL
+21680,Bash/Shell/PowerShell;JavaScript
+21681,C;C++;C#;Java;SQL
+21682,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+21683,Go;HTML/CSS;JavaScript;Ruby
+21684,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+21685,Python;SQL
+21686,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+21687,HTML/CSS;Java;JavaScript;Kotlin
+21688,Java;JavaScript;PHP;Python
+21689,Bash/Shell/PowerShell;Python;SQL;VBA
+21690,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+21691,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+21692,C;HTML/CSS;Java;JavaScript;TypeScript
+21693,C++;C#;HTML/CSS;Java;JavaScript;Python
+21694,C#
+21695,Java;Kotlin
+21696,HTML/CSS;JavaScript;PHP
+21697,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+21698,C#
+21699,Bash/Shell/PowerShell;C++;Python;Other(s):
+21700,C++;C#;Java;JavaScript;PHP;SQL
+21701,C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;Swift;TypeScript
+21702,HTML/CSS;JavaScript;PHP;Python;SQL
+21703,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+21704,C#;Python;SQL
+21705,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+21706,HTML/CSS;Java;PHP;SQL
+21707,Objective-C;Swift
+21708,HTML/CSS;Java;JavaScript;SQL
+21709,C++;Java;JavaScript;Python;Rust;TypeScript
+21710,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+21711,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+21712,C++;Java;Python;SQL
+21713,Python
+21714,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Rust;Other(s):
+21715,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+21716,C#;HTML/CSS;JavaScript;SQL;TypeScript
+21717,Elixir;Erlang;HTML/CSS;JavaScript;Ruby;Rust;TypeScript
+21718,Bash/Shell/PowerShell;Python;SQL
+21719,Bash/Shell/PowerShell;Python;Ruby;Swift
+21720,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+21721,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+21722,Java;PHP
+21723,Java;JavaScript;SQL
+21724,Bash/Shell/PowerShell;SQL
+21725,Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;Ruby
+21726,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+21727,HTML/CSS;JavaScript;Python
+21728,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+21729,HTML/CSS;JavaScript;SQL;TypeScript
+21730,Bash/Shell/PowerShell;JavaScript;Kotlin;Python;Scala
+21731,Bash/Shell/PowerShell;Java;VBA
+21732,Java;JavaScript;Python;Other(s):
+21733,HTML/CSS;JavaScript
+21734,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+21735,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+21736,C++;Other(s):
+21737,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+21738,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+21739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+21740,Assembly;C++;C#;Elixir;F#;Go
+21741,JavaScript;TypeScript
+21742,C#;TypeScript
+21743,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+21744,Java;SQL
+21745,JavaScript;Ruby;SQL
+21746,HTML/CSS;JavaScript;PHP
+21747,C++;Python
+21748,HTML/CSS;JavaScript;TypeScript
+21749,C;C++;Dart;HTML/CSS;Java;JavaScript;Python
+21750,Bash/Shell/PowerShell;JavaScript;PHP;TypeScript
+21751,C#
+21753,Bash/Shell/PowerShell;JavaScript;TypeScript
+21754,C++;Java
+21755,Java;Kotlin;TypeScript
+21756,Python;SQL
+21757,Go;HTML/CSS;JavaScript;Python
+21758,Java;JavaScript
+21759,HTML/CSS;Java;JavaScript;SQL
+21760,SQL;VBA;Other(s):
+21761,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Swift
+21762,Bash/Shell/PowerShell;C;C++;Python
+21763,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+21764,Python;SQL
+21765,C#;HTML/CSS;JavaScript
+21766,HTML/CSS;Java;JavaScript;PHP;SQL
+21767,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;TypeScript
+21768,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+21769,Bash/Shell/PowerShell;C;C++;Objective-C;Swift
+21770,C;C++;C#;HTML/CSS;SQL;TypeScript
+21771,JavaScript
+21772,C#
+21773,JavaScript;SQL;Other(s):
+21774,C;C++;VBA
+21775,C;C++;C#
+21776,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+21777,HTML/CSS;Java;TypeScript
+21778,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21779,C;Go;HTML/CSS;Java;JavaScript;SQL
+21780,C++;Go;HTML/CSS;JavaScript;Python
+21781,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;VBA
+21782,HTML/CSS;JavaScript;TypeScript
+21783,Java;Kotlin;SQL
+21784,Python;Rust
+21785,C#;HTML/CSS;JavaScript;SQL
+21786,HTML/CSS;JavaScript;PHP
+21787,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+21788,HTML/CSS;JavaScript
+21789,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+21790,C#;SQL
+21791,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+21792,Bash/Shell/PowerShell;Go;PHP;Python
+21793,C#;SQL
+21794,C#;HTML/CSS;JavaScript;SQL;TypeScript
+21795,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL
+21796,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+21797,Bash/Shell/PowerShell;Java;Python;SQL
+21798,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+21799,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+21800,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+21801,Bash/Shell/PowerShell;Clojure;JavaScript;Rust;TypeScript;WebAssembly
+21803,HTML/CSS;JavaScript;PHP;SQL
+21804,Assembly;Java;JavaScript;PHP;SQL
+21805,JavaScript;Python
+21806,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+21807,C#;HTML/CSS;JavaScript;SQL;TypeScript
+21808,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+21809,C#;JavaScript;TypeScript
+21810,JavaScript;Other(s):
+21811,Assembly;C++;C#;HTML/CSS;JavaScript
+21812,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21813,Bash/Shell/PowerShell;C;C++;Python;SQL
+21814,Bash/Shell/PowerShell;Java;JavaScript;Python
+21815,Python;Other(s):
+21816,HTML/CSS;JavaScript;PHP
+21817,HTML/CSS;JavaScript;SQL
+21818,C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+21819,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+21820,C#;Java;JavaScript;SQL
+21821,HTML/CSS;JavaScript;Kotlin;Python;SQL
+21822,C#;HTML/CSS;Objective-C;PHP;Python;R;SQL;VBA
+21823,C#;JavaScript
+21824,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+21825,HTML/CSS;JavaScript;Python;Ruby;SQL
+21827,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+21828,C#;Dart;HTML/CSS;JavaScript;PHP;SQL
+21829,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+21830,Java;JavaScript;Kotlin;Python;TypeScript
+21831,HTML/CSS;Java;PHP;SQL;TypeScript
+21832,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+21833,Java;Python
+21834,HTML/CSS;JavaScript
+21835,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+21836,C;C++
+21837,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+21838,C#;SQL;VBA;Other(s):
+21839,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+21840,C;C++;JavaScript
+21841,C#
+21842,HTML/CSS;JavaScript
+21843,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+21844,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin
+21845,HTML/CSS;JavaScript
+21846,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+21847,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+21848,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+21849,Go;Java;JavaScript;PHP;SQL
+21850,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+21851,C++;Python
+21852,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+21853,HTML/CSS;Python
+21854,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+21855,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Scala;SQL;TypeScript
+21856,Bash/Shell/PowerShell;C;C++;C#;PHP;Python
+21857,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+21858,C;Java;JavaScript;TypeScript
+21859,HTML/CSS;Java;JavaScript;SQL
+21860,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+21861,Go;HTML/CSS;JavaScript;PHP
+21862,C;C++;Java;Kotlin;Ruby;SQL
+21863,Assembly;Bash/Shell/PowerShell;C;C++;Java
+21864,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL
+21865,Assembly;HTML/CSS;Java;JavaScript;TypeScript
+21866,Java
+21867,Bash/Shell/PowerShell;Java;Python;Ruby
+21868,Bash/Shell/PowerShell;JavaScript;Python
+21869,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+21870,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+21872,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+21873,C#;Go;HTML/CSS;JavaScript;TypeScript
+21874,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+21875,HTML/CSS;JavaScript;PHP
+21876,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;R;SQL;VBA
+21877,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+21878,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+21880,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+21881,C#;HTML/CSS;JavaScript;Ruby;TypeScript;Other(s):
+21882,Bash/Shell/PowerShell;PHP;Python;SQL
+21883,HTML/CSS;JavaScript
+21884,C#;HTML/CSS;JavaScript;Python;SQL
+21885,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+21886,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+21887,HTML/CSS;Java;JavaScript
+21888,C#;HTML/CSS;JavaScript;SQL
+21889,HTML/CSS;Java;JavaScript
+21890,C#;HTML/CSS;JavaScript;SQL
+21891,Java;JavaScript
+21892,C#;HTML/CSS;JavaScript;SQL
+21893,Java;Python;R;Scala
+21894,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+21895,Java;JavaScript;SQL
+21896,Python;R;SQL
+21897,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+21898,C++;PHP;Python
+21899,HTML/CSS;Java;JavaScript;SQL
+21900,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+21901,C;C++;Python;R
+21902,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+21903,Bash/Shell/PowerShell;C;C++;Python
+21904,Bash/Shell/PowerShell;Python
+21905,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+21906,C;Go;Python
+21907,C#;HTML/CSS;JavaScript;TypeScript
+21908,Bash/Shell/PowerShell;C++;SQL
+21909,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;Scala;SQL;Swift;TypeScript
+21910,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Swift
+21911,Go;HTML/CSS;JavaScript;TypeScript
+21912,Bash/Shell/PowerShell;R
+21913,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+21915,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL;Swift
+21916,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+21917,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+21918,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;R;SQL
+21919,PHP
+21920,C;HTML/CSS;Python
+21921,C++;Go;JavaScript
+21922,Swift
+21923,Bash/Shell/PowerShell;C++;Python
+21924,C#;F#;HTML/CSS;JavaScript;Rust;TypeScript
+21925,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA
+21926,C;C++;HTML/CSS;JavaScript;PHP;SQL
+21927,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+21928,Bash/Shell/PowerShell;C++;C#;Java;Python;SQL
+21929,Assembly;C++;HTML/CSS;Java;Python
+21930,C++;HTML/CSS
+21931,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+21932,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+21933,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+21934,Go;Java;Python;Scala
+21935,C;C++;C#;Java;SQL;Other(s):
+21936,HTML/CSS;JavaScript;Python
+21937,HTML/CSS;JavaScript;PHP;SQL
+21938,HTML/CSS;JavaScript
+21939,Bash/Shell/PowerShell;Java;JavaScript;SQL
+21940,Bash/Shell/PowerShell;C;C++;C#
+21941,HTML/CSS;JavaScript;Python;SQL
+21942,C#;HTML/CSS;JavaScript;SQL
+21943,C#;HTML/CSS;JavaScript;SQL;TypeScript
+21944,Bash/Shell/PowerShell;JavaScript;Python;SQL
+21945,Assembly;Bash/Shell/PowerShell
+21946,HTML/CSS;PHP;SQL
+21947,Bash/Shell/PowerShell;C;C++;Python
+21948,HTML/CSS;Java;JavaScript;PHP;SQL
+21949,HTML/CSS;JavaScript;PHP;SQL
+21950,C++;HTML/CSS;Java;Scala;TypeScript
+21951,HTML/CSS;JavaScript;PHP
+21952,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+21953,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+21954,C#;JavaScript;PHP;Python;SQL;TypeScript
+21955,Assembly;C;VBA
+21956,C;Go;Java;PHP;Python;SQL
+21957,Python
+21958,JavaScript;SQL
+21959,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+21960,HTML/CSS;Python
+21961,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+21962,HTML/CSS;JavaScript;PHP
+21963,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript;Other(s):
+21964,Go;HTML/CSS;JavaScript;Python;SQL
+21965,HTML/CSS;JavaScript;Python;TypeScript
+21966,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python
+21967,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+21968,Python
+21969,HTML/CSS;Python;SQL
+21970,HTML/CSS;JavaScript;PHP
+21971,C++;HTML/CSS;JavaScript;SQL
+21972,C++;HTML/CSS;Java;JavaScript;Ruby
+21973,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+21974,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+21975,C#;HTML/CSS;JavaScript;SQL
+21976,C#;SQL
+21977,C#;Objective-C;Swift;VBA
+21979,HTML/CSS;Java;JavaScript;Python;Swift
+21980,C#;HTML/CSS;JavaScript
+21981,C#
+21982,HTML/CSS;JavaScript;PHP;SQL
+21983,C;C++;Java
+21984,C#;JavaScript;SQL;Other(s):
+21985,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+21986,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+21987,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+21988,Bash/Shell/PowerShell;PHP;SQL
+21989,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+21990,HTML/CSS;Other(s):
+21991,Objective-C;Swift
+21992,HTML/CSS;JavaScript;Ruby;SQL
+21993,C#;JavaScript;SQL
+21994,Assembly;Bash/Shell/PowerShell;C;Clojure;Rust;Other(s):
+21995,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+21996,Bash/Shell/PowerShell;C++;HTML/CSS;Objective-C;Python;SQL;Swift
+21997,HTML/CSS;Java;JavaScript;PHP;SQL
+21998,C#;HTML/CSS;JavaScript;SQL
+21999,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22001,C++;HTML/CSS
+22002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+22003,HTML/CSS;JavaScript;Python;SQL
+22004,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+22005,HTML/CSS;Java;JavaScript;Python;SQL
+22006,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+22007,C#;VBA
+22008,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+22009,C;C#;HTML/CSS;Java;JavaScript;SQL
+22010,JavaScript;Python;TypeScript
+22011,JavaScript;Other(s):
+22012,HTML/CSS;JavaScript;SQL;Other(s):
+22013,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL;Other(s):
+22014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift
+22015,Java;Python;Other(s):
+22016,C#;HTML/CSS;JavaScript
+22017,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+22018,C;C++;Java;Python;SQL
+22019,C;C++;Java;JavaScript;Other(s):
+22020,C++;C#;HTML/CSS;JavaScript;Other(s):
+22021,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22022,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;TypeScript
+22023,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+22024,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+22025,Bash/Shell/PowerShell;C;C++;Python;R
+22026,C#;Python;SQL;VBA
+22027,Java;SQL
+22028,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22029,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22030,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22031,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL;VBA
+22032,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;R;Other(s):
+22033,C++;HTML/CSS;Java;JavaScript;SQL
+22034,Bash/Shell/PowerShell;C++;C#;Python
+22035,C++;Python
+22036,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22037,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+22038,Dart;Java;PHP
+22039,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Swift
+22040,C#;HTML/CSS;JavaScript;Python;SQL
+22041,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;WebAssembly
+22042,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+22043,HTML/CSS;Java;JavaScript;SQL
+22044,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+22045,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+22046,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22047,C;HTML/CSS;Java;JavaScript;SQL;VBA
+22048,HTML/CSS;Java;JavaScript;Kotlin;Python
+22049,Java
+22050,HTML/CSS;JavaScript;Swift;TypeScript
+22051,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22052,Java;JavaScript;TypeScript
+22053,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+22054,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+22055,C;HTML/CSS;JavaScript;Python
+22056,Bash/Shell/PowerShell;Python;SQL;Other(s):
+22057,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+22058,Bash/Shell/PowerShell;C++;Python;SQL
+22059,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+22060,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+22062,HTML/CSS;JavaScript;Python;R
+22063,HTML/CSS;Java;JavaScript;Python;SQL
+22064,Java;Kotlin;Python
+22065,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+22066,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Rust;TypeScript
+22067,Bash/Shell/PowerShell;Python
+22068,JavaScript;Python;TypeScript
+22069,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript
+22070,Bash/Shell/PowerShell;Python;SQL
+22071,HTML/CSS;Java;JavaScript;SQL
+22072,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+22073,Java;JavaScript
+22074,C#;Python;Other(s):
+22075,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Scala
+22076,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+22077,C#;HTML/CSS;JavaScript;SQL
+22078,JavaScript;PHP
+22079,C#;HTML/CSS;JavaScript;SQL
+22080,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL;TypeScript
+22081,Bash/Shell/PowerShell;C++;Python;R
+22082,Go;Python
+22083,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22084,C#;SQL
+22085,Bash/Shell/PowerShell;Java;JavaScript
+22086,Bash/Shell/PowerShell;Python;Other(s):
+22087,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL
+22088,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+22089,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Ruby;SQL
+22090,C;C++;Other(s):
+22091,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+22092,C++;C#;HTML/CSS;Java;PHP;SQL
+22093,Java;Python;SQL
+22094,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;SQL;TypeScript;Other(s):
+22095,Python
+22096,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+22097,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+22098,C#;VBA
+22099,Assembly;C++
+22100,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+22101,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+22102,HTML/CSS;Java;JavaScript;Ruby;SQL
+22103,Dart;HTML/CSS;JavaScript;Python;R
+22104,C#;Python;SQL
+22105,C#
+22106,C++;HTML/CSS;JavaScript;SQL
+22107,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+22108,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Scala;SQL;TypeScript
+22109,Assembly;C;C++;Objective-C;Python;SQL;Swift
+22110,HTML/CSS;JavaScript;PHP;SQL
+22111,Bash/Shell/PowerShell;Go;Python
+22112,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22113,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;PHP;SQL
+22114,C#;HTML/CSS;JavaScript;SQL;VBA
+22115,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+22117,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;SQL;Swift
+22118,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;SQL
+22119,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+22120,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+22121,HTML/CSS;JavaScript;Ruby;SQL;Swift
+22122,Java;Python;Ruby
+22123,Java;Python;SQL;VBA
+22124,Java;Kotlin;SQL
+22125,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+22126,C++;C#;Java;Kotlin;Python;Other(s):
+22127,Bash/Shell/PowerShell;C++;Python
+22128,HTML/CSS;JavaScript;SQL;Other(s):
+22129,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;SQL
+22130,Bash/Shell/PowerShell;C++;Python
+22131,C#;SQL
+22132,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Swift
+22133,C#;SQL;Other(s):
+22134,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22135,Bash/Shell/PowerShell;C#;PHP;Scala
+22136,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+22137,C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+22138,C#;HTML/CSS;JavaScript;TypeScript
+22139,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+22140,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+22141,Java;JavaScript;Objective-C;Ruby;SQL;Swift
+22142,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+22143,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+22144,HTML/CSS;JavaScript;TypeScript
+22145,C;C++;HTML/CSS;Java;JavaScript
+22146,C#;Python
+22147,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+22148,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+22149,HTML/CSS;Java;JavaScript;PHP;SQL
+22150,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+22151,C#;HTML/CSS;Java;JavaScript;Python
+22152,HTML/CSS;JavaScript;PHP;SQL
+22153,Bash/Shell/PowerShell;C#;Python;SQL
+22154,C#;HTML/CSS;JavaScript;SQL
+22155,Bash/Shell/PowerShell;Go;Ruby
+22156,Assembly;C++;Python;R;Other(s):
+22157,C;C++;HTML/CSS;Java;JavaScript;SQL;Swift
+22158,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+22159,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C
+22160,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+22161,Bash/Shell/PowerShell;C;C++;Go;Other(s):
+22162,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Rust;Other(s):
+22163,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+22165,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+22166,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+22167,C++;C#;HTML/CSS;JavaScript;SQL
+22169,Objective-C;Swift
+22170,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+22171,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+22172,HTML/CSS;JavaScript;TypeScript
+22173,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+22174,C++;HTML/CSS;PHP;Python;R;SQL
+22175,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+22176,C#;SQL
+22177,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+22178,C;C++;HTML/CSS;Java;PHP;SQL
+22179,Java;JavaScript;SQL;Other(s):
+22180,HTML/CSS;JavaScript
+22181,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+22183,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+22184,JavaScript;TypeScript
+22185,C#;HTML/CSS;Java;Python;SQL;TypeScript
+22186,HTML/CSS;JavaScript;PHP;SQL
+22187,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+22188,Bash/Shell/PowerShell;HTML/CSS;TypeScript
+22189,HTML/CSS;Java;Python;Other(s):
+22190,C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C
+22191,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+22193,C++;C#;PHP;SQL;WebAssembly
+22194,C#;HTML/CSS;TypeScript
+22195,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+22196,C#;VBA
+22197,HTML/CSS;Java;JavaScript;PHP;TypeScript
+22198,C;C++;C#;Clojure;Erlang;HTML/CSS;Java;JavaScript;Objective-C;Scala;Swift;TypeScript
+22199,Kotlin
+22200,C++;Python
+22201,HTML/CSS;JavaScript;Python;Scala
+22202,HTML/CSS;Java;JavaScript;PHP;SQL
+22203,C;C++;Python
+22204,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+22205,HTML/CSS;JavaScript;TypeScript
+22206,Java;SQL
+22207,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Scala
+22208,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Ruby;SQL;Swift
+22209,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22210,Java
+22211,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+22212,Dart;HTML/CSS;JavaScript;SQL;TypeScript
+22213,C#;Java;JavaScript;PHP;Python;TypeScript
+22214,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+22215,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22216,Swift;Other(s):
+22217,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Rust;Swift
+22218,C;HTML/CSS;Python
+22219,Assembly;C;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript;VBA;Other(s):
+22220,HTML/CSS;JavaScript
+22221,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala
+22222,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+22223,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+22224,HTML/CSS;Python;R
+22225,Bash/Shell/PowerShell;Python;SQL
+22226,Bash/Shell/PowerShell;C++;Python
+22228,JavaScript
+22229,Bash/Shell/PowerShell;C++;C#;Python;SQL;Other(s):
+22230,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R
+22231,Bash/Shell/PowerShell;C;C++;Java;Python;R;Scala;SQL
+22232,Python;R;SQL
+22233,Java;JavaScript
+22234,Bash/Shell/PowerShell;C++;Go;JavaScript;Python
+22235,C;C++;Java;JavaScript;Python
+22237,Java;JavaScript;SQL
+22238,C#;HTML/CSS;JavaScript;Python;SQL
+22239,C;Java;JavaScript;PHP;SQL;TypeScript
+22240,Elixir;HTML/CSS;JavaScript;TypeScript
+22241,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+22242,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22243,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22244,Java;Python;SQL
+22245,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+22246,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+22247,Assembly;C;C++;C#;Java;Objective-C;Python
+22248,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;TypeScript
+22249,C++;HTML/CSS;Python;SQL
+22250,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+22251,Swift
+22252,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL;Other(s):
+22253,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+22254,C#;Kotlin
+22255,Bash/Shell/PowerShell;C#;JavaScript;SQL;Swift;TypeScript
+22256,Python;Other(s):
+22257,C#;JavaScript
+22258,HTML/CSS;JavaScript;PHP;SQL
+22259,HTML/CSS;JavaScript;PHP;SQL
+22260,HTML/CSS;JavaScript;Python;SQL;VBA
+22261,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;Python
+22262,HTML/CSS;PHP
+22263,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;Swift
+22264,Java;JavaScript;SQL
+22265,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+22266,HTML/CSS;JavaScript;PHP;SQL
+22267,Assembly;Bash/Shell/PowerShell;C;C++;Python;R;SQL
+22268,Bash/Shell/PowerShell;C++;Java;Python;Scala
+22269,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22270,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+22271,C;C++;Java
+22272,Clojure;Dart;Erlang;Kotlin
+22273,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+22274,HTML/CSS;JavaScript;TypeScript
+22275,Bash/Shell/PowerShell;C#;Java;JavaScript;TypeScript
+22276,C;C++;Python
+22277,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22278,C#;Python;Swift
+22279,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22280,C#;HTML/CSS;Java
+22281,C;C++;C#;F#;Java;Kotlin;Python;Rust;TypeScript
+22282,Assembly;C;C#;Java;SQL
+22283,C#;HTML/CSS;Java
+22284,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+22285,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+22286,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+22287,PHP;Python;R;SQL
+22288,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;TypeScript
+22290,Python;SQL;VBA
+22291,C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+22292,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+22293,C#;HTML/CSS;JavaScript;SQL
+22294,HTML/CSS;Kotlin;Swift
+22295,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby
+22296,Java;SQL
+22297,HTML/CSS;JavaScript;Python
+22298,C#;HTML/CSS;JavaScript;SQL
+22299,Bash/Shell/PowerShell;C;C++;Python
+22300,C;C++;C#;Python
+22301,Bash/Shell/PowerShell;C++;C#
+22303,C;C++;Python
+22304,C++;C#;Go;HTML/CSS;Java;JavaScript;SQL
+22305,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Swift;TypeScript
+22306,Bash/Shell/PowerShell;C;C++;JavaScript;Python;R;SQL;Swift
+22307,C++;C#;HTML/CSS;Java;JavaScript;SQL
+22308,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+22309,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+22310,C;Other(s):
+22311,Elixir;JavaScript;Ruby;SQL
+22312,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+22313,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala
+22314,C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+22315,Python
+22316,HTML/CSS;JavaScript
+22317,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+22318,C#;HTML/CSS;JavaScript;SQL
+22319,C++;HTML/CSS;JavaScript;Python
+22320,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;TypeScript
+22321,C#;HTML/CSS;JavaScript;SQL;VBA
+22322,Swift
+22323,C;C++;C#;Java;SQL
+22324,Bash/Shell/PowerShell;Go;Python
+22325,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+22326,Python;SQL
+22327,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+22328,C++;C#;HTML/CSS;SQL
+22329,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+22330,C#;SQL;Other(s):
+22331,Bash/Shell/PowerShell;C#;JavaScript;Other(s):
+22332,Java;JavaScript;Python;TypeScript
+22333,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+22334,C#;PHP
+22336,C
+22338,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+22339,C#;Go;Java;Python;R;SQL
+22340,Bash/Shell/PowerShell;Go;Python
+22341,Bash/Shell/PowerShell;JavaScript;PHP;Python;Ruby
+22342,Python;SQL
+22343,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+22344,Python
+22345,C#;HTML/CSS;JavaScript;SQL
+22346,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+22347,Bash/Shell/PowerShell;C++;Clojure;Elixir;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+22348,Go;Java
+22349,Java;JavaScript;Python;SQL
+22350,C++;C#;F#;HTML/CSS;TypeScript
+22351,C;VBA
+22352,HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+22353,Java;JavaScript;Kotlin;Python;SQL
+22354,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+22355,HTML/CSS;JavaScript;PHP;Swift
+22356,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+22357,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Ruby
+22358,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;SQL
+22359,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+22360,C#;HTML/CSS;TypeScript
+22361,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+22362,C#;SQL
+22363,HTML/CSS;JavaScript;PHP
+22364,C#;Erlang;Go;Java;JavaScript;Python
+22365,Java;PHP;SQL
+22366,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+22367,Assembly;Dart;HTML/CSS;JavaScript;PHP;TypeScript
+22368,C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+22369,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22370,Java
+22371,C++;Python
+22372,HTML/CSS;JavaScript;PHP;Ruby
+22373,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;SQL;TypeScript;Other(s):
+22374,C#;HTML/CSS;PHP;SQL;VBA;Other(s):
+22375,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+22376,HTML/CSS;JavaScript;PHP
+22377,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+22378,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python
+22379,C++;JavaScript;Objective-C
+22380,C++;C#
+22381,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+22382,JavaScript
+22383,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+22384,C#;HTML/CSS;JavaScript;PHP;Other(s):
+22385,C;Java;Kotlin;Python;SQL;TypeScript
+22386,Bash/Shell/PowerShell;HTML/CSS;Python;TypeScript
+22387,Bash/Shell/PowerShell;Java;Python;SQL
+22388,C;C++;Java
+22389,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+22390,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+22391,Java;Python
+22392,HTML/CSS;Java;JavaScript;SQL
+22393,Java;Python
+22394,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+22395,HTML/CSS;JavaScript;PHP;SQL
+22396,Java;Kotlin;SQL
+22397,C#;SQL
+22398,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript;VBA;WebAssembly
+22399,HTML/CSS;Java;JavaScript;SQL;TypeScript
+22400,HTML/CSS;JavaScript;Python;TypeScript
+22401,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22402,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+22403,Bash/Shell/PowerShell;Java;JavaScript;PHP
+22404,Assembly;C;F#;Rust;Other(s):
+22405,HTML/CSS;Scala;SQL;TypeScript
+22406,C#;Other(s):
+22407,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;SQL
+22408,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+22409,HTML/CSS;JavaScript;Swift;TypeScript
+22410,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+22411,C;JavaScript;Python
+22412,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+22413,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+22414,Bash/Shell/PowerShell;Scala;SQL
+22415,C#;HTML/CSS;SQL;TypeScript
+22416,C++;HTML/CSS;Java;JavaScript;PHP
+22417,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+22418,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22419,Bash/Shell/PowerShell;Python;Scala;SQL
+22420,C++;HTML/CSS;Java;Objective-C;PHP;SQL;Swift;TypeScript;VBA
+22421,C#;Dart;Erlang;SQL;TypeScript
+22422,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+22423,Go;Java;Python
+22424,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22425,HTML/CSS;JavaScript;Swift
+22426,Go;JavaScript;Python;SQL
+22427,C;Java;Python;R;SQL;VBA
+22428,Bash/Shell/PowerShell;C++;Python
+22429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+22430,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+22431,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python;Rust;SQL;VBA
+22433,HTML/CSS;Java;JavaScript;PHP;SQL
+22434,HTML/CSS;JavaScript;Ruby
+22435,Bash/Shell/PowerShell;C;Java;Python
+22436,Java
+22437,HTML/CSS;Java;JavaScript;PHP
+22438,HTML/CSS;JavaScript
+22439,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+22440,HTML/CSS;Java;PHP;Python;SQL
+22441,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+22442,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL;VBA
+22443,C#;HTML/CSS;Java;JavaScript
+22444,C#;Java;JavaScript;Kotlin
+22445,Bash/Shell/PowerShell;Go;Python;SQL
+22446,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22447,Assembly;C;C++
+22448,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+22449,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+22450,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+22451,Bash/Shell/PowerShell;Python;R;SQL
+22452,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript;Other(s):
+22453,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+22454,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+22455,HTML/CSS;JavaScript;PHP
+22456,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+22457,C;C++;Python;VBA
+22458,HTML/CSS;JavaScript;PHP;TypeScript
+22459,HTML/CSS;JavaScript;Python
+22460,C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+22461,C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+22462,Java;TypeScript
+22463,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+22464,Java;Python
+22465,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift
+22466,Bash/Shell/PowerShell;C#;HTML/CSS;Ruby;SQL;Other(s):
+22467,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+22468,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;SQL;Swift;TypeScript
+22469,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22470,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+22471,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Other(s):
+22472,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+22473,C;C++;Java;Python
+22475,C#;HTML/CSS;JavaScript;SQL
+22476,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+22477,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+22478,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+22479,HTML/CSS;JavaScript;SQL;TypeScript
+22480,Assembly;Bash/Shell/PowerShell;C;Java
+22481,Bash/Shell/PowerShell;Java;JavaScript;SQL;Other(s):
+22482,C#;JavaScript
+22483,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+22484,C;C++;C#;PHP;Python;SQL;VBA
+22485,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+22486,Bash/Shell/PowerShell;C;C++;Go;Python;Rust
+22487,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;Ruby;SQL;Swift
+22488,Go;Scala
+22489,HTML/CSS;Java;JavaScript;Kotlin
+22490,HTML/CSS;JavaScript
+22491,HTML/CSS;JavaScript;PHP;SQL
+22492,C++
+22493,C++;Java;JavaScript;PHP
+22494,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+22495,HTML/CSS;JavaScript;TypeScript
+22496,C;Java;Python
+22497,C#;Java;JavaScript;Python;Other(s):
+22498,Assembly;C;C++;SQL
+22499,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+22500,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+22501,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22502,HTML/CSS;JavaScript;PHP;SQL
+22503,Assembly;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22504,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+22505,C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+22506,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+22507,HTML/CSS;JavaScript;Python;SQL;TypeScript
+22508,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+22509,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+22510,Go;Python;Rust;SQL;VBA
+22512,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+22513,C;Python
+22514,C;C++;JavaScript;Python
+22515,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+22516,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;R;SQL
+22517,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+22518,JavaScript;TypeScript
+22519,C;C++;Java
+22520,Bash/Shell/PowerShell;C++;JavaScript
+22521,Bash/Shell/PowerShell;C
+22522,HTML/CSS;Python;R;SQL
+22523,HTML/CSS;JavaScript;PHP;SQL
+22524,HTML/CSS;JavaScript;Ruby;SQL
+22525,HTML/CSS;Java;JavaScript;Python;SQL
+22526,C#;Java;PHP;Python
+22527,Bash/Shell/PowerShell;C++;Java;JavaScript;Scala;SQL
+22528,Python;Rust
+22529,C#;HTML/CSS;Java;JavaScript;Kotlin;Swift
+22530,C#;SQL;Swift
+22531,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+22532,C;C#
+22533,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+22534,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+22535,SQL;Swift
+22536,Bash/Shell/PowerShell;C;HTML/CSS;Java
+22537,Bash/Shell/PowerShell;Java;Ruby;SQL
+22538,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22539,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R
+22540,Assembly;Bash/Shell/PowerShell;C;Go;Java;Python;R;Rust;Other(s):
+22541,Java
+22542,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL;Other(s):
+22543,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22544,C#;JavaScript;SQL
+22545,Bash/Shell/PowerShell;Java;SQL
+22546,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+22547,HTML/CSS;JavaScript;Python;SQL
+22548,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;VBA
+22549,Java;SQL
+22550,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+22551,C;HTML/CSS;Objective-C;VBA
+22552,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+22553,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+22554,C#
+22555,HTML/CSS;JavaScript;Python
+22556,HTML/CSS;Java;Kotlin;PHP;Python
+22557,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+22558,C#;Java;Python;Other(s):
+22559,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+22560,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+22561,C#;Go;Python
+22562,Bash/Shell/PowerShell;C;C++
+22563,C#;HTML/CSS;Java;JavaScript;SQL
+22564,HTML/CSS;Java;R
+22565,Assembly;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+22566,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL;WebAssembly
+22567,HTML/CSS;Java;JavaScript;SQL
+22568,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+22569,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22570,C#;HTML/CSS;Java;JavaScript;SQL
+22571,HTML/CSS;JavaScript;Ruby;SQL
+22572,Assembly
+22573,C++;C#;Python;Other(s):
+22574,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+22575,C;C++;C#;Python
+22576,C#;Java;JavaScript
+22577,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+22578,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;VBA;WebAssembly;Other(s):
+22579,C#;Java;JavaScript;PHP
+22580,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22581,Bash/Shell/PowerShell;C#
+22582,C;HTML/CSS;JavaScript;PHP;SQL
+22583,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+22584,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+22585,HTML/CSS;JavaScript;PHP;Python
+22586,C#;HTML/CSS;JavaScript;Python;SQL
+22587,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+22588,C#;HTML/CSS;JavaScript;SQL
+22589,HTML/CSS;JavaScript;TypeScript
+22590,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22591,C;C++;Ruby
+22592,HTML/CSS;JavaScript;PHP;SQL
+22593,C#;HTML/CSS;Java;JavaScript;SQL
+22594,HTML/CSS;JavaScript;PHP;Python;SQL
+22595,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+22596,C;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+22597,Bash/Shell/PowerShell;JavaScript;Python
+22598,C;Clojure;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript;Other(s):
+22599,Bash/Shell/PowerShell;C#;JavaScript;Python
+22600,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;SQL
+22601,R;SQL
+22602,C++;C#;HTML/CSS;Python;SQL
+22603,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+22604,HTML/CSS;Java;JavaScript;SQL;TypeScript
+22605,C#;HTML/CSS;JavaScript;SQL;VBA
+22606,Assembly;C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;R
+22607,Bash/Shell/PowerShell;JavaScript;Python
+22608,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+22609,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL
+22610,HTML/CSS;JavaScript
+22611,HTML/CSS;JavaScript;PHP;SQL
+22612,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+22613,HTML/CSS;JavaScript;TypeScript
+22614,C++;C#;HTML/CSS;JavaScript;SQL
+22615,Bash/Shell/PowerShell;Python;Other(s):
+22616,Java
+22617,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22618,Bash/Shell/PowerShell;C;C++;Other(s):
+22619,JavaScript;Ruby;Swift;TypeScript
+22620,C#;HTML/CSS;JavaScript;SQL
+22621,C++;Java;Python
+22622,C++;C#;Objective-C;SQL
+22623,Clojure;Go;JavaScript;Python;Ruby;SQL
+22624,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22625,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+22626,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+22627,HTML/CSS;JavaScript
+22628,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+22629,HTML/CSS;Python;SQL;Other(s):
+22630,HTML/CSS;JavaScript;PHP;SQL
+22631,HTML/CSS;JavaScript;PHP
+22632,C++;HTML/CSS;Python;SQL
+22633,C;HTML/CSS;Java;PHP;Python
+22634,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+22635,Python
+22636,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Scala;SQL
+22637,Java;Scala
+22638,HTML/CSS;JavaScript;PHP;Python;SQL
+22639,C#;HTML/CSS;Java;JavaScript;SQL
+22640,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+22641,C#;JavaScript;SQL;TypeScript;VBA
+22642,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;Other(s):
+22643,Python
+22644,C++;JavaScript;Kotlin;TypeScript;Other(s):
+22645,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22646,Assembly;C#;HTML/CSS;JavaScript;SQL
+22647,JavaScript;Kotlin
+22648,Bash/Shell/PowerShell;C#;Other(s):
+22649,HTML/CSS;Java;JavaScript;PHP
+22650,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+22651,Bash/Shell/PowerShell;C;C++;Python;VBA
+22652,Bash/Shell/PowerShell;Python;R;SQL
+22653,Bash/Shell/PowerShell;Java;SQL
+22654,HTML/CSS;JavaScript;Other(s):
+22655,Ruby
+22656,Java;Kotlin
+22657,C++;Python
+22658,HTML/CSS;JavaScript;SQL;TypeScript
+22659,C++;C#;TypeScript
+22660,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+22661,Bash/Shell/PowerShell;C;C++;Python
+22662,C;C++;C#;Java
+22663,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Ruby;SQL
+22664,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+22665,Java
+22666,C#;Java;SQL
+22667,Java;Python
+22668,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Scala;SQL
+22669,Dart;Java;JavaScript;Kotlin;Swift
+22670,C++;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+22671,Bash/Shell/PowerShell;C#;Java
+22672,Java;JavaScript;SQL
+22673,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22674,Java;PHP;SQL
+22675,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22676,HTML/CSS;JavaScript;PHP;Python;TypeScript
+22677,Python
+22678,Java;SQL
+22679,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+22680,Java;JavaScript;Python;SQL;TypeScript
+22681,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;JavaScript;Rust;SQL;TypeScript
+22682,C;C++;Java;JavaScript;SQL
+22683,HTML/CSS;JavaScript
+22685,Bash/Shell/PowerShell;C++;Python
+22686,Bash/Shell/PowerShell;Java;JavaScript;SQL
+22687,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Kotlin;Python;SQL;Other(s):
+22688,Assembly;C;Python
+22689,C;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+22690,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript
+22691,Java;PHP;SQL;Other(s):
+22692,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+22693,HTML/CSS;JavaScript;Other(s):
+22694,Dart;Java;Kotlin
+22695,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+22696,HTML/CSS;Java;JavaScript;SQL;TypeScript
+22697,HTML/CSS;JavaScript;PHP;SQL
+22698,C#;HTML/CSS;JavaScript;SQL;Other(s):
+22699,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+22700,C++;Go;HTML/CSS;Java;JavaScript;Python
+22701,C;Dart;HTML/CSS;Java;Python;Other(s):
+22702,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;VBA
+22703,HTML/CSS;Java
+22704,C#
+22705,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+22706,C#;Erlang;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+22707,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;TypeScript;Other(s):
+22708,Assembly;Java;Python
+22709,Dart;Objective-C;Swift
+22710,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+22711,C++;C#;Java;JavaScript;Kotlin;Other(s):
+22712,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+22713,C#;HTML/CSS;JavaScript
+22714,Java
+22715,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;TypeScript
+22716,HTML/CSS;Java;JavaScript;SQL
+22717,Bash/Shell/PowerShell;Python
+22718,Bash/Shell/PowerShell;JavaScript;Python;SQL
+22719,Java;Kotlin
+22720,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+22721,Python;SQL
+22722,Dart;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+22723,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+22724,C#
+22725,C;HTML/CSS;JavaScript;PHP;SQL
+22726,Go;Java
+22727,HTML/CSS;Java
+22728,C#;HTML/CSS;Java;JavaScript;Python;SQL
+22729,HTML/CSS;JavaScript;PHP;SQL;VBA
+22730,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+22731,C;C++;C#
+22732,PHP
+22733,Bash/Shell/PowerShell;C++;Erlang;JavaScript;Python
+22734,Bash/Shell/PowerShell;C;HTML/CSS;Kotlin;Python
+22735,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+22736,C;C++;C#;Java;JavaScript;Python
+22737,HTML/CSS;JavaScript;PHP
+22738,C#;HTML/CSS;JavaScript;PHP;SQL
+22739,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;Other(s):
+22740,Assembly;HTML/CSS;JavaScript
+22741,Assembly;HTML/CSS;Java;JavaScript;SQL
+22742,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+22743,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+22744,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+22745,C;C++;HTML/CSS;JavaScript;Python
+22746,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+22747,C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+22748,Bash/Shell/PowerShell;C#;Swift
+22749,HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+22750,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+22751,PHP
+22752,HTML/CSS;JavaScript;PHP;Python;SQL
+22753,PHP
+22754,Python;Other(s):
+22755,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+22756,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+22757,HTML/CSS;Java;JavaScript;SQL
+22758,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22759,C++;C#;VBA
+22760,C#;HTML/CSS;JavaScript;SQL
+22761,C;C++;HTML/CSS;JavaScript;TypeScript
+22762,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+22763,C#;Java;JavaScript
+22764,C;Java;Python
+22765,Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+22766,JavaScript;PHP;Python;TypeScript
+22767,HTML/CSS;JavaScript
+22768,HTML/CSS;JavaScript;PHP;Other(s):
+22769,HTML/CSS;JavaScript
+22770,C++;JavaScript;Python
+22771,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;VBA;Other(s):
+22772,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+22773,Bash/Shell/PowerShell;C#
+22774,HTML/CSS;JavaScript;PHP;Python
+22775,Java;Other(s):
+22776,C#;Go;Java;Kotlin;Ruby;Scala
+22777,HTML/CSS;JavaScript;PHP;TypeScript
+22778,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+22779,Bash/Shell/PowerShell;C;C++;Java;Python
+22780,Bash/Shell/PowerShell;Python
+22781,C#;Erlang;Go;PHP;SQL
+22782,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+22783,C;C++;HTML/CSS;JavaScript;Python;SQL
+22784,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+22785,HTML/CSS;JavaScript
+22786,Bash/Shell/PowerShell;C;C++;Python;SQL
+22787,Bash/Shell/PowerShell;Java
+22788,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22789,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+22790,C#;Dart;HTML/CSS;JavaScript;Python;R;SQL
+22791,C;C++;Java;JavaScript;Python;Ruby;Scala
+22792,Bash/Shell/PowerShell;C;C++;PHP;Python;R
+22793,C;C++;Python
+22794,Go;Java;JavaScript;Kotlin
+22795,Java;SQL
+22796,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;Other(s):
+22797,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+22798,HTML/CSS;JavaScript
+22799,C#;HTML/CSS;JavaScript
+22800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+22801,HTML/CSS;JavaScript;Ruby
+22802,Java;JavaScript;SQL
+22803,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+22804,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+22805,C#
+22806,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python
+22807,C++;C#;Python;SQL
+22808,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;Other(s):
+22809,C#;HTML/CSS;SQL
+22810,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+22811,Bash/Shell/PowerShell;C;C++;Other(s):
+22812,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+22813,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+22814,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+22815,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;R;SQL
+22816,Bash/Shell/PowerShell;C;HTML/CSS;PHP;SQL
+22817,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL;Other(s):
+22818,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+22819,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python
+22820,Bash/Shell/PowerShell;C;C++;Dart;Elixir;Go;Python;SQL
+22821,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;PHP;TypeScript
+22822,HTML/CSS;Java;JavaScript
+22823,Bash/Shell/PowerShell;C#;SQL;VBA
+22824,Bash/Shell/PowerShell
+22825,JavaScript;Scala;Swift;TypeScript
+22826,HTML/CSS;JavaScript;Python;SQL
+22827,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+22828,Bash/Shell/PowerShell;C;Java;Python
+22829,Assembly;R
+22830,HTML/CSS;Java;JavaScript
+22831,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+22832,Assembly;C;C++;C#;Python;Rust
+22833,PHP
+22834,Bash/Shell/PowerShell;Python;Other(s):
+22835,C;HTML/CSS;Python;R
+22836,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C
+22837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+22838,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+22839,Java
+22840,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+22841,HTML/CSS;JavaScript
+22842,C#;JavaScript;TypeScript
+22843,Java;Objective-C;Swift;Other(s):
+22844,HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+22845,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+22846,C#;HTML/CSS;JavaScript
+22847,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+22848,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+22849,C#;JavaScript;SQL
+22850,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+22851,JavaScript;Python;TypeScript
+22852,Bash/Shell/PowerShell;C;C++;Dart;Java;Python;Other(s):
+22853,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22854,C#;HTML/CSS;Java;JavaScript;Python
+22855,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL;VBA
+22856,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;R;SQL
+22857,C#;SQL
+22858,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22859,C#;HTML/CSS;JavaScript;SQL;TypeScript
+22860,C;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+22861,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+22862,JavaScript;Python;SQL
+22864,HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+22866,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+22867,C#;Java
+22868,Bash/Shell/PowerShell;C;C++;R;SQL
+22869,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+22870,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+22871,Java;Python
+22872,Bash/Shell/PowerShell;PHP;Python;SQL
+22873,HTML/CSS;Java;JavaScript;Ruby;SQL
+22874,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;Other(s):
+22875,Bash/Shell/PowerShell;C#;Elixir;Erlang;Go;HTML/CSS;JavaScript;SQL
+22877,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+22878,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+22879,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+22880,C;C++;JavaScript;Objective-C
+22881,Bash/Shell/PowerShell;C;C++;Java;Python
+22882,HTML/CSS;Java;JavaScript;PHP;TypeScript
+22883,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Other(s):
+22884,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+22885,C#;HTML/CSS;JavaScript;SQL
+22886,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP
+22887,HTML/CSS;JavaScript;PHP;SQL
+22888,HTML/CSS;JavaScript;Python
+22889,C;Go;Java
+22891,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+22892,HTML/CSS;Java;JavaScript;Ruby;SQL
+22893,Assembly;C;HTML/CSS;JavaScript;Python
+22894,C#;HTML/CSS;Java;SQL
+22895,Assembly;C;C++;Java;Python
+22896,C#;HTML/CSS;Java;JavaScript;TypeScript
+22897,C#;SQL
+22898,C++;Java;Objective-C
+22899,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;Scala
+22900,C;C++;Python;SQL
+22901,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+22902,Java;JavaScript
+22903,Go;JavaScript;Ruby;SQL
+22904,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+22905,Assembly;C#;HTML/CSS;JavaScript;Python;Other(s):
+22907,C++;HTML/CSS;JavaScript;Python;SQL;VBA
+22908,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+22909,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript;WebAssembly
+22910,Assembly
+22911,C;C++;JavaScript;Python
+22912,C#;JavaScript;Python;TypeScript
+22913,C#;HTML/CSS;Java;JavaScript
+22914,C++;C#;Java;SQL
+22915,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Ruby;TypeScript
+22916,Java;JavaScript
+22917,HTML/CSS;PHP;SQL
+22918,C;HTML/CSS;JavaScript;PHP;SQL
+22919,C#;Java;Python;R;SQL
+22920,Assembly;C;C++;C#;HTML/CSS;Java;PHP;Python;R;SQL
+22921,HTML/CSS;Python;Other(s):
+22922,HTML/CSS;JavaScript
+22923,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22924,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;Python
+22925,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+22926,R;SQL
+22927,Java;SQL
+22928,Bash/Shell/PowerShell;JavaScript;PHP;Ruby
+22929,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+22930,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+22931,Bash/Shell/PowerShell;C#;Elixir;Erlang;Go;Java;PHP;Python;Scala;Swift
+22932,SQL;Other(s):
+22933,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+22934,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22935,Go;HTML/CSS;Java;JavaScript;SQL
+22936,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;SQL;VBA
+22937,C;C++;HTML/CSS;JavaScript;PHP;SQL
+22938,R;SQL
+22939,Bash/Shell/PowerShell;Python;R
+22940,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;VBA
+22941,C;C++;JavaScript
+22943,Bash/Shell/PowerShell;Python
+22944,Go;HTML/CSS;JavaScript
+22945,JavaScript
+22946,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+22947,Java
+22948,C#;HTML/CSS;Java;JavaScript;Python;SQL
+22949,JavaScript;Ruby;Other(s):
+22950,C;C++;Java
+22951,C#;Java;Python
+22952,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+22953,Python
+22954,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+22955,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+22956,Assembly;C;C++;JavaScript;Python;Other(s):
+22957,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+22958,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+22959,HTML/CSS;JavaScript;PHP;Python
+22960,Bash/Shell/PowerShell;C;C++;PHP;Python;SQL
+22961,Bash/Shell/PowerShell;C;C++;Python;SQL
+22962,C++;HTML/CSS;PHP;SQL
+22963,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22964,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+22965,HTML/CSS;JavaScript;PHP
+22966,HTML/CSS;JavaScript;Python;Other(s):
+22967,HTML/CSS;JavaScript;Python;Swift
+22968,C++;Go;PHP;Python;Rust;Scala;SQL;Other(s):
+22969,C++;C#;JavaScript
+22970,HTML/CSS;PHP;SQL
+22971,Bash/Shell/PowerShell;Java;R;SQL
+22972,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+22973,Bash/Shell/PowerShell;Elixir;Ruby;SQL
+22974,Java;Kotlin
+22975,Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22976,HTML/CSS;JavaScript;TypeScript
+22977,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;PHP;Python;SQL
+22979,HTML/CSS;Objective-C;Python;Rust;SQL;TypeScript
+22980,C#;Go;HTML/CSS;Java;JavaScript;SQL
+22981,Python;R
+22982,Go;Java;JavaScript;SQL
+22983,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+22984,C#;Java;JavaScript;SQL
+22985,PHP;Other(s):
+22986,Java;Kotlin;Swift
+22987,C;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+22988,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+22989,C#;JavaScript;Python;SQL
+22990,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+22991,JavaScript;TypeScript
+22992,Java;Scala;SQL
+22993,HTML/CSS;Java;JavaScript;PHP;SQL
+22995,Java;JavaScript;SQL
+22996,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+22997,HTML/CSS;JavaScript;SQL;TypeScript
+22998,HTML/CSS;JavaScript;PHP
+22999,HTML/CSS;JavaScript;SQL
+23000,Assembly;C;C++;Java;JavaScript;Kotlin
+23001,Java;Python;SQL;VBA
+23002,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+23003,C#;PHP;SQL;Other(s):
+23004,C;C++;JavaScript;Python
+23005,C#;HTML/CSS;Java;JavaScript;Python;SQL
+23006,HTML/CSS;JavaScript;Objective-C;Swift
+23007,HTML/CSS;JavaScript;PHP;SQL
+23008,HTML/CSS;JavaScript;PHP;SQL;VBA
+23009,HTML/CSS;JavaScript
+23010,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+23011,C#;HTML/CSS;JavaScript;SQL
+23012,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;Rust
+23013,Go;HTML/CSS;JavaScript;PHP;SQL
+23014,HTML/CSS;JavaScript
+23015,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+23016,HTML/CSS;Java;JavaScript;SQL;TypeScript
+23017,Java;JavaScript;Kotlin;Python;Swift
+23018,C#;JavaScript;TypeScript
+23019,C#;HTML/CSS;JavaScript;SQL
+23020,C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R
+23021,Python;R;SQL
+23022,Bash/Shell/PowerShell;Scala;SQL
+23023,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA;Other(s):
+23024,HTML/CSS;Java;JavaScript
+23025,HTML/CSS;Java;TypeScript
+23026,HTML/CSS;JavaScript;PHP;SQL
+23027,HTML/CSS;Python;R;SQL
+23028,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+23029,C#;HTML/CSS;Java;JavaScript;Python;SQL
+23030,C#;HTML/CSS;JavaScript;SQL
+23031,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;PHP;Python;Rust;SQL
+23032,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23033,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+23034,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+23035,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23036,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23037,HTML/CSS;JavaScript;Python;SQL;Other(s):
+23038,HTML/CSS;JavaScript;PHP;SQL
+23039,C++;Java;Ruby;VBA
+23040,C#;SQL
+23041,Assembly;Bash/Shell/PowerShell;JavaScript;Python
+23042,C#;HTML/CSS;JavaScript
+23043,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+23044,Bash/Shell/PowerShell;C++;HTML/CSS;Python;Ruby
+23045,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+23046,C#;HTML/CSS;JavaScript;TypeScript
+23047,Bash/Shell/PowerShell;Clojure;Erlang;Java
+23048,C++;C#;Java;Python;SQL;VBA
+23049,Ruby
+23050,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;PHP;SQL
+23051,C++;HTML/CSS;JavaScript;PHP;SQL
+23052,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+23053,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23054,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23055,C;C++;HTML/CSS;Java;JavaScript;Python
+23056,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+23057,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Rust;SQL
+23058,HTML/CSS;JavaScript;PHP
+23059,HTML/CSS;Java;JavaScript;PHP;SQL
+23060,Bash/Shell/PowerShell;C;C++;HTML/CSS;SQL
+23061,Bash/Shell/PowerShell;C;Java;Ruby;SQL
+23062,HTML/CSS;JavaScript;PHP;Python
+23063,C#;F#;SQL
+23064,C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby
+23065,HTML/CSS;JavaScript;PHP;Python;SQL
+23066,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL
+23067,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23068,HTML/CSS;JavaScript;Ruby
+23069,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+23070,C#;HTML/CSS;JavaScript;Python;SQL
+23071,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+23072,HTML/CSS;Java;JavaScript;TypeScript
+23073,C#;SQL
+23074,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+23075,C#;Java;JavaScript;PHP;TypeScript;Other(s):
+23076,Bash/Shell/PowerShell;C++;C#;Go;Rust;TypeScript
+23077,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23078,HTML/CSS;Java;JavaScript;SQL;TypeScript
+23079,HTML/CSS;Java;JavaScript;SQL;TypeScript
+23080,C++;Python
+23081,C#;HTML/CSS;JavaScript
+23082,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23083,Python;R;Other(s):
+23084,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+23085,HTML/CSS;Java;SQL
+23086,C;C++;C#
+23087,C++;HTML/CSS;Java;JavaScript;PHP
+23088,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+23089,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;Swift
+23090,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+23091,C#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+23092,Elixir;Erlang;JavaScript;SQL
+23093,Bash/Shell/PowerShell;C++;HTML/CSS
+23094,Go;HTML/CSS;JavaScript;PHP;SQL
+23095,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23096,HTML/CSS
+23097,C#;Java;Python
+23098,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+23099,C#;HTML/CSS;JavaScript;R;SQL;Swift;TypeScript
+23100,HTML/CSS;SQL;VBA
+23101,HTML/CSS;JavaScript;PHP;SQL;VBA
+23102,C#;HTML/CSS;JavaScript;SQL
+23103,C++;Java;Python
+23104,C#;HTML/CSS;JavaScript;TypeScript
+23105,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;Scala
+23106,C#;HTML/CSS;JavaScript;Swift;TypeScript
+23107,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+23108,Java
+23109,C#;PHP;Python;R;SQL
+23110,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+23111,Bash/Shell/PowerShell;C#;Go;Java;Python
+23112,HTML/CSS;JavaScript;PHP;Python;SQL
+23113,JavaScript;Python
+23114,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+23115,C;C++;Java;Python
+23116,Java;JavaScript;PHP;Scala
+23117,C#;HTML/CSS;JavaScript
+23118,HTML/CSS;JavaScript;SQL;VBA
+23119,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+23120,C;C#;HTML/CSS;Java;SQL
+23121,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+23122,C;HTML/CSS;JavaScript;Python;SQL
+23123,HTML/CSS;JavaScript;PHP
+23124,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+23125,HTML/CSS;JavaScript;TypeScript
+23126,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+23127,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Rust;SQL;Other(s):
+23128,HTML/CSS;Swift
+23129,VBA
+23131,C#;Java;Python;SQL;TypeScript
+23132,HTML/CSS;JavaScript;PHP;Python;SQL
+23133,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+23134,Bash/Shell/PowerShell;Python;Ruby;SQL
+23135,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript
+23136,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23137,HTML/CSS;JavaScript;Kotlin;PHP
+23138,HTML/CSS;JavaScript;PHP;TypeScript
+23139,C;C++;Java;Python
+23140,Assembly;Go;HTML/CSS;Python
+23141,Bash/Shell/PowerShell;Java
+23142,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23143,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+23144,C++;C#;HTML/CSS;JavaScript;SQL
+23145,C++;HTML/CSS;Java;JavaScript;Python
+23146,C#;Python
+23147,R
+23148,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+23149,Bash/Shell/PowerShell;C;C++;Other(s):
+23150,HTML/CSS;Java;TypeScript
+23151,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP
+23152,HTML/CSS;JavaScript;PHP;SQL
+23153,HTML/CSS;JavaScript;PHP;Python
+23154,C;Java;SQL;Other(s):
+23155,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+23156,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+23157,C;C#;HTML/CSS;PHP;Python;SQL;Other(s):
+23158,C;C++
+23159,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+23160,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Scala;TypeScript
+23161,HTML/CSS;Java;JavaScript;Python;TypeScript
+23162,HTML/CSS;Java;JavaScript;Kotlin;R;Scala
+23163,JavaScript;SQL
+23164,HTML/CSS;JavaScript;PHP
+23165,HTML/CSS;Java;JavaScript;SQL
+23167,HTML/CSS;SQL;VBA;Other(s):
+23168,C#
+23169,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+23170,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+23171,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python
+23172,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Swift
+23173,Java;JavaScript;Python;SQL
+23174,C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+23175,Java
+23177,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+23178,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23179,HTML/CSS;JavaScript;PHP;SQL
+23180,C#;HTML/CSS;JavaScript;SQL
+23181,Bash/Shell/PowerShell;Go;Java;Python;Ruby
+23182,Bash/Shell/PowerShell;C;C#
+23183,Bash/Shell/PowerShell;C++;C#;Go;Java;JavaScript
+23184,HTML/CSS;Java;JavaScript;SQL
+23185,HTML/CSS;JavaScript;TypeScript
+23186,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+23187,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;SQL
+23188,Java;Python;SQL
+23189,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+23190,C#;JavaScript;PHP;Python;SQL;TypeScript
+23191,Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+23192,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+23193,C;C++;HTML/CSS;Java
+23194,Bash/Shell/PowerShell;C++;C#;Java;Python
+23195,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+23196,Python;SQL
+23197,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+23198,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+23199,C;C++;Dart;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+23200,HTML/CSS;JavaScript
+23201,HTML/CSS;PHP;Python;SQL
+23202,Other(s):
+23203,Java;Kotlin
+23204,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Rust;SQL;Other(s):
+23205,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23206,Java
+23207,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23208,C;C++
+23209,Python;VBA
+23210,C#;HTML/CSS;SQL
+23211,Assembly;C;C++;C#;Go;Rust;WebAssembly
+23212,C#;HTML/CSS;Java;JavaScript;SQL
+23213,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+23214,HTML/CSS;JavaScript;PHP;Python;R;SQL;Other(s):
+23215,C#;HTML/CSS;Java
+23216,Java;SQL
+23217,Go;Rust;Scala;TypeScript
+23218,C;JavaScript;SQL;Other(s):
+23219,HTML/CSS;JavaScript
+23220,Bash/Shell/PowerShell;C;C++;R;Ruby
+23221,C#;HTML/CSS;JavaScript
+23222,C;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+23223,C++;C#;Python
+23224,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23225,C++;C#;JavaScript;Python
+23226,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;Other(s):
+23227,Bash/Shell/PowerShell;C;C++;Java;Python;Scala
+23228,Bash/Shell/PowerShell;Go;Java;Rust;SQL
+23230,PHP
+23231,HTML/CSS;JavaScript;PHP;SQL;VBA
+23232,HTML/CSS;JavaScript;SQL;TypeScript
+23233,HTML/CSS;JavaScript;SQL;TypeScript
+23234,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23235,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+23236,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+23237,C;C++;C#;HTML/CSS;JavaScript;SQL
+23238,C++;HTML/CSS;Java;Swift
+23239,C;C++;C#;Java;JavaScript;Objective-C;Other(s):
+23240,Bash/Shell/PowerShell;Java;JavaScript;Ruby;SQL
+23242,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+23243,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23244,HTML/CSS;R;SQL;Other(s):
+23245,C#;HTML/CSS;JavaScript;PHP
+23246,C#;Java;JavaScript;PHP;Python;SQL;VBA
+23247,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+23248,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+23249,HTML/CSS;Java;JavaScript;Python;TypeScript
+23250,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Kotlin;Python
+23251,C;C++;Java
+23252,Go;Java;JavaScript;Ruby;SQL
+23253,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+23254,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+23255,C;C#;Python;SQL
+23256,C;C++;C#;F#;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+23257,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+23258,Bash/Shell/PowerShell;C;C++;Python
+23259,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript;VBA;Other(s):
+23260,Bash/Shell/PowerShell;Java
+23261,Python;SQL
+23262,Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Kotlin;Objective-C;Python;Rust;SQL;Swift
+23263,C;C++;C#;Python
+23264,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23265,C#;HTML/CSS;JavaScript;R;SQL
+23266,C;C++;Java;JavaScript;Python
+23267,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+23268,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+23269,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23270,Java;JavaScript
+23271,HTML/CSS;Java;JavaScript;SQL;TypeScript
+23272,C;C++;HTML/CSS;JavaScript;Python;TypeScript
+23273,Clojure;HTML/CSS;Java;JavaScript;Kotlin
+23274,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+23275,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+23276,Bash/Shell/PowerShell;C++
+23277,HTML/CSS;Java;JavaScript;PHP
+23278,HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL
+23280,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23281,C;C++;C#;HTML/CSS;JavaScript;PHP;VBA
+23282,C#;HTML/CSS;JavaScript;SQL
+23283,HTML/CSS;JavaScript;Python;SQL;TypeScript
+23284,C#;JavaScript;Python;SQL
+23285,C++
+23286,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;SQL
+23287,Clojure
+23288,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+23289,HTML/CSS;JavaScript;PHP;Python;SQL
+23290,Python;SQL
+23291,C;HTML/CSS;JavaScript;Python;SQL
+23292,HTML/CSS;JavaScript;Python;TypeScript
+23293,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+23294,HTML/CSS;JavaScript;PHP;Other(s):
+23295,HTML/CSS;JavaScript
+23297,HTML/CSS;Java;JavaScript;PHP;SQL
+23298,HTML/CSS;JavaScript;TypeScript
+23299,Python
+23300,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL;TypeScript
+23301,Java;Python
+23302,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+23303,Bash/Shell/PowerShell;Java;Objective-C;Python;Swift
+23304,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+23305,C;HTML/CSS
+23306,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+23307,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+23308,C#;Python;R
+23309,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+23310,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;R;SQL
+23311,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+23312,C;Java;JavaScript;Objective-C;Python;Ruby;Swift
+23313,Bash/Shell/PowerShell;C;C++;C#
+23314,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+23315,C#;JavaScript;Python;SQL
+23316,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+23317,Elixir;HTML/CSS;JavaScript;Ruby
+23318,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Objective-C;SQL;TypeScript
+23319,Java;Python
+23320,HTML/CSS;Java;JavaScript;PHP
+23321,C#;HTML/CSS;PHP;SQL;VBA
+23322,C#;HTML/CSS;JavaScript;TypeScript
+23323,HTML/CSS;Java;JavaScript;SQL
+23324,Java
+23325,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+23326,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+23327,Java;JavaScript;Python
+23328,Bash/Shell/PowerShell;JavaScript;PHP;Python
+23329,C;C++;C#;F#;Python;Rust
+23330,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+23331,HTML/CSS;JavaScript;SQL;TypeScript
+23332,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+23333,HTML/CSS;Java;SQL
+23334,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;VBA
+23335,SQL
+23336,Bash/Shell/PowerShell;Python
+23337,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23338,C#;HTML/CSS;JavaScript;Python;SQL
+23339,Python
+23340,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+23341,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+23342,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;VBA
+23343,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23344,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R
+23345,Bash/Shell/PowerShell;C;C++;Other(s):
+23346,Bash/Shell/PowerShell;C#;JavaScript
+23347,C#;Java;SQL
+23348,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+23349,C#;HTML/CSS;JavaScript;SQL
+23350,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;VBA;Other(s):
+23351,Java;JavaScript
+23352,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+23353,HTML/CSS;TypeScript
+23354,HTML/CSS;Java;JavaScript;Ruby;SQL
+23355,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23356,Clojure;HTML/CSS;Java;JavaScript;Python;Ruby
+23357,HTML/CSS;Java;JavaScript;Python
+23358,Java;Rust;SQL
+23359,Java;Other(s):
+23360,C++;PHP;SQL
+23361,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23362,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+23363,SQL
+23364,HTML/CSS;JavaScript
+23365,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23366,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift
+23367,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23368,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+23369,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+23370,C++;C#;HTML/CSS;Java;PHP;SQL
+23371,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Ruby;SQL
+23372,C#;SQL;Other(s):
+23373,HTML/CSS;JavaScript;PHP;SQL
+23374,C;C++;Java;Python
+23375,C
+23376,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+23377,HTML/CSS;JavaScript;TypeScript
+23378,C;C++;Other(s):
+23379,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+23380,Java;Python
+23381,C++;HTML/CSS;Python;TypeScript
+23382,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23384,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+23385,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+23386,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+23387,Assembly;C++;Elixir;Erlang;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Ruby;Rust;SQL;Swift;TypeScript
+23389,C;C++;C#;Python
+23390,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23391,Python;R;Other(s):
+23392,HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+23393,HTML/CSS;JavaScript;Ruby
+23394,Assembly;Bash/Shell/PowerShell;C;C++
+23395,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23396,C#;HTML/CSS;JavaScript;PHP;SQL
+23397,HTML/CSS;JavaScript;PHP;SQL
+23398,C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;WebAssembly
+23399,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+23400,JavaScript;PHP;SQL;TypeScript;Other(s):
+23401,HTML/CSS;JavaScript;PHP;Python;SQL
+23402,C++;Java;JavaScript;Python;SQL
+23403,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23404,Java;PHP
+23405,C#;HTML/CSS;JavaScript;PHP;TypeScript;WebAssembly
+23406,C++
+23407,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;Other(s):
+23408,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+23409,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;Other(s):
+23410,C#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+23411,C++;C#;Go;HTML/CSS;Java;JavaScript;TypeScript
+23412,C#;HTML/CSS;JavaScript;TypeScript
+23413,HTML/CSS;JavaScript
+23414,HTML/CSS;JavaScript
+23415,Go;HTML/CSS;JavaScript;SQL;TypeScript
+23416,C++;C#;Java;JavaScript;Kotlin
+23417,Python
+23418,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;SQL
+23419,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23420,Swift
+23421,C;C#;HTML/CSS;JavaScript;SQL
+23422,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+23423,HTML/CSS;JavaScript;Python;SQL
+23424,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+23425,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23426,HTML/CSS;Java;JavaScript;Python;SQL
+23427,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+23428,Bash/Shell/PowerShell;C++;Java;Kotlin;Python;SQL
+23429,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+23430,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23431,Java;Objective-C;Swift
+23432,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+23433,C#;HTML/CSS;JavaScript;SQL
+23434,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+23435,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+23436,SQL;Other(s):
+23437,C;HTML/CSS;JavaScript;Python;R
+23438,C;Dart;Java;JavaScript;SQL;TypeScript
+23439,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+23440,C;Go;HTML/CSS;Java;JavaScript;Python
+23441,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+23442,HTML/CSS;JavaScript
+23443,C#;HTML/CSS;JavaScript;SQL;VBA
+23444,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+23445,Java
+23446,C#;HTML/CSS;JavaScript
+23447,HTML/CSS;JavaScript;PHP;Python;R;SQL
+23448,C#;Erlang;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23449,Assembly;Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+23450,HTML/CSS;Java;JavaScript;SQL
+23451,HTML/CSS;JavaScript;PHP
+23452,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;Scala;SQL
+23453,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+23454,HTML/CSS;JavaScript
+23455,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+23456,HTML/CSS;Java;JavaScript
+23457,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23458,SQL;Other(s):
+23459,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+23460,HTML/CSS;Java;JavaScript;Kotlin
+23461,Go;HTML/CSS;JavaScript;Python;SQL
+23462,C#;JavaScript;SQL;Swift
+23463,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Rust;SQL;TypeScript;Other(s):
+23464,C#;HTML/CSS;JavaScript;SQL
+23465,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+23466,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+23467,Java;SQL
+23468,C;C++;Java;SQL
+23469,Bash/Shell/PowerShell;C;Objective-C;Python;SQL
+23470,Assembly;C;HTML/CSS;Java;Python
+23471,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+23472,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+23473,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+23474,JavaScript;PHP;SQL;TypeScript
+23475,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;Other(s):
+23476,Bash/Shell/PowerShell;Python;SQL
+23477,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23478,HTML/CSS;JavaScript;TypeScript;Other(s):
+23479,C#;HTML/CSS;JavaScript;SQL
+23480,HTML/CSS;JavaScript;PHP;SQL
+23481,C;C++;C#;HTML/CSS;Java;Python
+23482,C#;HTML/CSS;R;SQL;TypeScript
+23483,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+23484,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+23485,C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+23486,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+23487,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;WebAssembly;Other(s):
+23488,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+23489,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;SQL
+23490,HTML/CSS;JavaScript;SQL;TypeScript
+23491,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+23492,Python;SQL;VBA
+23493,Bash/Shell/PowerShell;Objective-C;Swift
+23494,Python;Ruby;Swift
+23495,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA;Other(s):
+23496,C;C++;C#;Python
+23497,C#;Java;PHP;Other(s):
+23498,PHP
+23499,Bash/Shell/PowerShell;Go;Java;Python;SQL;TypeScript
+23501,HTML/CSS;JavaScript;PHP
+23502,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+23503,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23504,Java;JavaScript;Kotlin
+23505,Python
+23506,HTML/CSS;JavaScript;PHP
+23507,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+23508,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23509,C;HTML/CSS;Java;SQL
+23510,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+23511,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+23512,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+23513,HTML/CSS;JavaScript;SQL
+23514,C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;SQL
+23515,Go;Python;R
+23516,Java
+23517,HTML/CSS;Java;JavaScript
+23518,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript
+23519,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+23520,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+23521,Python
+23522,C#;HTML/CSS;Java;JavaScript;SQL
+23523,Java;SQL
+23524,C++;Go;Java;JavaScript;Python;SQL
+23525,C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+23526,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+23527,Assembly;Bash/Shell/PowerShell;C;C++;F#;Go;Python;Rust;SQL;Other(s):
+23528,C#;HTML/CSS
+23529,Python;SQL
+23530,Clojure;Go;HTML/CSS;JavaScript;Scala;SQL
+23531,C;HTML/CSS;Python;R;Ruby
+23532,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python
+23533,C#;HTML/CSS;JavaScript;TypeScript
+23534,Bash/Shell/PowerShell;C;C#;Python
+23535,HTML/CSS;JavaScript;Scala;TypeScript
+23536,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+23537,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+23538,Java;JavaScript;SQL
+23540,C;C++;JavaScript;Kotlin;Objective-C;Swift
+23541,HTML/CSS;JavaScript;PHP;SQL
+23542,C#;JavaScript;PHP
+23543,C;Clojure;Elixir;Go;Python;Ruby;SQL
+23544,C;Java;SQL;Other(s):
+23545,C#
+23546,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+23547,HTML/CSS;JavaScript;TypeScript
+23548,C#;HTML/CSS;Java;JavaScript;Python;SQL
+23549,Java;JavaScript
+23550,Objective-C;Swift
+23551,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+23552,HTML/CSS;Java;JavaScript
+23553,HTML/CSS;JavaScript;PHP
+23554,C#;JavaScript;Python;SQL;TypeScript
+23555,JavaScript;Ruby;SQL
+23556,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+23557,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+23558,HTML/CSS;PHP;Swift
+23559,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+23560,C;C++;HTML/CSS;Python
+23561,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+23562,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23563,Java;JavaScript
+23564,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+23565,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;Other(s):
+23566,Assembly;Bash/Shell/PowerShell;C;C++;Objective-C;Python
+23567,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Scala;WebAssembly
+23568,Bash/Shell/PowerShell;C#;Python;SQL
+23569,HTML/CSS;JavaScript;Python;TypeScript
+23570,HTML/CSS;JavaScript;TypeScript
+23571,HTML/CSS;JavaScript;Python;R
+23572,Java;Kotlin
+23573,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+23574,Java;PHP;Python;R;SQL
+23575,Java;PHP
+23576,Bash/Shell/PowerShell;Java;Python
+23577,C++;C#;Java;JavaScript;Objective-C;SQL
+23578,Bash/Shell/PowerShell;SQL;VBA;Other(s):
+23579,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+23580,C#;HTML/CSS;SQL;VBA;Other(s):
+23581,Java;SQL
+23582,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+23583,Java;JavaScript
+23584,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+23585,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Ruby
+23586,Bash/Shell/PowerShell;C;C++
+23587,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Rust;TypeScript
+23588,C++;Python;SQL
+23589,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+23590,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+23591,HTML/CSS;Java;JavaScript;PHP
+23592,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+23593,Bash/Shell/PowerShell;Java;Rust;SQL
+23594,JavaScript;Python;Scala;Other(s):
+23595,C++;Java;Python
+23596,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+23597,C++;JavaScript;PHP;SQL;TypeScript
+23598,Bash/Shell/PowerShell;Java;SQL
+23599,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23600,HTML/CSS;Java;JavaScript;SQL;TypeScript
+23601,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;TypeScript
+23602,HTML/CSS;Java;JavaScript
+23604,HTML/CSS;Java;JavaScript
+23605,C++;Python
+23606,Java;Ruby;Scala;SQL
+23607,C#;SQL
+23608,HTML/CSS;Java;Scala;TypeScript
+23609,Bash/Shell/PowerShell;Java;JavaScript;PHP;VBA
+23610,JavaScript;PHP;Other(s):
+23611,C#;Other(s):
+23612,Bash/Shell/PowerShell;R;SQL
+23613,HTML/CSS;JavaScript;PHP;SQL
+23614,C;Java;JavaScript;Python
+23615,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+23616,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL;TypeScript
+23617,C#;HTML/CSS;Java;JavaScript;PHP;Swift
+23618,Bash/Shell/PowerShell;C++;Python;R;SQL
+23619,Go;HTML/CSS;JavaScript;PHP;SQL
+23620,JavaScript;PHP;SQL;Other(s):
+23621,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+23622,Other(s):
+23623,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23624,Assembly;C;C++;C#
+23625,Bash/Shell/PowerShell;C++;HTML/CSS;Other(s):
+23626,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+23627,Other(s):
+23628,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+23629,C#
+23630,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+23631,Java
+23632,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;Rust
+23633,C#;F#;HTML/CSS;JavaScript;Python;Ruby;SQL
+23634,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+23635,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23636,C++;HTML/CSS;Java;JavaScript
+23637,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+23638,Go;Java;JavaScript;Kotlin;Python;SQL
+23639,C;C++;HTML/CSS;Other(s):
+23640,Java;SQL
+23641,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;Java;R;SQL;Other(s):
+23642,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+23643,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+23644,HTML/CSS;Python
+23645,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+23646,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+23647,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+23649,VBA;Other(s):
+23650,HTML/CSS;JavaScript;Ruby;SQL
+23651,Bash/Shell/PowerShell;Java;Python;Scala
+23652,HTML/CSS;Java;JavaScript
+23653,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23654,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+23655,Java;SQL;Swift
+23656,Bash/Shell/PowerShell;JavaScript;Python;SQL
+23657,Dart;HTML/CSS;JavaScript;PHP;TypeScript
+23658,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+23659,C#;HTML/CSS;JavaScript;Python;SQL
+23660,C++;HTML/CSS;Java
+23661,HTML/CSS;JavaScript;PHP;SQL
+23662,Assembly;C;C++;Python
+23663,HTML/CSS;JavaScript;PHP;Python;R;SQL;Swift;TypeScript
+23664,JavaScript;PHP
+23665,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+23666,Bash/Shell/PowerShell;C#;HTML/CSS;Python;Ruby;SQL;TypeScript
+23667,Java;Kotlin
+23668,HTML/CSS;JavaScript;Python;SQL
+23669,C#;HTML/CSS;SQL
+23670,Assembly;C;C++;HTML/CSS;Java;Objective-C;Python;SQL
+23672,Assembly;C;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust
+23673,HTML/CSS;JavaScript;PHP;SQL
+23674,C#;Java
+23675,Java;JavaScript;SQL
+23676,HTML/CSS;JavaScript;Python;SQL
+23677,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+23678,HTML/CSS;JavaScript
+23679,Bash/Shell/PowerShell;C#;Java;SQL
+23680,Python
+23681,Bash/Shell/PowerShell;Java;Python
+23682,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+23683,Go;Ruby
+23684,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+23685,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+23686,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+23687,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+23688,C++;C#;HTML/CSS;JavaScript;SQL
+23689,C;Dart;Go;HTML/CSS;JavaScript;WebAssembly
+23690,HTML/CSS;Java;JavaScript;SQL
+23691,Python
+23692,Python
+23693,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+23694,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+23695,C#;HTML/CSS;JavaScript;SQL
+23696,Go;HTML/CSS;JavaScript;Ruby;SQL;Swift
+23697,C++;C#;Java
+23698,HTML/CSS;JavaScript;Python
+23699,Bash/Shell/PowerShell;C++
+23700,C;C++;Go;Python
+23701,Bash/Shell/PowerShell;C#;Clojure;Go;HTML/CSS;JavaScript;Python;SQL;VBA
+23702,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+23704,HTML/CSS;R
+23705,Objective-C;Swift
+23706,C#;HTML/CSS;JavaScript;PHP;Rust
+23707,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23708,HTML/CSS;JavaScript
+23709,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23710,C++;VBA;Other(s):
+23711,HTML/CSS;Java;JavaScript;SQL
+23712,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+23713,C#;HTML/CSS;JavaScript;TypeScript
+23714,HTML/CSS;JavaScript;Python
+23715,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+23716,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+23717,Assembly
+23718,Go;JavaScript;Ruby;SQL
+23719,C#;Java;Python;SQL
+23720,HTML/CSS;Java;JavaScript;PHP;SQL
+23721,Bash/Shell/PowerShell;C++;C#;Go;Java;JavaScript;Kotlin;Python;Scala
+23722,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+23723,HTML/CSS;JavaScript;Python;SQL;TypeScript
+23724,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+23725,C;HTML/CSS;Java;JavaScript
+23726,Assembly;C;C++;C#;HTML/CSS;Java;Objective-C
+23727,C#;HTML/CSS;JavaScript
+23728,Java;JavaScript
+23729,HTML/CSS;JavaScript;Ruby
+23730,C#;HTML/CSS;JavaScript;SQL
+23731,C#;JavaScript;TypeScript
+23732,C#;JavaScript;TypeScript
+23733,Bash/Shell/PowerShell;Python;Rust
+23734,C#;HTML/CSS;JavaScript;SQL
+23735,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA;Other(s):
+23736,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript
+23737,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Swift
+23738,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+23739,C++;C#;HTML/CSS;PHP;SQL
+23740,Bash/Shell/PowerShell;Python;SQL
+23741,C;C#;Python;Rust
+23742,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+23743,HTML/CSS;JavaScript;Scala
+23744,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+23745,C++
+23746,Bash/Shell/PowerShell;Java;Python;Scala
+23747,Assembly;Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+23748,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;TypeScript
+23749,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+23750,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+23751,HTML/CSS;JavaScript;Python;Ruby;Rust;TypeScript
+23752,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23753,Assembly;Bash/Shell/PowerShell;C;C#
+23755,Python;SQL
+23756,HTML/CSS;Java;JavaScript;PHP
+23757,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+23758,Bash/Shell/PowerShell;Java;Python
+23759,C;C++;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+23760,C#;HTML/CSS;JavaScript;SQL
+23761,Bash/Shell/PowerShell;C++;Python
+23762,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+23763,C#;Java;JavaScript;PHP;SQL
+23764,Bash/Shell/PowerShell;Clojure;SQL
+23765,HTML/CSS;JavaScript;Python;VBA
+23766,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL
+23767,Bash/Shell/PowerShell;JavaScript
+23768,C;HTML/CSS;Python;SQL
+23769,JavaScript
+23770,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+23771,C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+23772,Assembly;C++
+23773,Bash/Shell/PowerShell;Clojure;Java;Python
+23774,Bash/Shell/PowerShell;C;Python;SQL
+23776,HTML/CSS;JavaScript;PHP;TypeScript
+23777,Objective-C;SQL
+23778,C#;HTML/CSS;JavaScript;SQL
+23779,HTML/CSS;JavaScript
+23780,Bash/Shell/PowerShell;C++;C#;SQL;Other(s):
+23781,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+23782,JavaScript
+23783,C#;Java
+23784,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+23785,C#;HTML/CSS;JavaScript;SQL
+23786,HTML/CSS;JavaScript;Python
+23787,Bash/Shell/PowerShell;C++;Python;Other(s):
+23788,HTML/CSS;JavaScript;TypeScript
+23789,JavaScript;Python
+23790,Bash/Shell/PowerShell;C++;Python;Other(s):
+23791,C++;HTML/CSS;Python
+23792,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL
+23793,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23794,Java;JavaScript;Kotlin;Objective-C;Swift
+23795,C;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+23797,HTML/CSS;JavaScript;PHP;SQL
+23798,Java;JavaScript
+23799,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+23800,C;C++;C#;Python
+23801,C++;C#;Python
+23802,HTML/CSS;JavaScript;Python;Ruby
+23803,Bash/Shell/PowerShell;C#;Python;SQL
+23804,JavaScript;PHP
+23805,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+23806,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+23807,Java;Python;SQL
+23808,HTML/CSS;JavaScript
+23809,HTML/CSS;JavaScript;PHP
+23810,Bash/Shell/PowerShell;C;C++;C#;JavaScript;TypeScript
+23811,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+23812,C;JavaScript;TypeScript
+23813,Go;Ruby
+23814,C++
+23815,Bash/Shell/PowerShell;C;C++;Python
+23816,Java;Python;R;SQL
+23817,C++;Dart;HTML/CSS;Java;JavaScript;SQL
+23818,Python;Scala
+23819,JavaScript;Ruby
+23820,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+23821,C++
+23822,HTML/CSS;JavaScript;Python
+23823,C#;HTML/CSS;JavaScript;SQL
+23824,C#;HTML/CSS;Java;JavaScript;SQL
+23825,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+23826,PHP
+23827,JavaScript
+23828,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP
+23829,Objective-C;Swift
+23830,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+23831,Assembly;C;HTML/CSS;Java
+23832,HTML/CSS;JavaScript;TypeScript;WebAssembly
+23833,Java;SQL
+23834,Java;SQL
+23835,HTML/CSS;JavaScript;R;Ruby;SQL
+23836,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL;VBA
+23837,Bash/Shell/PowerShell;JavaScript;Python;SQL;Other(s):
+23838,HTML/CSS;JavaScript;PHP;SQL
+23839,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+23840,Bash/Shell/PowerShell;JavaScript;Kotlin
+23841,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23842,C;C++;JavaScript;Python
+23843,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+23844,Java;JavaScript;Kotlin
+23845,Dart;Go;HTML/CSS;JavaScript;Objective-C;PHP;SQL;VBA
+23846,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23847,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+23848,Bash/Shell/PowerShell;HTML/CSS;Python
+23849,C#;HTML/CSS;JavaScript;TypeScript
+23850,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+23851,HTML/CSS;JavaScript;PHP;SQL
+23852,C#;SQL
+23853,C#;HTML/CSS;JavaScript
+23854,C++;Python
+23855,Bash/Shell/PowerShell;Go;HTML/CSS;Kotlin;SQL
+23856,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+23857,C#;JavaScript;SQL;TypeScript
+23858,C;Python;R;SQL
+23859,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+23860,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+23861,HTML/CSS;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+23862,HTML/CSS;JavaScript;PHP
+23863,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+23864,C++;Java;JavaScript
+23865,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Other(s):
+23866,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+23867,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+23868,C#;HTML/CSS;JavaScript;TypeScript
+23869,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+23870,Java;JavaScript;SQL;TypeScript
+23871,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23872,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+23873,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL;Other(s):
+23874,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+23875,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+23876,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;Swift;TypeScript;Other(s):
+23877,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL
+23879,JavaScript;PHP
+23880,C#;HTML/CSS;JavaScript;SQL;TypeScript
+23881,Java;JavaScript;Python;SQL
+23882,Python;SQL
+23883,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+23884,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+23885,C;C++;HTML/CSS;JavaScript;Python;Swift
+23886,C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+23887,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+23888,Java;JavaScript
+23889,HTML/CSS;JavaScript;TypeScript
+23890,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+23891,HTML/CSS;Java;SQL
+23892,C++;Python
+23893,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+23894,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+23895,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;TypeScript
+23896,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala
+23897,Clojure;JavaScript;TypeScript;Other(s):
+23898,HTML/CSS;JavaScript;PHP;R;SQL
+23899,HTML/CSS;Java;JavaScript;Kotlin
+23900,HTML/CSS;JavaScript;Python
+23901,Java;SQL
+23902,Bash/Shell/PowerShell;C;C++;Python
+23903,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+23904,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+23905,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+23906,HTML/CSS;JavaScript;Python;SQL
+23907,HTML/CSS;JavaScript;PHP
+23908,HTML/CSS;JavaScript;Ruby;Other(s):
+23909,C#;HTML/CSS;JavaScript
+23910,C#;HTML/CSS;Java;Python
+23911,C++;C#;Go;Java;Kotlin;Objective-C;Python
+23912,HTML/CSS;JavaScript;PHP;SQL
+23913,C++;C#;Swift
+23914,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+23915,HTML/CSS;Java;JavaScript;SQL;Other(s):
+23916,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP
+23917,Bash/Shell/PowerShell;Go;HTML/CSS;Java;SQL
+23918,Assembly;C;C++;Rust
+23919,HTML/CSS;JavaScript;PHP;SQL
+23920,HTML/CSS;JavaScript;PHP;Python;TypeScript
+23921,JavaScript;SQL
+23922,C;C++;PHP;SQL
+23923,Java;JavaScript;Python;SQL;TypeScript
+23924,PHP
+23925,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+23926,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+23927,C++;C#;JavaScript;TypeScript
+23928,Java;Kotlin;SQL
+23929,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;VBA
+23930,C#;HTML/CSS;JavaScript
+23931,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA;WebAssembly
+23932,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+23933,C#;HTML/CSS;Java;JavaScript;SQL
+23934,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+23935,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby
+23936,HTML/CSS;JavaScript
+23937,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;WebAssembly
+23939,HTML/CSS;JavaScript;Python
+23940,HTML/CSS;Java;JavaScript;PHP;Other(s):
+23941,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Swift
+23943,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;WebAssembly
+23944,HTML/CSS;JavaScript;TypeScript
+23945,Java;SQL
+23946,HTML/CSS;JavaScript;PHP
+23947,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+23948,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+23949,Bash/Shell/PowerShell;Java;Python;TypeScript
+23950,C#;HTML/CSS;JavaScript;SQL
+23951,Clojure;Java;Kotlin;Python;Swift
+23952,HTML/CSS;JavaScript;TypeScript
+23953,Clojure;Dart;Elixir;Erlang;F#;Objective-C;Swift
+23954,C;HTML/CSS
+23955,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+23956,Objective-C;Swift
+23957,C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL;TypeScript
+23958,C++;Python
+23959,C#;Java;Python;SQL
+23960,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+23961,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+23962,C#;HTML/CSS;Java;JavaScript;SQL
+23963,C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift;TypeScript;Other(s):
+23964,C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+23965,HTML/CSS;Java;JavaScript;SQL
+23966,C#;HTML/CSS;JavaScript;SQL
+23967,HTML/CSS;JavaScript;PHP;SQL
+23968,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+23969,PHP;Python
+23970,Dart;JavaScript;Kotlin;Python;Rust;WebAssembly;Other(s):
+23971,Bash/Shell/PowerShell;Python;R;SQL;VBA
+23972,C;C++;Go;Java;JavaScript;Python;Scala;SQL;TypeScript;Other(s):
+23973,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+23974,HTML/CSS;Java;JavaScript;Python;R
+23975,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+23976,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+23977,Bash/Shell/PowerShell;JavaScript;Python;SQL
+23978,C#;HTML/CSS;Java;JavaScript;Kotlin
+23979,Bash/Shell/PowerShell;Elixir;Kotlin;Python;Ruby;Scala;SQL;TypeScript
+23980,C;C++;HTML/CSS;WebAssembly
+23981,C#;HTML/CSS;JavaScript;PHP;SQL
+23982,C++;HTML/CSS;Java;JavaScript;Python;SQL
+23983,HTML/CSS;JavaScript;PHP;Python;SQL
+23984,C;C++;Objective-C
+23985,Bash/Shell/PowerShell;C++;Go;Java;Python
+23986,Objective-C;Swift
+23987,Bash/Shell/PowerShell;Java;Python;Scala
+23988,C++;Python;Other(s):
+23989,C#;JavaScript;SQL;TypeScript
+23990,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+23991,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+23992,JavaScript
+23993,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+23994,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript;VBA
+23995,Bash/Shell/PowerShell;C;C++;Python;Ruby
+23996,C#;SQL
+23997,Python;Rust;Scala
+23998,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+23999,C;C++;Java;Python
+24000,Dart;Go;JavaScript;PHP;Python;SQL;Other(s):
+24001,C#;HTML/CSS;JavaScript;PHP;SQL
+24002,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;JavaScript;Rust
+24003,Assembly;C;HTML/CSS;JavaScript;Python;Rust
+24004,C;Go;HTML/CSS;JavaScript;Python;SQL
+24005,Bash/Shell/PowerShell;Java;JavaScript
+24006,Bash/Shell/PowerShell;C#;JavaScript;SQL
+24007,Bash/Shell/PowerShell;C++;Java;Ruby;Scala;SQL
+24008,HTML/CSS;Java;JavaScript;SQL
+24009,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+24010,HTML/CSS;Java;JavaScript;TypeScript
+24011,Assembly;Bash/Shell/PowerShell;C;C#;Python
+24012,Bash/Shell/PowerShell;JavaScript;Python;SQL
+24013,C#;HTML/CSS;JavaScript;TypeScript
+24014,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+24015,C++;C#;HTML/CSS;JavaScript;Python;SQL
+24016,C#;SQL
+24017,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Python
+24019,C#;JavaScript;SQL;TypeScript
+24020,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+24021,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+24022,C#;HTML/CSS;JavaScript;PHP;SQL
+24023,C;HTML/CSS;Java;JavaScript;Python;R;Ruby
+24024,Java;Python;Scala
+24025,Go;HTML/CSS;JavaScript;Python;Other(s):
+24026,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24027,Java;Kotlin
+24028,C#;Other(s):
+24029,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+24030,Other(s):
+24031,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+24032,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24033,C++;C#;Java;Other(s):
+24034,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+24035,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+24036,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+24037,C#;Elixir;Kotlin;Ruby;Rust;Swift
+24038,HTML/CSS;JavaScript;Ruby
+24039,C#;HTML/CSS;JavaScript;TypeScript
+24040,Python;SQL
+24041,Bash/Shell/PowerShell;Python;R
+24042,HTML/CSS;Java;JavaScript;SQL;Swift
+24043,C;C++;C#;HTML/CSS;Java;JavaScript
+24044,C#;HTML/CSS;SQL
+24045,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24046,Objective-C;Swift
+24047,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Ruby
+24048,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+24049,C++;C#;HTML/CSS;PHP;SQL
+24050,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+24051,Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;TypeScript;VBA
+24052,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python
+24053,Bash/Shell/PowerShell;Python
+24054,HTML/CSS;Java;JavaScript
+24055,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+24056,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+24057,HTML/CSS;JavaScript;SQL;TypeScript
+24058,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+24059,C++;HTML/CSS;SQL
+24060,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+24061,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+24062,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby
+24063,HTML/CSS;JavaScript
+24064,C#;HTML/CSS;JavaScript;Python;TypeScript;VBA
+24065,HTML/CSS;JavaScript;PHP;SQL
+24066,Assembly;Bash/Shell/PowerShell;C;Swift
+24067,HTML/CSS;JavaScript
+24068,C;C++;HTML/CSS;Java;JavaScript;Python
+24069,Bash/Shell/PowerShell;Python;R;Scala;SQL
+24070,HTML/CSS;Java;JavaScript;Python
+24071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+24072,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+24073,Go;JavaScript;Python
+24074,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+24075,Bash/Shell/PowerShell;Java;Scala;SQL
+24076,Java;JavaScript;Objective-C;PHP;SQL
+24077,Bash/Shell/PowerShell;Java;Objective-C;Python;SQL
+24078,C;C++;Java;JavaScript;Python;Ruby;SQL
+24079,C#;SQL
+24080,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python;R;SQL
+24081,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA
+24082,C#;Go;HTML/CSS;JavaScript;TypeScript;WebAssembly
+24083,HTML/CSS;Java;JavaScript;SQL;TypeScript
+24084,HTML/CSS;JavaScript;TypeScript
+24085,Bash/Shell/PowerShell;C;JavaScript;R;Swift;Other(s):
+24086,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+24087,Dart;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+24088,HTML/CSS;JavaScript;Ruby
+24089,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+24090,C;JavaScript;Python;SQL
+24091,C#;Java;SQL
+24092,HTML/CSS;Java;JavaScript;TypeScript
+24093,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+24094,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24095,HTML/CSS;Java;SQL
+24096,C;HTML/CSS;Java;JavaScript;PHP;SQL
+24097,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+24098,Python;SQL
+24099,Assembly;C;C++;Python
+24100,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+24101,Java
+24102,HTML/CSS;SQL
+24103,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL;Other(s):
+24104,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+24105,HTML/CSS;Java;PHP;SQL
+24106,Python;SQL
+24107,Other(s):
+24108,HTML/CSS;JavaScript;PHP;SQL
+24109,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+24110,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;WebAssembly
+24111,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+24112,C++;Java;JavaScript;PHP;SQL;TypeScript
+24113,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24114,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+24115,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+24116,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Other(s):
+24117,Assembly;C;HTML/CSS;JavaScript;Python
+24118,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+24119,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+24120,HTML/CSS;Java;JavaScript;SQL;TypeScript
+24121,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+24122,C++;HTML/CSS;JavaScript;Python
+24123,HTML/CSS;JavaScript;PHP;SQL
+24124,JavaScript;Python
+24125,C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+24126,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL;Other(s):
+24127,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python
+24128,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+24129,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust
+24130,C++
+24131,C;HTML/CSS;Java;SQL
+24132,HTML/CSS;Java;JavaScript;PHP
+24133,C++;Erlang;Java;Kotlin;SQL
+24134,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+24135,C#;HTML/CSS;JavaScript;R;SQL;VBA;Other(s):
+24136,HTML/CSS;JavaScript
+24137,C++;C#;Java
+24138,HTML/CSS
+24139,Java;JavaScript;PHP
+24140,JavaScript;PHP;SQL
+24141,Bash/Shell/PowerShell;JavaScript;Python;Scala;SQL
+24143,Java;Python
+24144,HTML/CSS;JavaScript;Objective-C;Ruby;TypeScript
+24145,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+24146,HTML/CSS;JavaScript;Python;TypeScript
+24147,HTML/CSS;JavaScript
+24148,C++;HTML/CSS;Java;JavaScript;PHP;Python;Swift;TypeScript
+24149,C;C++;HTML/CSS;Swift
+24150,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+24151,Dart;Elixir;Go;Java;Python;Rust
+24152,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+24153,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+24154,Java;JavaScript;SQL
+24155,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift
+24156,C;C++
+24157,HTML/CSS;JavaScript;PHP
+24158,Bash/Shell/PowerShell;C;C#;HTML/CSS;SQL
+24159,HTML/CSS;JavaScript;PHP;SQL
+24160,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;Other(s):
+24161,Bash/Shell/PowerShell;C#;Python;SQL;VBA;Other(s):
+24162,C#;HTML/CSS;JavaScript;PHP;Other(s):
+24163,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+24164,HTML/CSS;JavaScript;Ruby;SQL
+24165,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+24166,C++
+24167,HTML/CSS;JavaScript;PHP;Python;SQL
+24168,HTML/CSS;Java;JavaScript;PHP;Swift
+24169,C#;SQL
+24170,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;WebAssembly
+24171,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Rust;SQL;TypeScript
+24172,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+24173,HTML/CSS;Python;SQL
+24174,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+24175,HTML/CSS;Java;SQL
+24176,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+24177,HTML/CSS;JavaScript;Python;SQL;TypeScript
+24178,Bash/Shell/PowerShell;C#;F#;JavaScript;SQL;TypeScript
+24179,HTML/CSS;JavaScript;PHP;SQL
+24180,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+24181,C#;HTML/CSS;JavaScript;SQL;Other(s):
+24182,Go;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+24183,C#;JavaScript
+24184,C;C++;C#;HTML/CSS;JavaScript;Python
+24185,C#;HTML/CSS;Java;Other(s):
+24186,Assembly;C++;Java;PHP;SQL
+24187,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Python;R;Other(s):
+24188,C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift
+24189,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+24190,C#;HTML/CSS;Java;Python;SQL
+24191,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+24192,Bash/Shell/PowerShell;C;C++
+24193,Bash/Shell/PowerShell;Go;Python
+24194,C;Go;JavaScript;PHP
+24195,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+24196,R;SQL
+24197,C++;Python;SQL
+24198,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+24199,C#;SQL;Other(s):
+24200,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript;VBA;WebAssembly
+24201,C#;Java;JavaScript
+24202,HTML/CSS;JavaScript;SQL;Other(s):
+24203,HTML/CSS;Java;JavaScript;SQL;Swift
+24204,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R
+24205,C;Python;SQL
+24206,Bash/Shell/PowerShell;C++;HTML/CSS;Other(s):
+24207,C#;Java;JavaScript;SQL
+24208,C++;JavaScript;Python
+24209,HTML/CSS;JavaScript;PHP;SQL
+24210,HTML/CSS;JavaScript
+24211,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript;VBA;WebAssembly
+24212,HTML/CSS;JavaScript;PHP;Rust;SQL
+24213,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+24214,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+24215,HTML/CSS;JavaScript
+24216,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL
+24217,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+24218,C#;HTML/CSS;JavaScript;SQL
+24219,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+24220,HTML/CSS;JavaScript;Python;SQL;TypeScript
+24221,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+24222,C;Java;JavaScript;SQL;VBA
+24223,HTML/CSS;JavaScript
+24224,HTML/CSS;JavaScript;PHP
+24225,Python;SQL
+24226,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+24227,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+24228,HTML/CSS;Java;JavaScript
+24229,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+24230,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+24231,HTML/CSS;JavaScript
+24232,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+24233,Bash/Shell/PowerShell;Python;Scala;SQL
+24234,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+24235,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+24236,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+24237,Assembly;Bash/Shell/PowerShell;C;Java;R;SQL
+24238,HTML/CSS;JavaScript;PHP;Python;SQL
+24239,Assembly;JavaScript;PHP;Other(s):
+24240,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+24241,Bash/Shell/PowerShell;Java;Python
+24242,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+24243,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;TypeScript
+24244,C;C++;C#;HTML/CSS;JavaScript;TypeScript;VBA;Other(s):
+24245,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+24246,C#;Go;HTML/CSS;Java;JavaScript;PHP;TypeScript
+24247,Bash/Shell/PowerShell;Python;Ruby
+24248,Python
+24249,Python
+24250,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+24251,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+24252,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+24253,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+24255,C;C++;Objective-C;Swift
+24256,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;SQL
+24257,HTML/CSS;Java;JavaScript;Kotlin;SQL
+24258,Bash/Shell/PowerShell;Java;SQL
+24259,HTML/CSS;Java;JavaScript;SQL
+24260,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+24261,C#;Python;Rust;Other(s):
+24262,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+24263,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+24264,Bash/Shell/PowerShell;C;C++;Java;Python
+24265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+24266,C++
+24267,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+24268,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;Other(s):
+24269,HTML/CSS;JavaScript;Other(s):
+24270,C#;HTML/CSS;JavaScript;Python;R;SQL
+24271,PHP;SQL
+24272,Go;Python;Scala
+24273,Python;R;SQL;VBA
+24274,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;VBA
+24275,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+24276,Java;JavaScript;Kotlin;Python;Scala
+24277,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+24278,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;Scala;SQL
+24279,Bash/Shell/PowerShell;Java;Scala;SQL
+24280,HTML/CSS;JavaScript
+24281,JavaScript;Python;SQL;TypeScript
+24282,Go;HTML/CSS;JavaScript;PHP;Ruby
+24283,C#;Java;Python;SQL;Other(s):
+24284,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+24285,C++;C#;HTML/CSS;JavaScript;Python;SQL;Swift
+24286,HTML/CSS;JavaScript;Ruby;SQL
+24287,HTML/CSS;Other(s):
+24288,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24289,C++;HTML/CSS;JavaScript
+24290,R;VBA
+24291,Assembly;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+24292,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL;TypeScript
+24293,C#;HTML/CSS;JavaScript;SQL
+24294,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+24295,Bash/Shell/PowerShell;C;SQL
+24296,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;SQL
+24297,Clojure;Java;Kotlin;Python
+24298,HTML/CSS;Java;JavaScript;Python;Ruby;Scala
+24299,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;VBA
+24300,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+24301,C#;HTML/CSS;Python;SQL
+24302,HTML/CSS;Java;JavaScript;Kotlin;SQL
+24303,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+24304,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+24305,Bash/Shell/PowerShell;C++;Python
+24306,HTML/CSS;Java;JavaScript;SQL
+24307,HTML/CSS;Java;JavaScript;SQL
+24308,Java;JavaScript;Objective-C;PHP;Swift
+24309,HTML/CSS;JavaScript;Other(s):
+24310,C#;SQL;Swift;Other(s):
+24312,HTML/CSS;JavaScript
+24313,HTML/CSS;Java;JavaScript
+24314,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;Scala
+24315,JavaScript;Python;R;SQL
+24316,Bash/Shell/PowerShell;Python;SQL
+24317,HTML/CSS;Java;JavaScript;PHP
+24318,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24319,C++;Java;JavaScript;Kotlin;SQL
+24320,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+24321,Bash/Shell/PowerShell;JavaScript;Python;SQL;TypeScript;Other(s):
+24322,Swift
+24323,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+24324,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+24325,Assembly;Bash/Shell/PowerShell;C;Python
+24326,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+24327,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24328,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+24329,HTML/CSS;JavaScript;PHP;SQL
+24330,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+24331,C#;JavaScript;PHP;SQL
+24332,C#
+24333,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+24334,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+24335,Bash/Shell/PowerShell;Java;Ruby;SQL
+24336,C;Java;Python;R
+24337,Java;Kotlin
+24338,Bash/Shell/PowerShell;C
+24339,C#;HTML/CSS;JavaScript;TypeScript
+24340,Bash/Shell/PowerShell;Python;R
+24341,C#;Java;JavaScript;Python
+24342,HTML/CSS;JavaScript;SQL
+24343,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+24344,Assembly;HTML/CSS;Java;SQL
+24345,HTML/CSS;Java;JavaScript;PHP;SQL
+24346,HTML/CSS;JavaScript;PHP;SQL
+24347,HTML/CSS;JavaScript;PHP;VBA
+24348,C#;HTML/CSS;JavaScript;TypeScript
+24349,Bash/Shell/PowerShell;C;C++
+24350,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+24351,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+24352,C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+24353,C#;HTML/CSS;Java;Python;TypeScript
+24354,C#;HTML/CSS;JavaScript;PHP;SQL
+24355,C#;HTML/CSS;TypeScript;Other(s):
+24356,Bash/Shell/PowerShell;C;Python
+24357,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+24358,Elixir;JavaScript;Ruby;SQL;TypeScript
+24359,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+24360,HTML/CSS;Java;JavaScript
+24361,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+24362,Bash/Shell/PowerShell;C;C++;Java;Python
+24364,C#;PHP;SQL
+24365,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;VBA
+24366,HTML/CSS;JavaScript;Ruby
+24367,JavaScript;Ruby
+24368,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+24369,HTML/CSS;Java;JavaScript;TypeScript
+24370,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+24371,C#;HTML/CSS;JavaScript;SQL
+24372,Go;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+24373,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin
+24374,C#;HTML/CSS;JavaScript;SQL
+24375,HTML/CSS;JavaScript
+24376,HTML/CSS;Python;SQL
+24377,C#;Java;JavaScript
+24378,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+24379,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Swift;TypeScript
+24380,Assembly;Dart;HTML/CSS;Java;JavaScript;PHP;Python
+24381,C#;HTML/CSS;JavaScript;Objective-C;SQL
+24382,C;C++;C#
+24383,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+24384,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+24385,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+24386,C#;JavaScript;SQL
+24387,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL;Swift
+24388,Bash/Shell/PowerShell;Dart;Java;Kotlin
+24389,Java;Python;Scala
+24390,C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+24391,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Rust;WebAssembly
+24392,Bash/Shell/PowerShell;Python;SQL
+24393,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+24394,HTML/CSS;Java;JavaScript;SQL
+24395,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+24396,Bash/Shell/PowerShell;Python;R;SQL
+24397,Go;SQL
+24398,C#;HTML/CSS;JavaScript;SQL
+24399,Bash/Shell/PowerShell;C#;JavaScript;SQL
+24400,C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+24401,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+24402,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Other(s):
+24403,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript
+24404,Bash/Shell/PowerShell;Python;SQL
+24405,Bash/Shell/PowerShell;C#;VBA
+24406,HTML/CSS;JavaScript
+24407,HTML/CSS;Java;JavaScript;PHP;SQL
+24408,C++;C#
+24409,C#;JavaScript;SQL
+24410,C;C++;Rust
+24411,HTML/CSS;R;SQL
+24412,HTML/CSS;Java;JavaScript;Other(s):
+24413,HTML/CSS;JavaScript;TypeScript
+24414,Java;JavaScript;SQL
+24415,C;C++;C#;Java
+24416,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;TypeScript
+24417,C#
+24418,HTML/CSS;Java;JavaScript
+24419,HTML/CSS;JavaScript;PHP
+24420,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL;Swift
+24421,C++;Java;Python
+24422,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+24423,C#;SQL
+24424,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+24425,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;TypeScript;Other(s):
+24426,Bash/Shell/PowerShell;C;C++;Other(s):
+24427,HTML/CSS;JavaScript
+24428,JavaScript;TypeScript
+24429,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;VBA
+24430,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+24431,C++;HTML/CSS;Objective-C;PHP;Swift
+24432,HTML/CSS;Java;JavaScript;PHP;SQL
+24433,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+24434,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Ruby
+24435,C;C#;HTML/CSS;JavaScript
+24436,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+24437,Bash/Shell/PowerShell;C;Python
+24438,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;Ruby
+24439,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+24440,C;C++;Python;Other(s):
+24441,HTML/CSS;JavaScript;PHP
+24442,C++;C#;HTML/CSS;Java;JavaScript;Python
+24443,Java
+24444,Bash/Shell/PowerShell;Java
+24445,C;C++;Java
+24446,HTML/CSS;JavaScript
+24447,C;C++;C#;HTML/CSS;JavaScript;PHP;TypeScript
+24448,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+24449,HTML/CSS;Java;JavaScript;Python
+24450,HTML/CSS;JavaScript;PHP;SQL
+24451,C++
+24452,C++;Go;Python;SQL
+24453,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24454,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+24455,HTML/CSS;JavaScript;Python;SQL
+24457,PHP
+24458,Dart
+24459,C++;Java;Python
+24460,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+24461,C#;HTML/CSS;Java;JavaScript;SQL
+24462,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+24463,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+24464,Bash/Shell/PowerShell;Python;R;SQL
+24465,Java;JavaScript;SQL
+24466,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+24467,Bash/Shell/PowerShell;Java;JavaScript;Python
+24468,Bash/Shell/PowerShell;Java;SQL
+24469,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+24470,HTML/CSS;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift
+24471,C;Java;Python;Ruby
+24472,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+24473,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+24474,Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+24475,HTML/CSS;JavaScript;PHP;SQL
+24476,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24477,HTML/CSS;JavaScript;Ruby;SQL
+24478,Python
+24479,Bash/Shell/PowerShell;C;C++;Java
+24480,C++;C#;Java;JavaScript
+24481,Assembly;Bash/Shell/PowerShell;C;C++;Java;Other(s):
+24482,Bash/Shell/PowerShell;Java;JavaScript;SQL
+24483,C#;HTML/CSS;JavaScript;Python;SQL
+24484,Swift
+24485,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python
+24486,Python;R;SQL
+24487,C#;HTML/CSS;JavaScript;Objective-C;Python;R;SQL;TypeScript
+24488,C#;HTML/CSS;JavaScript;SQL
+24489,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;Other(s):
+24490,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+24491,HTML/CSS;Java;JavaScript;Python;SQL
+24492,Java;SQL
+24493,C;C++;C#;JavaScript;Python
+24494,C;C++;HTML/CSS;Python
+24495,Go;HTML/CSS;JavaScript
+24496,HTML/CSS;JavaScript;TypeScript
+24498,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+24499,Assembly;Bash/Shell/PowerShell;C;C++;Java
+24500,Assembly;C;C++;C#;HTML/CSS;Python;R
+24501,C;C++;JavaScript
+24502,Assembly;C;C++;Python
+24503,F#;Python;SQL
+24504,Java;JavaScript
+24505,Bash/Shell/PowerShell;Go;Python;SQL
+24506,C;F#;HTML/CSS;PHP;R;Rust;SQL
+24507,HTML/CSS;JavaScript;PHP;SQL
+24508,Assembly;C;C++;Java;Python
+24509,HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;Swift
+24510,HTML/CSS;PHP;SQL
+24511,C++;Python;R;SQL
+24512,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+24513,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+24514,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL;TypeScript;Other(s):
+24515,HTML/CSS;JavaScript;Python
+24516,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+24517,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+24518,HTML/CSS;JavaScript;PHP;SQL
+24519,Bash/Shell/PowerShell;Python
+24520,HTML/CSS;JavaScript
+24521,Go;Java;Python;Ruby;Scala;SQL
+24522,C#;JavaScript;SQL
+24523,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+24524,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+24525,HTML/CSS;Java;JavaScript;PHP
+24526,C#;HTML/CSS;Java;JavaScript;Python
+24527,HTML/CSS;JavaScript;PHP
+24528,HTML/CSS;JavaScript;SQL;Swift;TypeScript
+24529,C#;Java
+24530,HTML/CSS;JavaScript;Scala;TypeScript
+24531,HTML/CSS;JavaScript;PHP;Python;SQL
+24532,HTML/CSS;JavaScript;TypeScript
+24533,Java;Other(s):
+24534,C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+24535,HTML/CSS;JavaScript;Python;Swift
+24536,C++;Go;Python;SQL
+24537,C#;Go;HTML/CSS;JavaScript;Python;Scala;SQL
+24538,Assembly;Bash/Shell/PowerShell;C;C++;Java
+24539,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24540,JavaScript
+24541,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;SQL
+24542,Bash/Shell/PowerShell;Java;JavaScript;Python;R;Scala
+24543,HTML/CSS;Java;JavaScript;PHP;SQL
+24544,C;Python
+24545,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+24546,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+24547,C++;Python;SQL;VBA
+24548,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL;Other(s):
+24549,C;HTML/CSS;Java;JavaScript;PHP;Python
+24550,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+24551,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+24552,HTML/CSS;Java;JavaScript;SQL;TypeScript
+24553,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+24554,C;C++;Java;JavaScript;Python;TypeScript
+24555,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+24556,Java;Kotlin
+24557,C#;HTML/CSS;JavaScript
+24558,Assembly;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;VBA
+24559,C;C++;HTML/CSS;JavaScript;PHP;SQL
+24560,C;C#;HTML/CSS;Python
+24561,C#;HTML/CSS
+24562,C#;Java;SQL
+24563,HTML/CSS;JavaScript;TypeScript
+24564,Java;Rust
+24565,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+24566,HTML/CSS;Java;JavaScript;Other(s):
+24567,C++;HTML/CSS;JavaScript;Python;Ruby
+24568,HTML/CSS;Java;JavaScript;SQL
+24569,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+24570,HTML/CSS;JavaScript;Python
+24571,C++
+24572,Python
+24573,Bash/Shell/PowerShell;Java;PHP
+24574,HTML/CSS;Java;Python
+24575,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+24576,C;C++;Python
+24577,Go;PHP;Ruby
+24578,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+24579,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+24580,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Other(s):
+24581,Objective-C;Swift
+24582,Java;Kotlin
+24583,C;C++;C#
+24584,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+24585,HTML/CSS;Java;JavaScript;SQL
+24586,C#;Java;SQL
+24587,Go;HTML/CSS;JavaScript;SQL;WebAssembly
+24588,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+24589,Java;Kotlin
+24590,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24591,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+24592,HTML/CSS;Java;Python;SQL
+24593,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+24594,HTML/CSS;JavaScript;Objective-C;Swift
+24595,C#;HTML/CSS;Java;JavaScript;Other(s):
+24596,HTML/CSS;JavaScript;PHP;SQL
+24597,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+24598,JavaScript
+24599,HTML/CSS;JavaScript
+24600,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Ruby;SQL;Swift;TypeScript
+24601,Java;PHP
+24602,C#;Java;Python;SQL
+24603,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python
+24604,Go;HTML/CSS;JavaScript
+24605,C;C++;HTML/CSS;Java
+24607,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+24608,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA;WebAssembly
+24609,HTML/CSS;JavaScript
+24610,C#;HTML/CSS;JavaScript;SQL;VBA
+24612,C#;Java;Kotlin
+24613,JavaScript
+24614,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+24615,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+24616,HTML/CSS;Java;JavaScript;SQL
+24617,C#;Rust
+24618,HTML/CSS;JavaScript;PHP
+24619,HTML/CSS;Java;JavaScript;SQL
+24620,C#;HTML/CSS;JavaScript;PHP;SQL
+24621,HTML/CSS;JavaScript;PHP;Python;SQL
+24622,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;Python;R
+24623,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+24625,C
+24626,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+24627,JavaScript;PHP;Python
+24628,C#;HTML/CSS;JavaScript;Ruby;SQL
+24629,Go;HTML/CSS;Java;JavaScript;Python;SQL
+24630,C;Python;SQL
+24631,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+24632,Python
+24633,HTML/CSS;JavaScript;PHP
+24634,C++;HTML/CSS
+24635,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+24636,C#;HTML/CSS;Ruby
+24637,C#;HTML/CSS;JavaScript;SQL
+24638,Java;JavaScript;SQL
+24639,C++;Python
+24640,Objective-C;Python;Swift
+24641,Bash/Shell/PowerShell;Java;SQL
+24642,Assembly;C;C++
+24643,C;Java;JavaScript;PHP
+24644,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Scala;SQL
+24645,C;C++;C#;HTML/CSS;JavaScript;SQL
+24646,HTML/CSS;JavaScript;PHP;SQL;Swift
+24647,C;C++;HTML/CSS;Java;JavaScript;Python
+24648,Bash/Shell/PowerShell;C#;Python;SQL
+24649,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+24650,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+24651,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+24652,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+24653,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+24654,Java;Kotlin;Python
+24655,HTML/CSS;Python
+24656,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24657,Assembly;Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Swift;Other(s):
+24659,Bash/Shell/PowerShell;C#;Java;SQL
+24660,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+24661,Go;Java;JavaScript;Python;Ruby;SQL
+24662,Bash/Shell/PowerShell;JavaScript;TypeScript
+24663,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+24664,C#;HTML/CSS;JavaScript;SQL;VBA
+24665,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;SQL
+24666,Bash/Shell/PowerShell;C;C++;Java;Objective-C;PHP;SQL;VBA;Other(s):
+24667,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+24669,HTML/CSS;JavaScript
+24670,HTML/CSS;JavaScript;TypeScript
+24671,C#;HTML/CSS;JavaScript;SQL
+24672,C++;Python
+24673,HTML/CSS;JavaScript;PHP
+24674,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24675,Java
+24676,Java;TypeScript
+24677,C
+24678,Bash/Shell/PowerShell;SQL
+24679,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Scala
+24680,C#;F#;JavaScript;SQL
+24681,Python;Other(s):
+24682,HTML/CSS;JavaScript;PHP;SQL
+24683,HTML/CSS;Java;JavaScript;PHP;SQL
+24684,Assembly;C;Python
+24685,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+24686,Java;JavaScript;Python
+24687,Go;HTML/CSS;JavaScript;PHP;SQL
+24688,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+24689,Clojure;JavaScript;SQL
+24690,Java
+24691,HTML/CSS;Java;JavaScript;SQL;TypeScript
+24692,HTML/CSS;Python;SQL
+24693,Bash/Shell/PowerShell;Python
+24694,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+24695,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;Python;Swift
+24696,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+24697,C#;Go;HTML/CSS;Java;JavaScript;TypeScript
+24698,C++;Objective-C;Swift
+24699,Java;Kotlin
+24700,HTML/CSS;JavaScript;SQL
+24701,HTML/CSS;Java;JavaScript;SQL
+24702,Java;JavaScript;Kotlin
+24703,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+24704,Bash/Shell/PowerShell;C++;Python
+24705,HTML/CSS;PHP;SQL
+24706,C#;HTML/CSS;JavaScript;SQL
+24707,Java;JavaScript;Kotlin;Swift
+24708,HTML/CSS;JavaScript;TypeScript
+24709,HTML/CSS;Java;JavaScript
+24710,HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+24711,Other(s):
+24712,Bash/Shell/PowerShell;C++;SQL
+24713,HTML/CSS;Java;JavaScript;Kotlin;SQL
+24714,HTML/CSS;Python;VBA
+24716,C#;HTML/CSS;JavaScript;Rust;TypeScript
+24717,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+24719,HTML/CSS;JavaScript;Ruby
+24720,Elixir
+24721,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python
+24722,C#;HTML/CSS;JavaScript;VBA;Other(s):
+24723,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+24724,Bash/Shell/PowerShell;Go;Python
+24726,JavaScript;PHP
+24727,JavaScript
+24728,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+24729,HTML/CSS;JavaScript;PHP;SQL
+24730,Bash/Shell/PowerShell;Python;Ruby
+24731,Python
+24732,Bash/Shell/PowerShell;Python;Ruby
+24733,HTML/CSS;Java;JavaScript
+24734,Dart;Java;JavaScript;PHP;TypeScript
+24735,Python
+24736,C;Python
+24737,Bash/Shell/PowerShell;Python
+24738,HTML/CSS;JavaScript;PHP;SQL
+24739,Objective-C;Python;SQL
+24740,Erlang;Java;Ruby
+24741,C;C++;C#;HTML/CSS;Java;Python;SQL;Swift
+24742,C#;HTML/CSS;JavaScript;SQL
+24743,C#;HTML/CSS;JavaScript;SQL;Swift
+24744,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+24745,HTML/CSS;JavaScript
+24746,C#;HTML/CSS;JavaScript
+24747,C++;Go;Objective-C;Python;Ruby;Swift
+24748,Go;Kotlin;Python
+24749,HTML/CSS;JavaScript;PHP;Ruby
+24750,JavaScript;Python
+24751,C;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+24752,HTML/CSS;JavaScript;PHP;SQL
+24753,HTML/CSS;Java;SQL;TypeScript;VBA
+24754,HTML/CSS;JavaScript;PHP;SQL
+24755,Assembly;Bash/Shell/PowerShell;C;C++;Python
+24756,C;C++;JavaScript;Python;Swift;Other(s):
+24757,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript
+24758,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24759,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python
+24760,C;C#;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript;Other(s):
+24761,C#;HTML/CSS;JavaScript;Swift;TypeScript
+24762,HTML/CSS;JavaScript;Python;SQL
+24763,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+24764,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+24765,HTML/CSS;Java;JavaScript;SQL;TypeScript
+24766,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python
+24767,Bash/Shell/PowerShell;PHP;Other(s):
+24768,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+24769,C;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+24770,C#;HTML/CSS;JavaScript;SQL
+24771,Python;R;SQL
+24772,C++;HTML/CSS;Java;PHP;Python;SQL
+24773,C;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+24774,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+24775,Bash/Shell/PowerShell;C#;Scala;SQL
+24776,HTML/CSS;JavaScript;TypeScript
+24777,C++;C#;HTML/CSS;Java;PHP
+24778,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Other(s):
+24779,C#;JavaScript;SQL;Other(s):
+24780,Bash/Shell/PowerShell;SQL;Other(s):
+24781,C;HTML/CSS;Java;JavaScript;PHP;SQL
+24782,C++;C#;F#;HTML/CSS;Java;JavaScript
+24783,Bash/Shell/PowerShell;Go;JavaScript;Ruby
+24784,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+24785,C;C++;C#;Python
+24786,Assembly;Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+24787,Assembly;C;Java;Scala;SQL;WebAssembly
+24788,HTML/CSS;Java;JavaScript;Kotlin;SQL
+24789,C;Python;SQL
+24790,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+24791,C;C++;Java;Python;Scala
+24792,HTML/CSS;Java;JavaScript;Ruby
+24794,Bash/Shell/PowerShell;C;Python;SQL;Other(s):
+24795,JavaScript;Python;TypeScript
+24796,Bash/Shell/PowerShell;Python;SQL
+24797,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24798,HTML/CSS;JavaScript;TypeScript
+24799,JavaScript;Ruby
+24800,HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+24801,Bash/Shell/PowerShell;C;C#
+24802,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+24803,JavaScript;TypeScript
+24804,C++;C#;Java
+24805,C;HTML/CSS;Objective-C
+24806,C#;HTML/CSS;Python;SQL;WebAssembly;Other(s):
+24807,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+24808,Bash/Shell/PowerShell;Go;Java;Ruby;Scala
+24810,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+24811,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+24812,C#;Python
+24813,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+24814,Java;Python;Swift
+24815,Java
+24816,C#;HTML/CSS;Java;JavaScript;SQL
+24817,HTML/CSS;JavaScript;Ruby
+24818,HTML/CSS;JavaScript;SQL
+24819,Java
+24820,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+24821,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+24822,Assembly;Bash/Shell/PowerShell;C;C++;C#;PHP;Python;SQL
+24823,C;C#;Python
+24824,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+24825,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+24826,HTML/CSS;JavaScript;Python
+24827,HTML/CSS;JavaScript;PHP;SQL
+24828,Bash/Shell/PowerShell;C;C++;Python
+24829,HTML/CSS;R
+24830,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+24831,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+24832,C;C#;Java;Objective-C;Swift
+24833,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+24834,Assembly;C;C++;Java;JavaScript;Kotlin;Python
+24835,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+24836,Python;Swift
+24837,C#
+24838,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+24839,Java;Python;SQL
+24840,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+24841,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+24842,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+24843,C;C#;Erlang;JavaScript;Other(s):
+24845,C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+24846,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;TypeScript
+24847,C++;C#;Java
+24848,HTML/CSS;Java;JavaScript;SQL
+24849,C++;C#;Go;Python;Rust
+24850,Java;Python;SQL
+24851,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+24852,HTML/CSS;Java;JavaScript;Python;SQL;VBA;Other(s):
+24853,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;SQL
+24854,C++;HTML/CSS;JavaScript;PHP
+24855,C;JavaScript
+24856,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+24857,Bash/Shell/PowerShell;Python;SQL
+24858,HTML/CSS;Java;JavaScript;SQL
+24859,C#;HTML/CSS;Java;JavaScript;SQL
+24860,Assembly;Bash/Shell/PowerShell;C;C#;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+24862,JavaScript;Python;TypeScript
+24863,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+24864,Bash/Shell/PowerShell;C++;Java;Kotlin;Objective-C;Swift
+24865,HTML/CSS;Java;JavaScript;PHP;SQL
+24866,C;C++;Java;Kotlin
+24867,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+24868,Bash/Shell/PowerShell;C;C++;Go;JavaScript;PHP;TypeScript
+24869,C++;Java;Scala;TypeScript
+24870,C#;JavaScript;SQL
+24871,C#;SQL
+24872,C#;HTML/CSS;Java;Kotlin;Objective-C;Python;Swift
+24873,HTML/CSS;PHP
+24874,Assembly;HTML/CSS;Python;SQL
+24875,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+24877,PHP
+24878,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+24879,C#;JavaScript;Python;SQL
+24880,Java;JavaScript
+24881,Bash/Shell/PowerShell;C++;JavaScript;TypeScript;Other(s):
+24882,C++;Java;Python;Other(s):
+24883,HTML/CSS;JavaScript;PHP;SQL
+24884,HTML/CSS;JavaScript
+24885,Ruby;SQL
+24886,Python;Other(s):
+24887,Java;Ruby;TypeScript
+24888,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+24889,C;C++;C#;HTML/CSS;JavaScript;SQL
+24890,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24891,C#;HTML/CSS;Java;JavaScript;SQL
+24892,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+24893,C++;Python
+24894,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+24895,Python;Other(s):
+24896,HTML/CSS;JavaScript;Python;VBA
+24897,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+24898,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Scala
+24899,C++;C#;Java;JavaScript;Scala;SQL
+24900,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+24901,C++;Elixir;Ruby
+24902,Assembly;C;Java
+24903,C++;HTML/CSS;JavaScript;Objective-C;Python;Swift;TypeScript
+24904,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+24905,HTML/CSS;JavaScript;PHP
+24906,R
+24907,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+24908,Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift
+24909,HTML/CSS;JavaScript;Ruby;TypeScript
+24910,HTML/CSS;JavaScript;Python;Ruby
+24911,Go;Java;JavaScript;SQL
+24912,C;C++;HTML/CSS;JavaScript;SQL
+24913,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+24914,Clojure;Java;Python;R
+24915,Bash/Shell/PowerShell;C;C++;Python
+24916,Bash/Shell/PowerShell;Dart;JavaScript;Kotlin;Ruby;Swift
+24917,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+24918,C++;Clojure;Python
+24919,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+24920,Bash/Shell/PowerShell;Python
+24921,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+24922,HTML/CSS;JavaScript;PHP
+24923,HTML/CSS;SQL;Swift
+24924,C;Go;JavaScript;PHP;Python;Scala;TypeScript
+24925,C;Python;Scala
+24926,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;TypeScript
+24927,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+24928,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+24929,Python;SQL;VBA
+24930,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+24931,Bash/Shell/PowerShell;Java;Ruby;SQL
+24932,HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+24933,HTML/CSS;Python;Swift
+24934,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+24935,JavaScript;Python
+24936,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala
+24937,HTML/CSS;JavaScript
+24938,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+24939,Bash/Shell/PowerShell;Python
+24940,SQL;Other(s):
+24941,R;Other(s):
+24942,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+24943,Java;Python
+24944,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+24945,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+24946,C#
+24947,Bash/Shell/PowerShell;Java;Kotlin;SQL
+24948,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+24949,C#;HTML/CSS;JavaScript;SQL
+24950,HTML/CSS;JavaScript;PHP
+24951,Bash/Shell/PowerShell;Java;Python;SQL
+24952,Python;R
+24953,Python;SQL
+24954,C++;HTML/CSS;Java;JavaScript;Python
+24955,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+24956,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+24957,HTML/CSS;JavaScript;PHP
+24958,C++;HTML/CSS;JavaScript;PHP;Python
+24959,C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+24961,HTML/CSS;Java;JavaScript;PHP
+24962,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+24963,Elixir;JavaScript
+24964,Python;SQL
+24965,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;R;SQL
+24966,C;C++;Java;SQL
+24967,Java;Python;SQL
+24968,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+24969,Bash/Shell/PowerShell;SQL;Other(s):
+24970,Clojure
+24971,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;SQL
+24972,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+24973,JavaScript;Python
+24974,PHP;SQL
+24975,C#;HTML/CSS;JavaScript;SQL
+24976,Bash/Shell/PowerShell;Python;Scala
+24977,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24978,Ruby
+24979,Assembly;Bash/Shell/PowerShell;C;Python;R;VBA
+24980,HTML/CSS;Java;JavaScript;PHP;TypeScript
+24981,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+24982,C#;HTML/CSS;JavaScript;SQL;TypeScript
+24983,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+24984,Assembly;C;HTML/CSS;Java
+24985,C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+24986,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+24987,Assembly;C;C++;HTML/CSS;Java;SQL
+24988,Other(s):
+24989,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+24990,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+24991,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+24992,Bash/Shell/PowerShell;F#;HTML/CSS;SQL;TypeScript
+24993,C;C++;C#;Python
+24994,C++;HTML/CSS;JavaScript
+24995,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+24996,Assembly;C;C++;Java;Objective-C;Python;Swift
+24997,C++;Java;Ruby
+24998,HTML/CSS;JavaScript
+24999,HTML/CSS;Java;JavaScript;Ruby;SQL
+25000,HTML/CSS;JavaScript;PHP;SQL
+25001,Bash/Shell/PowerShell;HTML/CSS;Scala
+25002,HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+25003,C;Java;JavaScript;Kotlin;Python
+25004,C#
+25005,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+25006,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25007,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+25008,HTML/CSS;JavaScript;Scala;TypeScript
+25009,C;C++;Python;R
+25010,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+25011,JavaScript;Other(s):
+25012,HTML/CSS;JavaScript;PHP;Python
+25013,C++
+25014,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+25015,C;HTML/CSS;JavaScript;PHP;SQL
+25016,C#
+25017,HTML/CSS;Java;JavaScript;TypeScript
+25018,C#;HTML/CSS;JavaScript;SQL;VBA
+25019,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+25020,C#;HTML/CSS;Java;JavaScript;R;SQL
+25021,Python
+25022,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+25023,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+25024,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+25025,C#;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+25026,C#
+25027,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+25028,C;C++;C#;SQL;Swift
+25030,HTML/CSS;JavaScript;PHP;SQL
+25031,HTML/CSS;JavaScript;TypeScript
+25032,C;C++;Java;Python;SQL
+25033,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript;VBA
+25034,Bash/Shell/PowerShell;JavaScript;Python;SQL
+25035,C#;HTML/CSS;JavaScript
+25036,C#;HTML/CSS;Python;R;SQL;VBA;Other(s):
+25037,C++;C#;Python;SQL
+25038,Bash/Shell/PowerShell;Python;SQL
+25039,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+25040,JavaScript;TypeScript
+25041,HTML/CSS;JavaScript;PHP;Swift
+25042,C;C++;Java;Python
+25043,HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+25044,Java;JavaScript;SQL
+25045,C#;Go;HTML/CSS;JavaScript;Python;Swift
+25046,Assembly;C;C++;HTML/CSS;Java;Python;SQL
+25047,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+25048,C;C#;HTML/CSS;JavaScript;SQL;Other(s):
+25049,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+25050,C#;HTML/CSS;JavaScript;SQL
+25051,Bash/Shell/PowerShell;Java;SQL;Other(s):
+25052,C;C++;C#;HTML/CSS;Python;SQL
+25053,Swift
+25054,C;C++;HTML/CSS;JavaScript;PHP;SQL
+25055,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;VBA
+25056,HTML/CSS;JavaScript;PHP
+25057,C;C++;HTML/CSS;JavaScript;PHP;SQL
+25058,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+25059,HTML/CSS;JavaScript;PHP
+25060,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+25061,Dart
+25062,HTML/CSS;JavaScript;PHP;SQL
+25063,HTML/CSS;JavaScript;PHP;Python
+25064,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+25065,HTML/CSS;JavaScript;Other(s):
+25066,Other(s):
+25067,Bash/Shell/PowerShell;C;C#;Elixir;HTML/CSS;JavaScript;Ruby;TypeScript
+25068,HTML/CSS;JavaScript
+25069,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25070,C#;HTML/CSS;JavaScript;SQL;VBA
+25071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+25072,HTML/CSS;JavaScript;Ruby
+25073,Bash/Shell/PowerShell;C;C++;Python
+25074,Bash/Shell/PowerShell;Java
+25075,C++;HTML/CSS;Java;JavaScript;Python;SQL
+25076,Assembly;C;C++;HTML/CSS;JavaScript
+25077,C;C++;Java;Rust;Other(s):
+25078,HTML/CSS;Java;JavaScript;TypeScript
+25079,Bash/Shell/PowerShell;Python
+25080,HTML/CSS;JavaScript;Python;Ruby
+25081,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+25082,Erlang;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25083,HTML/CSS;JavaScript;Python;SQL
+25084,R;SQL
+25085,C;C++;C#;Java
+25086,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+25087,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25088,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+25089,HTML/CSS;JavaScript;Ruby;TypeScript
+25090,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25091,HTML/CSS;Java;JavaScript;Python;SQL
+25092,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+25093,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25094,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+25095,C++;C#;HTML/CSS;TypeScript
+25096,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+25097,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+25098,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25099,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+25100,Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+25101,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+25102,C;C#;JavaScript
+25103,Assembly;C;C++;Python;Rust
+25104,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+25105,HTML/CSS;JavaScript;TypeScript
+25106,HTML/CSS;Java
+25107,HTML/CSS;Java;JavaScript
+25108,JavaScript;PHP;SQL
+25109,HTML/CSS;JavaScript;PHP;Python;SQL
+25110,Go;HTML/CSS;JavaScript;Ruby
+25111,HTML/CSS;Java;JavaScript
+25112,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+25113,HTML/CSS;Java;JavaScript;PHP;Swift;TypeScript
+25115,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25116,Assembly;C;HTML/CSS;Java;Python;SQL
+25117,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+25118,Bash/Shell/PowerShell;C#;SQL
+25119,Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25120,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Ruby;Rust;Scala;SQL
+25121,Python;SQL
+25122,Elixir;Java;JavaScript;Scala;TypeScript
+25123,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+25124,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+25125,Java
+25126,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+25127,Python;VBA
+25128,C;Java;JavaScript;Python;Swift
+25129,SQL;VBA;Other(s):
+25130,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25131,HTML/CSS;JavaScript;Ruby
+25132,C;Java;Kotlin;PHP;SQL
+25133,C;HTML/CSS;Java;JavaScript;Other(s):
+25134,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+25135,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python
+25136,C#;F#;HTML/CSS;Java;JavaScript;SQL
+25137,HTML/CSS;JavaScript;PHP;SQL
+25138,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;SQL;Other(s):
+25139,Bash/Shell/PowerShell;C#;Java;Kotlin;SQL
+25140,HTML/CSS;PHP;Python;SQL
+25141,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+25142,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;PHP;Python;R
+25143,Java;Kotlin;Objective-C;SQL
+25144,C++;Other(s):
+25145,HTML/CSS;JavaScript;PHP;SQL
+25146,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+25147,Bash/Shell/PowerShell;C++;JavaScript;Python;Swift
+25148,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+25149,C#;HTML/CSS;JavaScript;SQL
+25150,C#;JavaScript;PHP;SQL;TypeScript
+25151,C;Java;SQL
+25152,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+25153,Assembly;Python;SQL
+25154,HTML/CSS;Java;JavaScript;SQL;TypeScript
+25155,C#;JavaScript;SQL
+25156,HTML/CSS;JavaScript
+25157,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+25158,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+25159,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+25160,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+25161,C;C++;C#;Rust
+25162,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Other(s):
+25163,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25164,Go;JavaScript;Python
+25165,C;C++;Java;PHP;Python
+25166,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+25167,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;WebAssembly
+25168,Bash/Shell/PowerShell;C#;F#;SQL
+25169,HTML/CSS;JavaScript;PHP;Python;SQL
+25170,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift;VBA
+25171,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25172,Bash/Shell/PowerShell;C++;Python
+25173,Bash/Shell/PowerShell;C++;Elixir;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+25174,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+25175,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+25176,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Erlang;F#;Go;JavaScript;Python;Rust
+25177,C#;HTML/CSS;JavaScript;SQL
+25178,Java;SQL;Other(s):
+25179,Java;Python
+25180,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+25181,C;C++;Python
+25182,HTML/CSS;JavaScript;Python;SQL
+25183,HTML/CSS;JavaScript;PHP
+25184,C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+25185,HTML/CSS;JavaScript;Python;SQL
+25186,Go;Swift
+25187,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+25188,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+25189,HTML/CSS;Java;JavaScript;SQL
+25190,HTML/CSS;Java;JavaScript;PHP
+25191,Bash/Shell/PowerShell;Go;Ruby
+25192,C#;HTML/CSS;JavaScript;SQL
+25193,HTML/CSS;Java;JavaScript;SQL;TypeScript
+25194,HTML/CSS;R;Other(s):
+25195,Java;Kotlin
+25196,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+25197,Bash/Shell/PowerShell;C++;C#;Python
+25198,Bash/Shell/PowerShell;C;Elixir;Java;Python;Ruby
+25199,Java;Swift
+25200,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+25201,Go;JavaScript;PHP;Python;Scala;SQL
+25202,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25203,C#;Java;Kotlin
+25204,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;TypeScript
+25206,HTML/CSS;JavaScript
+25207,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+25208,Python
+25209,HTML/CSS;JavaScript
+25210,HTML/CSS;JavaScript
+25211,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL;Other(s):
+25212,HTML/CSS;Java;JavaScript;PHP;SQL
+25213,Go;HTML/CSS;Java;JavaScript
+25214,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+25215,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;Other(s):
+25216,JavaScript;SQL
+25217,C#;HTML/CSS;Java;JavaScript;TypeScript
+25218,Bash/Shell/PowerShell;C;C++;Python
+25219,Bash/Shell/PowerShell;Python
+25220,Bash/Shell/PowerShell;C#;PHP;Python
+25221,C#;JavaScript
+25222,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+25223,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript;Python
+25224,HTML/CSS;JavaScript;PHP
+25225,Java
+25226,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25227,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby
+25228,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+25229,C
+25230,Bash/Shell/PowerShell;C;Ruby;SQL
+25231,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+25232,C++;Python;R;TypeScript
+25233,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25234,VBA;Other(s):
+25235,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+25236,Java;Python;SQL
+25237,Bash/Shell/PowerShell;C;C++;Python
+25238,C++;Dart;HTML/CSS;JavaScript;PHP;SQL
+25239,C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+25240,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25241,HTML/CSS;JavaScript
+25242,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+25243,Python;TypeScript
+25244,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+25245,Java;Kotlin
+25246,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+25247,HTML/CSS;JavaScript;TypeScript
+25248,C#;HTML/CSS;JavaScript;SQL
+25249,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Scala;SQL
+25250,Bash/Shell/PowerShell;C;JavaScript;Python
+25251,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+25252,C#;HTML/CSS;Java;SQL
+25253,Bash/Shell/PowerShell;C++;JavaScript;Objective-C;Python;Swift;TypeScript;WebAssembly;Other(s):
+25254,C#;HTML/CSS;JavaScript;Python;SQL
+25255,SQL;VBA
+25256,Bash/Shell/PowerShell;C;Python;Other(s):
+25257,HTML/CSS;JavaScript;Python
+25258,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP
+25259,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25260,HTML/CSS;Java;Kotlin
+25261,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25262,C++;Objective-C;Swift
+25263,C#;HTML/CSS;JavaScript;SQL
+25264,Java;Python
+25265,HTML/CSS;Java;JavaScript;SQL
+25266,Bash/Shell/PowerShell;C;HTML/CSS;Ruby;Rust;SQL;WebAssembly
+25267,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+25268,C#;HTML/CSS;JavaScript;PHP;TypeScript
+25269,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+25270,PHP;Python
+25271,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Swift
+25272,HTML/CSS;Java;JavaScript;PHP;SQL
+25273,C#;JavaScript
+25274,C;C++;Go;Python
+25275,Python
+25276,C;Go;HTML/CSS;JavaScript
+25277,HTML/CSS;JavaScript;SQL
+25278,C#;Java;Python;SQL
+25279,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+25280,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+25281,HTML/CSS;JavaScript;PHP;SQL
+25282,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+25283,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+25284,C#;SQL
+25285,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+25286,C#;HTML/CSS;JavaScript;SQL
+25287,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+25288,C;C++;Java
+25289,Python
+25290,HTML/CSS;JavaScript
+25291,Swift
+25292,Bash/Shell/PowerShell;Java;Python;SQL
+25293,HTML/CSS;JavaScript;Python;SQL
+25294,JavaScript
+25295,Bash/Shell/PowerShell;Python
+25296,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;Python;TypeScript
+25297,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25298,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+25299,C#;HTML/CSS;JavaScript;SQL
+25300,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;VBA
+25301,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Scala;SQL;Swift
+25302,Bash/Shell/PowerShell;Python;SQL
+25303,HTML/CSS;JavaScript;PHP
+25304,HTML/CSS;JavaScript;PHP;Python;SQL
+25305,C;C++;C#;HTML/CSS;Java;JavaScript
+25306,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+25307,HTML/CSS;Java;JavaScript;Scala;SQL
+25308,C#;SQL;VBA
+25309,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;Other(s):
+25310,HTML/CSS;JavaScript;Ruby;SQL
+25311,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Scala
+25312,Bash/Shell/PowerShell;JavaScript;SQL;TypeScript
+25313,HTML/CSS;SQL;VBA
+25314,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;Other(s):
+25315,PHP;Python
+25316,Assembly;C;C++;HTML/CSS
+25317,Bash/Shell/PowerShell;Java;JavaScript;SQL
+25318,C#;HTML/CSS;Python;TypeScript
+25319,HTML/CSS;Java;Python
+25320,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+25321,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+25322,C;C++;JavaScript;Python;SQL
+25323,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+25324,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25325,HTML/CSS;JavaScript;SQL
+25326,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+25327,HTML/CSS;JavaScript;PHP;SQL;VBA
+25328,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+25329,Assembly;C;C++;Other(s):
+25330,C#;Java;SQL
+25331,HTML/CSS;Java;Kotlin;SQL
+25332,Dart;HTML/CSS;JavaScript;PHP;TypeScript
+25333,Go;Java;Kotlin
+25334,Java;JavaScript;Swift
+25335,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25336,C#;Other(s):
+25337,Java;Kotlin
+25338,Bash/Shell/PowerShell;Go;Python;SQL
+25339,HTML/CSS;JavaScript;PHP
+25340,Bash/Shell/PowerShell;Go;Java;JavaScript;Ruby;SQL
+25341,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+25342,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+25343,HTML/CSS;JavaScript;PHP;SQL
+25344,Java
+25345,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+25346,Java;Python
+25347,Python
+25348,Bash/Shell/PowerShell;Python
+25349,Assembly;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+25350,Assembly;C;Java;Python;Rust
+25351,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+25352,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+25353,Assembly;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Rust;TypeScript
+25354,C;Java;JavaScript
+25355,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+25356,C;C++;C#;Go;Java;JavaScript;Python;SQL
+25357,HTML/CSS;JavaScript
+25358,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+25359,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+25360,Java
+25361,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+25362,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+25363,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25364,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;VBA
+25365,C++;JavaScript;PHP;Python
+25366,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+25367,Objective-C;Swift
+25368,HTML/CSS;Java;Kotlin;Python;Swift
+25369,C++;C#;Kotlin;SQL;TypeScript
+25370,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+25371,Python;R
+25372,Python;SQL
+25373,C++;HTML/CSS;Python
+25374,C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25375,HTML/CSS;JavaScript;PHP;Python
+25376,C#;JavaScript;SQL
+25377,HTML/CSS;JavaScript;PHP
+25378,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+25379,HTML/CSS;Java;JavaScript;SQL;Other(s):
+25380,HTML/CSS;JavaScript;PHP;SQL
+25381,C#;HTML/CSS;JavaScript;TypeScript
+25382,HTML/CSS;JavaScript;TypeScript
+25383,C++;HTML/CSS;JavaScript;PHP;SQL
+25384,Bash/Shell/PowerShell;C#;SQL;TypeScript
+25385,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+25386,HTML/CSS;JavaScript;Ruby;SQL
+25387,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25388,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+25389,C#;HTML/CSS;JavaScript;SQL;Other(s):
+25390,C#;Java;JavaScript;Swift;TypeScript
+25391,HTML/CSS;Java;JavaScript;TypeScript
+25392,C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+25393,HTML/CSS;Java;JavaScript;SQL
+25394,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+25395,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+25396,HTML/CSS;SQL;VBA
+25397,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+25398,Scala
+25399,C++;HTML/CSS;Java;JavaScript
+25400,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+25401,HTML/CSS;JavaScript;Python;SQL
+25402,Bash/Shell/PowerShell;Objective-C;Swift
+25403,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+25404,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+25405,Python;SQL
+25406,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25407,Assembly;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+25408,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust
+25409,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+25410,HTML/CSS;JavaScript;PHP;Python;SQL
+25411,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+25412,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25413,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25414,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25415,C++;C#
+25416,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;SQL;Swift
+25417,HTML/CSS;JavaScript;PHP;Python;SQL
+25418,C#;JavaScript;Python;SQL;Other(s):
+25419,C#;HTML/CSS;SQL
+25420,C++;HTML/CSS;Java;JavaScript;SQL
+25421,HTML/CSS;JavaScript;PHP
+25423,C#;F#
+25424,Bash/Shell/PowerShell;C;Python;SQL
+25425,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25426,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+25427,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25428,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;VBA
+25429,C#;HTML/CSS;JavaScript;SQL
+25430,C#;Java
+25431,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+25432,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+25433,HTML/CSS;Java
+25434,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25435,Clojure;HTML/CSS;Java;JavaScript
+25436,Python;R;SQL
+25437,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25438,Go;HTML/CSS;JavaScript
+25439,C;C++;C#;HTML/CSS;JavaScript;Ruby;SQL
+25440,HTML/CSS;Java;JavaScript;TypeScript
+25441,C;C++;Java;VBA;Other(s):
+25442,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;SQL;Other(s):
+25443,C#;HTML/CSS;JavaScript
+25444,C#;HTML/CSS;JavaScript;PHP
+25445,Bash/Shell/PowerShell;C;C++;Python
+25446,JavaScript;Ruby;SQL
+25448,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+25449,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+25450,C#;JavaScript;SQL
+25451,JavaScript;PHP;Python
+25452,Java;Kotlin
+25453,HTML/CSS;JavaScript;PHP
+25454,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+25455,Bash/Shell/PowerShell;Java
+25456,Java;Scala;SQL
+25457,Bash/Shell/PowerShell;C++;Python;SQL
+25458,Bash/Shell/PowerShell;Go;Java;Ruby;SQL
+25459,Elixir;HTML/CSS;JavaScript;R;Swift
+25460,C;Java;PHP;SQL
+25461,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+25462,HTML/CSS;JavaScript;Other(s):
+25463,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+25464,Assembly;Java;Python
+25465,HTML/CSS;Java;JavaScript;SQL
+25466,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+25467,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;Rust;SQL
+25468,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25469,Bash/Shell/PowerShell;Python;SQL
+25470,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL;Swift
+25471,HTML/CSS;JavaScript;Swift;VBA
+25472,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25473,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;VBA
+25474,C#;Elixir;Erlang;JavaScript;Python;TypeScript;Other(s):
+25475,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+25476,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL;TypeScript
+25477,C++;Python;R
+25478,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+25479,HTML/CSS;Java;JavaScript;TypeScript
+25480,Assembly;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+25481,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+25482,C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+25483,C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL
+25484,HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript
+25485,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25486,HTML/CSS;Java;JavaScript;Ruby;SQL
+25487,C#;HTML/CSS;JavaScript;PHP;SQL
+25488,SQL;Other(s):
+25489,HTML/CSS;JavaScript;Python
+25490,Assembly;C++;HTML/CSS;JavaScript;Python
+25491,C;HTML/CSS;Java;JavaScript
+25492,HTML/CSS;Java;JavaScript
+25493,C#;HTML/CSS;Java;JavaScript;SQL
+25494,Bash/Shell/PowerShell;C;C++;Go;Rust
+25495,Java;JavaScript;SQL;VBA
+25496,C++;Java;Kotlin;PHP
+25497,Bash/Shell/PowerShell;C#;Python;R;SQL;Other(s):
+25498,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+25499,PHP;Python
+25500,HTML/CSS;JavaScript
+25501,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;R
+25502,Java;JavaScript;Kotlin;Objective-C;Swift
+25503,C#;Go;HTML/CSS;JavaScript;PHP;SQL
+25504,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+25505,R;SQL;VBA;Other(s):
+25506,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+25507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+25508,C#;Ruby;Other(s):
+25509,C;C++;HTML/CSS;Java;JavaScript;Python
+25510,Dart;Java;Kotlin;Objective-C;Scala;SQL
+25511,Bash/Shell/PowerShell;C;HTML/CSS;Python
+25512,Assembly;Go;HTML/CSS;Python;TypeScript
+25513,HTML/CSS;JavaScript;Ruby
+25514,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25515,C;C++;C#;Java;PHP;SQL;Other(s):
+25516,Java;Scala;Other(s):
+25517,C;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+25518,C++;Python;Other(s):
+25519,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+25520,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+25521,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;SQL
+25522,C++;HTML/CSS;Java;JavaScript;TypeScript
+25523,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+25524,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;SQL
+25526,HTML/CSS;Java;JavaScript;SQL;Other(s):
+25527,C#;Java;JavaScript;Python;Ruby
+25528,C#;HTML/CSS;JavaScript;SQL
+25529,HTML/CSS;JavaScript;Ruby;Other(s):
+25530,C++;F#;Rust;Other(s):
+25531,PHP;SQL
+25532,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25533,Bash/Shell/PowerShell;Python
+25534,Java;SQL
+25535,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25536,HTML/CSS;JavaScript
+25537,Java
+25538,Elixir;Erlang;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+25539,Java
+25540,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25541,Bash/Shell/PowerShell;C#;F#;Python;SQL
+25542,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Scala;TypeScript
+25543,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25544,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+25545,HTML/CSS;JavaScript
+25546,Bash/Shell/PowerShell;C;C++;Java;Python
+25547,Java;Kotlin;Swift
+25548,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+25549,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL
+25550,HTML/CSS;JavaScript;SQL
+25551,JavaScript;PHP;Python;Ruby
+25552,C#
+25553,Swift
+25554,Swift
+25555,Bash/Shell/PowerShell;JavaScript;Python;SQL
+25556,Assembly;Go;JavaScript;Rust;TypeScript
+25557,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+25558,HTML/CSS;JavaScript;TypeScript
+25559,HTML/CSS;Java;JavaScript;TypeScript
+25560,Bash/Shell/PowerShell;C#;SQL;TypeScript
+25561,HTML/CSS;JavaScript;PHP;Python;SQL
+25562,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25563,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25564,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+25565,C;C++;C#;Python;R;SQL
+25566,C;HTML/CSS;Java;JavaScript;Python
+25567,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+25568,Bash/Shell/PowerShell;Java;SQL
+25569,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+25570,C;HTML/CSS;Java;JavaScript;Objective-C;Python;Rust;Swift;Other(s):
+25571,JavaScript;PHP;SQL
+25572,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+25573,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+25574,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;JavaScript;Python;Other(s):
+25575,HTML/CSS;JavaScript;PHP
+25576,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Python
+25577,Python
+25578,JavaScript;TypeScript
+25579,Bash/Shell/PowerShell;C;C++;Python;Rust;Other(s):
+25580,C#;HTML/CSS;Java;JavaScript;SQL
+25581,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+25582,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+25583,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL;VBA
+25584,C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+25585,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+25586,Java;JavaScript
+25587,C;C#;HTML/CSS;Java;Python
+25588,C++;Java;Python
+25589,HTML/CSS;Java;JavaScript;PHP;SQL
+25590,Bash/Shell/PowerShell;C;R;SQL
+25591,Bash/Shell/PowerShell;C#;SQL
+25592,C;C++;HTML/CSS;Java;Kotlin;Objective-C;PHP;Python;SQL;Swift
+25593,HTML/CSS;JavaScript;Python;SQL;TypeScript
+25594,C#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+25595,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL;Swift
+25596,Java;Kotlin
+25597,C#;JavaScript;Ruby;SQL
+25598,Bash/Shell/PowerShell;Python;SQL
+25599,HTML/CSS
+25600,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+25601,Bash/Shell/PowerShell;C;C++;Python
+25602,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+25603,Java
+25604,HTML/CSS;JavaScript
+25605,VBA
+25606,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python
+25607,HTML/CSS;JavaScript;Ruby
+25608,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+25609,C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+25610,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin
+25611,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+25612,HTML/CSS;Java;JavaScript
+25613,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+25614,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+25615,Bash/Shell/PowerShell;C#;SQL
+25616,C#;HTML/CSS;Java;JavaScript;TypeScript
+25617,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+25618,Bash/Shell/PowerShell;JavaScript;Python
+25619,Bash/Shell/PowerShell;Python;SQL
+25620,C;C++;C#;HTML/CSS;Java
+25621,Python
+25622,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+25623,HTML/CSS;JavaScript;TypeScript
+25624,Python;Ruby;Other(s):
+25625,HTML/CSS;JavaScript;PHP;SQL
+25626,JavaScript;Python
+25627,HTML/CSS;JavaScript;PHP;SQL
+25628,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+25629,Java;JavaScript;SQL
+25630,C;C++;Python
+25631,Assembly;C;C++;Python;Other(s):
+25632,Bash/Shell/PowerShell;Python;R
+25633,HTML/CSS;Java;JavaScript;PHP;Swift
+25634,C;C#;HTML/CSS;Java;JavaScript;SQL
+25635,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+25636,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25637,C#;Java;JavaScript;Python;SQL
+25638,JavaScript;Python
+25639,C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+25640,Dart;Java;JavaScript;Kotlin;Swift;TypeScript
+25641,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+25642,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+25643,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+25644,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25645,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25646,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+25647,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+25648,Assembly;C;C++
+25649,C#;HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+25650,HTML/CSS;JavaScript;Python;TypeScript
+25651,JavaScript;PHP;SQL
+25652,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+25653,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+25654,Bash/Shell/PowerShell;Python;Other(s):
+25655,Dart;HTML/CSS;Java;JavaScript;Python
+25656,Assembly;C;C++;C#;F#;Kotlin;Python
+25657,Bash/Shell/PowerShell;C++;Python;SQL
+25658,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+25659,HTML/CSS;JavaScript;PHP;SQL
+25660,Java
+25661,Scala
+25662,C;C++;C#;PHP;Python;SQL
+25663,Clojure;Dart;JavaScript;Kotlin
+25664,C#;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+25665,C#;HTML/CSS;JavaScript;SQL
+25666,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+25667,HTML/CSS;JavaScript;PHP
+25668,HTML/CSS;JavaScript
+25669,Assembly;C#;Dart;JavaScript;SQL;TypeScript
+25670,JavaScript;PHP;SQL
+25671,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+25672,C++;Java;Kotlin;SQL;Swift
+25673,Python;SQL
+25674,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25675,C#;Go;Python;SQL
+25676,Java;Other(s):
+25677,HTML/CSS;JavaScript;PHP;SQL
+25678,HTML/CSS;Java;JavaScript;SQL;TypeScript
+25679,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+25680,C#;HTML/CSS;Java;JavaScript;Python;SQL
+25681,C;HTML/CSS;JavaScript;TypeScript
+25682,HTML/CSS;JavaScript;PHP
+25683,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25684,C#;HTML/CSS;JavaScript;TypeScript
+25685,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25686,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+25687,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+25688,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+25689,HTML/CSS;JavaScript;PHP;SQL
+25691,JavaScript;TypeScript
+25692,Python
+25693,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Scala;TypeScript
+25694,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25695,Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;Python
+25696,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Swift
+25697,C;Go;HTML/CSS;JavaScript;Objective-C;Python;Swift
+25698,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+25699,SQL
+25700,HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+25701,Bash/Shell/PowerShell;Go;Java;Python
+25702,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+25703,Bash/Shell/PowerShell;Java;Python;SQL;Swift;Other(s):
+25704,HTML/CSS;PHP;R;SQL;VBA
+25705,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+25706,C#;HTML/CSS;JavaScript;Python;SQL
+25707,HTML/CSS;Java;JavaScript;TypeScript
+25708,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+25709,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;TypeScript
+25710,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+25711,Bash/Shell/PowerShell;C;C++;Objective-C;Swift
+25712,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;VBA
+25713,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+25714,Assembly;Bash/Shell/PowerShell;C++;Rust;SQL
+25715,C++;Python
+25716,C;C++;C#
+25717,C#;HTML/CSS;JavaScript;Python;SQL
+25718,C++;C#;HTML/CSS;JavaScript;TypeScript
+25719,C#;HTML/CSS;JavaScript;SQL
+25720,C#;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25721,C++;HTML/CSS;Java;PHP
+25722,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Scala;Swift
+25723,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25724,C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Other(s):
+25725,HTML/CSS;PHP
+25726,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+25727,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25728,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+25730,Java;Kotlin
+25731,C++;HTML/CSS;Java;Python;Scala
+25732,HTML/CSS;JavaScript;Kotlin;Swift
+25733,Objective-C;Swift
+25734,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+25735,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+25736,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25737,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript;WebAssembly
+25738,HTML/CSS;JavaScript;Swift
+25739,JavaScript;Objective-C;PHP;Ruby;TypeScript
+25740,HTML/CSS;JavaScript;PHP;Ruby;SQL
+25741,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+25742,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;SQL;Other(s):
+25743,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala
+25744,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+25745,Swift
+25746,Assembly;Elixir;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+25747,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+25748,C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+25749,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25750,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25751,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+25752,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+25753,HTML/CSS;Java;JavaScript;SQL
+25754,JavaScript;Ruby;SQL;TypeScript
+25755,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+25756,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+25757,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+25758,Bash/Shell/PowerShell;JavaScript;Python
+25759,C#;Objective-C;SQL
+25760,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+25761,HTML/CSS;Python;R;SQL
+25762,JavaScript;PHP
+25763,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+25764,Bash/Shell/PowerShell;C#;JavaScript;Python
+25765,C#;Java;JavaScript;SQL;VBA
+25766,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+25767,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+25768,C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+25769,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25770,Java
+25771,Assembly;Bash/Shell/PowerShell;C;Python
+25772,HTML/CSS;JavaScript;TypeScript
+25773,HTML/CSS;Java;JavaScript
+25774,HTML/CSS;Java;JavaScript;Other(s):
+25775,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+25776,HTML/CSS;JavaScript;Python
+25777,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby
+25778,Bash/Shell/PowerShell;Java;JavaScript
+25779,Elixir;Go;JavaScript;TypeScript
+25780,Python
+25781,Bash/Shell/PowerShell;C#;Python
+25782,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+25783,Ruby
+25784,HTML/CSS;JavaScript;PHP;SQL
+25785,HTML/CSS;JavaScript;Python
+25786,Java;Python
+25787,HTML/CSS;PHP;Python;SQL
+25788,HTML/CSS;JavaScript
+25789,Bash/Shell/PowerShell;JavaScript;TypeScript
+25790,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+25791,C#;SQL
+25792,HTML/CSS;JavaScript;PHP;Python;SQL
+25793,C#;HTML/CSS;JavaScript;PHP;SQL
+25794,Bash/Shell/PowerShell;PHP
+25795,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+25796,C#;HTML/CSS;SQL;Swift;Other(s):
+25797,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+25798,HTML/CSS;JavaScript;Python
+25799,HTML/CSS
+25800,C#;HTML/CSS;JavaScript;SQL
+25801,Clojure;Java;Python;SQL
+25802,HTML/CSS;Java;JavaScript;SQL
+25804,Python
+25805,Java;JavaScript;SQL
+25806,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+25807,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+25808,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25809,Bash/Shell/PowerShell;Java;Kotlin;Python;R;Ruby;SQL;TypeScript
+25810,C;C++;C#;Kotlin;Swift
+25811,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+25812,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25813,HTML/CSS;Java;JavaScript;PHP;SQL
+25814,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25815,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+25816,C;HTML/CSS;JavaScript;PHP;Python;R;SQL
+25817,C++;Java;JavaScript;SQL;Other(s):
+25818,Python;SQL
+25819,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+25820,JavaScript;TypeScript
+25821,Bash/Shell/PowerShell;C;C++;Java;R;SQL;TypeScript;Other(s):
+25822,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25823,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+25824,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+25826,C#;JavaScript;SQL
+25827,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+25828,C++;Java;Scala;SQL
+25829,HTML/CSS;JavaScript
+25830,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA
+25831,Bash/Shell/PowerShell;C;C++;SQL
+25832,Java;JavaScript;Python
+25833,HTML/CSS;Python
+25834,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+25835,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Python
+25836,C;C++;C#
+25837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+25838,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+25839,Bash/Shell/PowerShell;JavaScript;Python;Ruby;TypeScript
+25840,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+25841,HTML/CSS;JavaScript
+25843,Other(s):
+25844,C;Java;JavaScript;Python
+25845,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+25846,C#;HTML/CSS;Java;SQL;Swift;TypeScript
+25847,HTML/CSS;JavaScript
+25848,Java;Python
+25849,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+25850,Bash/Shell/PowerShell;Go;HTML/CSS;Python
+25851,C#;HTML/CSS;JavaScript;PHP;SQL
+25852,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+25853,Bash/Shell/PowerShell;C;C++;Clojure;Dart;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+25854,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+25855,C++;HTML/CSS;Java;JavaScript;TypeScript
+25856,Bash/Shell/PowerShell;C++;Python;Other(s):
+25857,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+25859,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;VBA
+25860,C;C++;Java;Objective-C;SQL;Swift
+25861,HTML/CSS;JavaScript;Python
+25862,C#;HTML/CSS;Java;SQL
+25863,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+25864,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25865,Java;SQL
+25866,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+25867,Bash/Shell/PowerShell;C++;C#;JavaScript;SQL;TypeScript;Other(s):
+25868,C;Python;R
+25869,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+25870,HTML/CSS;JavaScript
+25871,HTML/CSS;JavaScript;Python;Scala;SQL
+25872,Bash/Shell/PowerShell;Go;JavaScript;Python;Other(s):
+25873,SQL;VBA
+25874,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript;WebAssembly
+25875,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+25876,Bash/Shell/PowerShell;C#;JavaScript;Kotlin;Python;TypeScript
+25877,C#;JavaScript
+25878,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala
+25879,C++;C#;Dart;HTML/CSS;Java;Kotlin;PHP;SQL;Swift
+25880,C++;HTML/CSS;JavaScript;Python
+25881,C;C++;Go;Python;SQL
+25882,C#;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL
+25883,C++;HTML/CSS;Java;PHP;Python
+25884,Python;R;SQL
+25885,HTML/CSS
+25886,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+25887,R;VBA
+25888,Bash/Shell/PowerShell;JavaScript;PHP;Python;Rust
+25889,Assembly;C#;HTML/CSS;Java;JavaScript;SQL
+25890,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+25891,C++
+25892,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+25894,HTML/CSS;Java;JavaScript;SQL
+25895,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+25896,HTML/CSS;Java;JavaScript;Python;SQL
+25897,Java;Kotlin;Ruby
+25898,HTML/CSS;JavaScript
+25899,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+25900,HTML/CSS;JavaScript;PHP
+25901,C;C++;C#;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+25902,HTML/CSS;Java;JavaScript;Python;Swift
+25903,Objective-C;Swift
+25904,C++;VBA
+25905,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+25906,C;C++;Java;Objective-C;Swift
+25907,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+25908,HTML/CSS;JavaScript;PHP;SQL
+25909,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+25910,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+25911,Objective-C
+25912,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+25913,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+25914,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+25915,Bash/Shell/PowerShell;C++;Python
+25916,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+25917,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+25918,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+25919,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+25920,HTML/CSS;JavaScript;PHP;TypeScript
+25921,Python;SQL
+25922,Bash/Shell/PowerShell;Other(s):
+25923,JavaScript
+25924,HTML/CSS;JavaScript;Scala;SQL;TypeScript
+25925,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;VBA
+25926,C#;HTML/CSS;JavaScript;SQL
+25927,HTML/CSS;JavaScript;PHP;Python;SQL
+25928,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+25929,C;C++;C#;HTML/CSS;JavaScript;Python
+25930,HTML/CSS;JavaScript;PHP;TypeScript
+25931,Assembly;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+25932,Bash/Shell/PowerShell;C++;Python
+25933,C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+25934,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+25935,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+25936,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+25937,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+25938,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;Scala;SQL;Swift;Other(s):
+25939,Bash/Shell/PowerShell;Python;Other(s):
+25940,C#;HTML/CSS;JavaScript;SQL
+25941,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+25942,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+25943,HTML/CSS;Java;JavaScript;SQL
+25944,Go;JavaScript;PHP;Python
+25945,Python;R;SQL
+25946,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25948,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+25949,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Rust;TypeScript;WebAssembly;Other(s):
+25950,JavaScript;Python
+25951,HTML/CSS;PHP;SQL
+25952,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+25953,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+25954,Bash/Shell/PowerShell;F#;JavaScript;Python;R;SQL;VBA
+25955,C;Java;Python;Scala
+25956,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+25957,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+25958,Java;Python;SQL
+25959,HTML/CSS;JavaScript;PHP
+25960,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+25961,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+25962,Dart;HTML/CSS;JavaScript;PHP;SQL
+25963,C;C++;Java;Kotlin;Swift
+25964,C;C++;HTML/CSS;JavaScript;Objective-C;Swift
+25965,C;C++;C#;Swift
+25966,C#;JavaScript;Python;SQL;TypeScript
+25967,SQL;VBA;Other(s):
+25968,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;SQL
+25969,C#;HTML/CSS;JavaScript;SQL;TypeScript
+25970,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+25971,JavaScript;TypeScript
+25972,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+25973,JavaScript
+25974,C++;C#
+25975,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Swift;TypeScript
+25976,HTML/CSS;Java;JavaScript;PHP;SQL
+25977,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+25978,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+25979,JavaScript;TypeScript
+25980,C#;HTML/CSS;JavaScript;SQL;VBA
+25981,Assembly;C;C++;HTML/CSS;Python;Ruby;TypeScript;WebAssembly;Other(s):
+25982,Bash/Shell/PowerShell;C;C++;Go;Java;Python;R;Scala
+25983,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+25984,HTML/CSS;JavaScript;Python
+25985,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+25986,Bash/Shell/PowerShell;C#;JavaScript;SQL;Swift;TypeScript
+25987,Assembly;C++;HTML/CSS;Java;Kotlin;Python;SQL;VBA
+25988,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;PHP;Python;SQL
+25989,HTML/CSS;Java;JavaScript;Python;SQL
+25990,C#;F#;HTML/CSS;JavaScript;SQL
+25991,Go;Python
+25992,C++;Python;Other(s):
+25994,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+25995,C#;Python
+25996,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+25997,C;C++;C#;Python;Ruby
+25998,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;SQL
+25999,HTML/CSS;JavaScript;PHP;Python
+26000,C#;HTML/CSS;JavaScript;SQL
+26001,Assembly;Bash/Shell/PowerShell;C;C++;Python
+26002,C#;Go;Java;Swift
+26003,HTML/CSS;Java;JavaScript;PHP;Python
+26004,Bash/Shell/PowerShell;C#;Java;Kotlin;Python;SQL
+26007,HTML/CSS;Java;JavaScript;SQL;TypeScript
+26008,Java;JavaScript;Objective-C;SQL
+26009,HTML/CSS;Java;JavaScript;PHP;Python
+26011,C++;HTML/CSS;Java;SQL
+26012,HTML/CSS;JavaScript
+26013,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R
+26014,HTML/CSS
+26015,HTML/CSS;Java;JavaScript;Python
+26016,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+26017,C++;HTML/CSS;Python;SQL
+26018,HTML/CSS;JavaScript
+26019,HTML/CSS;Java;Scala;Other(s):
+26020,C++;HTML/CSS;JavaScript;SQL;TypeScript
+26021,C#;HTML/CSS;JavaScript;SQL
+26022,HTML/CSS;Java;JavaScript
+26023,C#;HTML/CSS;JavaScript;SQL
+26024,C++;HTML/CSS;Java;JavaScript;Python;Ruby
+26025,C;C++;Python;R;Other(s):
+26026,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+26027,C;HTML/CSS;Java;JavaScript;PHP;SQL
+26028,PHP
+26029,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+26030,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+26031,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP
+26032,Java;Kotlin
+26033,C#;Java
+26034,Assembly;C;C++;HTML/CSS;Python
+26035,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+26036,C#;JavaScript;SQL;TypeScript
+26037,Bash/Shell/PowerShell;Python;SQL
+26038,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+26039,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+26040,C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift
+26041,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java
+26042,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26043,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+26044,Bash/Shell/PowerShell;Clojure;Python
+26045,HTML/CSS;JavaScript;PHP
+26046,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+26047,HTML/CSS;JavaScript;Ruby
+26048,C#;JavaScript;PHP
+26049,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;PHP;Python;Ruby;SQL;Other(s):
+26050,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26051,HTML/CSS;JavaScript;Python
+26052,Bash/Shell/PowerShell;Python
+26053,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26054,C#;HTML/CSS;JavaScript;VBA;Other(s):
+26055,C#;HTML/CSS;JavaScript;SQL;Other(s):
+26056,Java;Kotlin
+26057,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+26058,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+26059,HTML/CSS;Java;JavaScript
+26060,C;C++;C#;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26061,Dart;HTML/CSS;JavaScript;PHP;SQL
+26062,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+26063,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+26064,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+26065,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+26066,C#;HTML/CSS;JavaScript;PHP;SQL
+26067,Bash/Shell/PowerShell;C++;Go;Python
+26068,HTML/CSS;JavaScript;Python;SQL
+26069,C#;Kotlin
+26070,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+26071,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+26072,Assembly;JavaScript;SQL;Other(s):
+26073,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+26074,Python;R;Other(s):
+26075,Java;Python;Ruby;SQL
+26076,Java;Scala;SQL
+26077,HTML/CSS;JavaScript;PHP
+26078,C++;Java;Other(s):
+26079,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+26080,Go;HTML/CSS;JavaScript;PHP;SQL
+26081,HTML/CSS;JavaScript;Python
+26082,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+26083,HTML/CSS;JavaScript
+26084,Bash/Shell/PowerShell;Java
+26085,C;C++;Python;Rust
+26086,Bash/Shell/PowerShell;SQL
+26087,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+26088,C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+26089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+26090,Bash/Shell/PowerShell;C;C++
+26091,Other(s):
+26092,C++;HTML/CSS;PHP
+26093,C;C++;C#;JavaScript;SQL
+26094,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;R;Ruby;Scala;SQL;TypeScript
+26095,C#;HTML/CSS;Java;SQL
+26096,Java;JavaScript;Kotlin
+26097,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+26098,Elixir;Erlang;Java
+26099,HTML/CSS;Java;JavaScript;SQL
+26100,Java
+26101,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+26102,HTML/CSS;JavaScript;SQL
+26103,C#;F#;HTML/CSS;Python;SQL
+26104,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Scala;SQL
+26105,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+26106,C#;HTML/CSS;JavaScript;Rust
+26107,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+26108,Assembly;Bash/Shell/PowerShell;C;C++;Python
+26109,Ruby;TypeScript
+26110,HTML/CSS;JavaScript;PHP
+26111,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+26112,Bash/Shell/PowerShell;C#;Go;SQL
+26113,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+26115,C;C++;C#;SQL
+26116,C#;Go;JavaScript;SQL;Other(s):
+26117,Objective-C;Swift
+26118,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+26119,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+26120,C;C++;Java
+26121,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26122,HTML/CSS;JavaScript;PHP;SQL
+26123,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26124,HTML/CSS;JavaScript
+26125,C#;Clojure;F#;HTML/CSS;JavaScript;PHP;SQL;VBA
+26126,Bash/Shell/PowerShell;C#;Erlang;Go;HTML/CSS;JavaScript;Python;SQL
+26127,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+26128,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python
+26129,C++;Java;JavaScript
+26130,HTML/CSS;JavaScript;PHP
+26131,HTML/CSS;Java;JavaScript;SQL
+26132,Clojure;HTML/CSS;Java;JavaScript;WebAssembly;Other(s):
+26133,HTML/CSS;Java;Scala;SQL
+26134,C#;HTML/CSS;Java;JavaScript;SQL
+26135,C;C++;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;Other(s):
+26136,C;C#
+26137,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+26138,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;R;Other(s):
+26139,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26140,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python;Scala
+26141,Bash/Shell/PowerShell;C#;SQL
+26142,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;WebAssembly
+26143,Bash/Shell/PowerShell;Python;SQL;VBA
+26144,Python
+26145,C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+26146,C++;C#;HTML/CSS;JavaScript;PHP
+26147,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26148,Bash/Shell/PowerShell;Python
+26149,Java
+26150,Bash/Shell/PowerShell;Java;Python;Rust
+26151,HTML/CSS;Java;JavaScript;Swift
+26152,C++;Go;HTML/CSS;JavaScript;Python;SQL
+26153,HTML/CSS;JavaScript;PHP;SQL
+26154,C#;JavaScript;TypeScript
+26155,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+26156,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+26157,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;Objective-C;Python;Swift;TypeScript
+26158,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+26159,C++;C#;Java;JavaScript;Rust;SQL
+26160,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+26161,C;C++;HTML/CSS;Objective-C;Python
+26162,HTML/CSS;JavaScript;Python
+26163,C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+26164,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26165,HTML/CSS;PHP;Python
+26166,JavaScript
+26167,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26168,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+26169,HTML/CSS;JavaScript;Other(s):
+26170,HTML/CSS;Python
+26171,HTML/CSS;JavaScript;PHP;SQL
+26172,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+26173,C#;TypeScript
+26174,C++;Elixir;Erlang;JavaScript;PHP;Python;Ruby;Rust;Scala
+26175,C#;HTML/CSS;SQL
+26176,C++;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+26177,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26178,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+26179,HTML/CSS;JavaScript
+26180,Bash/Shell/PowerShell;JavaScript;Python;R
+26181,C#;HTML/CSS;JavaScript;Python;SQL
+26182,HTML/CSS;JavaScript;SQL
+26183,HTML/CSS;Java;JavaScript;SQL;TypeScript
+26184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+26185,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+26186,Elixir;HTML/CSS;JavaScript;PHP;Ruby
+26187,C++;HTML/CSS;Java;JavaScript
+26188,C#;HTML/CSS;SQL
+26189,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+26190,Python;SQL
+26191,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26192,C#;HTML/CSS;JavaScript;SQL
+26193,HTML/CSS;Java;JavaScript
+26194,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+26195,C;C++;VBA
+26196,C#;Objective-C;SQL;Swift
+26197,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby
+26199,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+26200,Bash/Shell/PowerShell;C;HTML/CSS;Python
+26201,C#;Elixir;Java;JavaScript;PHP;Python;SQL
+26202,HTML/CSS;JavaScript;PHP
+26203,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+26204,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+26205,Bash/Shell/PowerShell;C;C++;Python
+26206,C++;PHP;Python;SQL
+26207,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+26208,HTML/CSS;Java;JavaScript;SQL
+26209,Bash/Shell/PowerShell;C;C++;Python
+26210,C#;HTML/CSS;Java;SQL;TypeScript
+26211,HTML/CSS;JavaScript;PHP
+26212,C#;HTML/CSS;JavaScript
+26213,HTML/CSS;JavaScript;PHP
+26214,C;HTML/CSS;Java;Kotlin;Python;Scala;SQL
+26215,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R;SQL
+26216,JavaScript;PHP;SQL;Other(s):
+26217,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+26218,JavaScript;Objective-C;Swift
+26219,C#;HTML/CSS;JavaScript;PHP;TypeScript
+26220,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26221,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26222,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+26223,Assembly;Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+26224,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+26225,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26226,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+26227,C;Python
+26228,C;C++;C#;Java;PHP;SQL;Swift
+26229,C;C++;Objective-C
+26230,C;C++;Objective-C
+26231,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+26232,C#;HTML/CSS;JavaScript;SQL
+26233,C#;HTML/CSS;JavaScript;PHP;SQL
+26234,Java;Python;R
+26235,Bash/Shell/PowerShell;C#;SQL
+26236,Bash/Shell/PowerShell;JavaScript;Python;R;SQL;VBA
+26237,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+26238,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+26239,C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+26240,HTML/CSS;JavaScript;Python;SQL;TypeScript
+26241,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+26242,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+26243,Bash/Shell/PowerShell;JavaScript;Ruby
+26244,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+26245,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Rust
+26246,HTML/CSS;JavaScript;PHP;SQL
+26247,HTML/CSS;JavaScript;PHP
+26248,Java
+26249,HTML/CSS;JavaScript;PHP;Other(s):
+26250,C#;HTML/CSS;SQL
+26251,HTML/CSS;JavaScript
+26252,Java;SQL
+26254,HTML/CSS;Java;JavaScript;SQL;TypeScript
+26255,C#;Python;Ruby;Swift
+26256,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26257,HTML/CSS;JavaScript;PHP
+26258,Assembly;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+26259,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+26260,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+26261,Java;Python
+26262,HTML/CSS;Python;TypeScript
+26263,C#;HTML/CSS;JavaScript;PHP;SQL
+26264,C#;Go;HTML/CSS;JavaScript;SQL
+26265,C#;Python
+26266,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26267,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+26268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26269,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+26270,C++;Java
+26271,HTML/CSS;JavaScript;PHP
+26272,HTML/CSS;Python;SQL
+26273,HTML/CSS;JavaScript;Ruby
+26274,HTML/CSS;JavaScript;PHP;Python;SQL
+26275,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+26276,Assembly;C;C++;C#;JavaScript;SQL;TypeScript
+26277,HTML/CSS;Java;JavaScript;Python
+26278,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;PHP;SQL
+26279,C#;HTML/CSS;JavaScript;SQL
+26280,Bash/Shell/PowerShell;Java;JavaScript;Python;Rust;Scala;SQL
+26281,Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+26282,R
+26283,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26284,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+26285,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26286,Java;Kotlin
+26287,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+26288,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+26289,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript
+26290,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+26291,C;C++;HTML/CSS;Python
+26292,Bash/Shell/PowerShell;C;Java;Python;Scala
+26293,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26294,C;C++;C#;JavaScript;Python;SQL
+26295,C;Python
+26296,HTML/CSS;JavaScript;Python;SQL;TypeScript
+26297,Bash/Shell/PowerShell;Java;Other(s):
+26298,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+26299,HTML/CSS;JavaScript;PHP;TypeScript
+26300,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+26301,C;Go;JavaScript;Python;R;SQL;TypeScript
+26302,C++;HTML/CSS;Java;JavaScript;Python;SQL
+26303,Java;SQL
+26304,Java;Python
+26305,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;SQL
+26306,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+26307,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+26308,HTML/CSS;JavaScript;Python;TypeScript
+26309,Bash/Shell/PowerShell;Java;JavaScript;SQL
+26310,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+26311,HTML/CSS;JavaScript;PHP;SQL
+26312,C#;HTML/CSS;Java;JavaScript;TypeScript
+26313,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26314,HTML/CSS;Python;Ruby;SQL
+26315,C++;C#;HTML/CSS
+26316,C++;Java
+26317,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+26318,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+26319,Bash/Shell/PowerShell;Python;SQL;Other(s):
+26320,HTML/CSS;JavaScript
+26321,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+26322,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+26323,HTML/CSS;JavaScript;SQL
+26324,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+26325,HTML/CSS;JavaScript;PHP;Python;SQL
+26326,C++;Java
+26327,Bash/Shell/PowerShell;Go;PHP;Python;SQL
+26328,C++;HTML/CSS;Java;SQL
+26329,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26330,Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;PHP;Python;SQL
+26331,HTML/CSS;Java;R;Other(s):
+26332,HTML/CSS;JavaScript;SQL;TypeScript
+26333,Assembly;C;C++;JavaScript;Python;R
+26334,C;C#;HTML/CSS;Java;JavaScript;SQL
+26335,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+26336,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;SQL
+26337,Bash/Shell/PowerShell;Python
+26338,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+26339,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+26340,HTML/CSS;JavaScript;PHP;SQL
+26341,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26342,JavaScript;Other(s):
+26343,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+26344,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+26345,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+26346,C#;HTML/CSS;JavaScript;SQL
+26347,Python;Rust
+26348,Python;R;Rust
+26350,HTML/CSS;JavaScript;PHP;SQL;Swift
+26351,Java;JavaScript
+26352,Bash/Shell/PowerShell;Java;SQL
+26353,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+26354,C#;HTML/CSS;JavaScript;SQL
+26355,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+26356,C++;HTML/CSS;JavaScript;PHP;SQL
+26357,Python;SQL
+26358,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26359,HTML/CSS;Java;JavaScript;SQL;TypeScript
+26360,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;Other(s):
+26361,Bash/Shell/PowerShell;Java;JavaScript;Python
+26362,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+26363,HTML/CSS;JavaScript;TypeScript
+26364,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+26365,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+26366,HTML/CSS;JavaScript;PHP
+26367,C#;HTML/CSS;JavaScript;SQL
+26368,HTML/CSS
+26369,Java;Python;R;SQL
+26370,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+26371,C++;Python;SQL
+26372,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+26373,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala
+26374,HTML/CSS;JavaScript;TypeScript
+26375,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+26376,C;C++
+26377,C++;Go;Java;JavaScript;PHP;Python;R
+26378,Java;JavaScript
+26379,Swift
+26380,C#;HTML/CSS;JavaScript;PHP;TypeScript
+26381,C++;Erlang;Python
+26382,C#;Java;JavaScript;Python;SQL
+26383,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26384,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python
+26385,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+26386,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;Other(s):
+26387,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+26388,HTML/CSS;JavaScript;PHP;SQL
+26389,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+26390,C;C++;C#;Java;JavaScript
+26391,HTML/CSS;JavaScript;PHP;Ruby
+26392,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+26393,HTML/CSS;JavaScript;PHP;SQL
+26394,Other(s):
+26395,Bash/Shell/PowerShell;Java;JavaScript;Python;R;Scala;SQL
+26397,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+26398,C++;Java
+26399,C;C#;HTML/CSS;Java;JavaScript;PHP
+26400,HTML/CSS;JavaScript;Ruby
+26401,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+26402,Go;HTML/CSS;Java;Python;Ruby
+26403,C#;HTML/CSS;JavaScript;SQL
+26404,C++
+26405,Bash/Shell/PowerShell;JavaScript;SQL
+26406,Bash/Shell/PowerShell;Python;Scala
+26407,HTML/CSS;Java;JavaScript;TypeScript
+26408,HTML/CSS;JavaScript;SQL
+26409,C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;WebAssembly
+26410,Java
+26411,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+26412,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+26413,Bash/Shell/PowerShell;Java;JavaScript;Python
+26414,C;Go;HTML/CSS;TypeScript
+26415,HTML/CSS;JavaScript;PHP
+26416,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+26417,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+26418,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Rust;SQL;VBA
+26420,Swift
+26421,HTML/CSS;JavaScript;TypeScript;Other(s):
+26422,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+26423,Go;HTML/CSS;JavaScript;PHP;SQL
+26424,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+26425,C#;HTML/CSS;PHP;SQL
+26426,C#;JavaScript
+26427,Java
+26428,HTML/CSS;JavaScript;Python
+26429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+26430,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+26431,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+26432,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26433,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+26434,C++;HTML/CSS;Java;PHP;Rust;Scala;SQL;TypeScript
+26435,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26436,C;Java;SQL
+26437,Java;Python
+26438,HTML/CSS;JavaScript;PHP;TypeScript
+26439,HTML/CSS;Java;JavaScript;Python;SQL
+26440,Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+26441,JavaScript;Ruby
+26442,Bash/Shell/PowerShell;C#;Elixir;Erlang;Java;JavaScript;SQL;TypeScript
+26443,PHP
+26444,C#;JavaScript;TypeScript
+26445,C++;Java;Python;R;SQL
+26446,HTML/CSS;Java;JavaScript;TypeScript
+26447,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+26448,HTML/CSS;Python
+26449,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+26450,HTML/CSS;JavaScript;PHP;Python;SQL
+26451,Bash/Shell/PowerShell;C;C++;C#;Python
+26452,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+26453,Java;Python;Scala;SQL
+26454,HTML/CSS;Java;JavaScript;Python;Other(s):
+26455,Java;JavaScript;TypeScript
+26456,C;Python
+26457,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;TypeScript
+26458,HTML/CSS;Java;SQL;TypeScript
+26459,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+26460,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;Scala;SQL;TypeScript
+26461,C;C++;Java;JavaScript;SQL
+26462,HTML/CSS;JavaScript
+26463,Assembly;Bash/Shell/PowerShell;C;Dart;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Ruby;Scala;TypeScript;VBA
+26464,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+26465,Python;Scala
+26466,C;HTML/CSS;Java;Python;R;SQL
+26467,Bash/Shell/PowerShell;Go;Python
+26468,C#;HTML/CSS;TypeScript
+26469,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+26470,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;TypeScript
+26471,HTML/CSS;Java;JavaScript;SQL
+26472,Go;Java;JavaScript
+26473,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26474,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+26475,HTML/CSS;JavaScript
+26476,Go;HTML/CSS;JavaScript;Rust;Other(s):
+26477,HTML/CSS;JavaScript
+26478,C#;HTML/CSS;Java;JavaScript
+26479,HTML/CSS;JavaScript;Python;SQL
+26480,Assembly;Bash/Shell/PowerShell;C;C++
+26481,HTML/CSS;JavaScript;SQL
+26482,C#;Python;Swift
+26483,C#;HTML/CSS;JavaScript;TypeScript
+26484,SQL;VBA
+26485,HTML/CSS;JavaScript;PHP
+26486,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+26487,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+26488,Python
+26489,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+26490,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+26491,C#;Java;Python;SQL
+26492,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+26493,Java;JavaScript;Python;SQL
+26494,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26495,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Scala
+26496,C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+26497,Assembly;C;HTML/CSS;Java;PHP;Python;SQL
+26498,C;C++;C#;Java;JavaScript;Kotlin;PHP;Python;SQL
+26500,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Scala;SQL
+26501,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+26502,C#;HTML/CSS;Java;JavaScript;SQL
+26503,Bash/Shell/PowerShell;C#;Elixir;Java;SQL
+26504,C;PHP
+26505,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+26506,C#;Java;Python;Scala;SQL
+26507,Go;HTML/CSS;Java;Python
+26508,HTML/CSS;JavaScript
+26509,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+26510,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+26511,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+26512,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26513,HTML/CSS;Java;JavaScript
+26514,C;C++;HTML/CSS;Java;JavaScript;Python
+26515,C;Python
+26516,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+26517,Bash/Shell/PowerShell;Python
+26518,HTML/CSS;JavaScript
+26519,Assembly;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+26520,HTML/CSS;JavaScript;PHP
+26521,C++;Python;R
+26522,HTML/CSS;Java;JavaScript
+26523,C++;C#;Python;SQL
+26524,JavaScript;PHP;TypeScript
+26525,C;Java
+26526,Bash/Shell/PowerShell;C#;Java;Kotlin;SQL
+26527,C;C++;C#;HTML/CSS;Java;Objective-C;PHP;Python;SQL
+26528,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+26529,Bash/Shell/PowerShell;Java;SQL
+26530,JavaScript;Python;Ruby
+26531,Java;Python;SQL
+26532,Python;SQL
+26533,HTML/CSS
+26534,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+26535,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+26536,C;C++;Other(s):
+26537,C#;JavaScript;SQL;TypeScript
+26538,C++;C#;Go;HTML/CSS;Java;JavaScript
+26539,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+26540,Bash/Shell/PowerShell;JavaScript;Python;SQL
+26541,Java;JavaScript
+26542,HTML/CSS;Java;PHP
+26543,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+26544,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+26545,C#;HTML/CSS;JavaScript;TypeScript
+26546,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26547,Bash/Shell/PowerShell;JavaScript
+26548,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+26549,Bash/Shell/PowerShell;Elixir;JavaScript;Ruby;SQL
+26550,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+26551,C;C++;C#;Java;Objective-C;Python;Swift
+26552,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26553,HTML/CSS;JavaScript;PHP
+26554,Bash/Shell/PowerShell;Python
+26555,PHP;Python
+26556,C#;HTML/CSS;JavaScript;SQL;Other(s):
+26557,C#;HTML/CSS;JavaScript
+26558,HTML/CSS;JavaScript;Ruby;SQL
+26559,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+26560,C#;Java
+26561,Java;JavaScript;SQL
+26562,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26563,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+26564,Bash/Shell/PowerShell;Python;SQL
+26565,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+26566,Java;Python
+26567,R
+26568,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+26569,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Other(s):
+26571,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+26572,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+26573,C#;JavaScript;Ruby;SQL
+26574,Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+26575,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;Swift
+26576,HTML/CSS;JavaScript;PHP;SQL
+26577,Bash/Shell/PowerShell;C;Go;JavaScript;Python;Rust;Other(s):
+26578,HTML/CSS;JavaScript;Other(s):
+26579,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+26580,HTML/CSS;Java;JavaScript;SQL;TypeScript
+26581,C++
+26582,Bash/Shell/PowerShell;Python;R;Scala;SQL;Other(s):
+26583,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL
+26584,C;C++;HTML/CSS;SQL
+26585,Bash/Shell/PowerShell;Python;R;VBA
+26586,JavaScript;PHP;TypeScript
+26587,C#;HTML/CSS;Java;JavaScript
+26588,C#;JavaScript;SQL
+26589,C;C++;Erlang;Java;JavaScript;Objective-C;Python
+26590,C++;HTML/CSS;R;SQL;VBA
+26591,C;C++;Clojure;Go;Java;Python;Rust
+26592,Assembly;Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;Python;SQL
+26593,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+26594,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+26595,C;HTML/CSS;Java;JavaScript
+26596,JavaScript;PHP
+26597,C#;HTML/CSS;JavaScript;Ruby;Rust;SQL
+26598,Clojure;HTML/CSS
+26599,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+26600,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+26601,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+26602,C;C++;Go;Java;Python;SQL
+26603,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+26604,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+26605,Go;JavaScript;PHP;TypeScript
+26606,Bash/Shell/PowerShell;C;Python;Ruby
+26607,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+26608,JavaScript
+26609,C++;C#;JavaScript;SQL;TypeScript
+26610,C;HTML/CSS
+26611,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26612,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+26613,HTML/CSS;Java;JavaScript;SQL
+26614,HTML/CSS;Java;JavaScript
+26615,Objective-C;Python
+26617,C#;HTML/CSS;JavaScript;SQL
+26618,Bash/Shell/PowerShell;C++;JavaScript;Other(s):
+26619,Python;SQL;VBA
+26620,JavaScript;PHP
+26621,C;C++;Objective-C
+26622,Bash/Shell/PowerShell;C;C++;Python;SQL
+26623,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+26624,C#;HTML/CSS;JavaScript;SQL;Other(s):
+26625,Bash/Shell/PowerShell;Python
+26626,HTML/CSS;JavaScript;TypeScript
+26627,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+26628,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;Other(s):
+26629,Java
+26630,HTML/CSS;JavaScript;Rust;SQL
+26631,C;C++;Java;SQL
+26632,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+26633,PHP
+26634,C++;HTML/CSS;Python;R;SQL
+26635,HTML/CSS;JavaScript;TypeScript
+26636,HTML/CSS;JavaScript;PHP
+26637,Java;Kotlin
+26638,C#;F#;HTML/CSS;Python;R;SQL;VBA
+26639,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+26640,HTML/CSS;JavaScript;Python
+26641,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Rust;SQL;TypeScript;WebAssembly;Other(s):
+26642,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26643,C#;Python
+26644,Java;SQL;TypeScript
+26645,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Other(s):
+26646,HTML/CSS;Java;JavaScript;Objective-C;Scala;SQL
+26647,HTML/CSS;JavaScript;Swift;TypeScript
+26648,C#;JavaScript
+26649,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+26650,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26651,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby
+26652,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+26653,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26654,HTML/CSS;Java;JavaScript;SQL
+26655,HTML/CSS;JavaScript
+26656,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+26657,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26658,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+26659,C++;HTML/CSS;JavaScript;Ruby;SQL
+26660,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+26661,C;C++
+26662,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+26663,Python;R
+26664,Java;JavaScript
+26665,Java
+26666,Python
+26667,HTML/CSS;JavaScript;PHP;TypeScript
+26668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+26669,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL
+26670,JavaScript
+26671,HTML/CSS;JavaScript;PHP;Python
+26672,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+26673,Objective-C
+26674,Bash/Shell/PowerShell;C;C++;Other(s):
+26675,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+26676,HTML/CSS;JavaScript;Other(s):
+26677,Bash/Shell/PowerShell;C#;JavaScript;SQL
+26678,Java;SQL
+26679,C++;C#;Kotlin;Swift
+26680,HTML/CSS;JavaScript;PHP
+26681,C;C#;F#;HTML/CSS;Java;JavaScript;SQL
+26682,Bash/Shell/PowerShell;C#;Python;VBA
+26683,C#;HTML/CSS;PHP;SQL
+26684,HTML/CSS;JavaScript;Objective-C;TypeScript
+26685,Bash/Shell/PowerShell;C#;JavaScript
+26686,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+26687,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26688,Java
+26689,C#;HTML/CSS;JavaScript;PHP;SQL
+26690,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;SQL;TypeScript
+26691,C#;HTML/CSS;Python;SQL
+26692,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+26693,HTML/CSS;Java;JavaScript
+26694,Go;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;WebAssembly
+26695,C#;HTML/CSS;JavaScript
+26696,Bash/Shell/PowerShell;Python;R;SQL
+26697,HTML/CSS;JavaScript;SQL
+26698,JavaScript;TypeScript
+26699,Java;JavaScript;Objective-C;SQL
+26700,C;C++;C#;Java;Python;Scala
+26701,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+26702,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+26703,Java
+26704,Dart;Java;Kotlin
+26705,C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+26706,C++;C#;Python
+26707,HTML/CSS;Java;JavaScript;TypeScript
+26708,Bash/Shell/PowerShell;C;Python
+26709,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust
+26710,C++;HTML/CSS;Python;SQL;VBA
+26711,C#;SQL
+26712,Bash/Shell/PowerShell;C++;Python
+26713,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+26714,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python
+26715,C++;C#;F#;JavaScript;TypeScript
+26716,Bash/Shell/PowerShell;Java;SQL
+26717,C++;SQL
+26718,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+26719,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript;WebAssembly
+26720,HTML/CSS;JavaScript;Python
+26721,Bash/Shell/PowerShell;C++;Java;Scala
+26722,HTML/CSS;Java;SQL
+26723,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;SQL;TypeScript
+26724,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+26725,Bash/Shell/PowerShell;Java;SQL
+26726,Kotlin;Objective-C;Swift
+26727,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+26728,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Python;SQL
+26729,C;C++;HTML/CSS;Java;JavaScript;SQL
+26730,R
+26731,HTML/CSS;Java;JavaScript;PHP;SQL
+26732,C;C++;C#;F#;TypeScript;Other(s):
+26733,C#;HTML/CSS;Java;JavaScript
+26734,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+26735,C#;HTML/CSS;JavaScript;SQL
+26736,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;Rust;Swift
+26737,Bash/Shell/PowerShell;Java;Python
+26738,C#;Python
+26739,HTML/CSS;JavaScript;TypeScript
+26740,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+26741,HTML/CSS;Java;JavaScript;Kotlin
+26742,PHP
+26743,C++;HTML/CSS;JavaScript;Python;SQL
+26744,Bash/Shell/PowerShell;C#;HTML/CSS;PHP
+26745,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+26746,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+26747,HTML/CSS;JavaScript;SQL;Other(s):
+26748,C#;HTML/CSS;JavaScript;SQL
+26749,Bash/Shell/PowerShell;Python
+26750,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+26751,C#;Dart;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+26752,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26753,Java;JavaScript;SQL
+26754,C#;HTML/CSS;JavaScript;SQL
+26755,C#;Go;HTML/CSS;JavaScript;PHP;SQL
+26756,Dart;Java;Python;Rust;Swift
+26757,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+26758,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+26759,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+26760,HTML/CSS;Java;JavaScript;TypeScript
+26761,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+26762,JavaScript;Ruby;Swift
+26763,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+26764,JavaScript;Python
+26765,Java;JavaScript;Python;Ruby;Scala
+26766,C++
+26767,HTML/CSS;JavaScript;Python;SQL;TypeScript
+26768,Go;HTML/CSS;Java;JavaScript;TypeScript
+26769,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26770,C#;JavaScript;VBA
+26771,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;R;SQL
+26772,C#;HTML/CSS;JavaScript;PHP;SQL
+26773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+26774,C++;C#;Dart;Go;HTML/CSS;JavaScript;TypeScript
+26775,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26776,Bash/Shell/PowerShell;C++;Java;JavaScript
+26777,Java;SQL;Swift
+26778,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+26779,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26780,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+26781,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26782,Bash/Shell/PowerShell;C++;Other(s):
+26783,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26784,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+26785,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Other(s):
+26786,HTML/CSS;JavaScript;Python
+26787,HTML/CSS;JavaScript;Objective-C;TypeScript
+26788,C#;SQL;TypeScript
+26789,C#;Java;JavaScript
+26790,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+26791,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+26792,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;Rust;Scala;SQL;WebAssembly
+26793,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift;Other(s):
+26794,C++;HTML/CSS;Java;JavaScript
+26795,Bash/Shell/PowerShell;Python
+26796,C#;Java;PHP;SQL
+26797,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+26798,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+26799,JavaScript;PHP;SQL;TypeScript
+26800,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+26801,Python;R;SQL
+26802,C;C#;HTML/CSS;JavaScript;PHP;SQL
+26803,C#;SQL;VBA
+26804,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+26805,Dart;HTML/CSS;JavaScript;Kotlin
+26806,Bash/Shell/PowerShell;Go;HTML/CSS;PHP;Python;SQL
+26807,C++;Java;Python;Ruby
+26808,Bash/Shell/PowerShell;Python;SQL
+26809,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+26810,C++;C#
+26811,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+26813,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+26814,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26815,C++;C#;Python
+26816,C;C++;HTML/CSS;JavaScript;Python;SQL
+26817,Objective-C
+26818,C#
+26819,C++;C#;Python
+26820,C#;HTML/CSS;JavaScript;SQL
+26821,JavaScript
+26822,Assembly;C;C#;HTML/CSS;Java;Python
+26823,HTML/CSS;JavaScript;Python;SQL
+26824,Java;JavaScript;Kotlin;PHP;SQL;Swift
+26825,Go;HTML/CSS;JavaScript;SQL;TypeScript
+26826,Clojure;SQL;Other(s):
+26827,Python
+26828,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+26829,C++;HTML/CSS;JavaScript;PHP;Other(s):
+26830,HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+26831,Bash/Shell/PowerShell;C;C++;Go;Kotlin;Python
+26832,HTML/CSS;JavaScript;PHP;SQL
+26833,Java;JavaScript;Kotlin;Swift
+26834,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26835,HTML/CSS;Java;JavaScript;SQL;TypeScript
+26836,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+26837,HTML/CSS;Java;JavaScript;PHP;SQL
+26838,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Objective-C;Python
+26839,C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+26840,C#;SQL;VBA
+26841,C#
+26842,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+26843,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+26844,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+26845,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+26846,C;C++;HTML/CSS;JavaScript;PHP;SQL
+26847,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Other(s):
+26848,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+26849,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+26850,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+26851,C++;Python;SQL
+26852,C++;HTML/CSS;Python;R;SQL
+26853,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+26854,C#;HTML/CSS;JavaScript;SQL
+26855,C
+26856,C++;JavaScript;Kotlin
+26857,Bash/Shell/PowerShell;C#;HTML/CSS;Kotlin;PHP;SQL;TypeScript;Other(s):
+26858,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+26859,Assembly;C
+26860,C++;C#;Java;SQL
+26861,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+26862,HTML/CSS;JavaScript
+26863,Bash/Shell/PowerShell;C++;Python;Other(s):
+26864,Bash/Shell/PowerShell;Java;JavaScript;Scala
+26865,Bash/Shell/PowerShell;C#;JavaScript;Python;TypeScript
+26866,HTML/CSS;JavaScript;PHP;SQL
+26867,C#;HTML/CSS;JavaScript;Python;SQL
+26868,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+26869,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python
+26870,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+26871,C#;Java;JavaScript;PHP;Python;SQL
+26872,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+26873,HTML/CSS;JavaScript
+26875,Java;SQL
+26876,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP
+26877,HTML/CSS;JavaScript;Python;SQL
+26878,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+26879,C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+26880,Objective-C;Swift
+26881,Bash/Shell/PowerShell;Other(s):
+26882,C;C++;C#;Python
+26883,Java;JavaScript;Python;SQL
+26884,HTML/CSS;Java;JavaScript
+26885,Bash/Shell/PowerShell;Java;Python
+26886,Bash/Shell/PowerShell;C#;Go;JavaScript;Ruby;Rust
+26887,Bash/Shell/PowerShell;C;C#;Kotlin;Python;R;Other(s):
+26888,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+26889,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+26890,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+26891,Bash/Shell/PowerShell;Python
+26892,Java;Scala
+26893,Go;Java;PHP;Ruby
+26894,HTML/CSS;JavaScript;PHP;SQL
+26895,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;VBA;WebAssembly
+26896,Java;JavaScript;PHP;Python;SQL
+26897,Bash/Shell/PowerShell;C;C++;SQL
+26898,HTML/CSS;Python
+26899,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;SQL
+26900,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+26901,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+26902,Bash/Shell/PowerShell;C;Go;JavaScript;R;SQL
+26903,Assembly;C;C#;HTML/CSS;JavaScript
+26904,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+26905,HTML/CSS;JavaScript;PHP
+26906,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26907,Bash/Shell/PowerShell;Java;Python;Scala;SQL;Other(s):
+26908,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+26909,C;C++;C#;F#;HTML/CSS;PHP;SQL;TypeScript
+26910,Assembly;C;C#;Java;Python
+26911,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+26912,PHP;SQL
+26913,HTML/CSS;Java;Python
+26914,Java;JavaScript
+26915,Assembly;C;C++;C#;Java;JavaScript;SQL
+26916,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL
+26917,Bash/Shell/PowerShell;Java;JavaScript
+26918,PHP;Python
+26919,HTML/CSS;JavaScript;Python;Other(s):
+26920,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26921,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+26922,C#;HTML/CSS;JavaScript
+26923,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+26924,HTML/CSS;JavaScript;PHP
+26925,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+26926,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+26928,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+26929,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+26930,JavaScript;PHP;SQL
+26931,C;C++;Python;SQL
+26932,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+26933,HTML/CSS;Swift
+26934,Elixir;HTML/CSS;Java;Kotlin;Objective-C;Python;Rust;Swift
+26935,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+26936,C++;Java
+26937,C#;Java;JavaScript;PHP;SQL;TypeScript;VBA
+26938,HTML/CSS;JavaScript;PHP;SQL
+26939,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift;TypeScript
+26940,HTML/CSS;JavaScript;PHP;SQL
+26942,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+26943,Scala
+26944,Java;JavaScript
+26945,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;SQL
+26946,C;Java;Kotlin
+26947,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+26948,HTML/CSS;Python;R;SQL
+26949,HTML/CSS;Java;JavaScript;Scala;TypeScript
+26950,Bash/Shell/PowerShell;Go;Java;Python;Ruby
+26951,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26952,HTML/CSS;JavaScript;Other(s):
+26953,C#;HTML/CSS;JavaScript;SQL;TypeScript
+26954,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+26955,Go;JavaScript;Python
+26956,Java
+26957,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+26958,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;TypeScript
+26959,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+26960,HTML/CSS;JavaScript;PHP;SQL
+26961,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+26962,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Objective-C;SQL;VBA
+26963,Go;Java;JavaScript;PHP;SQL;TypeScript
+26964,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+26965,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+26966,Assembly;Bash/Shell/PowerShell;C++;C#;F#;Java;JavaScript;PHP;Python;Ruby;SQL
+26967,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;VBA
+26968,C#;HTML/CSS;JavaScript;PHP
+26969,HTML/CSS;JavaScript
+26970,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+26971,Java
+26972,Bash/Shell/PowerShell;C++;Python
+26973,C++;C#;JavaScript;Python
+26974,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+26975,Bash/Shell/PowerShell;HTML/CSS;Python;Rust;Other(s):
+26976,Assembly;C++;HTML/CSS;Python;SQL
+26978,C++;C#;JavaScript;TypeScript
+26979,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;SQL
+26980,HTML/CSS;JavaScript;PHP;SQL
+26981,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+26982,HTML/CSS;Java;JavaScript;Python;SQL
+26984,HTML/CSS;JavaScript;Python;TypeScript
+26985,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+26986,C++;C#
+26987,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+26988,Bash/Shell/PowerShell;Python;SQL
+26989,C;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+26990,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+26991,C;C++;Python
+26992,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+26993,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python;SQL;TypeScript
+26994,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+26995,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;Other(s):
+26996,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+26997,C;C++;Java;JavaScript;PHP;Python
+26998,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+26999,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+27000,Bash/Shell/PowerShell;Java;Python;SQL
+27001,Bash/Shell/PowerShell;C;Python;SQL
+27002,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;R;Ruby;SQL;Swift
+27003,C#;HTML/CSS;Java;PHP
+27004,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+27005,C#;HTML/CSS;JavaScript;PHP;Python
+27006,C#;HTML/CSS;Java;JavaScript;SQL
+27007,JavaScript;PHP
+27008,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+27009,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+27011,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+27012,Java;SQL;TypeScript
+27013,C#;HTML/CSS;Java;Python;SQL
+27014,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+27015,C#;Other(s):
+27016,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+27017,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+27018,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+27019,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+27020,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+27021,Assembly;Bash/Shell/PowerShell;C;C++
+27022,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;SQL
+27023,Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript
+27024,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+27025,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+27026,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+27027,Java
+27028,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+27029,HTML/CSS;JavaScript;PHP;SQL
+27030,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+27031,HTML/CSS;JavaScript;SQL;Swift
+27032,C++;C#;JavaScript;TypeScript
+27033,Swift
+27034,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;R;Ruby;SQL
+27035,Bash/Shell/PowerShell;Go;Java;SQL;Swift
+27036,Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;JavaScript;Ruby;Rust;SQL
+27037,C#;HTML/CSS;JavaScript;SQL
+27038,HTML/CSS;Java;SQL
+27039,C#;HTML/CSS;JavaScript;Python;SQL
+27040,C#;HTML/CSS;JavaScript;SQL
+27041,Java
+27043,HTML/CSS;Java;JavaScript;SQL;Other(s):
+27044,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+27045,HTML/CSS;JavaScript;PHP;Python
+27046,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;SQL
+27047,Java;JavaScript
+27048,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27049,C#;HTML/CSS;JavaScript;SQL
+27050,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript;WebAssembly
+27051,Bash/Shell/PowerShell;C#;JavaScript;SQL
+27052,Bash/Shell/PowerShell;C;Erlang;Go;Java;JavaScript;PHP;Python;R;Ruby;SQL
+27053,HTML/CSS;Java;JavaScript;PHP;SQL
+27054,HTML/CSS;Java;JavaScript;Python;SQL
+27055,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+27056,C#;Java;SQL
+27057,PHP
+27058,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+27059,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+27060,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin
+27061,C++;Go;HTML/CSS;JavaScript;SQL
+27062,Bash/Shell/PowerShell;C;C#;Go;Java;JavaScript;PHP;Python;Rust;SQL
+27063,HTML/CSS;Java;JavaScript;SQL
+27064,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+27066,HTML/CSS;Java;JavaScript;Objective-C;SQL
+27067,Bash/Shell/PowerShell;Java;SQL
+27068,C#;JavaScript;SQL
+27069,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+27070,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27071,Bash/Shell/PowerShell;C++;Python;R;SQL;VBA
+27072,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+27073,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript;Other(s):
+27074,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+27075,HTML/CSS;Java;JavaScript;Python;TypeScript
+27076,C++;Python;SQL
+27077,C#;HTML/CSS;JavaScript;SQL
+27078,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+27080,PHP
+27081,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+27082,C;Clojure;HTML/CSS;JavaScript;Python
+27083,C;C++;Go;JavaScript;Python
+27084,Bash/Shell/PowerShell;Java;Python;R
+27085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+27086,HTML/CSS;Java;JavaScript;PHP;SQL
+27087,Assembly;C;C++
+27088,Go;Java;Kotlin;Ruby
+27089,Go;Java;JavaScript;PHP;SQL
+27090,HTML/CSS;JavaScript;PHP;SQL
+27091,HTML/CSS;Java;JavaScript;PHP;SQL
+27092,Bash/Shell/PowerShell;C;C++;Java
+27093,C++;C#;HTML/CSS;Java;Python;SQL
+27094,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+27095,C#
+27096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+27097,HTML/CSS;JavaScript;Python
+27098,HTML/CSS;Java;JavaScript;PHP;SQL
+27099,Assembly;PHP;SQL
+27100,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+27101,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;TypeScript
+27102,HTML/CSS;JavaScript;Python
+27103,Clojure;Java
+27104,Java;JavaScript;Python;SQL
+27105,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+27106,HTML/CSS;JavaScript;SQL;TypeScript
+27107,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+27108,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27109,C;C++;Kotlin;Python;Scala
+27110,HTML/CSS;JavaScript;PHP
+27111,HTML/CSS;Java;Python;SQL
+27112,Bash/Shell/PowerShell;Java
+27113,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+27114,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+27116,C;C#;HTML/CSS;JavaScript;PHP;SQL
+27117,C;C++;C#;Java;JavaScript;PHP;Python
+27118,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+27119,Java;JavaScript;SQL
+27120,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+27121,C++;Dart;Java;JavaScript;Objective-C;SQL;Other(s):
+27122,HTML/CSS;JavaScript;Python;SQL
+27123,C#;Elixir;HTML/CSS;JavaScript;SQL
+27124,HTML/CSS;JavaScript;Python;SQL;TypeScript
+27125,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R
+27126,Java;SQL
+27127,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+27128,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+27129,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27130,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+27131,HTML/CSS;JavaScript;SQL;TypeScript
+27132,C;C++;C#;Java;JavaScript;SQL;VBA
+27133,HTML/CSS;JavaScript;Kotlin;PHP;Python
+27134,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+27135,C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27136,C#;VBA
+27137,C;C++;HTML/CSS;Java;JavaScript;Python
+27138,Bash/Shell/PowerShell;Python;Rust;Scala
+27139,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27140,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27141,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+27142,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+27143,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript;Other(s):
+27144,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+27145,Ruby
+27146,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+27147,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+27148,C#;HTML/CSS;Java;JavaScript;SQL
+27149,C++;Java
+27150,Bash/Shell/PowerShell;C;C#;Java;Python;VBA
+27151,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+27152,C++;Java;JavaScript;PHP;Python
+27153,C#;HTML/CSS;JavaScript
+27154,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+27155,HTML/CSS;JavaScript;PHP;Python;R;SQL
+27156,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+27157,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+27158,HTML/CSS;JavaScript;TypeScript
+27159,C;HTML/CSS;JavaScript
+27160,Assembly;Bash/Shell/PowerShell;C;C++
+27161,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+27162,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+27163,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+27164,Java;Kotlin;Objective-C;Swift
+27165,C;C++;C#;HTML/CSS;Java;SQL
+27166,C;Go;Python
+27167,Java;Scala
+27168,SQL;VBA
+27169,Java
+27170,Assembly;Bash/Shell/PowerShell;C;Java;Python
+27171,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+27172,HTML/CSS;Java;JavaScript;Other(s):
+27173,HTML/CSS;Java;JavaScript;SQL
+27174,Assembly;Bash/Shell/PowerShell;C;C++
+27176,C++
+27177,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+27178,HTML/CSS;JavaScript;PHP;SQL
+27179,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+27180,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+27181,Bash/Shell/PowerShell;C++;C#;Python
+27182,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+27183,Python
+27184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+27185,Python;SQL;VBA
+27186,C#;HTML/CSS;JavaScript;SQL
+27187,HTML/CSS;Java;JavaScript
+27188,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Swift;Other(s):
+27189,HTML/CSS;JavaScript;Python
+27190,C;HTML/CSS;JavaScript;PHP;SQL
+27191,Bash/Shell/PowerShell;C;Dart;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+27192,HTML/CSS
+27193,Python;R;SQL
+27194,C;C++;Java;Python;SQL
+27195,HTML/CSS;JavaScript;PHP;SQL
+27196,C++;JavaScript;Python;SQL
+27197,Bash/Shell/PowerShell
+27198,Assembly;HTML/CSS;Python;SQL
+27199,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+27200,C++;HTML/CSS;JavaScript;Objective-C;Python;Swift
+27201,Bash/Shell/PowerShell;C;C++;Java;Python
+27202,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+27203,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+27204,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+27205,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+27206,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+27207,C++;HTML/CSS
+27208,C#;HTML/CSS;JavaScript
+27209,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;Swift
+27210,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+27211,Bash/Shell/PowerShell;Python
+27212,HTML/CSS;Java;JavaScript;SQL
+27213,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+27214,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go
+27215,C#;HTML/CSS;JavaScript;Python;SQL
+27216,C#;HTML/CSS;Java;JavaScript;PHP
+27217,Bash/Shell/PowerShell;HTML/CSS;Python
+27218,Python;SQL;Other(s):
+27219,HTML/CSS;JavaScript
+27220,HTML/CSS;JavaScript;Ruby;SQL
+27221,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27222,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+27223,C++;Python;VBA
+27224,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+27225,Python;R;SQL
+27226,Bash/Shell/PowerShell;HTML/CSS;SQL
+27227,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27228,HTML/CSS;Java;JavaScript;PHP;SQL
+27230,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+27231,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27232,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27233,HTML/CSS;JavaScript;Ruby;SQL
+27234,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;PHP;Python
+27235,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;Other(s):
+27236,Assembly;HTML/CSS;JavaScript;PHP
+27237,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+27238,HTML/CSS;Java;JavaScript;TypeScript
+27239,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Scala;Swift
+27240,Bash/Shell/PowerShell;Python
+27241,HTML/CSS;JavaScript;Objective-C;TypeScript
+27242,C;Java;JavaScript;Python;Rust;SQL;WebAssembly
+27243,HTML/CSS;JavaScript
+27244,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;Other(s):
+27245,C#;JavaScript;SQL;TypeScript
+27246,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Ruby;SQL
+27247,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL;VBA
+27248,Bash/Shell/PowerShell;Java;Python;SQL
+27249,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27250,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27251,Java;JavaScript;Other(s):
+27252,Bash/Shell/PowerShell;Java;SQL;TypeScript;Other(s):
+27253,HTML/CSS;JavaScript;PHP;Other(s):
+27254,Bash/Shell/PowerShell;C#;SQL
+27255,Java;SQL;Other(s):
+27256,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+27257,Assembly;C;C++;Python;Rust
+27258,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+27259,HTML/CSS;JavaScript;Python;SQL
+27260,C;C++
+27261,HTML/CSS;JavaScript;PHP
+27262,Clojure;Python
+27263,Java;Kotlin
+27264,Java;PHP;SQL
+27265,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript;VBA
+27266,C;Rust
+27267,SQL;VBA;Other(s):
+27268,Assembly;Bash/Shell/PowerShell;C;C++;Python
+27269,C;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+27270,C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+27271,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+27272,HTML/CSS;JavaScript;PHP
+27273,HTML/CSS;Java;JavaScript;PHP;SQL
+27274,C#;HTML/CSS;JavaScript;SQL
+27275,C;C++
+27276,JavaScript
+27277,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+27278,Bash/Shell/PowerShell;Objective-C;SQL;Swift
+27279,Bash/Shell/PowerShell;Python;R;SQL
+27280,Assembly;Bash/Shell/PowerShell;C;C++
+27281,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+27282,C#;Java
+27283,C;HTML/CSS;Java;PHP;SQL
+27284,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+27285,SQL;VBA;Other(s):
+27287,C#;HTML/CSS;PHP;Python;TypeScript
+27288,C++;Go;PHP;Python
+27289,Clojure;F#;Java;JavaScript;SQL
+27290,Bash/Shell/PowerShell;C#;SQL
+27291,C#;HTML/CSS;JavaScript;SQL;TypeScript
+27292,HTML/CSS
+27293,Assembly;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby
+27294,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+27295,C;C++;C#;HTML/CSS;JavaScript;SQL
+27296,Bash/Shell/PowerShell;C#;Java
+27297,Bash/Shell/PowerShell;VBA;Other(s):
+27298,C#;Java;Kotlin
+27299,HTML/CSS;JavaScript;TypeScript
+27300,HTML/CSS;Python;SQL
+27301,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Scala;SQL
+27302,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Other(s):
+27303,Java;SQL
+27304,Java
+27305,Bash/Shell/PowerShell;Python;SQL;Other(s):
+27306,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+27307,Assembly;C;Python
+27308,C++;C#;Java
+27309,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+27310,Assembly;HTML/CSS;JavaScript;PHP;Python
+27311,C#;HTML/CSS;SQL;TypeScript
+27312,C;Python;Swift
+27313,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27314,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;R;SQL
+27315,HTML/CSS;JavaScript;Python;Ruby;Other(s):
+27316,C#;Java;JavaScript;Rust;Swift;TypeScript
+27317,Python
+27318,Bash/Shell/PowerShell;C;Python;Other(s):
+27319,Kotlin;PHP;Python;R;SQL
+27320,Java
+27321,C#;HTML/CSS;JavaScript;SQL
+27322,C;C++;HTML/CSS;PHP;Python;SQL
+27323,C#;HTML/CSS;Python
+27324,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python
+27325,HTML/CSS;JavaScript;PHP;SQL
+27326,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+27327,C#;HTML/CSS;SQL
+27328,C++;C#;HTML/CSS;JavaScript
+27329,C#;HTML/CSS;JavaScript;SQL;TypeScript
+27330,Java;JavaScript;SQL
+27331,C;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+27332,Go;HTML/CSS;Kotlin;Swift
+27333,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+27334,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+27335,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+27336,Java
+27337,Java;Objective-C;Swift
+27338,Bash/Shell/PowerShell;Java;SQL
+27339,Bash/Shell/PowerShell;C;C++;Java;R;SQL;VBA
+27340,C;C++;Python;SQL
+27341,Bash/Shell/PowerShell;Python;Other(s):
+27342,C#;F#;Java;JavaScript;Kotlin
+27344,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+27345,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+27346,Java;PHP
+27347,HTML/CSS;JavaScript;TypeScript
+27348,Bash/Shell/PowerShell;C#;SQL;TypeScript;WebAssembly
+27349,HTML/CSS;JavaScript;PHP;SQL
+27350,HTML/CSS;JavaScript;PHP;SQL
+27351,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27352,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+27353,HTML/CSS;Java;JavaScript;SQL;TypeScript
+27354,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+27355,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+27356,Bash/Shell/PowerShell;JavaScript;Python;SQL
+27357,HTML/CSS;JavaScript;Python;TypeScript
+27358,Assembly;C;C++;HTML/CSS;Java;Objective-C;PHP;SQL;VBA
+27359,JavaScript;PHP;Python
+27360,Assembly;HTML/CSS;JavaScript;PHP;SQL
+27361,C#;SQL;Other(s):
+27362,HTML/CSS;JavaScript
+27363,Python;Ruby;SQL
+27364,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+27365,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27366,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Ruby;SQL
+27367,Bash/Shell/PowerShell;Clojure;Java;Python;SQL
+27368,Java;JavaScript;Objective-C;Swift;TypeScript
+27369,C#;HTML/CSS;JavaScript;SQL
+27370,C++;HTML/CSS;JavaScript;Python;R
+27371,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+27372,HTML/CSS;JavaScript;Python
+27373,Bash/Shell/PowerShell;C++
+27374,Java
+27375,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27376,Go;HTML/CSS;Java;Python;R;SQL
+27377,C++;C#;HTML/CSS;JavaScript;Python;SQL
+27378,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+27379,HTML/CSS;JavaScript;Ruby
+27380,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27381,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+27382,C;C++;HTML/CSS;Java;JavaScript
+27383,Python
+27384,HTML/CSS;PHP
+27385,C;C++;HTML/CSS;Java
+27386,HTML/CSS;Java;Kotlin;SQL
+27387,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+27388,HTML/CSS;JavaScript;PHP;Ruby;SQL
+27389,Assembly;C;C++;C#;HTML/CSS;Java;Python;SQL
+27390,C;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+27391,C#;HTML/CSS;JavaScript;SQL;TypeScript
+27392,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+27393,Bash/Shell/PowerShell;C;C++;Python
+27394,Go;TypeScript
+27395,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27396,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+27397,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+27398,C++;C#;JavaScript;Python
+27399,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27400,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+27401,Assembly;C;C++;C#;JavaScript;Kotlin;PHP;Python
+27402,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python
+27403,C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+27404,JavaScript;Python
+27405,C
+27406,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+27407,HTML/CSS;JavaScript;TypeScript
+27408,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27409,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+27411,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+27412,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+27413,C#;HTML/CSS;JavaScript;SQL
+27414,C#;Java;JavaScript;Python;SQL;Swift
+27415,VBA;Other(s):
+27416,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;Swift
+27417,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+27418,HTML/CSS;Java;JavaScript;PHP;SQL
+27419,Java;JavaScript;Kotlin;Python;SQL;TypeScript
+27420,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;TypeScript
+27421,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+27422,HTML/CSS;Java;JavaScript;Kotlin
+27423,C
+27424,JavaScript;PHP;Python;TypeScript
+27425,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+27426,C#;HTML/CSS;TypeScript
+27427,C#
+27428,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+27429,SQL
+27430,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+27431,C++;HTML/CSS;JavaScript;SQL;VBA
+27432,Bash/Shell/PowerShell;C;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;Other(s):
+27433,C#;HTML/CSS;JavaScript;SQL
+27434,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+27435,Java;JavaScript;Python;TypeScript
+27436,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;PHP;Python;Rust;SQL;TypeScript
+27437,Bash/Shell/PowerShell;C;C++;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+27438,Java
+27439,C++;HTML/CSS;Java;JavaScript;SQL;VBA
+27440,Bash/Shell/PowerShell;Java;SQL;Other(s):
+27441,C;Go;HTML/CSS;Rust;SQL;TypeScript
+27442,Dart
+27443,C++;Erlang;Java;Python;SQL
+27444,C#;HTML/CSS;Java;JavaScript;TypeScript
+27445,Bash/Shell/PowerShell;HTML/CSS;Kotlin;PHP;Other(s):
+27446,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27447,C#;Go;HTML/CSS;TypeScript
+27448,Bash/Shell/PowerShell;HTML/CSS;PHP;VBA
+27449,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+27450,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala
+27451,Java
+27452,Python
+27453,Assembly;C;C#;HTML/CSS;Java;SQL
+27454,C++;Dart;HTML/CSS;JavaScript;Python
+27455,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+27456,Python;SQL
+27457,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+27458,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+27459,Bash/Shell/PowerShell;C;JavaScript;Python;TypeScript
+27460,HTML/CSS;JavaScript;PHP
+27461,C++;C#;Go;Python;Rust;VBA
+27462,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+27463,HTML/CSS;JavaScript;Other(s):
+27464,R
+27465,C#;JavaScript;PHP;SQL;TypeScript
+27466,C;C++;C#;Java;Python;SQL
+27467,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+27468,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;VBA
+27469,JavaScript;PHP
+27470,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+27471,Assembly;HTML/CSS;Rust;Scala;SQL
+27472,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Scala;Swift
+27473,Bash/Shell/PowerShell;Java;Kotlin;PHP;Swift
+27474,HTML/CSS;JavaScript;TypeScript
+27475,Go;PHP;Python
+27476,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+27477,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+27478,JavaScript;PHP
+27479,C;HTML/CSS;PHP;Python
+27480,C;HTML/CSS;Java
+27481,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+27482,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+27483,C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+27484,C#;HTML/CSS;Java;JavaScript;TypeScript
+27485,HTML/CSS;Java;Python;SQL;TypeScript
+27486,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27487,Python;TypeScript
+27488,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+27489,C;C++;HTML/CSS;JavaScript;Python
+27490,C#;HTML/CSS;JavaScript;SQL
+27491,HTML/CSS;Java;JavaScript;Python;SQL
+27492,Assembly;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+27493,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+27494,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+27495,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;VBA;Other(s):
+27496,HTML/CSS;Java;JavaScript;PHP;SQL
+27497,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+27498,C#;SQL;VBA;Other(s):
+27499,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+27500,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27501,Java
+27502,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+27504,HTML/CSS;Java;JavaScript;Python
+27505,HTML/CSS;JavaScript;PHP;SQL
+27506,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+27507,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;SQL
+27508,HTML/CSS;Java;JavaScript;Python;TypeScript
+27509,HTML/CSS;Java;JavaScript;SQL
+27510,C#;HTML/CSS;JavaScript;SQL
+27511,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27512,C#;Java
+27513,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+27514,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+27515,Assembly;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+27516,C#;HTML/CSS;JavaScript;Python;TypeScript
+27517,C;HTML/CSS;JavaScript;Python;SQL
+27518,Java;SQL
+27519,HTML/CSS;JavaScript;Ruby;SQL
+27520,Bash/Shell/PowerShell;Elixir;Java;JavaScript;Python;SQL
+27521,C#;HTML/CSS;SQL
+27522,C++;C#;JavaScript;SQL;VBA
+27523,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+27524,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+27525,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python
+27527,HTML/CSS;Java;JavaScript;Swift
+27528,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;TypeScript
+27529,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;TypeScript
+27530,Bash/Shell/PowerShell;C#;JavaScript;Objective-C;PHP;Swift;TypeScript
+27531,HTML/CSS;JavaScript;TypeScript
+27532,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;VBA
+27533,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+27534,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27536,HTML/CSS;JavaScript;Python;SQL;TypeScript
+27537,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+27538,Bash/Shell/PowerShell;Java;PHP;Python;Scala;SQL
+27539,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+27540,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;Swift
+27541,C#;HTML/CSS;Java;JavaScript;Python
+27542,HTML/CSS;JavaScript
+27543,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+27545,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27546,Python
+27547,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+27548,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+27549,HTML/CSS;Java;SQL
+27550,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+27551,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+27552,JavaScript;SQL;Other(s):
+27553,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+27554,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;TypeScript
+27555,HTML/CSS;Java;JavaScript;PHP;SQL
+27556,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;SQL
+27557,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+27558,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+27559,C#;HTML/CSS;JavaScript;SQL
+27560,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+27561,Python;R;Other(s):
+27562,Java;JavaScript;Kotlin;Swift
+27563,C#;HTML/CSS;JavaScript;SQL
+27564,Assembly;HTML/CSS
+27565,HTML/CSS;Python
+27566,C#;SQL;VBA
+27567,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+27568,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Objective-C;Python;R;Ruby;SQL
+27569,C#;HTML/CSS;JavaScript;SQL
+27570,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27571,Elixir;Go;Java
+27572,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+27573,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+27574,HTML/CSS;JavaScript;PHP;SQL
+27575,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+27576,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+27577,Java
+27578,HTML/CSS;JavaScript;TypeScript
+27579,Java;Kotlin;Objective-C;Swift
+27580,Go;PHP;Python
+27581,HTML/CSS;JavaScript;Python
+27582,JavaScript;Python;Scala
+27583,HTML/CSS;Java;JavaScript;Python;TypeScript
+27584,Java;Kotlin;Other(s):
+27585,Bash/Shell/PowerShell;C;C++;Python
+27586,Java
+27587,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+27588,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+27589,HTML/CSS;JavaScript;PHP
+27590,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript;WebAssembly
+27591,JavaScript;PHP;Python
+27592,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+27593,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+27594,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;PHP;Python;SQL
+27595,C#;HTML/CSS;JavaScript;Rust
+27596,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+27597,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+27598,Objective-C;Swift
+27599,C;C++;Java;SQL
+27600,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+27601,C;C++;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27602,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;Swift;TypeScript;VBA
+27603,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27604,Bash/Shell/PowerShell;Java;JavaScript;SQL
+27605,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27606,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+27607,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27608,Java;JavaScript;Python;SQL
+27609,C;C++;C#;Objective-C;Swift
+27610,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;Swift
+27611,Java;JavaScript
+27612,C#;Objective-C;Swift
+27613,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27614,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+27615,C#;JavaScript;SQL
+27616,JavaScript;Python
+27617,HTML/CSS;Java;JavaScript;Python;SQL
+27618,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27619,HTML/CSS;Java;JavaScript;Scala;SQL
+27620,C#;HTML/CSS;JavaScript;TypeScript
+27621,Python;R;Rust
+27622,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27623,HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+27624,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript
+27625,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Rust
+27626,Java
+27627,C#;HTML/CSS;JavaScript;SQL
+27628,HTML/CSS;JavaScript;PHP;SQL
+27629,SQL;VBA
+27630,Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;Ruby;SQL;Swift
+27631,Bash/Shell/PowerShell;PHP
+27632,C;C++;Swift
+27633,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python
+27634,R;SQL
+27635,Java;JavaScript;Kotlin;Python;SQL
+27636,Java;Python;Other(s):
+27637,C#;HTML/CSS;JavaScript;SQL
+27638,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+27639,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+27640,Java;Ruby
+27641,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+27642,HTML/CSS;Java;JavaScript;SQL
+27643,Java;JavaScript
+27644,Bash/Shell/PowerShell;C#;Python
+27645,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;WebAssembly
+27646,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA
+27647,JavaScript;PHP;SQL
+27648,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+27649,Python;R;SQL
+27650,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;TypeScript
+27651,Bash/Shell/PowerShell;Java
+27652,HTML/CSS;JavaScript;PHP
+27653,C#;Java
+27654,Java
+27655,C;C++;HTML/CSS;VBA
+27656,HTML/CSS;Java;JavaScript;Python;R;SQL
+27657,C#
+27658,Bash/Shell/PowerShell;C#;Kotlin;Python
+27659,C;HTML/CSS;Python;VBA
+27660,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+27661,JavaScript;Swift;TypeScript
+27662,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+27663,Bash/Shell/PowerShell;C;JavaScript
+27664,C#;Java;JavaScript;PHP;Python;SQL
+27665,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+27666,HTML/CSS;JavaScript;PHP;SQL
+27667,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;Swift;TypeScript;VBA
+27668,Bash/Shell/PowerShell;Java;Python;SQL
+27670,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R
+27671,HTML/CSS;JavaScript;PHP
+27672,C#;HTML/CSS;JavaScript;SQL
+27673,HTML/CSS;Java;JavaScript;Kotlin;SQL
+27674,HTML/CSS;JavaScript;Ruby;SQL
+27675,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+27676,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL;WebAssembly
+27677,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27678,Bash/Shell/PowerShell;C++;Python;R;VBA
+27679,HTML/CSS;JavaScript;Ruby
+27680,Bash/Shell/PowerShell;C;C++;HTML/CSS;Rust;VBA;Other(s):
+27681,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+27682,C++;C#
+27683,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;PHP;Other(s):
+27684,Bash/Shell/PowerShell;HTML/CSS;Python;TypeScript
+27685,C#;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+27686,PHP
+27687,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;Scala;SQL;TypeScript
+27688,Bash/Shell/PowerShell;Erlang;HTML/CSS;Python;R;Rust;SQL;Other(s):
+27689,C#;JavaScript
+27690,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+27691,HTML/CSS;Java;JavaScript;SQL
+27692,Bash/Shell/PowerShell;Go;Python;SQL
+27693,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+27694,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+27695,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+27696,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+27698,C++;PHP
+27699,HTML/CSS;JavaScript;PHP;Python;SQL
+27700,Python
+27701,Java;Kotlin
+27702,Bash/Shell/PowerShell;Python;SQL
+27703,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Rust;SQL;Other(s):
+27704,Java;JavaScript;TypeScript
+27705,C#;HTML/CSS;Java;Objective-C;PHP;SQL;TypeScript
+27706,HTML/CSS;JavaScript;PHP;TypeScript
+27707,HTML/CSS;Java;JavaScript;SQL
+27708,Bash/Shell/PowerShell;Java;JavaScript;Ruby;SQL
+27709,Java;JavaScript;Python;Scala;SQL;TypeScript
+27710,Java
+27711,Erlang;HTML/CSS;JavaScript;PHP;Python;SQL
+27712,Java;JavaScript;Python
+27713,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+27714,C++;R;SQL
+27715,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+27716,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;R;Ruby;Rust;SQL;VBA;Other(s):
+27717,HTML/CSS;JavaScript
+27718,Ruby
+27719,Bash/Shell/PowerShell;Python;R;Other(s):
+27720,Python;Swift
+27721,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+27722,C++;Python;SQL
+27723,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+27724,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27725,C++;Python
+27726,C;Python;Ruby;Other(s):
+27727,PHP
+27728,HTML/CSS;Python;R;SQL
+27729,HTML/CSS;Java;JavaScript;SQL;TypeScript
+27730,HTML/CSS;Java;JavaScript;SQL
+27731,Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+27732,Assembly;C;C++;C#;SQL;VBA
+27733,Java;SQL
+27734,Bash/Shell/PowerShell;Java;Python;Ruby
+27735,C;C++;Python
+27736,HTML/CSS;Java;JavaScript;PHP;Python
+27737,HTML/CSS;Java;JavaScript;SQL
+27738,C;C#;Python
+27739,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;TypeScript
+27740,Java;JavaScript;PHP;Python
+27741,C#;HTML/CSS;JavaScript;SQL;TypeScript
+27742,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27743,C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+27744,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+27745,HTML/CSS;Java;JavaScript
+27746,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Swift
+27747,Java;JavaScript;Python;TypeScript;Other(s):
+27748,JavaScript;Python;Ruby
+27749,Bash/Shell/PowerShell;C;C++;Erlang;Java;R
+27750,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+27751,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+27752,Bash/Shell/PowerShell;Java
+27753,C#;HTML/CSS;JavaScript;SQL
+27754,C;JavaScript;Python;Ruby;Scala
+27755,C;HTML/CSS;Java;JavaScript;SQL;VBA
+27756,HTML/CSS;JavaScript
+27757,R
+27758,HTML/CSS;JavaScript;SQL;TypeScript
+27759,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+27760,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+27761,HTML/CSS;JavaScript;PHP;TypeScript
+27762,C;C++;HTML/CSS;JavaScript
+27763,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;TypeScript
+27764,C++;C#;HTML/CSS;JavaScript;Python;Swift
+27765,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27766,HTML/CSS;Python;R
+27767,C;C++;HTML/CSS;Java;JavaScript;SQL
+27768,C#;VBA;Other(s):
+27769,HTML/CSS;JavaScript;Python;Ruby;TypeScript;VBA
+27770,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+27771,Objective-C
+27772,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27773,Assembly;JavaScript;PHP;Python;SQL;Other(s):
+27774,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+27775,C;C++;C#;Java;Python
+27776,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;PHP;SQL;VBA
+27777,C#;Java
+27778,C#;SQL
+27779,C#;HTML/CSS;JavaScript;PHP;SQL
+27780,C;Java;Python
+27781,C#;Dart;HTML/CSS;JavaScript;Kotlin;Python;Swift;TypeScript
+27782,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+27783,HTML/CSS;Java;JavaScript;Python
+27784,C#;JavaScript;SQL
+27785,Dart;JavaScript
+27786,HTML/CSS;JavaScript;Python;R;TypeScript
+27787,C#;Elixir;HTML/CSS;JavaScript;SQL
+27788,HTML/CSS;Java;JavaScript;Kotlin;Python
+27789,Java;JavaScript;SQL
+27790,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+27791,Bash/Shell/PowerShell;Python
+27792,HTML/CSS;Java;JavaScript;PHP;SQL
+27793,JavaScript;Python
+27794,C#;SQL
+27795,Java;JavaScript;SQL;TypeScript
+27796,HTML/CSS;Java;PHP;Python;SQL
+27797,C;HTML/CSS;Java;Python
+27798,HTML/CSS;JavaScript;PHP;SQL
+27799,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+27800,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27801,Bash/Shell/PowerShell;Python
+27802,Bash/Shell/PowerShell;C#;Elixir;Go;Java;JavaScript;Python;Ruby;SQL
+27803,C#;HTML/CSS;Ruby;TypeScript
+27804,Bash/Shell/PowerShell;Java;Python;Ruby;Other(s):
+27805,HTML/CSS;JavaScript;PHP;SQL
+27806,C#;HTML/CSS;Python;SQL
+27807,Bash/Shell/PowerShell;C#;Python;SQL
+27808,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Rust;Scala;SQL;TypeScript;Other(s):
+27809,Swift;TypeScript
+27810,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+27811,Bash/Shell/PowerShell;C;C++;Go;Python
+27812,Elixir;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27813,C;C#;HTML/CSS;Java;JavaScript;SQL
+27814,C#;HTML/CSS;JavaScript
+27815,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+27816,Assembly;Java;Python;Other(s):
+27817,Python;SQL
+27818,Objective-C;Swift
+27819,JavaScript;Python;Ruby
+27821,Bash/Shell/PowerShell;Python;R;SQL
+27822,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+27823,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+27824,HTML/CSS;JavaScript;PHP;Python;SQL
+27825,Assembly;Bash/Shell/PowerShell;C;Python
+27826,C#;Java;JavaScript;Python
+27827,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+27828,C;C++;Python;R
+27829,Bash/Shell/PowerShell;Java;R;SQL
+27830,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL
+27831,C;C++;Java;JavaScript;Python;SQL
+27832,Java;JavaScript;TypeScript
+27833,C#;HTML/CSS;Java;JavaScript;PHP
+27834,Bash/Shell/PowerShell;Java
+27835,JavaScript;SQL;Other(s):
+27836,C;C++;C#;Java;SQL
+27837,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27838,C#;Java;Python;Other(s):
+27839,Java;JavaScript;Python;TypeScript
+27840,Java
+27841,C#;F#;Java;JavaScript;Scala;SQL;TypeScript
+27842,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+27843,C++;Python
+27844,HTML/CSS;Java;JavaScript;PHP;SQL
+27845,C#;HTML/CSS;JavaScript;PHP;SQL
+27846,Kotlin
+27847,HTML/CSS;JavaScript;PHP;Python;SQL
+27848,Assembly;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+27849,Swift
+27850,Bash/Shell/PowerShell;R;SQL;VBA
+27851,HTML/CSS;JavaScript
+27852,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+27853,Assembly;C;C++;Python
+27854,HTML/CSS;Java;SQL
+27855,C#;JavaScript;SQL
+27856,Assembly;Bash/Shell/PowerShell;C;C++;C#;SQL;VBA
+27857,C#;Java;JavaScript;TypeScript
+27858,Bash/Shell/PowerShell;C;C++;Python
+27859,Go;Java;JavaScript;Python;SQL
+27860,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+27861,HTML/CSS;JavaScript;Ruby;SQL
+27862,C++;HTML/CSS;Java;JavaScript;TypeScript
+27863,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+27864,HTML/CSS;Java;JavaScript;PHP;SQL
+27865,HTML/CSS;JavaScript;PHP;Python;SQL
+27866,HTML/CSS;JavaScript
+27867,C#;SQL;TypeScript
+27868,C;HTML/CSS;Java;JavaScript
+27869,HTML/CSS;Java;JavaScript;Ruby
+27870,C;JavaScript;Python
+27871,Bash/Shell/PowerShell;Java;JavaScript;VBA;WebAssembly
+27872,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+27873,C;C++
+27874,Bash/Shell/PowerShell;C#;Java;Python;SQL;VBA
+27875,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+27876,Python
+27877,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27878,C;C++;C#;HTML/CSS;Objective-C;SQL
+27879,HTML/CSS;JavaScript;SQL
+27880,Assembly;C++;Java;Other(s):
+27881,HTML/CSS;Java;JavaScript
+27882,C;HTML/CSS;Java;JavaScript;PHP;SQL
+27883,Bash/Shell/PowerShell;Go;JavaScript;SQL
+27884,C#;HTML/CSS;JavaScript;PHP;SQL
+27885,JavaScript;PHP;SQL
+27886,Python;R;Ruby
+27887,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;Ruby;SQL
+27888,C++;Python;Rust
+27889,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+27890,Java;Kotlin;Python;Rust
+27891,C#;HTML/CSS;JavaScript;PHP;SQL
+27892,HTML/CSS;Java;JavaScript
+27894,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;JavaScript;Python
+27895,JavaScript;Python
+27896,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+27897,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+27898,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+27899,Java;Python;Swift
+27900,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+27901,SQL;VBA
+27902,Java
+27903,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+27904,C;C++;C#;Python;SQL
+27905,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+27906,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;TypeScript
+27907,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+27908,C++;C#;F#;HTML/CSS;JavaScript;Python;Other(s):
+27909,Java
+27910,C#;HTML/CSS;JavaScript;SQL;TypeScript
+27911,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+27912,Java;JavaScript;Python
+27913,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+27914,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+27915,Assembly;C++;C#;Java;PHP;Python
+27916,HTML/CSS;Java;JavaScript;TypeScript
+27917,Bash/Shell/PowerShell;Java;SQL
+27918,Bash/Shell/PowerShell;C#;Clojure;Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Rust;SQL;Swift;TypeScript
+27919,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;VBA
+27920,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+27921,HTML/CSS;Java;JavaScript;Python;R;SQL
+27922,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+27923,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+27924,HTML/CSS;JavaScript;Python
+27925,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+27926,Java;JavaScript
+27927,HTML/CSS;SQL;Other(s):
+27928,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript
+27929,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+27930,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C
+27931,C++;C#;HTML/CSS;JavaScript;Python;SQL
+27932,HTML/CSS;JavaScript;Python;Ruby;SQL
+27933,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+27934,C#;Python;R;SQL
+27935,C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+27936,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+27937,C#;HTML/CSS;JavaScript;TypeScript
+27938,Bash/Shell/PowerShell;Python
+27939,Go;Java
+27940,C#;HTML/CSS;JavaScript;TypeScript
+27941,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+27942,Bash/Shell/PowerShell;Go;HTML/CSS;Python;R;Rust
+27943,C#;JavaScript;TypeScript
+27944,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+27945,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+27946,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+27947,C#;HTML/CSS;JavaScript;SQL;TypeScript
+27948,HTML/CSS;JavaScript;PHP;TypeScript
+27949,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;PHP
+27950,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+27951,R;Other(s):
+27952,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+27953,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+27954,Java;Scala;SQL
+27955,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL
+27956,Bash/Shell/PowerShell;C;C++;Python;SQL
+27957,C;C++;Java
+27958,C;HTML/CSS;Java;Python
+27959,Scala
+27960,C++;Python
+27961,HTML/CSS;Java;JavaScript
+27962,Python
+27963,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+27964,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+27965,HTML/CSS;Java;JavaScript
+27966,HTML/CSS;Python;SQL
+27967,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+27968,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;JavaScript;PHP;Rust;TypeScript
+27969,HTML/CSS;Java;JavaScript;Python;SQL
+27970,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;WebAssembly;Other(s):
+27971,Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+27972,Java;Kotlin
+27973,C#;SQL;Other(s):
+27974,C++;C#;JavaScript
+27975,HTML/CSS;Java;JavaScript;SQL
+27976,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL;TypeScript
+27977,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;SQL;Other(s):
+27978,HTML/CSS;Java;JavaScript;Python;SQL
+27979,C#;HTML/CSS;SQL
+27980,HTML/CSS;Java;SQL
+27981,C#;HTML/CSS;JavaScript;SQL
+27982,HTML/CSS;Java;JavaScript;Python
+27983,Go;HTML/CSS;Java;Python
+27984,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+27985,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+27986,C#;Dart;Elixir;HTML/CSS;Java;JavaScript;PHP;Python
+27987,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+27988,HTML/CSS;JavaScript
+27989,Bash/Shell/PowerShell;C;C++;C#;SQL
+27990,C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+27991,Bash/Shell/PowerShell;C#;HTML/CSS;Python;TypeScript
+27992,C++;C#;Python
+27994,C#;HTML/CSS;JavaScript;SQL
+27995,C#;HTML/CSS;JavaScript;SQL;TypeScript
+27996,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+27997,C;C++;HTML/CSS;Java;JavaScript;SQL
+27998,Bash/Shell/PowerShell;C#;SQL
+27999,Other(s):
+28000,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28001,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28002,Bash/Shell/PowerShell;C;Erlang;Python;SQL
+28003,C#;HTML/CSS;SQL
+28004,Java
+28005,Bash/Shell/PowerShell;C#;HTML/CSS
+28006,HTML/CSS;Java;JavaScript;Python
+28007,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+28008,C#;F#;HTML/CSS;Java;Python;R;SQL;TypeScript
+28009,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28010,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+28011,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+28012,HTML/CSS;Java;Kotlin;PHP;Ruby;SQL
+28013,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift
+28014,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+28015,Bash/Shell/PowerShell;JavaScript;PHP;Python;Other(s):
+28016,HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+28017,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+28018,Bash/Shell/PowerShell;C++;Go
+28019,Bash/Shell/PowerShell;Clojure;Go;JavaScript;Python
+28020,Objective-C;PHP;Swift
+28021,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+28022,C#;HTML/CSS;JavaScript;TypeScript
+28023,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+28024,HTML/CSS;JavaScript;PHP;TypeScript
+28025,C;C++;HTML/CSS;Java;Python;Swift
+28026,C++;Java;Kotlin;Python
+28027,Assembly;C;HTML/CSS;Java;SQL
+28028,C++
+28029,Bash/Shell/PowerShell;C;C++;Python;Scala
+28030,HTML/CSS;JavaScript;TypeScript
+28031,HTML/CSS;Java;JavaScript;PHP;Swift
+28032,C#;Elixir;HTML/CSS;JavaScript;Ruby;Scala
+28033,C;C++;HTML/CSS;Java;JavaScript;Python
+28034,C#;HTML/CSS;JavaScript;SQL
+28035,Java;Kotlin;Python;Scala
+28036,HTML/CSS;PHP;SQL
+28037,C#;HTML/CSS;JavaScript;SQL
+28038,C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28039,Bash/Shell/PowerShell;Go;PHP;Ruby;SQL
+28040,Java;Python
+28041,HTML/CSS;JavaScript;PHP;Python;SQL
+28042,C++;HTML/CSS;Java;JavaScript;Python;SQL
+28043,HTML/CSS;JavaScript
+28044,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Kotlin;SQL
+28045,Bash/Shell/PowerShell;C++;C#;SQL
+28046,Bash/Shell/PowerShell;C;C++;C#;PHP;Python;SQL
+28047,C#;HTML/CSS;JavaScript;SQL
+28048,HTML/CSS;Java;JavaScript;Python;SQL
+28049,Ruby
+28050,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+28051,C#;Dart;Go;JavaScript;PHP;SQL;TypeScript
+28052,HTML/CSS;JavaScript;Python;SQL
+28053,C#
+28054,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+28055,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+28056,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+28057,C++;Dart;HTML/CSS;Java;Python;SQL
+28058,Bash/Shell/PowerShell;C#;JavaScript;SQL
+28059,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+28060,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL;TypeScript
+28061,C;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+28062,HTML/CSS;Java;Python;Ruby;SQL;Swift;VBA
+28063,HTML/CSS;JavaScript;SQL;Other(s):
+28064,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;Swift
+28065,Python
+28066,C#;JavaScript;PHP
+28067,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+28068,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+28069,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Other(s):
+28070,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28071,C#;Java;Ruby;SQL;TypeScript
+28072,Swift
+28073,HTML/CSS;Java;JavaScript;PHP;SQL
+28074,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+28076,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28077,Java
+28078,Bash/Shell/PowerShell;C++;Objective-C;Python;Swift;Other(s):
+28079,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+28080,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+28081,C;Java;JavaScript;R
+28082,Bash/Shell/PowerShell;Python;Ruby
+28083,R;Scala;SQL
+28084,Bash/Shell/PowerShell;C;HTML/CSS;Java;R
+28085,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+28086,HTML/CSS;PHP;SQL
+28087,HTML/CSS;JavaScript;Scala;SQL
+28088,Bash/Shell/PowerShell;C;Java;PHP;SQL
+28089,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+28090,Python;R
+28091,JavaScript;Ruby;TypeScript
+28092,Bash/Shell/PowerShell;C;Dart;Go;HTML/CSS
+28093,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+28094,Assembly;C;HTML/CSS
+28095,Java;SQL;VBA
+28096,C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;Rust
+28097,Java;Kotlin
+28098,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA;Other(s):
+28099,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+28100,Assembly;C;C++;Java;Kotlin;Python;Rust;SQL
+28101,Go;HTML/CSS;PHP;Python
+28102,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript;WebAssembly;Other(s):
+28103,Assembly;C;C++;Java;SQL
+28104,HTML/CSS;JavaScript;PHP;SQL
+28105,C#;HTML/CSS;JavaScript;PHP;SQL
+28106,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+28107,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+28108,JavaScript
+28109,C#;HTML/CSS;Java;JavaScript;SQL
+28110,C;C++;Python
+28111,C++;JavaScript;Python
+28112,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+28113,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+28114,Assembly;Bash/Shell/PowerShell;C;JavaScript;Ruby;SQL
+28115,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+28116,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C
+28117,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+28118,C#;HTML/CSS;JavaScript
+28119,Bash/Shell/PowerShell;JavaScript;Ruby;TypeScript
+28120,Objective-C;SQL;Swift
+28121,C++;Java;JavaScript;Kotlin;SQL
+28122,C++;Java;Python
+28123,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL;WebAssembly
+28124,C++;Python
+28125,Bash/Shell/PowerShell;Elixir;Ruby
+28126,Java;JavaScript
+28127,C;Python;R;Rust;TypeScript;Other(s):
+28128,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28129,HTML/CSS;JavaScript;PHP
+28130,Bash/Shell/PowerShell;Go
+28131,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+28132,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Scala;SQL;VBA
+28133,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+28134,HTML/CSS;Java;JavaScript;Ruby;SQL;Swift
+28135,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+28136,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+28137,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28138,C++;HTML/CSS;Ruby
+28139,Bash/Shell/PowerShell;C++;C#;Java;PHP;SQL;VBA;Other(s):
+28140,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28141,Bash/Shell/PowerShell;C;C++
+28142,Bash/Shell/PowerShell;Python;SQL
+28143,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28144,Java;JavaScript;Python
+28145,HTML/CSS;TypeScript
+28146,C;PHP;Python;SQL
+28147,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+28148,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Rust;TypeScript
+28149,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+28150,C++;Python
+28151,JavaScript;PHP;Python
+28152,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28153,Java;Kotlin
+28154,C;C++;Java;Objective-C;Python;Ruby;SQL;Swift
+28155,HTML/CSS;PHP;Python
+28156,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+28157,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python
+28158,C;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+28159,Python
+28160,HTML/CSS;JavaScript;Python;SQL
+28161,Dart;Go;HTML/CSS;JavaScript;Kotlin;Ruby;Rust;Scala
+28162,C#
+28163,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28164,Assembly;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+28165,HTML/CSS;R;SQL
+28166,HTML/CSS;JavaScript;PHP;Python;SQL
+28167,C#;SQL
+28168,HTML/CSS;JavaScript;TypeScript
+28170,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+28171,C#;Dart;Java;Kotlin;PHP;Python;R;SQL
+28172,HTML/CSS;JavaScript;Python
+28173,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28174,C++;C#;Java;SQL
+28175,C#;HTML/CSS;JavaScript;SQL
+28176,C#;HTML/CSS;JavaScript;TypeScript
+28177,Python;Ruby;Other(s):
+28178,HTML/CSS;JavaScript;PHP
+28179,C#;HTML/CSS;JavaScript;SQL
+28180,HTML/CSS;JavaScript;TypeScript
+28182,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+28183,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28185,HTML/CSS;JavaScript;Swift;TypeScript;Other(s):
+28186,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+28187,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+28188,Bash/Shell/PowerShell;Java;Python
+28189,C;Go;Python;Ruby
+28190,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+28191,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Kotlin;PHP;SQL
+28192,C#;HTML/CSS;JavaScript;SQL
+28193,C#;SQL
+28195,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+28196,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+28197,C++;Java;Python
+28198,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+28199,C#;Java;SQL
+28200,C;C++;HTML/CSS;Java;JavaScript;PHP
+28201,Other(s):
+28202,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;WebAssembly
+28203,HTML/CSS;JavaScript;PHP;SQL
+28204,C;HTML/CSS;JavaScript;Python;R;SQL
+28205,Java;Python;R;Rust
+28206,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28207,Bash/Shell/PowerShell;JavaScript;PHP;SQL;Swift;TypeScript
+28208,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+28209,C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+28210,C++;C#;JavaScript;SQL
+28211,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+28212,HTML/CSS
+28213,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+28214,Bash/Shell/PowerShell;Go;HTML/CSS;PHP;Ruby;SQL
+28215,C;Objective-C;Swift
+28216,HTML/CSS;JavaScript
+28217,C++;Python
+28218,Assembly;Bash/Shell/PowerShell;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+28219,C#;HTML/CSS;JavaScript;SQL
+28220,Objective-C;Swift
+28221,HTML/CSS;Java;JavaScript;Kotlin;Ruby
+28222,C#;HTML/CSS;JavaScript;SQL;Swift
+28223,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+28224,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+28225,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+28226,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+28227,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+28228,Java;Kotlin
+28229,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+28230,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28231,C++;C#;F#;Java;JavaScript;Kotlin;SQL;Swift;TypeScript;WebAssembly
+28232,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28233,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+28234,C#
+28235,HTML/CSS;Java;JavaScript;Python;SQL
+28236,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+28237,Bash/Shell/PowerShell;HTML/CSS;Java
+28238,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+28239,C#;HTML/CSS;Java;JavaScript;SQL
+28240,C#;JavaScript;SQL;TypeScript
+28241,HTML/CSS;JavaScript;Kotlin;Python
+28242,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+28243,C++;C#;Java;JavaScript;Objective-C;Python
+28244,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+28245,HTML/CSS;JavaScript;PHP;SQL;VBA
+28246,C++
+28247,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28248,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28249,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA;Other(s):
+28250,Clojure;JavaScript
+28251,C++;HTML/CSS;Java;JavaScript;Scala;SQL
+28252,HTML/CSS;JavaScript;R;SQL
+28253,HTML/CSS;Java;JavaScript;TypeScript
+28254,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;TypeScript;Other(s):
+28255,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+28256,HTML/CSS;JavaScript;PHP;Python;SQL
+28257,PHP
+28258,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+28259,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28260,C#;SQL
+28261,Bash/Shell/PowerShell;Python;Other(s):
+28262,HTML/CSS;Python
+28263,Bash/Shell/PowerShell;Go;JavaScript;Python
+28264,JavaScript;Python
+28265,Bash/Shell/PowerShell;C;Go;Python;SQL;Other(s):
+28266,R;SQL
+28267,Assembly;HTML/CSS;Java;Python;SQL
+28268,Dart
+28269,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+28270,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+28271,C++;C#;HTML/CSS;Java;JavaScript;Python
+28272,C;C++;HTML/CSS;Java;JavaScript
+28273,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+28274,HTML/CSS;Java;SQL;VBA
+28275,Go;HTML/CSS;JavaScript;Ruby
+28277,JavaScript;TypeScript
+28278,HTML/CSS;JavaScript;PHP
+28279,HTML/CSS;Java;JavaScript;SQL;Other(s):
+28280,C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+28281,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+28282,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+28283,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28284,C++;Python
+28285,HTML/CSS;Java;JavaScript
+28286,HTML/CSS;JavaScript;Objective-C;Python;Swift;TypeScript
+28287,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;SQL;TypeScript;Other(s):
+28288,Java;SQL;Other(s):
+28289,JavaScript;Python;Swift
+28290,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+28291,C++;HTML/CSS;JavaScript;Python;SQL
+28292,HTML/CSS;JavaScript;Other(s):
+28293,C;C++
+28294,Java;JavaScript;Python;Scala;SQL
+28295,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Swift
+28296,HTML/CSS;Python;SQL;TypeScript;VBA
+28297,C++;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+28298,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+28299,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+28300,C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+28301,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL;TypeScript
+28302,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28303,HTML/CSS;Java;JavaScript;PHP;Python
+28304,Java
+28305,Go;Java
+28306,Assembly;Bash/Shell/PowerShell;C;C++;C#;Objective-C;PHP;SQL
+28307,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28308,Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL;TypeScript
+28309,C;Go;Java;Kotlin;Swift
+28310,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+28311,C;Java;JavaScript;PHP;Python;R;Scala;SQL
+28312,HTML/CSS;Java;PHP;Python
+28313,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+28314,Go
+28315,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28316,C;JavaScript;Python;TypeScript
+28317,PHP;SQL
+28318,Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28319,HTML/CSS;JavaScript;PHP;Python;SQL
+28320,Java;JavaScript;SQL
+28321,C#;Java
+28322,C++;C#;HTML/CSS;JavaScript;SQL;VBA
+28323,Bash/Shell/PowerShell
+28325,C;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+28326,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+28327,C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+28328,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+28329,C;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL
+28330,C;C++;Java;Python
+28331,C;C++;Java;JavaScript;Python;SQL
+28332,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28333,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+28334,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+28335,HTML/CSS;JavaScript;PHP;SQL
+28336,HTML/CSS;JavaScript;SQL;TypeScript
+28337,HTML/CSS;JavaScript;PHP;SQL
+28338,C;Java;Python
+28339,C;C++;HTML/CSS;Java
+28340,C#;Java
+28341,C;C++;Swift
+28342,Java
+28343,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+28344,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+28345,SQL;VBA;Other(s):
+28346,Bash/Shell/PowerShell;Python;R;SQL
+28347,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+28348,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+28349,Elixir;HTML/CSS;JavaScript;R;Ruby;Other(s):
+28350,Bash/Shell/PowerShell;Java;JavaScript;Python
+28351,C#;Java;JavaScript;Ruby;SQL;TypeScript
+28352,Python
+28353,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28354,HTML/CSS;JavaScript;TypeScript
+28356,Bash/Shell/PowerShell;C++;C#;SQL
+28357,C#;HTML/CSS;JavaScript;Ruby;SQL
+28358,C++;HTML/CSS;Java;JavaScript;Python;SQL
+28359,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+28360,Bash/Shell/PowerShell;Java;JavaScript
+28361,HTML/CSS;JavaScript;PHP
+28362,C#
+28363,Bash/Shell/PowerShell;C;C++
+28365,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;Rust
+28366,Assembly;C;C++;Java;JavaScript;SQL;Swift
+28367,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28368,Bash/Shell/PowerShell;Dart;Java;Kotlin;Python
+28369,Java;JavaScript;Objective-C;Python;SQL;TypeScript
+28370,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28371,C++;Java;Python
+28372,C;C++;Java;Python;Other(s):
+28373,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+28374,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL;TypeScript;Other(s):
+28375,C#;Java;Kotlin;SQL
+28376,HTML/CSS;JavaScript;Python;R;TypeScript
+28377,C;C++;C#;HTML/CSS;PHP;TypeScript
+28378,C#;JavaScript;TypeScript
+28379,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+28380,HTML/CSS;JavaScript;Python;Other(s):
+28381,Bash/Shell/PowerShell;Python;SQL
+28382,C#;HTML/CSS;SQL
+28383,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;Other(s):
+28384,C;Python;R;SQL
+28385,Bash/Shell/PowerShell;C#;Objective-C;Swift
+28386,Assembly;HTML/CSS;Java;JavaScript;PHP;TypeScript
+28387,Bash/Shell/PowerShell;Python;SQL
+28388,C;C++;C#;HTML/CSS;JavaScript;SQL
+28389,Bash/Shell/PowerShell;C;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+28390,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28391,Bash/Shell/PowerShell;C#;JavaScript;SQL
+28392,Bash/Shell/PowerShell;C;Java;Kotlin;Rust;Other(s):
+28393,HTML/CSS;JavaScript;PHP
+28394,C#;HTML/CSS;JavaScript;Scala;TypeScript
+28395,Swift
+28396,HTML/CSS;Java;JavaScript;SQL
+28397,C#;HTML/CSS;JavaScript;SQL;Other(s):
+28398,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+28399,C#;Java;JavaScript;Python;SQL
+28400,HTML/CSS;JavaScript;Python;SQL
+28401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+28402,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;TypeScript
+28403,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+28404,Java
+28405,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+28406,Bash/Shell/PowerShell;Python;R
+28407,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+28408,C#;HTML/CSS;SQL
+28409,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+28410,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+28411,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;Scala;SQL;TypeScript;Other(s):
+28412,Bash/Shell/PowerShell;C;C++;Objective-C;Python;Swift
+28413,Go;Java;Python
+28414,Elixir;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+28415,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+28416,HTML/CSS;Python;R;SQL;VBA
+28417,HTML/CSS;JavaScript;Ruby;SQL
+28418,Bash/Shell/PowerShell;C++;Python;Other(s):
+28419,HTML/CSS;Java;JavaScript;SQL;Swift
+28420,C;C++;JavaScript;R
+28422,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+28423,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+28424,C++;JavaScript;Other(s):
+28425,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+28426,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+28427,HTML/CSS;JavaScript;PHP;SQL
+28428,HTML/CSS;JavaScript;PHP;Python;SQL
+28429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+28430,Assembly;C#;HTML/CSS;Java;JavaScript;Python;VBA
+28431,C++;C#;Java;Kotlin;Python;SQL
+28432,HTML/CSS;JavaScript;SQL
+28433,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+28434,Python;R;VBA
+28435,Assembly;Bash/Shell/PowerShell;C;Clojure;Elixir;Go;HTML/CSS;JavaScript;Kotlin;Ruby;SQL
+28436,Dart;Java;JavaScript;Kotlin
+28437,Bash/Shell/PowerShell;Go;Python
+28438,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+28439,C;Objective-C;Swift;Other(s):
+28440,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+28441,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Ruby;TypeScript
+28442,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28444,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28445,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+28446,Java;Python;R
+28447,C#;Java
+28448,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28449,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+28450,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+28451,Assembly;C;C#;SQL;VBA
+28452,HTML/CSS;JavaScript;Python;SQL
+28453,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+28454,Assembly;C;C#;Objective-C;Python
+28455,HTML/CSS;Java;JavaScript;SQL;TypeScript
+28456,HTML/CSS;Java;JavaScript;SQL
+28457,HTML/CSS;Java;JavaScript;SQL
+28458,Bash/Shell/PowerShell;Other(s):
+28459,HTML/CSS;JavaScript
+28460,C#;HTML/CSS;JavaScript;SQL
+28461,Bash/Shell/PowerShell;C#;Go;TypeScript
+28462,C#;HTML/CSS;JavaScript;SQL
+28463,Bash/Shell/PowerShell;Elixir;Erlang;JavaScript;Other(s):
+28464,Assembly;Bash/Shell/PowerShell;C;C++;Java;Kotlin;Objective-C;Python;Rust;SQL
+28465,Java;Python
+28466,Python
+28467,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28468,C++
+28469,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+28470,C;HTML/CSS;JavaScript;Ruby
+28471,C++;C#;HTML/CSS;Java;R;SQL;Swift
+28472,Java;JavaScript;Scala
+28473,C#;Java;Python;Scala
+28474,C#;HTML/CSS;Java;JavaScript;SQL
+28475,C#;Elixir;HTML/CSS;JavaScript;R;SQL;TypeScript
+28476,C;C++;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+28477,JavaScript;Ruby
+28478,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28479,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28480,C#;HTML/CSS;JavaScript
+28481,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+28482,C#;F#;HTML/CSS;Java;JavaScript;Rust;TypeScript;WebAssembly
+28483,Bash/Shell/PowerShell;C;C++;Java;Python
+28484,C;C++;Java
+28485,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+28486,Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+28487,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+28488,C;C#;Dart;Elixir;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Rust;Scala;SQL;Swift;TypeScript;WebAssembly
+28489,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+28490,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+28491,Objective-C;Swift
+28492,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+28493,HTML/CSS;JavaScript;PHP;Ruby
+28494,R;SQL
+28495,Bash/Shell/PowerShell;Python;R;SQL
+28496,Bash/Shell/PowerShell;C;C++;C#;Objective-C;PHP;SQL;Other(s):
+28497,Java;Python
+28498,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+28499,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+28500,Python;Other(s):
+28501,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+28502,Bash/Shell/PowerShell;Erlang;Java
+28503,C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+28504,C;C++
+28505,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+28506,HTML/CSS;JavaScript;PHP
+28507,C;C#;Java;SQL
+28508,HTML/CSS;JavaScript;PHP;Python
+28509,C#;SQL
+28510,HTML/CSS;JavaScript;PHP
+28511,HTML/CSS;Java;JavaScript;SQL
+28512,C;Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;Rust;SQL
+28513,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;Other(s):
+28514,Bash/Shell/PowerShell;Python;R;SQL
+28515,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28516,Objective-C
+28517,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+28518,HTML/CSS;JavaScript;Kotlin;Other(s):
+28519,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+28520,C#;Go;JavaScript;PHP;SQL
+28521,C#;HTML/CSS;SQL
+28522,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Rust;SQL;Swift;TypeScript
+28523,C;C++;C#
+28525,C#;HTML/CSS;SQL;TypeScript;Other(s):
+28526,Java;JavaScript;TypeScript
+28527,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python
+28528,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+28529,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;TypeScript
+28530,HTML/CSS;JavaScript;TypeScript
+28531,C;C++;HTML/CSS
+28532,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+28533,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+28534,Bash/Shell/PowerShell;C#;Java;JavaScript;TypeScript
+28535,HTML/CSS;Java;JavaScript;Python;SQL
+28536,C;C++;HTML/CSS;JavaScript;PHP;Other(s):
+28537,C++;Java;Python;Rust;Other(s):
+28538,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+28539,HTML/CSS;JavaScript;Python;SQL
+28540,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+28541,Bash/Shell/PowerShell;Elixir;Erlang;Go;Python
+28542,C;HTML/CSS;JavaScript;PHP;Python;SQL
+28543,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28544,C;C++;C#;Python;Rust
+28545,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+28546,C++;C#;HTML/CSS;JavaScript;Kotlin;VBA
+28547,HTML/CSS;Java;JavaScript;SQL
+28548,Elixir;Erlang;Go;JavaScript;PHP;Python;Ruby
+28550,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+28551,C#;HTML/CSS;JavaScript;SQL;Other(s):
+28552,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+28553,Objective-C;Swift
+28554,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+28555,C++;C#;HTML/CSS;PHP;SQL
+28556,C#;HTML/CSS;JavaScript;TypeScript
+28558,C#;JavaScript;Python;SQL;TypeScript
+28559,C;C++;Java
+28560,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R
+28561,C;C++;Python
+28562,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+28563,C#;HTML/CSS;JavaScript;R;SQL;TypeScript;Other(s):
+28564,Bash/Shell/PowerShell;C;C++;Go;Python
+28565,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+28566,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+28567,C#;JavaScript;SQL
+28568,HTML/CSS;JavaScript;PHP;SQL
+28569,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA;Other(s):
+28570,Java;Python
+28571,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+28572,HTML/CSS;Java;JavaScript;Scala;SQL
+28573,JavaScript
+28574,C++;C#;Java;JavaScript;Python;Ruby;SQL
+28575,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28576,C#;Go;HTML/CSS;Java;PHP;Python;Ruby;SQL
+28577,HTML/CSS;JavaScript;TypeScript
+28578,HTML/CSS;JavaScript;PHP;SQL;VBA
+28579,Bash/Shell/PowerShell;JavaScript;Python
+28580,Bash/Shell/PowerShell;Other(s):
+28581,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;R;SQL;TypeScript;VBA
+28582,Assembly;HTML/CSS;PHP
+28583,HTML/CSS;JavaScript;PHP;SQL
+28584,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+28585,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+28586,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+28587,C++;Clojure;HTML/CSS;Java;JavaScript;SQL
+28588,C++
+28589,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL;TypeScript
+28590,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+28591,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+28592,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+28593,C#;HTML/CSS;JavaScript;Python;TypeScript
+28594,HTML/CSS;JavaScript;PHP;SQL
+28595,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+28596,C++;SQL;Other(s):
+28597,Bash/Shell/PowerShell;F#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+28598,Java;JavaScript;Kotlin;Objective-C;PHP;Swift
+28599,C++;C#;HTML/CSS
+28600,HTML/CSS;Java;JavaScript;SQL
+28601,Java;JavaScript;Python
+28603,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+28604,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28605,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+28606,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript
+28607,JavaScript
+28608,HTML/CSS;JavaScript;PHP;SQL
+28609,Java;JavaScript
+28610,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28611,HTML/CSS;JavaScript;PHP;Python
+28612,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+28613,C;C++;Other(s):
+28614,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+28615,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+28616,HTML/CSS;JavaScript;PHP
+28617,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+28618,Clojure;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+28619,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+28620,Bash/Shell/PowerShell;Python;R;SQL
+28621,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+28622,HTML/CSS;Java;JavaScript;PHP;SQL
+28623,C;C++;C#;HTML/CSS;PHP;SQL
+28624,C;HTML/CSS;Java;PHP
+28625,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+28626,Java;JavaScript;Objective-C;Swift
+28627,C;C++;C#;Java
+28628,Go;JavaScript;Python;Scala;Other(s):
+28629,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;SQL;TypeScript
+28630,C;C++;C#;HTML/CSS;JavaScript;Python
+28631,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+28632,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+28633,C#;HTML/CSS;JavaScript
+28634,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+28635,C#;Java
+28636,Java;JavaScript;Python;R;TypeScript
+28637,Assembly;Java;JavaScript;PHP;SQL
+28638,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Other(s):
+28639,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+28640,Bash/Shell/PowerShell;C;C++;C#;Ruby;Rust;SQL
+28641,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+28642,Bash/Shell/PowerShell;Python;R;SQL;VBA;Other(s):
+28643,C++;HTML/CSS;JavaScript;PHP;SQL
+28644,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+28645,HTML/CSS;Java
+28646,HTML/CSS;Java;JavaScript;SQL;TypeScript
+28647,Bash/Shell/PowerShell;C;C#;Clojure;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;Other(s):
+28648,C;JavaScript;PHP;TypeScript;WebAssembly;Other(s):
+28649,HTML/CSS;Java;JavaScript;SQL
+28650,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;R;SQL;Other(s):
+28651,Go;HTML/CSS;Java;JavaScript;PHP
+28652,C++;Dart;Java
+28653,HTML/CSS;JavaScript;TypeScript
+28654,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL
+28655,C;HTML/CSS;Java;JavaScript;Python
+28656,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL
+28657,Bash/Shell/PowerShell;Other(s):
+28658,JavaScript;PHP;Python;SQL
+28659,HTML/CSS;Java;JavaScript;Ruby
+28660,Bash/Shell/PowerShell;C;Java;JavaScript;Objective-C;Ruby;Swift
+28661,C#;PHP;SQL
+28662,C;C++;Java;Python
+28663,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28664,Java;Kotlin
+28665,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+28666,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+28667,Bash/Shell/PowerShell;Java;JavaScript
+28668,Bash/Shell/PowerShell;C++;Java;Python
+28669,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+28670,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+28671,HTML/CSS;Java;JavaScript;PHP
+28672,C++;JavaScript
+28673,Bash/Shell/PowerShell;C++;C#;HTML/CSS;PHP;SQL
+28674,JavaScript;PHP;TypeScript
+28675,C++;C#
+28676,HTML/CSS;JavaScript;Python;SQL
+28677,Bash/Shell/PowerShell;C;Other(s):
+28678,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+28679,C++
+28680,Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+28681,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;Other(s):
+28682,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+28683,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;WebAssembly
+28684,Python;SQL
+28685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28686,Java
+28687,Bash/Shell/PowerShell;C
+28688,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+28689,Bash/Shell/PowerShell;Java;SQL
+28690,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+28691,Bash/Shell/PowerShell;C;Java;Python;Other(s):
+28692,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+28693,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+28694,HTML/CSS;JavaScript;PHP
+28695,Bash/Shell/PowerShell;Go;Kotlin;PHP;Python
+28696,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+28697,Java
+28698,HTML/CSS;JavaScript;PHP;SQL
+28699,C;C#;Java;JavaScript;Python;Other(s):
+28700,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28701,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS
+28702,Bash/Shell/PowerShell;C;C#;Java;SQL
+28703,C;C++;Clojure;HTML/CSS;Java;Python;Ruby;SQL
+28705,HTML/CSS;Java;JavaScript;Python;SQL
+28706,Bash/Shell/PowerShell;C#;HTML/CSS
+28707,C++;C#;Java
+28708,Assembly;C;C++
+28709,Bash/Shell/PowerShell;JavaScript;PHP;TypeScript
+28710,Go;R;SQL;VBA;Other(s):
+28711,C#
+28712,C;HTML/CSS;JavaScript;Python;TypeScript
+28713,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+28714,C;C++;Java;JavaScript;PHP;Python;Rust;SQL
+28715,Java;JavaScript;Ruby;SQL;Swift
+28716,C;C++;Java;Kotlin;Python;SQL
+28717,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+28718,Python;SQL;VBA;Other(s):
+28719,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+28720,HTML/CSS;JavaScript;PHP;SQL
+28721,Assembly;Bash/Shell/PowerShell;C++;Other(s):
+28722,Java;JavaScript
+28723,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+28724,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+28725,HTML/CSS;JavaScript;PHP;Python;VBA
+28726,Other(s):
+28727,C;Go;Python;SQL
+28728,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+28729,C#;HTML/CSS;JavaScript;PHP;Other(s):
+28730,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;Kotlin;Python;SQL
+28731,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+28732,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+28733,C#;F#;JavaScript;SQL;TypeScript
+28734,Elixir;JavaScript
+28735,C#;Java;Python;SQL
+28736,Java;JavaScript;SQL
+28737,HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;Scala;Swift;TypeScript
+28738,HTML/CSS;JavaScript;PHP
+28739,HTML/CSS;JavaScript;Python;Rust;Swift;TypeScript
+28740,HTML/CSS;Python
+28741,C#;Java;Python;SQL
+28742,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28743,Bash/Shell/PowerShell;C#;Python;SQL
+28744,HTML/CSS;Java;JavaScript;PHP;SQL
+28745,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL;TypeScript
+28746,C#;HTML/CSS;JavaScript;SQL
+28747,C#;HTML/CSS;Python;SQL
+28748,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+28749,JavaScript
+28750,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+28751,Assembly;C;C++;HTML/CSS;JavaScript;Ruby;SQL
+28752,C#;HTML/CSS;JavaScript;SQL
+28753,C;JavaScript;Python;SQL
+28754,C++;HTML/CSS;JavaScript;Python
+28755,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+28756,C;C++;Java;Python
+28757,Java;Python;Scala;SQL
+28758,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28759,Bash/Shell/PowerShell;Java;Python;SQL
+28760,C#;HTML/CSS;JavaScript;PHP
+28761,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Java;Python;SQL;Other(s):
+28762,HTML/CSS;JavaScript;PHP;SQL
+28763,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28764,C
+28765,Java;JavaScript;SQL
+28766,HTML/CSS;JavaScript;PHP;Python;SQL
+28767,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+28768,SQL;Other(s):
+28769,C;Java;Python
+28770,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28771,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+28772,Assembly;C;Java;Python;R
+28773,Bash/Shell/PowerShell;C++;Dart;Go;Java;Kotlin;SQL
+28774,Bash/Shell/PowerShell;HTML/CSS;JavaScript;WebAssembly
+28775,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+28776,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+28777,C;C++;Python;SQL
+28778,Assembly;C;Python;SQL;Other(s):
+28779,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+28780,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+28781,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+28783,Java;JavaScript;PHP;Python
+28784,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+28785,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;SQL;TypeScript
+28786,HTML/CSS;JavaScript;Other(s):
+28787,C;C++;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+28788,HTML/CSS;JavaScript;TypeScript
+28789,Bash/Shell/PowerShell;C++;C#;Java;Ruby
+28790,Java
+28791,Java;JavaScript
+28792,Bash/Shell/PowerShell;C;C++;Rust;Other(s):
+28793,C#;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift;TypeScript
+28794,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+28795,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+28796,Other(s):
+28797,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+28798,Java
+28799,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28800,R
+28801,Java;JavaScript;Kotlin
+28802,HTML/CSS;JavaScript
+28803,Assembly;C;C++;JavaScript
+28804,Bash/Shell/PowerShell;C#;JavaScript;PHP;Ruby
+28805,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+28806,HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+28807,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+28808,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+28809,SQL;Other(s):
+28810,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+28811,Objective-C;Python;Swift
+28812,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+28813,HTML/CSS;JavaScript;PHP
+28814,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+28815,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+28816,C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+28817,HTML/CSS;JavaScript;TypeScript
+28818,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+28819,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+28820,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+28821,HTML/CSS;Java;JavaScript;Python;SQL
+28822,C;C++;Python
+28823,C#;HTML/CSS;JavaScript;SQL
+28824,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+28826,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;Python;Scala;SQL
+28827,Clojure;HTML/CSS;JavaScript
+28828,C++;Python;R;SQL
+28829,Assembly;C;C++;Clojure;Elixir;F#;Go;HTML/CSS;Java;Objective-C;Python;Ruby;Scala;VBA;WebAssembly
+28830,C++
+28831,C
+28832,Assembly;Bash/Shell/PowerShell;C;C++;Go;PHP;Python;Rust;SQL
+28833,HTML/CSS;Java;JavaScript;PHP;SQL
+28834,Bash/Shell/PowerShell;Go;JavaScript;Ruby;SQL;Swift
+28835,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28836,C#;HTML/CSS;Java;TypeScript
+28837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+28838,C++;HTML/CSS;Python
+28839,Bash/Shell/PowerShell;C;C++;Python
+28840,HTML/CSS;JavaScript;Ruby
+28841,HTML/CSS;Java;PHP;Python;Rust;SQL;TypeScript
+28842,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+28843,C#
+28844,Bash/Shell/PowerShell;C++;Java
+28845,Bash/Shell/PowerShell;Python;R;VBA
+28846,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+28847,Bash/Shell/PowerShell;C;C++;Python
+28848,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python
+28849,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+28850,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+28851,Bash/Shell/PowerShell;C;Python;SQL;Other(s):
+28852,Java;Swift
+28853,JavaScript;Other(s):
+28854,Python;SQL
+28855,HTML/CSS;Java;PHP;Python;SQL;Swift
+28856,Bash/Shell/PowerShell;Python
+28857,C#;Python
+28858,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+28859,Assembly;Bash/Shell/PowerShell;C;C++;Clojure
+28860,C#;HTML/CSS;JavaScript
+28861,C#;HTML/CSS;JavaScript;SQL;TypeScript
+28862,HTML/CSS;Java;JavaScript;Python
+28863,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+28864,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;Other(s):
+28865,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+28866,C;Java;JavaScript;Kotlin;PHP;Python;SQL
+28867,Go;Java;JavaScript;Kotlin;Python;Rust
+28868,Other(s):
+28869,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+28870,HTML/CSS;JavaScript;PHP
+28871,C++;C#;Java;Kotlin;SQL
+28872,C++;Java;Python
+28873,C;C++;C#;Dart;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+28874,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+28875,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin
+28876,HTML/CSS;JavaScript
+28877,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28878,HTML/CSS;JavaScript;PHP
+28879,R
+28880,C#;Other(s):
+28881,C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+28882,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;R;SQL;WebAssembly
+28883,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+28884,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Swift;TypeScript
+28885,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+28886,Java
+28887,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+28888,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Ruby;SQL
+28890,HTML/CSS;Java;JavaScript;SQL
+28891,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+28892,C#;JavaScript;SQL
+28893,C#;Java;SQL
+28894,JavaScript
+28895,HTML/CSS;JavaScript;PHP;Python;SQL
+28896,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+28897,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript;Other(s):
+28898,C;Python;Swift
+28899,C++;C#;Python;SQL;Other(s):
+28900,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+28901,C;C#;SQL
+28902,Java;Kotlin
+28903,Clojure;Elixir;HTML/CSS;JavaScript;Python;Ruby
+28904,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+28905,C;C++;C#;HTML/CSS;JavaScript
+28906,C#;JavaScript;SQL
+28907,Java;Swift
+28908,Bash/Shell/PowerShell;Go;Java;Python
+28909,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+28910,Bash/Shell/PowerShell;Clojure;JavaScript;Ruby;SQL
+28911,Assembly;C;C++;Python;SQL
+28912,SQL
+28913,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+28914,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;SQL;VBA
+28915,HTML/CSS;JavaScript;PHP
+28916,Bash/Shell/PowerShell;C#;JavaScript;SQL
+28917,C#;HTML/CSS;JavaScript;PHP;SQL
+28918,HTML/CSS;JavaScript;TypeScript
+28919,C#;Python
+28920,C#;HTML/CSS;JavaScript;Python;SQL
+28921,Erlang;Java;Python
+28922,C;C++
+28923,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28924,HTML/CSS;VBA
+28925,HTML/CSS;PHP
+28926,Elixir;JavaScript;Python;VBA
+28927,HTML/CSS;Java;JavaScript;Kotlin;SQL
+28928,JavaScript;VBA;Other(s):
+28929,C#;Python;SQL;VBA
+28930,Java
+28931,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+28932,C#;Java;Python;TypeScript
+28933,Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Ruby
+28934,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+28935,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+28936,Bash/Shell/PowerShell;Java;SQL
+28937,HTML/CSS;Java;JavaScript;Kotlin;SQL
+28938,Bash/Shell/PowerShell;HTML/CSS;SQL
+28939,C#;SQL
+28940,JavaScript;Python
+28941,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+28942,HTML/CSS;JavaScript;PHP
+28943,HTML/CSS;JavaScript;PHP;SQL
+28944,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;R;Ruby;Rust;SQL
+28945,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28946,C;C++;HTML/CSS;Python;SQL
+28948,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+28949,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+28950,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+28951,Bash/Shell/PowerShell;Python;SQL
+28952,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+28953,C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+28954,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+28955,Bash/Shell/PowerShell;Scala
+28956,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+28957,Elixir;Java;JavaScript;Kotlin;SQL
+28958,Java;Python
+28959,C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28960,C;C++;HTML/CSS;JavaScript;PHP
+28961,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+28962,Bash/Shell/PowerShell;C
+28963,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+28964,HTML/CSS;JavaScript;PHP;Python;SQL
+28965,Rust
+28966,HTML/CSS;JavaScript;PHP;SQL
+28967,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala
+28968,Java
+28969,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+28970,Assembly;C;C#;HTML/CSS;JavaScript;Rust;SQL;WebAssembly
+28971,HTML/CSS;JavaScript;TypeScript
+28972,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+28973,HTML/CSS;Java;SQL
+28974,C#;Java;Kotlin;Objective-C;Python
+28975,C;C++;Go;Java;JavaScript
+28976,C++;Python
+28977,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+28978,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+28979,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+28980,Bash/Shell/PowerShell;C#;F#;Java;JavaScript;Python;Scala;TypeScript
+28981,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+28982,C++;C#;HTML/CSS;Java;VBA
+28983,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+28984,C#;HTML/CSS;JavaScript;Python
+28985,PHP
+28986,Bash/Shell/PowerShell;Python;Scala;SQL
+28987,HTML/CSS;JavaScript;Other(s):
+28988,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL;VBA
+28989,PHP;Python;SQL
+28990,HTML/CSS;JavaScript;PHP;SQL
+28991,C;C++;HTML/CSS;JavaScript;Python;Ruby
+28992,Go;Python;SQL
+28994,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+28995,Java;Kotlin
+28996,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+28997,HTML/CSS;Java;Other(s):
+28998,HTML/CSS;Java;JavaScript;TypeScript
+28999,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+29000,HTML/CSS;JavaScript;TypeScript
+29001,C;HTML/CSS;JavaScript;PHP;Scala;TypeScript
+29002,C++;C#;HTML/CSS;Java;JavaScript
+29003,HTML/CSS;Java;Python
+29004,Java;JavaScript;TypeScript
+29005,Bash/Shell/PowerShell;C;C++;Java;Python
+29006,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29007,HTML/CSS;JavaScript;Kotlin;PHP;TypeScript
+29008,Bash/Shell/PowerShell;C#;Objective-C
+29009,HTML/CSS;JavaScript;Ruby
+29010,Assembly;C++;HTML/CSS;Java;JavaScript;Ruby;Scala;TypeScript
+29011,C;C++;C#;Python
+29012,C#
+29013,C#;SQL;VBA
+29014,Clojure;Elixir;JavaScript;Ruby
+29015,HTML/CSS;JavaScript;Ruby;SQL
+29016,HTML/CSS;JavaScript;SQL;TypeScript
+29017,C;HTML/CSS;Python;SQL
+29018,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+29019,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+29020,Python;R
+29021,Assembly;C;HTML/CSS;Java;Python
+29022,HTML/CSS;JavaScript;Python;R;SQL
+29023,Java;JavaScript;PHP;TypeScript
+29024,HTML/CSS;JavaScript;PHP;Python
+29025,C#;HTML/CSS;JavaScript;SQL
+29026,HTML/CSS;Java;JavaScript;SQL;TypeScript
+29027,Bash/Shell/PowerShell;C;C++;C#;PHP;Python;SQL;TypeScript
+29028,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;SQL;Other(s):
+29029,Go;HTML/CSS;JavaScript;Python;SQL
+29030,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+29031,HTML/CSS;JavaScript;PHP
+29032,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+29033,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+29034,C;C++;HTML/CSS;JavaScript;PHP;SQL
+29035,C#;JavaScript
+29036,C#;HTML/CSS;SQL;TypeScript
+29037,C;Java;JavaScript;Objective-C;SQL
+29038,HTML/CSS;Java;SQL;Swift
+29039,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+29040,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+29041,C;C++;HTML/CSS;JavaScript;Python
+29042,Bash/Shell/PowerShell;C#;JavaScript
+29043,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+29044,C++
+29045,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+29046,Other(s):
+29047,HTML/CSS;Java;JavaScript;Python
+29048,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+29049,C#;HTML/CSS;JavaScript
+29050,C++;C#;Java;JavaScript;Kotlin;PHP;SQL
+29051,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+29052,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+29053,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+29054,Bash/Shell/PowerShell;SQL
+29055,C#;HTML/CSS;JavaScript;PHP;SQL
+29056,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;Rust;SQL;WebAssembly;Other(s):
+29057,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+29058,Bash/Shell/PowerShell;Java;Scala
+29059,Assembly;Bash/Shell/PowerShell;Java;Python
+29060,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;Other(s):
+29061,Java;Python;Rust
+29062,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+29063,C++;HTML/CSS;JavaScript
+29064,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29065,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+29066,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+29067,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+29068,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+29069,C++;Java;PHP;SQL
+29070,Java;Kotlin;Python
+29071,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+29072,C#;HTML/CSS;JavaScript;TypeScript
+29073,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+29074,Objective-C;Swift
+29075,Assembly;Bash/Shell/PowerShell
+29076,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+29077,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+29078,Java;Python
+29079,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Scala;SQL
+29080,HTML/CSS;JavaScript;PHP;SQL
+29081,Java;JavaScript;Python
+29082,Bash/Shell/PowerShell;SQL
+29083,C#;SQL;VBA
+29084,Java;JavaScript
+29085,C#
+29086,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+29087,C#;Go;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+29088,C#
+29089,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+29090,HTML/CSS;Java;JavaScript;Kotlin
+29091,Bash/Shell/PowerShell;Java;R
+29092,Java;JavaScript;PHP;Python;SQL
+29093,C;C++;C#;Java;JavaScript;SQL
+29094,C++;Swift
+29095,Bash/Shell/PowerShell;Python;SQL
+29096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+29097,Java;JavaScript
+29098,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29099,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+29101,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;VBA
+29102,HTML/CSS;JavaScript;PHP;SQL
+29103,C#;HTML/CSS;JavaScript;VBA
+29104,HTML/CSS;Java;JavaScript;SQL
+29105,HTML/CSS;Java;JavaScript;PHP
+29106,HTML/CSS;Java;JavaScript;Kotlin;Python
+29108,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+29109,JavaScript
+29110,Java;JavaScript;PHP;SQL
+29111,Bash/Shell/PowerShell;Python;R;Scala;SQL
+29112,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+29113,JavaScript;Python;R;SQL;VBA
+29114,HTML/CSS;JavaScript;Python;Other(s):
+29115,Go;HTML/CSS;Java;JavaScript;Scala;TypeScript
+29116,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+29117,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+29118,C#;SQL
+29119,HTML/CSS;JavaScript;TypeScript
+29120,HTML/CSS;JavaScript;Python;SQL
+29121,Bash/Shell/PowerShell;Python;SQL;Other(s):
+29122,HTML/CSS;Python;SQL
+29123,HTML/CSS;JavaScript;PHP;SQL
+29124,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+29125,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript;Other(s):
+29126,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+29127,Java;Python;Swift
+29128,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29129,C#;SQL
+29130,JavaScript;TypeScript
+29131,C++
+29132,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+29133,C#;HTML/CSS;Java;JavaScript;Python;SQL
+29134,Assembly;Bash/Shell/PowerShell;C;C++
+29135,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+29136,C#;HTML/CSS;JavaScript;TypeScript
+29137,JavaScript;PHP
+29138,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+29139,C;C++;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript;Other(s):
+29140,HTML/CSS;JavaScript;Python;SQL;TypeScript
+29141,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+29142,C#;Java;Kotlin;Scala
+29143,Assembly;C++;C#;Java;Python
+29144,C++
+29145,Bash/Shell/PowerShell;C#;SQL
+29146,Python;Rust
+29147,HTML/CSS;JavaScript;Ruby
+29148,Bash/Shell/PowerShell;Go;JavaScript;Ruby;Rust;WebAssembly
+29149,C#;JavaScript;SQL;TypeScript
+29150,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala;SQL
+29151,Assembly;C++;Java;PHP
+29152,HTML/CSS;JavaScript;PHP
+29153,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29154,Bash/Shell/PowerShell;C++;Java;Python;SQL
+29155,C;C++;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+29156,Java;Scala
+29157,PHP
+29158,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+29159,PHP
+29160,C;C++;HTML/CSS;JavaScript;Python;SQL
+29161,C#;HTML/CSS;JavaScript
+29162,C;C++;Objective-C;Swift
+29163,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+29164,Java;SQL
+29165,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+29166,Bash/Shell/PowerShell;JavaScript;PHP;Rust;TypeScript
+29167,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;PHP;Python;Rust
+29168,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29169,HTML/CSS;JavaScript;PHP
+29170,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+29171,R
+29172,Java;SQL;TypeScript
+29173,Scala
+29174,Other(s):
+29175,C++
+29176,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+29177,Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Other(s):
+29178,HTML/CSS;JavaScript;PHP;SQL
+29179,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Other(s):
+29180,HTML/CSS;JavaScript;Python;SQL
+29181,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+29182,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Objective-C;Python;SQL
+29183,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+29184,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29185,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+29186,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;VBA;Other(s):
+29187,HTML/CSS;JavaScript;Objective-C;Python;R;Swift;TypeScript
+29188,Bash/Shell/PowerShell;Java;Python;SQL
+29189,Bash/Shell/PowerShell;JavaScript;Python;Rust
+29190,Assembly;C;C++;HTML/CSS;Java;JavaScript
+29191,HTML/CSS;JavaScript;Python;SQL
+29192,C;C++;Clojure;Python
+29193,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+29194,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;SQL;Other(s):
+29195,Go;JavaScript
+29196,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+29197,Java;JavaScript;Python;SQL
+29198,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+29199,Assembly;HTML/CSS;Java;JavaScript;SQL
+29200,C++;C#;HTML/CSS;JavaScript;PHP
+29201,C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+29202,HTML/CSS;Java;JavaScript;SQL
+29203,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift
+29204,Assembly;C;Java;Python;Rust;Other(s):
+29205,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+29206,HTML/CSS;JavaScript;PHP;SQL
+29207,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+29208,C;C++;C#;HTML/CSS;SQL
+29209,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29210,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+29211,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+29212,C#;HTML/CSS;Java;JavaScript;Python;SQL
+29213,JavaScript;PHP
+29214,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+29215,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+29216,Bash/Shell/PowerShell;Python;SQL
+29217,SQL;Other(s):
+29218,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;R;SQL
+29219,HTML/CSS;Java;JavaScript;SQL
+29220,C++;HTML/CSS;Java;JavaScript
+29221,HTML/CSS;Java;JavaScript;SQL;TypeScript
+29222,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+29223,Dart;Java;Kotlin
+29224,Bash/Shell/PowerShell;C;C++;Java;Python
+29225,Swift
+29226,Bash/Shell/PowerShell;C++;HTML/CSS;Kotlin;Python;Other(s):
+29227,C;C++;C#;Java;JavaScript;Objective-C;SQL;Swift
+29228,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29229,Java;PHP;SQL
+29230,Python
+29231,Java;Ruby
+29232,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29233,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29234,C#;HTML/CSS;JavaScript;SQL
+29235,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+29236,C#;HTML/CSS;JavaScript;SQL
+29237,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript
+29238,Java
+29239,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+29240,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+29241,Go;HTML/CSS;JavaScript;Python;SQL
+29242,C;SQL
+29243,Assembly;C;Python
+29244,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+29245,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+29246,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+29247,C#;Java;TypeScript
+29248,Bash/Shell/PowerShell;Other(s):
+29249,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29250,HTML/CSS;JavaScript;TypeScript
+29251,C#;HTML/CSS;JavaScript;Python;SQL
+29252,Go;HTML/CSS;JavaScript;PHP;SQL
+29253,Bash/Shell/PowerShell;C;C#;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA
+29254,C
+29255,C#;HTML/CSS;PHP;Python;SQL
+29256,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+29257,C#;F#;HTML/CSS;JavaScript;PHP;SQL
+29258,HTML/CSS;Java;JavaScript;Kotlin;Ruby;TypeScript
+29259,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+29260,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+29261,HTML/CSS;JavaScript;PHP;SQL
+29262,Python
+29263,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+29264,C++;C#;PHP;SQL
+29265,HTML/CSS;JavaScript;PHP;Ruby;SQL
+29266,Bash/Shell/PowerShell;C;C#;Java;JavaScript
+29267,HTML/CSS;Java;JavaScript;SQL
+29268,HTML/CSS;PHP
+29269,HTML/CSS;JavaScript;PHP;TypeScript
+29270,Bash/Shell/PowerShell;C;Java;Python
+29271,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+29272,C#;Java;Kotlin;Ruby
+29273,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29274,R
+29276,C;Kotlin;Ruby
+29277,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Scala;SQL;VBA
+29278,Bash/Shell/PowerShell;C++;Python;Other(s):
+29279,JavaScript
+29280,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+29281,HTML/CSS;JavaScript
+29282,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+29283,Java;Python;SQL
+29284,HTML/CSS;PHP;SQL
+29285,HTML/CSS;JavaScript;Python;TypeScript
+29286,HTML/CSS;JavaScript
+29287,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+29288,Swift
+29289,Bash/Shell/PowerShell;JavaScript;Python
+29290,C#;HTML/CSS;JavaScript;Python;TypeScript
+29291,C#;TypeScript
+29292,C++;Other(s):
+29293,HTML/CSS;JavaScript;Ruby;SQL
+29294,C++;Go;JavaScript;Kotlin;SQL;TypeScript
+29295,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29296,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+29297,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+29298,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+29299,C#;HTML/CSS;Java;JavaScript;Python
+29301,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+29302,C;C++;HTML/CSS;Java;Python;R;Ruby;SQL;Swift
+29303,Dart;HTML/CSS;Java;JavaScript;Kotlin
+29304,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;JavaScript;PHP;SQL
+29305,C#;VBA
+29306,HTML/CSS;JavaScript;Python;R;SQL
+29307,C#;HTML/CSS;JavaScript;PHP;SQL
+29308,C#;Python;R;SQL
+29309,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+29310,Bash/Shell/PowerShell;Dart;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;SQL;Other(s):
+29311,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29312,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29313,Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;PHP;Python;Rust;SQL;Swift;WebAssembly
+29314,Bash/Shell/PowerShell;R
+29315,Bash/Shell/PowerShell;C#;Kotlin;SQL
+29316,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+29317,HTML/CSS;JavaScript;SQL
+29318,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+29319,Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL
+29320,HTML/CSS;JavaScript;PHP;SQL
+29321,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+29322,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+29323,Java;JavaScript;SQL;TypeScript
+29324,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+29325,JavaScript;TypeScript
+29326,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+29327,Python;R;Other(s):
+29328,Java
+29329,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+29330,C++;HTML/CSS;Java
+29331,C;C++;Python
+29332,Assembly;HTML/CSS;VBA;Other(s):
+29333,C#
+29334,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+29335,C;C++;C#;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript;Other(s):
+29336,HTML/CSS;Java;PHP;Python;Other(s):
+29337,Objective-C;Python;SQL;Swift;Other(s):
+29338,JavaScript;SQL
+29339,C++;C#;Python
+29340,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+29341,HTML/CSS;JavaScript;PHP;Ruby;SQL
+29342,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+29343,C++;C#;HTML/CSS;JavaScript;SQL
+29344,Bash/Shell/PowerShell;Java;JavaScript;SQL
+29345,HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+29346,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+29347,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+29348,Bash/Shell/PowerShell;Python
+29349,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29350,HTML/CSS;JavaScript;PHP;SQL
+29351,C#;HTML/CSS;JavaScript;SQL
+29352,C#;HTML/CSS;Java;JavaScript;SQL
+29353,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;SQL;VBA;Other(s):
+29354,C#;Python
+29355,Bash/Shell/PowerShell;C;C++;Python;Ruby;Other(s):
+29356,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL;TypeScript
+29357,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+29358,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+29359,Python;Other(s):
+29360,Java
+29361,Bash/Shell/PowerShell;C;C++;Python
+29362,C;Go;Java;Python;SQL
+29363,HTML/CSS;JavaScript;Python
+29364,C;Python
+29365,PHP
+29366,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+29367,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;TypeScript
+29368,HTML/CSS;JavaScript;Python;Swift
+29369,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;Scala;TypeScript
+29370,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+29371,Java;JavaScript;SQL;TypeScript
+29372,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+29373,C#;HTML/CSS;JavaScript;SQL
+29374,Assembly;HTML/CSS;JavaScript
+29375,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+29376,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+29377,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29378,C#;HTML/CSS;JavaScript;SQL
+29379,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+29380,Java;Python
+29381,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+29382,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+29383,C#;HTML/CSS;JavaScript;PHP;SQL
+29384,Elixir;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29385,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+29386,C#;HTML/CSS;Java;JavaScript;SQL
+29387,HTML/CSS
+29388,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+29389,C#;HTML/CSS;JavaScript;TypeScript
+29390,Java;JavaScript
+29391,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+29392,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+29393,Bash/Shell/PowerShell;Python
+29394,C#;SQL;Swift
+29395,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+29396,HTML/CSS;JavaScript;Python
+29397,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29398,C++;C#
+29399,Bash/Shell/PowerShell;C;C++;Java
+29400,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Rust
+29401,HTML/CSS;JavaScript;PHP
+29402,HTML/CSS;JavaScript;PHP;SQL
+29403,R;VBA
+29404,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+29405,C;C++;Python;R;Rust
+29406,Bash/Shell/PowerShell;Go;PHP;SQL
+29407,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+29408,JavaScript;TypeScript
+29409,C++
+29410,C++;C#;Java;JavaScript;PHP;Python;SQL
+29411,Bash/Shell/PowerShell;Java;JavaScript;SQL
+29412,Ruby
+29414,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+29415,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript
+29416,Bash/Shell/PowerShell;C++;Python
+29417,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;WebAssembly
+29418,JavaScript;Python
+29419,C++
+29420,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+29421,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript;Other(s):
+29422,HTML/CSS;JavaScript;Python;R;VBA
+29423,Assembly;C#;F#;HTML/CSS;JavaScript;R;SQL;TypeScript;WebAssembly
+29424,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29425,HTML/CSS;JavaScript;PHP;SQL
+29426,Bash/Shell/PowerShell;C;Python;SQL;Other(s):
+29427,C#;HTML/CSS;JavaScript
+29428,C;C++;HTML/CSS;Java;JavaScript
+29429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+29430,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Python;R;SQL
+29431,Bash/Shell/PowerShell;JavaScript;Python;SQL
+29432,Java
+29433,Java;JavaScript;PHP;Python;SQL
+29434,C#;Java;JavaScript;SQL
+29435,C#;HTML/CSS;JavaScript
+29436,Bash/Shell/PowerShell
+29437,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python
+29438,C++;C#;HTML/CSS;JavaScript;Python
+29439,HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+29440,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+29441,HTML/CSS;JavaScript;Python;SQL
+29442,Bash/Shell/PowerShell;Erlang;Java;JavaScript;PHP;Python;SQL;TypeScript
+29443,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+29444,Bash/Shell/PowerShell;C++;Python
+29445,C#;HTML/CSS;Python;SQL;TypeScript
+29446,HTML/CSS;JavaScript;Ruby;SQL
+29447,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+29448,C++;Dart;HTML/CSS;JavaScript;PHP;SQL;Swift
+29449,Assembly;Bash/Shell/PowerShell;C;C++;Python
+29450,HTML/CSS;JavaScript;PHP
+29451,Bash/Shell/PowerShell;Clojure;JavaScript
+29452,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+29453,Java;Kotlin
+29454,HTML/CSS;Java;JavaScript;SQL;TypeScript
+29455,HTML/CSS;JavaScript
+29456,Go;HTML/CSS;JavaScript;Python;SQL
+29457,HTML/CSS;JavaScript;SQL
+29458,C#;HTML/CSS;JavaScript;Python;Scala;SQL
+29459,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+29460,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+29461,C++;C#
+29462,Bash/Shell/PowerShell;Java;Python;SQL
+29463,C++;C#;HTML/CSS;JavaScript;TypeScript
+29464,C;C++;Java;Python
+29465,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL
+29466,C#;HTML/CSS;JavaScript;PHP;SQL
+29467,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+29468,Bash/Shell/PowerShell;C#;HTML/CSS
+29469,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+29470,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust;SQL
+29471,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL
+29472,C#;JavaScript;SQL
+29473,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+29474,HTML/CSS;Java;TypeScript
+29475,HTML/CSS;JavaScript;PHP
+29476,Java;Kotlin
+29477,Java;Python;Scala;SQL
+29478,C#;HTML/CSS;JavaScript;Python;SQL
+29479,Assembly;Bash/Shell/PowerShell;C#;Go;HTML/CSS;Python;SQL
+29480,C#;JavaScript;Python;SQL
+29481,HTML/CSS;Java;JavaScript;Ruby;SQL
+29482,C#;HTML/CSS;JavaScript;SQL;Other(s):
+29483,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+29484,Assembly;C++;HTML/CSS;Java;PHP
+29485,HTML/CSS;JavaScript;Ruby
+29486,JavaScript;Other(s):
+29487,Bash/Shell/PowerShell;C#;Go;Python;SQL
+29488,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+29489,C#;HTML/CSS;Java;JavaScript;Objective-C
+29490,Python
+29491,Bash/Shell/PowerShell;C;C++;Python;SQL;Other(s):
+29492,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+29493,C#;HTML/CSS;Java;JavaScript;TypeScript
+29494,JavaScript
+29495,C;C++;Python
+29496,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+29497,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+29498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+29499,C;C++;HTML/CSS;JavaScript;Python;SQL;Swift
+29500,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+29501,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+29502,Python;R;SQL
+29503,Bash/Shell/PowerShell;Java
+29504,HTML/CSS;JavaScript;PHP
+29505,HTML/CSS;JavaScript;Python;SQL
+29506,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+29507,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+29508,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+29509,Bash/Shell/PowerShell;C#;Java
+29510,HTML/CSS;Java;JavaScript;TypeScript
+29511,Elixir;Go;HTML/CSS;JavaScript;SQL;Other(s):
+29512,Java;JavaScript;Kotlin;Objective-C;Swift
+29515,Bash/Shell/PowerShell;C;C++;C#;Objective-C;PHP;Python;SQL
+29516,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+29517,C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;Rust;Scala
+29518,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+29519,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+29520,C#;JavaScript;Python;Scala;SQL
+29521,Java
+29522,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+29523,HTML/CSS;JavaScript;PHP;Python
+29524,HTML/CSS;JavaScript
+29525,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+29526,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+29527,Python;R;SQL
+29528,HTML/CSS;JavaScript;TypeScript
+29529,C;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL
+29530,C;C++;C#;HTML/CSS;Java;Objective-C;Python;SQL;Swift
+29531,Python
+29532,HTML/CSS;Java;JavaScript;SQL
+29533,Other(s):
+29534,HTML/CSS;Java;JavaScript
+29535,Go;Java;Kotlin
+29536,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+29537,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+29538,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+29539,Go;Python
+29540,C;C++;HTML/CSS;JavaScript;Python;TypeScript
+29541,Python;VBA
+29542,C++
+29543,C#;HTML/CSS;JavaScript;Python;R;SQL
+29544,HTML/CSS;JavaScript;Python
+29545,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+29546,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+29547,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+29548,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+29549,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;Ruby
+29550,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+29551,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+29552,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+29553,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+29554,Bash/Shell/PowerShell;Python;SQL
+29555,Bash/Shell/PowerShell;Python
+29556,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+29557,Bash/Shell/PowerShell;Java;JavaScript;Python
+29559,C++;HTML/CSS;JavaScript;Python
+29560,C;JavaScript;PHP;Python
+29561,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+29562,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL
+29563,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+29564,Bash/Shell/PowerShell;Go;JavaScript;Ruby;Scala;SQL
+29565,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+29567,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+29568,HTML/CSS;JavaScript;PHP;SQL
+29569,Bash/Shell/PowerShell;C;C#;Go;Python;R;Other(s):
+29570,C#;JavaScript;TypeScript
+29571,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+29572,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Swift;Other(s):
+29573,C#
+29574,HTML/CSS;Other(s):
+29575,HTML/CSS;JavaScript;PHP;SQL
+29576,Python
+29577,C#;HTML/CSS;JavaScript;PHP;SQL
+29578,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;Other(s):
+29579,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+29580,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29582,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+29583,C#;HTML/CSS;JavaScript;SQL
+29584,Bash/Shell/PowerShell;Java;JavaScript;Ruby;Scala;SQL
+29585,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+29586,JavaScript;Python
+29587,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+29588,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+29589,Java;Python
+29590,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+29591,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+29592,HTML/CSS;JavaScript;PHP;SQL
+29593,HTML/CSS;Python
+29594,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+29595,C++;Java
+29596,Python
+29598,Swift
+29599,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+29600,C++;C#;Python
+29602,Java;Python;Other(s):
+29603,Python;Scala;SQL
+29604,Go;Python
+29605,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Swift;TypeScript
+29606,Java;JavaScript;Other(s):
+29607,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript;WebAssembly
+29608,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+29609,C++;JavaScript;Python;TypeScript;WebAssembly
+29610,HTML/CSS;JavaScript;PHP;SQL
+29611,Bash/Shell/PowerShell;C;C++;Go;Java;PHP;Python;Ruby;SQL
+29612,Assembly;Bash/Shell/PowerShell;C++;C#;Python;Other(s):
+29613,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA;Other(s):
+29614,HTML/CSS;JavaScript;SQL;TypeScript
+29615,Go;Java;Python;SQL
+29616,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+29617,HTML/CSS;JavaScript;Objective-C
+29618,C#;Dart;HTML/CSS;JavaScript
+29619,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+29621,HTML/CSS;Swift
+29622,HTML/CSS;JavaScript;Python;Swift
+29623,C#;HTML/CSS;JavaScript;SQL
+29624,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+29625,C;C++;Java;Kotlin;Python
+29626,HTML/CSS;JavaScript;Python;SQL
+29627,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+29628,C;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+29629,C#;HTML/CSS;JavaScript
+29630,Bash/Shell/PowerShell;C++;Python
+29631,C;JavaScript;PHP;Python
+29632,HTML/CSS;JavaScript;Other(s):
+29633,C;HTML/CSS;JavaScript;Python;R;SQL
+29634,HTML/CSS;JavaScript;PHP;TypeScript
+29635,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+29636,Bash/Shell/PowerShell;C;C++;C#;Java;PHP
+29637,C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+29638,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+29639,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+29640,Bash/Shell/PowerShell;HTML/CSS;PHP;R;Rust;SQL
+29641,Bash/Shell/PowerShell;C;C++;JavaScript
+29642,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+29643,Bash/Shell/PowerShell;C++;JavaScript
+29644,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+29645,HTML/CSS;Java;JavaScript;Objective-C;SQL;Other(s):
+29646,C;C++;Go;HTML/CSS;Python;R;SQL
+29647,C;Clojure;JavaScript;PHP;Python
+29648,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+29649,HTML/CSS;Java;JavaScript;Python;SQL
+29650,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+29651,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29652,C++;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+29653,HTML/CSS;Java;JavaScript;SQL;TypeScript
+29654,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+29655,Java;Python;Swift
+29656,Python;R
+29657,HTML/CSS;Java;JavaScript;PHP;SQL
+29658,Java;JavaScript;Kotlin;TypeScript
+29659,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+29660,C++;HTML/CSS;JavaScript;VBA
+29661,Go;Python;Swift
+29662,Python;R;SQL
+29663,HTML/CSS;JavaScript;PHP;Python
+29664,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+29665,C#;SQL
+29666,C#;HTML/CSS;JavaScript;SQL
+29667,HTML/CSS;JavaScript;PHP
+29668,Java;SQL;Other(s):
+29669,HTML/CSS;JavaScript;Python;R
+29670,C++;C#;Go;JavaScript;Objective-C;Python;SQL;TypeScript
+29671,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+29672,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+29673,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+29674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+29675,Assembly;Bash/Shell/PowerShell;C;C#;Erlang;HTML/CSS;Java;Python;SQL
+29676,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+29677,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+29678,Bash/Shell/PowerShell;C++;C#;JavaScript;PHP;Python;Scala;SQL;TypeScript
+29679,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript
+29680,Assembly;Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;SQL
+29681,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+29682,HTML/CSS;JavaScript;PHP
+29683,Bash/Shell/PowerShell;Python
+29684,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+29685,HTML/CSS;JavaScript;PHP;SQL;Swift
+29686,Bash/Shell/PowerShell;Go;Java;Objective-C;PHP;Python;SQL;Swift
+29687,Go;JavaScript;Python;SQL
+29688,Bash/Shell/PowerShell;C#;SQL
+29689,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+29690,HTML/CSS;JavaScript;TypeScript
+29691,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+29692,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+29693,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+29694,JavaScript;SQL
+29695,Java;Objective-C;Swift
+29696,C;C++;HTML/CSS;Java;Python;Other(s):
+29698,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+29699,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+29700,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+29701,HTML/CSS;JavaScript;TypeScript
+29702,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+29703,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript;VBA
+29704,HTML/CSS;JavaScript;Python
+29705,Elixir;HTML/CSS;JavaScript;PHP;TypeScript
+29706,Java;Kotlin;Python
+29707,C++;C#;HTML/CSS;Java;R;SQL
+29708,PHP;Python
+29710,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+29711,Bash/Shell/PowerShell;C;Python
+29712,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+29713,Python;SQL
+29714,Assembly;Bash/Shell/PowerShell;C++;C#;Java;Python;Ruby
+29715,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+29716,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+29717,C;HTML/CSS;Java;JavaScript;Python;Other(s):
+29718,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+29719,PHP;Python;R
+29720,Elixir;Go;JavaScript;Python;Swift;TypeScript
+29721,C++;HTML/CSS;Java;JavaScript;TypeScript
+29722,HTML/CSS;Java;JavaScript;SQL
+29723,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+29724,Bash/Shell/PowerShell;Java;JavaScript;SQL
+29725,C#;SQL
+29726,Bash/Shell/PowerShell;C;Objective-C;Swift
+29727,HTML/CSS;Java;PHP;SQL;TypeScript
+29728,HTML/CSS;JavaScript;Ruby;SQL
+29729,C#;HTML/CSS;JavaScript;SQL
+29730,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+29731,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+29732,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS
+29733,JavaScript;Objective-C;Python;Swift
+29734,HTML/CSS;Java;JavaScript;PHP;SQL
+29735,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+29736,Assembly;C;C++;C#;Java;Kotlin;VBA
+29737,Java
+29738,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP
+29739,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+29740,C++;HTML/CSS;Java;JavaScript;SQL
+29741,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29742,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+29743,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+29744,HTML/CSS;JavaScript;PHP;Ruby;SQL
+29745,C;HTML/CSS;Python
+29746,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+29747,Bash/Shell/PowerShell;Java
+29748,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29749,C#;Java;SQL;Swift;Other(s):
+29750,Python;Other(s):
+29751,C++;C#;Python;R;SQL
+29752,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+29753,HTML/CSS;Java;JavaScript;SQL
+29754,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+29755,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+29756,HTML/CSS;JavaScript
+29757,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+29758,Objective-C;Swift
+29759,C#;Java;PHP
+29760,Other(s):
+29761,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+29762,HTML/CSS;JavaScript;Python;SQL
+29763,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;VBA
+29764,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Rust;SQL;Swift;TypeScript
+29765,C;C++;HTML/CSS;Java;VBA
+29766,HTML/CSS;JavaScript;PHP;TypeScript
+29767,HTML/CSS;JavaScript;SQL;Other(s):
+29768,Bash/Shell/PowerShell;C;Java;Python;SQL
+29769,C;C++;Clojure;Erlang;Go;Python;SQL
+29770,HTML/CSS;PHP;SQL
+29771,Bash/Shell/PowerShell;C
+29772,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+29773,HTML/CSS;JavaScript;PHP;SQL
+29774,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+29775,Python
+29776,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+29777,C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+29778,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+29779,JavaScript;Ruby;SQL
+29780,C#;Java;JavaScript;SQL
+29781,C#;HTML/CSS;SQL;Other(s):
+29782,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+29783,C#;Objective-C;Swift
+29784,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+29785,C
+29786,HTML/CSS;JavaScript;SQL
+29787,C;C++;C#
+29788,C;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+29789,HTML/CSS;Java;JavaScript;TypeScript
+29790,C#;HTML/CSS;JavaScript;SQL
+29791,R
+29792,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;JavaScript;Python;Rust;SQL;WebAssembly
+29793,C#;HTML/CSS;JavaScript;Python;TypeScript
+29794,Java;JavaScript;Kotlin
+29795,HTML/CSS;JavaScript;PHP;SQL
+29796,Bash/Shell/PowerShell;C;C++;Java;SQL;Other(s):
+29797,Bash/Shell/PowerShell;Java;SQL
+29798,HTML/CSS;Java;JavaScript;PHP;SQL
+29799,Bash/Shell/PowerShell;C;C++;JavaScript
+29800,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;Kotlin;Python;R;SQL;TypeScript;VBA
+29801,HTML/CSS;JavaScript;PHP
+29802,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+29803,Bash/Shell/PowerShell;C;C++;C#;Python
+29805,JavaScript;Python;R;SQL
+29806,HTML/CSS;JavaScript;PHP;SQL
+29807,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29808,C;C++;SQL;Other(s):
+29809,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+29810,Bash/Shell/PowerShell;Go;JavaScript;Python;Other(s):
+29811,C#;Objective-C;Swift
+29812,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+29813,C;HTML/CSS;Java;JavaScript;PHP
+29814,HTML/CSS;JavaScript;SQL;Other(s):
+29815,HTML/CSS;Java;PHP
+29816,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+29817,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+29818,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+29819,HTML/CSS;JavaScript;PHP;SQL
+29820,Bash/Shell/PowerShell;JavaScript;PHP
+29821,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+29822,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+29823,Bash/Shell/PowerShell;C#;Python;SQL
+29824,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+29825,C;C++;Java;Python;Scala;SQL
+29827,Assembly;C++;C#;Java;SQL;Other(s):
+29828,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+29829,C;C++;Objective-C;Swift
+29830,Python;Scala;SQL
+29831,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;TypeScript
+29832,HTML/CSS;JavaScript;PHP;SQL
+29833,HTML/CSS;JavaScript;PHP
+29834,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift
+29835,Assembly;Java;Python
+29836,C#;Java
+29837,C;C++;Java;Kotlin
+29838,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29839,C#;F#;HTML/CSS;JavaScript
+29840,Python;Scala
+29842,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+29843,HTML/CSS;JavaScript;PHP;SQL
+29844,HTML/CSS;JavaScript;Python;TypeScript
+29845,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+29846,C;HTML/CSS;JavaScript;PHP;Python
+29847,HTML/CSS;JavaScript;PHP;SQL
+29848,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+29849,Java;JavaScript;Objective-C;SQL;Swift
+29850,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29851,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+29852,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29853,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+29854,C;JavaScript;Objective-C;Python;Swift
+29855,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+29856,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+29857,HTML/CSS;PHP;SQL
+29858,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+29859,C++;C#;Elixir;HTML/CSS;Java;JavaScript;SQL
+29860,HTML/CSS;JavaScript;PHP
+29861,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+29862,HTML/CSS;Java;JavaScript;SQL
+29863,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+29864,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+29865,HTML/CSS;JavaScript
+29866,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+29867,Go;HTML/CSS;Python;SQL;TypeScript
+29868,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+29869,HTML/CSS;JavaScript;PHP;SQL
+29870,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+29871,Bash/Shell/PowerShell;C++;Java
+29872,C++;HTML/CSS;JavaScript;PHP;Python
+29873,C;C++;Java;JavaScript;PHP;SQL;TypeScript
+29874,Bash/Shell/PowerShell;Python
+29875,Bash/Shell/PowerShell
+29876,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+29877,JavaScript;TypeScript
+29878,HTML/CSS;JavaScript;PHP
+29879,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+29880,Elixir;Java;JavaScript;Python;SQL;TypeScript
+29881,C#;Python;R;SQL
+29882,C#;Java;JavaScript
+29883,C#;HTML/CSS;Java;JavaScript;Python;SQL
+29884,C#;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+29885,HTML/CSS;Java;JavaScript;Python;SQL
+29886,PHP
+29887,C;C++;C#;HTML/CSS;JavaScript;PHP;VBA;Other(s):
+29888,C;C#
+29889,HTML/CSS;Java;JavaScript
+29890,C#;HTML/CSS;JavaScript
+29891,Dart;Python
+29892,Java;JavaScript;Python;SQL;TypeScript
+29893,C#;HTML/CSS;JavaScript;SQL
+29895,C++;Java
+29896,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+29897,JavaScript;Python;SQL
+29898,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript
+29899,C;C++;C#;Go;HTML/CSS;PHP;SQL;TypeScript
+29900,Java;JavaScript;SQL;TypeScript
+29901,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+29902,C#;HTML/CSS;JavaScript;PHP;SQL
+29903,R;SQL;VBA
+29904,C#;HTML/CSS;Java;JavaScript;SQL
+29905,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29906,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+29907,Go;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+29908,C++;HTML/CSS;Java;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+29909,Bash/Shell/PowerShell;Go;Kotlin;Ruby;SQL
+29910,HTML/CSS;Java;JavaScript;Objective-C;Swift
+29911,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+29912,HTML/CSS;JavaScript;PHP;Python
+29913,C#;HTML/CSS;JavaScript;SQL;TypeScript
+29914,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+29915,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+29916,HTML/CSS;JavaScript;TypeScript
+29917,Elixir;JavaScript
+29918,PHP
+29919,Bash/Shell/PowerShell;SQL
+29920,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL;VBA;Other(s):
+29921,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+29922,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+29923,HTML/CSS;Java;JavaScript
+29925,HTML/CSS;JavaScript;PHP;Python
+29926,Bash/Shell/PowerShell;Java;Python;Other(s):
+29927,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29928,C#;HTML/CSS;Python;Other(s):
+29929,Java
+29930,HTML/CSS;Java;JavaScript;SQL;TypeScript
+29931,HTML/CSS;Java;JavaScript;SQL;TypeScript
+29932,HTML/CSS;JavaScript;Python;TypeScript
+29933,C#;HTML/CSS;JavaScript;SQL
+29934,Bash/Shell/PowerShell;SQL
+29935,HTML/CSS;PHP
+29936,Bash/Shell/PowerShell;Java
+29937,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+29938,C;Java;Python
+29939,Java;JavaScript;Python;SQL
+29940,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+29941,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Scala;SQL
+29942,HTML/CSS;Java;JavaScript;Kotlin;Ruby
+29943,JavaScript;Ruby;SQL;Other(s):
+29944,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+29945,HTML/CSS;JavaScript;PHP;SQL
+29946,HTML/CSS;Java;JavaScript;PHP
+29947,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+29948,HTML/CSS;Java;JavaScript;TypeScript
+29949,HTML/CSS;JavaScript;PHP;SQL
+29950,C#;SQL;TypeScript
+29951,Bash/Shell/PowerShell;C#;F#
+29952,C#;JavaScript;SQL
+29953,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29954,Java;JavaScript
+29955,Assembly;Bash/Shell/PowerShell;C++;C#;Java;JavaScript;PHP;SQL
+29956,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+29957,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+29958,C;C++;C#;PHP
+29959,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+29960,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Swift
+29961,Bash/Shell/PowerShell;C++;JavaScript;Python
+29962,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+29963,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+29964,Other(s):
+29965,C#;HTML/CSS;JavaScript;SQL
+29966,Assembly;Bash/Shell/PowerShell;C;Java;PHP;Other(s):
+29967,R;Other(s):
+29968,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+29969,Bash/Shell/PowerShell;Java;JavaScript;Python
+29970,Go;HTML/CSS;Java;JavaScript;Swift
+29971,SQL;Other(s):
+29972,VBA
+29973,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+29974,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+29975,Bash/Shell/PowerShell;Ruby
+29976,C++;HTML/CSS;JavaScript;Python
+29977,Bash/Shell/PowerShell;C#;Clojure;JavaScript;TypeScript
+29978,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+29979,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+29980,Bash/Shell/PowerShell;C#;Python;VBA
+29981,C++;C#;HTML/CSS;Java;SQL
+29982,C;C++;Java;JavaScript;Python;SQL;TypeScript
+29983,C;Java
+29984,Objective-C;Swift
+29985,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+29986,Bash/Shell/PowerShell;C;HTML/CSS;Java
+29987,C#;HTML/CSS;Python;TypeScript
+29988,C++;Python
+29989,HTML/CSS;JavaScript;PHP;WebAssembly;Other(s):
+29990,Bash/Shell/PowerShell;C;Python
+29991,HTML/CSS;JavaScript;TypeScript
+29992,HTML/CSS;PHP;SQL
+29993,C#;Java;SQL;VBA
+29994,Bash/Shell/PowerShell;C;Java;Python
+29995,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;Swift
+29996,HTML/CSS;Java;JavaScript;PHP;SQL
+29997,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+29999,C;C++;HTML/CSS;Java;R;SQL
+30001,HTML/CSS;JavaScript
+30002,HTML/CSS;JavaScript;PHP;SQL
+30003,Java
+30004,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript;WebAssembly
+30005,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python;Scala
+30006,Python;R;VBA
+30007,C#;HTML/CSS;JavaScript;SQL
+30008,HTML/CSS;Java;JavaScript
+30009,HTML/CSS;Java;JavaScript;Scala
+30010,C;JavaScript;Kotlin;Swift
+30011,Java;JavaScript;Scala;SQL
+30012,HTML/CSS;JavaScript;PHP;SQL;Swift
+30013,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30014,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+30015,C#;HTML/CSS;JavaScript;SQL
+30016,Objective-C;Swift
+30017,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python
+30018,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python
+30019,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python
+30020,C#;HTML/CSS;Java;JavaScript;SQL
+30021,Bash/Shell/PowerShell;C#;Java;SQL
+30022,Bash/Shell/PowerShell;JavaScript;SQL;VBA
+30023,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+30024,Bash/Shell/PowerShell;C++;C#;Java;Python
+30025,C;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+30026,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+30027,HTML/CSS;JavaScript;TypeScript
+30028,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+30029,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+30030,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+30031,JavaScript;PHP;SQL
+30032,Clojure;HTML/CSS;PHP;Python;SQL
+30033,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin
+30034,HTML/CSS;Java;JavaScript
+30035,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+30036,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+30037,HTML/CSS;JavaScript;SQL
+30038,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+30039,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+30040,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+30041,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+30042,C#;HTML/CSS;JavaScript;SQL;VBA
+30043,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+30044,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+30045,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+30046,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;Python;R;Ruby;SQL;TypeScript
+30047,C++;Elixir;Go;JavaScript;Python;Rust
+30048,C#;SQL;TypeScript
+30049,Bash/Shell/PowerShell;C;Python
+30050,C#;HTML/CSS;JavaScript;SQL;TypeScript
+30051,C#;HTML/CSS;JavaScript;SQL
+30052,Assembly;C++;HTML/CSS;Java;Python;SQL
+30054,HTML/CSS;JavaScript;SQL
+30055,Java;Python
+30056,Java;Kotlin;Python;SQL
+30057,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+30058,C#;HTML/CSS;JavaScript;PHP;TypeScript
+30060,Java;Python;R;Scala;SQL
+30061,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+30062,JavaScript
+30063,Go;HTML/CSS;JavaScript;PHP;TypeScript
+30064,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+30065,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+30066,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+30067,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+30068,C;C++;Java
+30069,C#;HTML/CSS;JavaScript;PHP;Ruby
+30070,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30071,C++;Dart;HTML/CSS;JavaScript;Objective-C;Swift
+30072,Bash/Shell/PowerShell;C#;Python
+30073,C;C++;Go;PHP;Python;SQL
+30074,C#;JavaScript;SQL
+30075,HTML/CSS;JavaScript;PHP;Python;SQL
+30076,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30077,HTML/CSS;Java;JavaScript;PHP
+30078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+30079,HTML/CSS;JavaScript;SQL
+30080,Bash/Shell/PowerShell;Java;Python
+30081,Clojure;Java;Python;SQL;Other(s):
+30082,HTML/CSS;Java;JavaScript;PHP;SQL
+30083,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+30084,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+30085,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+30086,HTML/CSS;Java;JavaScript;PHP;SQL
+30087,Kotlin
+30088,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+30089,C++
+30090,Clojure;Elixir;HTML/CSS;Java;JavaScript;SQL
+30091,Java;JavaScript;Python;SQL;Other(s):
+30092,Bash/Shell/PowerShell;C++;HTML/CSS;Python;VBA
+30093,C;C++;C#;Java;Python;SQL
+30094,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+30095,C++;C#;F#;Java;JavaScript;PHP;SQL;TypeScript
+30096,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+30097,Java;JavaScript;SQL
+30098,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+30099,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+30100,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30101,C#;HTML/CSS;VBA
+30102,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+30103,HTML/CSS;JavaScript
+30105,Other(s):
+30106,HTML/CSS;JavaScript
+30107,Go;Java;Ruby;Scala
+30108,Bash/Shell/PowerShell;Go;JavaScript;Python
+30109,HTML/CSS;Java;Python;Swift
+30110,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+30111,Bash/Shell/PowerShell;Python;Scala;SQL;Other(s):
+30112,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+30113,HTML/CSS;JavaScript;PHP;SQL
+30115,HTML/CSS;JavaScript
+30116,Bash/Shell/PowerShell;Java;Kotlin
+30117,C#;HTML/CSS;JavaScript;SQL;WebAssembly
+30118,C#;HTML/CSS;JavaScript;TypeScript
+30119,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Rust
+30120,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+30121,Java;Kotlin
+30122,Java;JavaScript;SQL
+30123,C++;C#;HTML/CSS;JavaScript;Objective-C
+30124,C#;HTML/CSS;Java;JavaScript;Python;SQL
+30125,HTML/CSS;JavaScript
+30126,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+30128,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+30129,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+30130,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+30131,HTML/CSS;Java;JavaScript;SQL
+30132,C#;JavaScript;SQL
+30133,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+30134,Assembly;Elixir;Java;Python;SQL
+30135,C#;HTML/CSS;SQL;TypeScript
+30136,Assembly;Bash/Shell/PowerShell;C;Python;SQL
+30137,C#;HTML/CSS;JavaScript;SQL
+30138,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+30139,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;Swift;TypeScript
+30140,Go
+30142,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+30143,C;Dart;Java;Kotlin
+30144,HTML/CSS;JavaScript;TypeScript
+30145,HTML/CSS;JavaScript;Objective-C;PHP;Swift;TypeScript
+30146,HTML/CSS;JavaScript;PHP
+30147,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30148,C#;HTML/CSS;JavaScript;SQL
+30149,C;C++;Java;Ruby;SQL
+30150,HTML/CSS;Python
+30151,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+30152,Assembly
+30153,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+30154,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+30155,HTML/CSS;JavaScript;Python;Rust
+30156,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30157,C#;HTML/CSS;JavaScript;SQL
+30158,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+30159,C#;HTML/CSS;Java;JavaScript;SQL
+30160,HTML/CSS;JavaScript;Python
+30161,HTML/CSS;Java;JavaScript;SQL
+30162,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30163,Assembly;HTML/CSS;JavaScript
+30164,C;C++;C#;Python;R;SQL;Other(s):
+30165,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+30166,C++;Python
+30167,Java;Python;SQL
+30168,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+30169,HTML/CSS;Java;Python;R;Scala;Other(s):
+30170,Elixir;HTML/CSS;JavaScript;Python;SQL
+30171,C#;HTML/CSS;JavaScript;TypeScript
+30172,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+30173,Java;Ruby
+30174,Java
+30175,Python
+30176,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+30177,C++;HTML/CSS;Python
+30178,C++;Java;Objective-C;Python;Swift
+30179,Java;SQL
+30180,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+30181,Assembly;C;C++;C#;Java;JavaScript;Objective-C;Other(s):
+30182,Assembly;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+30183,JavaScript;Rust;TypeScript
+30184,Java;Kotlin
+30185,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+30186,C#;JavaScript;Scala;TypeScript
+30187,Bash/Shell/PowerShell;SQL
+30188,Java;SQL
+30189,Python;SQL;VBA
+30190,Java;SQL
+30191,HTML/CSS;JavaScript;PHP;SQL
+30192,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+30193,Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+30194,C;C++;Dart;HTML/CSS;Java;JavaScript;PHP
+30195,C;HTML/CSS;Java;SQL;TypeScript
+30196,C#;SQL
+30197,C;HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript
+30198,HTML/CSS;JavaScript;PHP;SQL
+30199,C++;Java;Python;SQL
+30200,HTML/CSS;JavaScript;PHP;Python;SQL
+30201,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+30202,Bash/Shell/PowerShell;C;C++;C#;Python
+30203,C#;HTML/CSS;JavaScript;SQL;TypeScript
+30204,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+30205,C#;HTML/CSS;JavaScript;TypeScript
+30206,C#;SQL
+30207,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+30208,C++
+30209,HTML/CSS;Python;SQL;VBA
+30210,HTML/CSS;JavaScript;SQL;TypeScript
+30211,HTML/CSS;JavaScript;PHP;SQL
+30212,C#;HTML/CSS;JavaScript;Python
+30213,Bash/Shell/PowerShell;C;Java
+30214,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+30215,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+30216,HTML/CSS;Java;JavaScript;PHP
+30217,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;SQL;Other(s):
+30218,Java;Python;Scala;TypeScript
+30219,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+30220,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+30222,C#;HTML/CSS;Java;JavaScript;SQL
+30223,C#;Go;Java;JavaScript;TypeScript
+30224,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+30225,C;C++;HTML/CSS;JavaScript;PHP;Python
+30226,C#;HTML/CSS;JavaScript
+30227,Assembly;Bash/Shell/PowerShell;C;C++
+30228,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+30229,Java;Kotlin;SQL
+30230,Java;JavaScript;Kotlin
+30231,C;C++;C#;Erlang;Go
+30232,Bash/Shell/PowerShell;C++;C#;Clojure;F#;Go;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL;TypeScript
+30233,HTML/CSS;JavaScript;PHP;Python
+30234,Bash/Shell/PowerShell;JavaScript;Scala
+30235,C;C++;HTML/CSS;Java;JavaScript;Kotlin
+30237,C#;HTML/CSS;JavaScript;SQL
+30238,C#;JavaScript;SQL
+30239,HTML/CSS;Java;JavaScript
+30240,HTML/CSS;JavaScript;PHP;Python;SQL
+30241,Go;Java;Python;SQL;TypeScript
+30242,Bash/Shell/PowerShell;Java;Kotlin;Scala;SQL
+30243,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+30244,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+30245,Python;R
+30246,Bash/Shell/PowerShell;Python
+30247,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+30248,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+30249,C++;Elixir;Go;Python;Ruby;Swift;Other(s):
+30250,C#;SQL;VBA
+30251,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+30252,C;Swift
+30253,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+30254,PHP
+30255,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+30256,C;HTML/CSS;JavaScript;PHP;Python;SQL
+30257,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+30258,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+30259,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30260,Scala
+30261,HTML/CSS;Java;JavaScript;Kotlin;Python
+30262,HTML/CSS;JavaScript;PHP;SQL
+30263,Java;Kotlin
+30264,C#;HTML/CSS;Java;JavaScript
+30265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+30266,C#;Go;HTML/CSS;JavaScript;TypeScript
+30267,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;Swift;TypeScript
+30268,Python;R
+30269,HTML/CSS;JavaScript;PHP;SQL
+30270,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+30271,Go;HTML/CSS;Java;JavaScript;TypeScript
+30272,C++;C#
+30273,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+30274,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Kotlin;Python;Swift
+30275,HTML/CSS;JavaScript;PHP;Python;SQL
+30276,C;C++;HTML/CSS;Java;Rust
+30277,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+30278,C#;HTML/CSS;JavaScript
+30279,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+30280,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+30281,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+30282,Java;JavaScript
+30283,Bash/Shell/PowerShell;C++;C#;Java;Python;Rust
+30284,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+30285,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+30286,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Other(s):
+30287,C#;HTML/CSS;Java;JavaScript
+30288,HTML/CSS;JavaScript
+30289,Bash/Shell/PowerShell;Go;Java;Python;SQL;Other(s):
+30290,HTML/CSS;JavaScript;PHP;Python
+30291,Assembly;C;C++;C#;Python
+30292,Kotlin
+30293,Bash/Shell/PowerShell;C;C++;Python
+30294,HTML/CSS;JavaScript;Other(s):
+30295,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+30296,Bash/Shell/PowerShell;C;C++;Python
+30297,HTML/CSS;JavaScript
+30298,Java;Kotlin
+30299,HTML/CSS;Java;JavaScript;SQL
+30300,Python;Swift
+30301,C#;HTML/CSS;JavaScript;TypeScript
+30302,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript
+30303,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30304,Assembly;HTML/CSS
+30305,C++;HTML/CSS;JavaScript
+30306,C#;SQL
+30307,Go;Java;Kotlin;Python;Scala;SQL
+30308,C#;HTML/CSS;JavaScript;Python
+30309,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+30310,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+30311,Bash/Shell/PowerShell;C;C++;Objective-C;Ruby;Swift
+30312,HTML/CSS
+30313,HTML/CSS;JavaScript;PHP;SQL
+30314,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30315,JavaScript;Python
+30316,C#;JavaScript;SQL;TypeScript;VBA
+30317,C#;HTML/CSS;Java;JavaScript
+30318,Bash/Shell/PowerShell;Python;SQL
+30319,HTML/CSS;JavaScript;SQL
+30320,C;HTML/CSS;Java;JavaScript;Python;SQL
+30321,HTML/CSS;Java;Python;Swift
+30322,HTML/CSS;JavaScript;Other(s):
+30323,Bash/Shell/PowerShell;Java;Kotlin;SQL;Other(s):
+30324,C#;HTML/CSS;JavaScript;SQL;TypeScript
+30325,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+30326,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+30327,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Rust;TypeScript;VBA
+30328,Bash/Shell/PowerShell;Go;Python
+30329,Python;R;SQL;VBA
+30330,C;C++;C#;Dart;HTML/CSS;Java;Python;SQL
+30331,HTML/CSS;Java;TypeScript
+30332,C#;HTML/CSS;JavaScript
+30333,Java;JavaScript;Kotlin;TypeScript
+30334,C#
+30335,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+30336,C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+30337,Java;SQL
+30338,C;C++;HTML/CSS;Java;JavaScript;PHP
+30339,Java
+30340,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+30341,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala
+30342,Objective-C;Swift
+30343,HTML/CSS;Java;JavaScript;PHP;Python;Swift;TypeScript
+30344,Python
+30345,Assembly;Bash/Shell/PowerShell;Other(s):
+30346,Java;Python
+30347,Python
+30348,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+30349,HTML/CSS;JavaScript;Python;SQL
+30350,HTML/CSS;Java;JavaScript;SQL
+30351,Bash/Shell/PowerShell;C;C++;Go;Python
+30352,Assembly;Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+30353,HTML/CSS;JavaScript;PHP;SQL
+30354,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+30355,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Elixir;Erlang;Go;HTML/CSS;JavaScript;Kotlin;Python;Ruby;Rust;Scala;SQL;TypeScript
+30356,Bash/Shell/PowerShell;Clojure;SQL
+30357,C#;Python;SQL;VBA
+30358,Dart;Go;HTML/CSS;JavaScript;PHP;TypeScript
+30359,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30360,HTML/CSS;Java;JavaScript;SQL
+30361,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+30362,C#;HTML/CSS;Java;JavaScript;SQL
+30363,HTML/CSS;JavaScript;PHP;SQL
+30364,C;C++;HTML/CSS;Java;JavaScript;PHP
+30365,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+30366,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+30367,C;C#;HTML/CSS;Java;JavaScript;Python
+30368,HTML/CSS;JavaScript;TypeScript
+30369,C++;Java;PHP;Python;Other(s):
+30370,Assembly;Bash/Shell/PowerShell;C;C#;Go;Java;SQL
+30371,Elixir;JavaScript
+30372,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript
+30373,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30374,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+30375,Assembly;C#;Other(s):
+30376,C;C++;Python
+30377,Objective-C;Python;R;Swift;VBA
+30378,Bash/Shell/PowerShell;C;Java
+30379,HTML/CSS;JavaScript;PHP
+30380,R
+30381,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+30382,C;JavaScript
+30383,HTML/CSS;JavaScript;TypeScript;Other(s):
+30384,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+30385,HTML/CSS;Java;JavaScript;Python;SQL
+30386,Java
+30387,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+30388,JavaScript
+30389,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;WebAssembly
+30390,HTML/CSS;Java;JavaScript;Other(s):
+30391,C;Erlang;HTML/CSS;JavaScript;SQL;TypeScript
+30392,HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+30393,C#;HTML/CSS;JavaScript
+30394,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;WebAssembly
+30395,C++;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+30396,C#;HTML/CSS;JavaScript;PHP;SQL
+30397,C++;HTML/CSS;Java;SQL
+30398,HTML/CSS;Java;JavaScript;Kotlin
+30399,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+30400,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;SQL
+30401,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+30402,Java
+30403,Bash/Shell/PowerShell;C;C++;Go;Java;PHP;Python;SQL
+30404,Assembly;C;C++;Java;Python
+30405,HTML/CSS;JavaScript;PHP;SQL
+30406,C#;Objective-C;SQL;Swift
+30407,Bash/Shell/PowerShell;C++;Python
+30408,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+30409,C#;Java;Python;Ruby
+30410,Go;JavaScript
+30411,C#;SQL;Other(s):
+30412,C#;HTML/CSS;Java;JavaScript;SQL
+30413,HTML/CSS;JavaScript;Python;Rust;WebAssembly
+30414,Bash/Shell/PowerShell;C;C++;HTML/CSS
+30415,HTML/CSS;JavaScript;Python;SQL;Other(s):
+30416,C;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL;Other(s):
+30417,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+30418,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+30419,Assembly;Bash/Shell/PowerShell;C;C++;Python
+30420,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+30421,HTML/CSS;Java;JavaScript;Kotlin
+30422,C#;Go;JavaScript;SQL
+30423,C;C++
+30424,Bash/Shell/PowerShell;Java
+30425,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+30426,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;Ruby
+30427,C;C++;C#;HTML/CSS;JavaScript
+30428,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30429,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30430,C;C++;C#;Python;R;SQL
+30431,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30432,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+30433,Bash/Shell/PowerShell;JavaScript;Ruby
+30435,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+30436,C#;HTML/CSS;JavaScript;SQL
+30437,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+30438,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30439,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+30440,Clojure;HTML/CSS
+30441,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+30442,Bash/Shell/PowerShell;HTML/CSS;PHP;Ruby;SQL
+30443,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+30444,Bash/Shell/PowerShell;Java;Python;SQL
+30445,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+30446,C;Java;JavaScript;PHP;SQL;Other(s):
+30447,C++;Python
+30448,C#;HTML/CSS;Other(s):
+30449,HTML/CSS;Java;JavaScript;SQL
+30450,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript;VBA
+30451,Python
+30452,C;C++;HTML/CSS;Java;JavaScript;SQL
+30453,C++;HTML/CSS;Python
+30454,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+30455,C;Java
+30456,C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+30457,C;C++;C#;Java
+30458,HTML/CSS;JavaScript
+30459,R;SQL
+30460,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+30461,HTML/CSS;JavaScript;Python;R;SQL
+30462,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+30463,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+30464,HTML/CSS;JavaScript
+30465,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30466,HTML/CSS;Python;TypeScript
+30467,Bash/Shell/PowerShell;Java;JavaScript;SQL
+30468,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+30469,C;C++;C#;HTML/CSS;Java;PHP
+30470,HTML/CSS;JavaScript;TypeScript
+30471,C#;HTML/CSS;TypeScript
+30472,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+30473,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;JavaScript;Python;Rust;TypeScript
+30474,Bash/Shell/PowerShell;C#;JavaScript;SQL
+30475,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;Python;SQL;VBA;Other(s):
+30476,C++;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+30477,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+30478,HTML/CSS;JavaScript;PHP;SQL
+30479,C++;C#;Python;R
+30480,HTML/CSS;JavaScript;PHP;VBA
+30481,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+30482,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+30483,HTML/CSS;JavaScript;SQL;TypeScript
+30484,Java;JavaScript;PHP;SQL
+30485,HTML/CSS;Java;SQL
+30486,Bash/Shell/PowerShell;Java;JavaScript;Python
+30487,C;C++;Objective-C;Other(s):
+30488,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30489,C#;HTML/CSS;Python;R;SQL
+30490,C++;Java;JavaScript;PHP
+30492,Python
+30493,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+30494,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+30495,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+30496,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+30497,C++;HTML/CSS;Python;R
+30498,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30499,HTML/CSS;Java;JavaScript;SQL
+30500,C#;HTML/CSS;JavaScript;PHP;SQL
+30501,HTML/CSS;Java;JavaScript;SQL
+30502,C++;Java;Kotlin;Python
+30503,JavaScript;Ruby;SQL
+30504,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+30505,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+30506,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;Swift
+30507,Java;SQL
+30508,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+30509,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;PHP;Python;VBA;Other(s):
+30510,C#;HTML/CSS;Objective-C
+30511,C#;JavaScript
+30512,C;C++;C#;HTML/CSS;Java;JavaScript
+30513,Dart;HTML/CSS;JavaScript;TypeScript
+30514,HTML/CSS;JavaScript;Python;R;SQL
+30515,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+30516,JavaScript
+30517,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+30518,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+30519,Bash/Shell/PowerShell;Go;Python
+30520,C#;HTML/CSS;JavaScript;TypeScript
+30521,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+30522,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30523,Java;JavaScript;Python
+30524,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+30525,Java;JavaScript;PHP;Ruby;SQL
+30526,C;C++;Dart;HTML/CSS;Java;Kotlin;PHP;Python
+30527,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+30528,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+30529,C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+30530,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+30531,PHP;Python
+30532,Bash/Shell/PowerShell;Java;Python
+30533,HTML/CSS;JavaScript;PHP
+30534,Go;JavaScript;Python;Scala;SQL
+30536,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+30537,Bash/Shell/PowerShell;C++;JavaScript;Python
+30538,C#;HTML/CSS;JavaScript;Python;R;SQL
+30539,Java;Scala;SQL
+30540,Bash/Shell/PowerShell;JavaScript;PHP;Ruby
+30541,C++;Go;Java
+30542,HTML/CSS;JavaScript;Ruby;TypeScript
+30543,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+30544,C#;Python;SQL
+30545,C++;JavaScript;Python
+30546,Python
+30547,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python;SQL
+30548,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+30549,C#;HTML/CSS;JavaScript;PHP;SQL
+30550,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;Python
+30551,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+30552,C#;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+30553,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+30554,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+30555,Dart;JavaScript;PHP
+30556,HTML/CSS;JavaScript;SQL;TypeScript
+30557,Assembly;Java;Python
+30558,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30559,HTML/CSS;Java;Other(s):
+30560,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;VBA
+30561,Bash/Shell/PowerShell;SQL
+30562,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+30563,HTML/CSS;JavaScript;PHP;Rust;TypeScript
+30564,HTML/CSS;PHP;Python
+30565,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+30566,HTML/CSS;JavaScript;SQL;TypeScript
+30567,PHP;R;SQL;Other(s):
+30568,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+30569,C++;HTML/CSS;Java;JavaScript;SQL
+30570,Bash/Shell/PowerShell;Go;Python;TypeScript
+30571,Bash/Shell/PowerShell;Java;JavaScript;Ruby
+30572,HTML/CSS;Java;SQL
+30573,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+30574,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+30575,C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R
+30576,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+30578,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+30579,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30580,C;HTML/CSS;Java;JavaScript;Python;SQL
+30581,HTML/CSS;JavaScript;Python;TypeScript
+30582,HTML/CSS;JavaScript
+30583,Java;JavaScript;Python;SQL;TypeScript
+30584,Assembly;Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL;Swift;TypeScript
+30585,Bash/Shell/PowerShell;C;HTML/CSS;SQL;Other(s):
+30586,C#;HTML/CSS;JavaScript;SQL;Swift
+30587,C#;HTML/CSS;JavaScript;SQL;Other(s):
+30588,JavaScript;Other(s):
+30589,C#;HTML/CSS;JavaScript;PHP;SQL
+30590,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Other(s):
+30591,HTML/CSS;JavaScript;PHP;SQL
+30592,C;Python;Other(s):
+30593,C++;HTML/CSS;JavaScript;PHP;TypeScript
+30594,C#;HTML/CSS;Java;JavaScript
+30595,HTML/CSS;Java;JavaScript;PHP;Python
+30596,Python
+30597,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+30598,C#;Java;JavaScript;SQL
+30599,HTML/CSS;Java;JavaScript;SQL
+30600,Bash/Shell/PowerShell;Python;SQL
+30601,Java;Kotlin;Swift
+30602,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+30603,HTML/CSS;JavaScript;PHP;SQL
+30604,Bash/Shell/PowerShell;C;Java;JavaScript
+30605,HTML/CSS;JavaScript
+30607,JavaScript
+30609,Python;R;SQL
+30610,HTML/CSS;JavaScript;PHP;SQL
+30611,Bash/Shell/PowerShell;C++;Python
+30612,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;WebAssembly
+30613,Bash/Shell/PowerShell;C;C++;Python
+30614,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+30615,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30616,JavaScript;Ruby;SQL
+30617,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;TypeScript
+30618,HTML/CSS;JavaScript;Python
+30619,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+30620,Java;JavaScript;Kotlin;Python
+30621,Java
+30622,Bash/Shell/PowerShell;Python;R;Scala;SQL
+30623,Bash/Shell/PowerShell;C;C++;Python;SQL
+30624,Python
+30625,Bash/Shell/PowerShell;Go;Python;SQL
+30626,C#
+30627,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+30628,JavaScript
+30629,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30630,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+30631,Java;Kotlin
+30632,Python;R;SQL;Other(s):
+30633,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+30634,C;C++;HTML/CSS;Java;JavaScript;Python
+30635,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Scala;SQL
+30636,HTML/CSS;JavaScript;PHP;SQL;VBA
+30637,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+30638,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+30639,C#;Python;Swift
+30640,C;C++;HTML/CSS;Java;PHP;Python;R;Scala;SQL
+30641,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+30642,C;HTML/CSS;Java;JavaScript;Python
+30643,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+30644,Assembly;C;C++;Java
+30645,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+30646,Bash/Shell/PowerShell;Objective-C;Ruby;Scala;SQL;Swift
+30647,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL
+30648,HTML/CSS;Java;Python
+30649,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+30650,HTML/CSS;JavaScript;Python
+30651,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30652,HTML/CSS;Java
+30653,Bash/Shell/PowerShell;C;C#;Clojure;HTML/CSS;Java;JavaScript;SQL;Other(s):
+30654,C++;HTML/CSS;Java
+30655,HTML/CSS;Java;JavaScript;Python;SQL
+30656,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+30657,Java;SQL
+30658,Bash/Shell/PowerShell;C++;Python
+30659,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30660,Java;Python
+30661,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+30662,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+30663,HTML/CSS;JavaScript;Python
+30664,C;C++;Java
+30665,C;HTML/CSS;Java;PHP;R
+30666,C#;HTML/CSS;JavaScript;SQL
+30667,Java;JavaScript
+30668,HTML/CSS;JavaScript;TypeScript
+30669,Bash/Shell/PowerShell;C;C++;Python
+30670,Bash/Shell/PowerShell;Go;JavaScript;Ruby;SQL
+30671,Go;Java;Python
+30672,HTML/CSS;JavaScript;PHP
+30673,Java;JavaScript;PHP;SQL
+30674,HTML/CSS;JavaScript
+30675,Bash/Shell/PowerShell;C++;HTML/CSS;Other(s):
+30676,Go;HTML/CSS;Python;Ruby
+30677,C++;HTML/CSS;Kotlin;Python;Rust;SQL;TypeScript
+30678,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+30679,Bash/Shell/PowerShell;Clojure;HTML/CSS
+30680,C;HTML/CSS;Java;PHP;Python;SQL
+30681,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+30682,C++;Java;Python
+30683,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift;TypeScript
+30684,HTML/CSS;JavaScript;SQL
+30685,Assembly;C
+30686,Java;Kotlin;Ruby
+30687,HTML/CSS;Java;Kotlin;TypeScript
+30688,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+30689,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+30690,C++;Kotlin;Objective-C;Swift
+30691,C#;HTML/CSS
+30692,Swift
+30693,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+30694,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;TypeScript
+30695,Elixir;Go;JavaScript;Python;SQL;TypeScript
+30696,C#;HTML/CSS;JavaScript;SQL
+30697,HTML/CSS;JavaScript;PHP;Ruby
+30698,Python;Rust;Other(s):
+30699,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+30700,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+30701,Bash/Shell/PowerShell;C;C#;Go;JavaScript;Kotlin;Python;Ruby;SQL
+30702,Clojure;SQL
+30703,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30704,HTML/CSS;JavaScript;PHP;SQL
+30705,C#;Python;SQL
+30706,HTML/CSS;JavaScript;PHP;SQL
+30707,Assembly;C;C#;HTML/CSS;PHP;Python;Rust;SQL
+30708,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+30709,C;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+30710,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+30711,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+30712,C#;Python
+30713,Bash/Shell/PowerShell;Python;Other(s):
+30714,Bash/Shell/PowerShell;C++;Java;Kotlin
+30715,C++;C#;HTML/CSS;JavaScript;SQL
+30716,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+30717,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+30718,HTML/CSS;Java;JavaScript
+30719,Java;JavaScript;Kotlin
+30720,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+30721,Python
+30722,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+30723,HTML/CSS;JavaScript;SQL;TypeScript
+30724,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+30725,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL;TypeScript
+30726,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;SQL
+30727,C;C++;C#;HTML/CSS;JavaScript;SQL
+30728,SQL;VBA
+30729,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+30730,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+30731,JavaScript;Python;TypeScript
+30732,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+30733,C#;HTML/CSS;JavaScript;SQL
+30734,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30735,Bash/Shell/PowerShell;C++;Java;Python;Ruby;Other(s):
+30736,C#;JavaScript;SQL
+30737,C#;HTML/CSS;Java;JavaScript;SQL
+30738,Bash/Shell/PowerShell;Python;SQL;Other(s):
+30739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30740,C;C++;HTML/CSS;Python;R
+30741,C++;C#;HTML/CSS;JavaScript;Python;SQL
+30742,HTML/CSS;Python;SQL
+30743,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30744,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Swift;VBA
+30745,C#;PHP;SQL;VBA
+30746,C;C++;PHP;Python
+30747,Python
+30748,C#;HTML/CSS;Other(s):
+30749,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+30750,C#;JavaScript;TypeScript
+30751,HTML/CSS;JavaScript;Python;SQL
+30752,Bash/Shell/PowerShell;Python;SQL
+30753,HTML/CSS
+30754,Bash/Shell/PowerShell;Python;Scala
+30755,C#;HTML/CSS;TypeScript
+30756,C#;HTML/CSS;Python
+30757,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+30758,C#;HTML/CSS;JavaScript;SQL
+30759,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+30760,HTML/CSS;Java;JavaScript;SQL
+30761,HTML/CSS;JavaScript;PHP;Ruby;SQL
+30762,C++;HTML/CSS;PHP;TypeScript
+30763,Java
+30764,HTML/CSS;Java;JavaScript;PHP;Python
+30765,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30766,Assembly;C++;Java;JavaScript;Swift
+30767,C;Java
+30768,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+30769,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+30770,HTML/CSS;JavaScript;Python;SQL
+30771,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30772,HTML/CSS;Java;JavaScript;Scala;SQL
+30773,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30774,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+30775,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+30776,PHP;Python;SQL;VBA
+30777,Python
+30778,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+30779,C;HTML/CSS;Java;JavaScript;PHP;Python
+30780,Bash/Shell/PowerShell;Go;Python
+30781,JavaScript;PHP;Python
+30782,Assembly;C++;HTML/CSS;Java;JavaScript;Python
+30783,Ruby
+30784,C#;HTML/CSS;JavaScript;SQL;TypeScript
+30785,HTML/CSS;JavaScript;Python
+30786,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+30787,Bash/Shell/PowerShell;C;C++
+30788,HTML/CSS;JavaScript;TypeScript
+30789,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+30790,C#;Java;Objective-C;Swift
+30791,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+30792,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;R;SQL;TypeScript;Other(s):
+30793,Bash/Shell/PowerShell;Clojure;Dart;HTML/CSS;JavaScript;Python;SQL;TypeScript
+30794,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+30795,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+30796,SQL;Other(s):
+30797,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30798,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL
+30799,Bash/Shell/PowerShell;JavaScript;Ruby;TypeScript
+30800,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+30801,C++;Java;JavaScript;PHP;SQL;TypeScript
+30802,HTML/CSS;JavaScript;TypeScript
+30803,Java;JavaScript;SQL;Other(s):
+30804,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30805,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30806,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+30807,Bash/Shell/PowerShell;Python;R;Ruby;SQL
+30808,HTML/CSS;JavaScript;PHP;SQL
+30809,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30810,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+30811,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+30812,HTML/CSS;JavaScript;TypeScript
+30813,HTML/CSS;JavaScript;PHP;SQL
+30814,Clojure;HTML/CSS;Java;JavaScript;SQL
+30815,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;Swift;TypeScript
+30816,HTML/CSS;JavaScript;PHP;TypeScript
+30817,Bash/Shell/PowerShell;Clojure;HTML/CSS;Python;Ruby
+30818,HTML/CSS;JavaScript;PHP;SQL
+30819,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+30820,HTML/CSS;Python;SQL
+30821,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+30822,Go;Scala
+30823,HTML/CSS;Java;JavaScript
+30824,HTML/CSS;JavaScript;PHP;SQL
+30825,Bash/Shell/PowerShell;C;HTML/CSS;Python
+30826,Assembly;HTML/CSS;JavaScript
+30827,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+30828,PHP;Scala
+30829,HTML/CSS;Java;JavaScript;PHP;SQL;VBA;WebAssembly
+30830,JavaScript;Python;R;SQL
+30831,Swift
+30832,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+30833,C#;HTML/CSS;SQL
+30834,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+30835,C++;F#;Python
+30836,C#;JavaScript;SQL;TypeScript
+30837,Assembly;C;C++
+30838,HTML/CSS
+30839,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;WebAssembly
+30840,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+30841,C++
+30842,Bash/Shell/PowerShell;HTML/CSS;Ruby
+30843,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30844,Bash/Shell/PowerShell;JavaScript
+30845,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+30846,HTML/CSS;JavaScript;PHP;Python;SQL
+30847,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+30848,Java;Kotlin;Swift
+30849,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30850,Go;Python;Rust;SQL
+30851,Bash/Shell/PowerShell;Clojure;F#;HTML/CSS;JavaScript;Rust;SQL;TypeScript;Other(s):
+30852,C;C++;Java;Kotlin
+30853,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+30854,C;C++;Java;Kotlin;Python;SQL
+30855,C++;R
+30857,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30858,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+30859,Swift
+30860,C++;C#;Python
+30861,C#;HTML/CSS;JavaScript;SQL
+30862,C;C++;C#;Objective-C;Python;R;SQL
+30863,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+30864,C;C++;HTML/CSS;Java;JavaScript;Python;WebAssembly
+30865,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+30866,Bash/Shell/PowerShell;C#;Other(s):
+30867,Assembly;C;C++;Python;Rust
+30868,C#;Python
+30869,C#;HTML/CSS;JavaScript;SQL
+30870,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+30871,Clojure;Java;JavaScript;Kotlin;Python;Rust;Scala
+30872,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+30873,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+30874,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+30875,HTML/CSS;JavaScript;Scala;TypeScript
+30876,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30877,Java;SQL;Swift
+30878,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+30879,HTML/CSS;JavaScript;Python
+30880,C#;Dart;F#;Go;HTML/CSS;JavaScript;SQL
+30881,Bash/Shell/PowerShell;Python;R;SQL
+30882,HTML/CSS;JavaScript;PHP;SQL;VBA
+30883,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+30884,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30885,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+30886,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL
+30887,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+30888,C#;Java;JavaScript;PHP;R;SQL
+30889,Java;JavaScript;Python
+30890,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+30891,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+30892,Python
+30893,C#;HTML/CSS;JavaScript;PHP;SQL
+30894,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+30895,C#;Java;Kotlin;Objective-C;Swift
+30896,Go;Java;Kotlin
+30897,Bash/Shell/PowerShell;Python
+30898,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+30899,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+30900,Assembly;C
+30901,Clojure;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+30902,C#;HTML/CSS;SQL
+30903,Bash/Shell/PowerShell;Python;SQL
+30904,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+30905,JavaScript;PHP;Python
+30906,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+30907,JavaScript
+30908,HTML/CSS;Java;JavaScript;PHP
+30909,C#;HTML/CSS;JavaScript;SQL
+30910,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+30911,C#;JavaScript
+30912,HTML/CSS;JavaScript;PHP
+30913,C++;C#;F#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+30914,HTML/CSS;JavaScript
+30915,C++;C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+30916,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+30917,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+30919,HTML/CSS;JavaScript;Rust;Scala
+30920,C++;HTML/CSS;JavaScript
+30921,C;Java;Scala;Other(s):
+30922,Go;JavaScript;PHP
+30923,Bash/Shell/PowerShell;Python;Ruby;Scala;SQL
+30924,Assembly;HTML/CSS;JavaScript;Python
+30925,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;TypeScript
+30926,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+30927,C;Go;Java;JavaScript;Kotlin;Python
+30928,C#;HTML/CSS;JavaScript;SQL
+30929,C#;Scala;SQL
+30930,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+30931,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+30932,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+30933,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+30934,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+30935,C++;C#;Objective-C;SQL
+30936,C#;Java;JavaScript;Objective-C;Scala;TypeScript
+30937,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+30938,Python;Rust;Other(s):
+30939,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+30940,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+30941,Java;Python;SQL
+30942,Bash/Shell/PowerShell;Ruby;Other(s):
+30943,HTML/CSS;JavaScript;Python;SQL
+30944,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+30945,Java;Kotlin
+30946,HTML/CSS;JavaScript;Kotlin;PHP
+30947,HTML/CSS;JavaScript
+30948,C++;HTML/CSS;JavaScript;Python;SQL
+30949,HTML/CSS;Java;JavaScript;TypeScript
+30950,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;Java;Kotlin;Python;Scala
+30951,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA;Other(s):
+30952,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+30953,C#;HTML/CSS;JavaScript;SQL;TypeScript
+30954,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+30955,Bash/Shell/PowerShell;Go;Python;SQL
+30956,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+30957,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+30958,HTML/CSS;JavaScript;PHP;Ruby;SQL
+30959,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;VBA
+30960,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+30961,Bash/Shell/PowerShell;JavaScript
+30962,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL
+30963,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+30964,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+30965,C;C#;HTML/CSS;Java;JavaScript;Python;Rust
+30966,Ruby
+30967,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+30968,Bash/Shell/PowerShell;Java;Scala;SQL
+30969,C#;HTML/CSS;JavaScript;Python
+30970,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+30971,HTML/CSS;Java;JavaScript;SQL
+30972,Java;SQL
+30973,Assembly;HTML/CSS;JavaScript;PHP;SQL
+30974,HTML/CSS;JavaScript;Python;SQL
+30975,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+30976,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL
+30977,C#;HTML/CSS;JavaScript
+30978,Java;Kotlin;PHP
+30979,Bash/Shell/PowerShell;Erlang
+30980,HTML/CSS;JavaScript
+30981,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;TypeScript;Other(s):
+30982,C;Java;JavaScript;PHP;Python;SQL
+30983,JavaScript;TypeScript
+30984,Bash/Shell/PowerShell;C#;Erlang;Java;Scala;SQL
+30985,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+30986,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+30987,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+30988,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+30989,Bash/Shell/PowerShell;Java;Python;SQL
+30990,Bash/Shell/PowerShell;C#;F#;Python;R;TypeScript
+30991,HTML/CSS;Java;JavaScript;TypeScript
+30992,HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+30993,Bash/Shell/PowerShell;Python;SQL;WebAssembly
+30994,HTML/CSS;JavaScript;Python;Other(s):
+30995,Bash/Shell/PowerShell;Clojure;Go;JavaScript;Python;R;Rust;WebAssembly;Other(s):
+30996,C#;HTML/CSS;TypeScript
+30997,C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+30998,C;C++;Java;Objective-C;Python;R;Scala;Swift
+30999,Python
+31000,Objective-C;Swift
+31001,Bash/Shell/PowerShell;C#;Python;R;SQL
+31002,HTML/CSS;JavaScript;PHP;SQL
+31003,Python
+31004,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+31005,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31006,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;WebAssembly
+31007,HTML/CSS;JavaScript;Python
+31008,C++;C#;Java;Kotlin;Objective-C;Ruby;SQL
+31009,HTML/CSS;Java;JavaScript;Python
+31010,C;C++;C#;Java;JavaScript;Kotlin;SQL
+31011,JavaScript;PHP
+31012,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+31013,JavaScript
+31014,C;C++
+31015,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Swift
+31016,Bash/Shell/PowerShell;Java;Python;R;Scala
+31017,C#;HTML/CSS;JavaScript;SQL
+31018,C++;HTML/CSS;Java;JavaScript
+31019,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL
+31020,HTML/CSS;JavaScript;PHP;SQL
+31021,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Elixir;HTML/CSS;Java;Python;SQL
+31022,Java;Kotlin;SQL
+31023,Python;R
+31024,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31025,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31026,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;PHP;Python;Scala;SQL;TypeScript
+31027,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+31028,C++;HTML/CSS;Java;JavaScript;SQL
+31029,Java;Python
+31030,C#;JavaScript
+31031,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;TypeScript
+31032,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31033,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+31034,C#;SQL
+31035,C#;HTML/CSS;JavaScript;Ruby;SQL
+31036,R;SQL;Other(s):
+31037,Clojure
+31039,Bash/Shell/PowerShell;C;C++;Python
+31040,Go;Python;R
+31041,HTML/CSS;JavaScript;Python
+31042,Objective-C;Python;Swift
+31043,C#;HTML/CSS;JavaScript
+31044,Python;VBA
+31045,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;VBA
+31046,C#;Java;Kotlin;Objective-C;Python;Scala;SQL;Swift
+31047,Bash/Shell/PowerShell;Python;R;SQL;VBA
+31048,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+31049,HTML/CSS;Java;JavaScript;Python;SQL
+31050,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+31051,Assembly;C;Java;SQL
+31052,Python;SQL
+31053,C#;Python
+31054,C#;HTML/CSS;JavaScript;SQL;Other(s):
+31055,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+31056,HTML/CSS;Java;JavaScript
+31057,C#
+31058,JavaScript
+31059,R;Scala;SQL;Other(s):
+31060,C;C++;HTML/CSS;Java;JavaScript;Python
+31061,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+31062,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+31063,C;C++;C#;HTML/CSS;Java;Python
+31064,HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+31065,Bash/Shell/PowerShell;Python;R;SQL;VBA
+31066,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+31067,Python;R;SQL;VBA
+31068,C#
+31069,Go;HTML/CSS;Java;JavaScript;Python;Rust
+31070,C#;HTML/CSS;Other(s):
+31071,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+31072,HTML/CSS
+31073,C++;HTML/CSS;Python
+31074,HTML/CSS
+31075,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+31076,C#;HTML/CSS;SQL;Other(s):
+31077,Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+31078,Assembly;C;C++;HTML/CSS;Java
+31079,C++;Python
+31080,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+31081,C#;HTML/CSS;TypeScript
+31082,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+31084,HTML/CSS;JavaScript;PHP;Python;SQL
+31085,C++;HTML/CSS;Java;JavaScript;TypeScript
+31086,C#;HTML/CSS;JavaScript;SQL
+31087,HTML/CSS;JavaScript
+31088,C;HTML/CSS;JavaScript;PHP
+31089,Java;PHP;Scala
+31090,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+31091,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+31092,Bash/Shell/PowerShell;JavaScript;Swift;TypeScript
+31093,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;VBA
+31094,HTML/CSS;JavaScript;PHP
+31095,C;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+31096,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;VBA
+31097,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+31098,Bash/Shell/PowerShell;Java;JavaScript;Python
+31099,C;C++;Java;JavaScript;Python;TypeScript
+31100,JavaScript;Python
+31101,HTML/CSS;JavaScript;Python;R;SQL
+31102,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+31103,C#;HTML/CSS;JavaScript;PHP;SQL
+31104,C#;Go;HTML/CSS;JavaScript;PHP;Python;Scala
+31105,HTML/CSS;JavaScript;PHP;SQL
+31106,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+31107,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+31108,C#
+31109,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+31110,C#;Go
+31111,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+31112,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+31113,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+31114,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+31115,C#;HTML/CSS;JavaScript;Python
+31116,C#;HTML/CSS;PHP;SQL
+31117,C;C++;HTML/CSS;Java;JavaScript;Python
+31118,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+31119,HTML/CSS;JavaScript;PHP
+31120,C#;HTML/CSS;Java;JavaScript;SQL
+31121,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+31122,HTML/CSS;Java;JavaScript;PHP;SQL
+31123,Swift
+31124,Bash/Shell/PowerShell;C;C++;Python;SQL
+31125,Bash/Shell/PowerShell;C;C++;Go
+31126,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+31127,SQL
+31128,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+31129,Bash/Shell/PowerShell;C;C++;Python;R
+31130,Go;HTML/CSS;Java;JavaScript;PHP
+31131,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+31132,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+31133,Elixir;HTML/CSS;Java;JavaScript;PHP;TypeScript
+31134,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+31135,HTML/CSS
+31136,Assembly;HTML/CSS;Java;JavaScript;SQL
+31137,Assembly;C;C++;Python;Rust
+31138,Bash/Shell/PowerShell;C#;SQL
+31139,Java;JavaScript;PHP
+31140,VBA
+31141,C;C++;C#;Java;Rust;Other(s):
+31142,HTML/CSS;JavaScript;PHP;SQL
+31144,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;Rust;Other(s):
+31145,HTML/CSS;JavaScript
+31146,C#;HTML/CSS;TypeScript
+31147,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+31148,HTML/CSS;JavaScript;TypeScript
+31149,HTML/CSS;Java;Python;SQL;VBA
+31150,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+31151,C#;HTML/CSS;Java;SQL;VBA
+31153,Bash/Shell/PowerShell;C;C++;Java
+31154,C#;Go;HTML/CSS;JavaScript;Rust;SQL
+31155,C;C++;HTML/CSS;JavaScript;SQL
+31156,R
+31157,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+31158,HTML/CSS;JavaScript
+31159,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;Scala;SQL
+31160,Python;Other(s):
+31161,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;Scala;SQL;TypeScript
+31163,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+31164,HTML/CSS;JavaScript;PHP;Python;SQL
+31165,C++;C#;HTML/CSS;PHP;Python;SQL
+31166,Bash/Shell/PowerShell;Java
+31167,HTML/CSS;JavaScript;Python
+31168,C;C++;HTML/CSS;Java;JavaScript
+31169,Bash/Shell/PowerShell;Swift
+31170,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+31171,C++;C#;Java;SQL;Swift
+31172,C;C++;Dart;Elixir;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+31173,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+31174,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala;SQL
+31175,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+31176,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+31177,Go;Python
+31178,C;HTML/CSS;Java;SQL
+31179,Bash/Shell/PowerShell;Objective-C;Swift
+31180,C#;HTML/CSS;JavaScript;SQL
+31181,C++;HTML/CSS;JavaScript
+31182,JavaScript;Ruby
+31183,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+31184,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;SQL
+31185,HTML/CSS;JavaScript;PHP;Python;SQL
+31186,C;HTML/CSS;JavaScript;SQL
+31187,Python
+31188,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+31190,Java
+31191,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+31192,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31193,C#;HTML/CSS;TypeScript
+31194,Bash/Shell/PowerShell;Go;Java;PHP;SQL
+31195,HTML/CSS;JavaScript;PHP
+31196,C#;HTML/CSS;Java;JavaScript;PHP
+31197,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+31198,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL
+31199,C#;Java;Python;Scala;SQL
+31200,C;C++;Java
+31201,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;Python
+31202,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+31203,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+31204,Bash/Shell/PowerShell;Other(s):
+31205,Bash/Shell/PowerShell;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+31206,C;C#;SQL
+31207,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+31208,JavaScript;PHP;TypeScript
+31210,C;Java;JavaScript;Python;SQL
+31211,Python
+31212,C++;Go;HTML/CSS;JavaScript;Python;SQL
+31213,C;C++;Other(s):
+31214,HTML/CSS;Java;JavaScript;SQL;TypeScript
+31215,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+31216,C#;HTML/CSS;JavaScript
+31217,HTML/CSS;JavaScript;Ruby
+31218,HTML/CSS;JavaScript;TypeScript
+31219,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;TypeScript;Other(s):
+31220,Dart;Elixir;Java;PHP;Python;Scala
+31221,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+31222,Bash/Shell/PowerShell;C;Python
+31223,Python;SQL
+31224,C#;HTML/CSS;JavaScript;Python;SQL
+31225,Bash/Shell/PowerShell;C#;JavaScript;SQL
+31226,HTML/CSS;JavaScript
+31227,C#;HTML/CSS;JavaScript;SQL
+31228,HTML/CSS;Java;Kotlin;SQL;TypeScript
+31229,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+31230,HTML/CSS;Java;JavaScript;Objective-C;SQL
+31231,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+31232,Python
+31233,Bash/Shell/PowerShell;C#;Go;JavaScript;SQL;TypeScript
+31234,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;TypeScript
+31235,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+31236,Go;JavaScript;PHP;Ruby
+31237,HTML/CSS;JavaScript;TypeScript
+31238,Elixir;Erlang
+31239,Go;Ruby;Scala;Other(s):
+31240,C#;PHP;Python
+31241,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+31242,C#;SQL
+31243,Python
+31244,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+31245,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+31246,Assembly;Bash/Shell/PowerShell;C;Java
+31247,C#;HTML/CSS;JavaScript;Python;SQL
+31248,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+31249,Bash/Shell/PowerShell;C;HTML/CSS;Python;Other(s):
+31250,Java;JavaScript;Kotlin
+31251,Assembly;Bash/Shell/PowerShell;C;C++;Python
+31252,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;SQL
+31253,Bash/Shell/PowerShell
+31254,C++;HTML/CSS;JavaScript;PHP;SQL
+31255,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript
+31256,Java
+31257,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+31258,C#;HTML/CSS;JavaScript;Python;SQL;Swift
+31259,Java;Kotlin
+31260,Assembly;C;Python
+31261,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+31263,C++;Java
+31264,Java;JavaScript;Objective-C;Swift;TypeScript
+31265,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31266,C++;C#;SQL
+31267,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+31268,Bash/Shell/PowerShell;Java;SQL
+31269,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+31270,C#
+31271,HTML/CSS;JavaScript;TypeScript
+31272,Java;Python
+31273,C#;HTML/CSS;JavaScript;SQL
+31274,HTML/CSS;Java;JavaScript;SQL
+31275,Python;R;Scala;SQL
+31276,SQL;Other(s):
+31277,C#;JavaScript;SQL
+31279,Other(s):
+31280,HTML/CSS;JavaScript;PHP;SQL
+31281,Bash/Shell/PowerShell;Java;Kotlin
+31282,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+31283,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31284,Objective-C;TypeScript
+31285,C;C++;C#;Dart;HTML/CSS;Java;Python;R;SQL
+31286,Python
+31287,C++;C#;Clojure;F#;Go;Python;Rust;SQL
+31289,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+31290,HTML/CSS;JavaScript;PHP
+31291,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+31292,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Swift;Other(s):
+31293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+31294,HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+31295,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+31296,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;R;SQL
+31297,Bash/Shell/PowerShell;SQL;Other(s):
+31298,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+31299,HTML/CSS;JavaScript;TypeScript
+31300,JavaScript
+31301,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+31302,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;TypeScript;Other(s):
+31303,HTML/CSS;JavaScript;PHP;SQL
+31304,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+31305,Java;SQL
+31306,C;C#;Java;PHP
+31307,C;HTML/CSS;Java;SQL
+31308,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;Other(s):
+31309,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+31310,C++;Python
+31311,C#;HTML/CSS;JavaScript;VBA
+31312,C#;HTML/CSS;Python;SQL
+31313,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R;SQL;Other(s):
+31314,Java;Python;SQL
+31315,C++;C#;HTML/CSS;Java;PHP;SQL
+31316,HTML/CSS;JavaScript;PHP
+31317,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+31318,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+31319,Python
+31320,Java;Kotlin
+31321,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+31322,HTML/CSS;JavaScript;TypeScript
+31323,R;SQL
+31324,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+31325,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+31326,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31327,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+31328,Bash/Shell/PowerShell;Python;SQL;VBA
+31329,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+31330,HTML/CSS;Java;JavaScript;SQL
+31331,Python
+31332,C#;Java;Python
+31333,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+31334,Bash/Shell/PowerShell;Java;SQL
+31335,C;C++
+31336,Python
+31337,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+31338,Bash/Shell/PowerShell;Go;JavaScript;Python;R;SQL;TypeScript;Other(s):
+31339,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL;VBA
+31340,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+31341,C#;HTML/CSS;JavaScript;SQL
+31342,HTML/CSS;JavaScript;Python;Ruby;Swift
+31343,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+31344,Bash/Shell/PowerShell;Ruby
+31345,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+31346,HTML/CSS;Java;JavaScript;Python;TypeScript
+31347,HTML/CSS;JavaScript;PHP
+31348,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;TypeScript
+31349,C#
+31350,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Rust;TypeScript;Other(s):
+31351,Assembly;C;C++;Python;SQL
+31352,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+31353,C#;HTML/CSS;JavaScript
+31354,HTML/CSS;JavaScript;PHP;SQL
+31355,C;C++;HTML/CSS;JavaScript;PHP
+31356,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Kotlin;Python;Other(s):
+31357,HTML/CSS;JavaScript;Python;Other(s):
+31358,C#
+31359,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL
+31360,C++;C#;Python
+31361,Ruby;Swift
+31362,HTML/CSS;JavaScript;Ruby
+31363,C++;Erlang;HTML/CSS;JavaScript;Python
+31364,Bash/Shell/PowerShell;C;C++;Python;R;SQL;VBA;Other(s):
+31365,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+31366,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+31367,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+31368,C#;SQL;VBA;Other(s):
+31369,Bash/Shell/PowerShell;JavaScript;Python;SQL;TypeScript
+31370,Java
+31371,Bash/Shell/PowerShell;JavaScript;Ruby;TypeScript
+31372,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+31373,Python
+31374,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+31375,HTML/CSS;Java;JavaScript;TypeScript
+31376,C++;C#;HTML/CSS;Java;JavaScript
+31377,Python
+31378,Bash/Shell/PowerShell;C#;JavaScript;SQL
+31379,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+31380,Dart;Java;JavaScript;SQL
+31381,C;HTML/CSS;Java;JavaScript;Python
+31382,Python
+31383,Clojure;Go;Other(s):
+31384,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+31385,HTML/CSS;JavaScript;PHP;SQL
+31386,Assembly;C;C++;HTML/CSS;Java;JavaScript
+31387,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+31388,Bash/Shell/PowerShell;C;C++
+31389,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+31390,JavaScript;PHP;Python;SQL
+31391,JavaScript;PHP
+31392,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+31393,Bash/Shell/PowerShell;Java;SQL
+31394,C++;C#;JavaScript
+31395,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+31396,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31397,Dart;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+31398,C#;JavaScript;Python
+31399,Bash/Shell/PowerShell;C#;Python;SQL
+31400,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31401,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+31402,Bash/Shell/PowerShell;Java;Python;SQL
+31403,C;C++;C#;Java
+31404,HTML/CSS;JavaScript;PHP
+31405,C#;Java;Swift
+31406,Bash/Shell/PowerShell;C;C++;Objective-C;Python
+31407,C++;HTML/CSS;JavaScript;Python;SQL
+31408,SQL;VBA
+31409,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+31410,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+31411,Java
+31412,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+31413,Bash/Shell/PowerShell;C;JavaScript;Python;R;SQL
+31414,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+31415,Java
+31416,C++;Go;Java;PHP;Python;Ruby;VBA
+31417,C++;JavaScript;SQL
+31418,HTML/CSS;JavaScript;TypeScript
+31419,Java;JavaScript;TypeScript
+31421,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+31422,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+31423,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+31424,Bash/Shell/PowerShell;Clojure;HTML/CSS
+31425,C;Java;Python;TypeScript
+31426,Bash/Shell/PowerShell;Java;PHP;SQL;VBA
+31427,HTML/CSS;Python;SQL
+31428,HTML/CSS;JavaScript;Python
+31429,Go;HTML/CSS;JavaScript;PHP;Python
+31430,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+31431,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+31432,C++;Python;R;SQL
+31433,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;SQL
+31434,C++;HTML/CSS;Java;Python
+31435,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31436,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+31437,Java;JavaScript;Kotlin;Python;Swift
+31438,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;VBA
+31439,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;R;Other(s):
+31440,SQL
+31441,C;Python;Rust;SQL;Other(s):
+31442,Java;Other(s):
+31443,C#;SQL
+31444,HTML/CSS;Java;JavaScript;SQL;Swift
+31445,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31446,HTML/CSS;Java;JavaScript;SQL
+31447,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+31448,Java;JavaScript;Python;Ruby;Scala;TypeScript
+31449,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+31450,HTML/CSS;JavaScript;SQL;Other(s):
+31451,C#;SQL
+31452,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+31453,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;R;Scala;SQL;VBA
+31454,Bash/Shell/PowerShell;PHP;SQL
+31455,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+31456,HTML/CSS;Java;JavaScript;TypeScript
+31458,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31459,HTML/CSS;Java;JavaScript;SQL
+31460,C++;C#;JavaScript;Python;TypeScript
+31461,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31462,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+31463,Bash/Shell/PowerShell;Python;Ruby;Rust;Other(s):
+31464,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+31465,Objective-C
+31466,Java;Kotlin;PHP
+31467,HTML/CSS;JavaScript;Python
+31468,C;C++;Go;Python
+31469,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31470,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+31471,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+31472,Java
+31473,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+31474,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+31475,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+31476,C#;JavaScript;TypeScript
+31477,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL
+31478,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+31479,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+31480,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+31481,HTML/CSS;JavaScript;Python
+31482,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+31483,C#;Elixir;HTML/CSS;JavaScript;Ruby
+31484,C;C#;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript;Other(s):
+31485,Java;Python;Other(s):
+31486,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+31487,Go;HTML/CSS;JavaScript;PHP;SQL
+31488,HTML/CSS;PHP
+31489,Java;SQL
+31490,Python;Scala;SQL
+31491,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+31492,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+31493,HTML/CSS;JavaScript;SQL;TypeScript;VBA
+31494,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31495,Java;Kotlin
+31496,Bash/Shell/PowerShell;Java;PHP
+31497,HTML/CSS;Java;JavaScript;SQL
+31498,VBA
+31499,Assembly;C++
+31500,Go;Java;Python
+31501,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+31502,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+31503,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31504,HTML/CSS;JavaScript;PHP;SQL
+31505,C#;HTML/CSS;JavaScript;SQL;Other(s):
+31506,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL
+31507,JavaScript;Ruby
+31508,C;C#;HTML/CSS;JavaScript;PHP
+31509,HTML/CSS;JavaScript;PHP;Python;SQL
+31510,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+31511,C;C++;C#;Java;JavaScript;PHP;SQL;TypeScript;VBA
+31512,C;C++;C#;SQL
+31513,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Scala;SQL;Other(s):
+31514,Assembly;Bash/Shell/PowerShell;C#;Java;PHP;SQL
+31515,Bash/Shell/PowerShell;C++;C#;HTML/CSS;SQL
+31516,C++;C#;Java;JavaScript;TypeScript
+31517,C;JavaScript;Python;SQL
+31518,HTML/CSS;Python;R;Scala;SQL
+31519,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+31520,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+31521,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+31522,JavaScript;Objective-C;Swift
+31523,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Swift;VBA
+31524,Python
+31525,HTML/CSS;JavaScript;PHP;Ruby;SQL
+31526,HTML/CSS;Python
+31527,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Python;R;SQL
+31528,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+31529,C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL
+31530,HTML/CSS;JavaScript;TypeScript
+31531,C#;HTML/CSS;SQL
+31532,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+31533,HTML/CSS;Java;JavaScript;Objective-C
+31534,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+31535,C;C++;C#;HTML/CSS;JavaScript;Other(s):
+31536,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+31537,Bash/Shell/PowerShell;Python;SQL
+31538,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+31539,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+31540,C#;SQL
+31541,C#;HTML/CSS;Python;SQL;VBA
+31542,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+31543,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+31544,Go;HTML/CSS;Java;SQL
+31545,C;SQL
+31546,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+31547,C#;SQL
+31548,C#;SQL;Other(s):
+31549,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+31550,Bash/Shell/PowerShell;SQL;Other(s):
+31551,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+31552,Bash/Shell/PowerShell;Python;R;SQL;VBA
+31553,Bash/Shell/PowerShell;HTML/CSS;Python
+31554,C#;JavaScript;SQL
+31555,Bash/Shell/PowerShell;Java;Python;Ruby
+31556,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31557,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+31558,Java;PHP;SQL;Swift
+31559,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift
+31560,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+31561,C;R;Other(s):
+31562,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31563,HTML/CSS;Java;SQL
+31564,R;VBA
+31565,C#;HTML/CSS;Java;JavaScript;SQL
+31566,Bash/Shell/PowerShell;JavaScript;TypeScript
+31567,C;HTML/CSS;Java;JavaScript;Python;SQL
+31568,Swift
+31569,HTML/CSS
+31570,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+31571,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31572,C++;C#;SQL
+31573,Bash/Shell/PowerShell;C;Go;JavaScript;Python;SQL;TypeScript
+31574,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+31575,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+31576,HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+31577,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+31578,Scala
+31579,Bash/Shell/PowerShell;JavaScript;Python;Ruby;Rust;TypeScript
+31580,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+31581,Bash/Shell/PowerShell;Java;JavaScript;Scala
+31582,Other(s):
+31583,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Swift;TypeScript
+31584,Objective-C;Swift
+31586,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+31587,HTML/CSS;Java;JavaScript;PHP;SQL
+31588,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+31589,Dart;Java;Python
+31590,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+31592,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+31593,Java
+31594,Java;JavaScript;Python
+31595,Objective-C;Python;Swift
+31596,C#;HTML/CSS;JavaScript;SQL
+31597,C#;Java;Objective-C;Swift
+31598,C#;PHP;Python;SQL
+31599,C#;Python;R;SQL;TypeScript
+31600,Go;Python
+31601,C#;SQL;TypeScript
+31602,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+31603,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+31604,JavaScript;PHP;SQL
+31605,Java;JavaScript;Python
+31606,HTML/CSS;JavaScript;PHP;Python;SQL
+31607,Bash/Shell/PowerShell;Java
+31608,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+31609,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+31610,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+31611,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+31612,Clojure;Java;Swift
+31613,C++;HTML/CSS;JavaScript
+31614,C++;C#;Java;JavaScript
+31616,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+31617,Other(s):
+31618,Bash/Shell/PowerShell;C++;Java;Python;Scala;SQL
+31619,Java;SQL
+31620,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;WebAssembly
+31621,Bash/Shell/PowerShell;Java;SQL;Swift
+31622,Go
+31623,C#;HTML/CSS;JavaScript;PHP;SQL
+31624,C;HTML/CSS;Other(s):
+31625,C++;C#;Python;SQL
+31626,C++;C#;HTML/CSS;Java;JavaScript;SQL
+31627,Python
+31628,HTML/CSS;JavaScript
+31629,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+31630,HTML/CSS;JavaScript;Ruby
+31631,Go;HTML/CSS;JavaScript;PHP;Python
+31632,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python;SQL
+31633,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+31634,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+31635,HTML/CSS;Java;JavaScript;SQL;TypeScript
+31636,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+31637,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+31638,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+31639,Go;SQL;Other(s):
+31640,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+31641,HTML/CSS;JavaScript;Python;Swift;TypeScript
+31642,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+31643,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript;WebAssembly
+31644,R;SQL
+31645,Java;Kotlin
+31646,Java;Python;SQL
+31647,C#;Java;JavaScript
+31649,Java
+31650,C#;Java;JavaScript;Kotlin;SQL;TypeScript
+31651,Bash/Shell/PowerShell;C++;C#;Elixir;Erlang;HTML/CSS;JavaScript;Kotlin;Ruby;SQL
+31652,JavaScript;Python
+31653,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31654,HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL
+31655,SQL
+31656,Bash/Shell/PowerShell;C;C++;C#;Python
+31657,C#;Java;JavaScript;SQL
+31658,Bash/Shell/PowerShell;C#;Java
+31659,Assembly;C;C++;Java;Objective-C;Python
+31660,C++;HTML/CSS;Python;R;SQL
+31661,Bash/Shell/PowerShell;C;C++;WebAssembly
+31662,C#;HTML/CSS;JavaScript;Python;SQL
+31663,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+31664,C;SQL;VBA
+31665,Objective-C;Swift
+31666,Assembly;C;C++;C#;F#;JavaScript;TypeScript
+31667,C++
+31668,Bash/Shell/PowerShell;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+31669,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+31670,C#;HTML/CSS;JavaScript;SQL
+31671,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;SQL
+31672,C#;Java;JavaScript;PHP;SQL;TypeScript
+31673,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+31674,HTML/CSS;JavaScript;PHP
+31675,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+31676,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31677,Scala
+31678,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+31679,HTML/CSS;JavaScript;Python;SQL
+31680,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+31681,Objective-C;Swift
+31682,HTML/CSS;JavaScript;PHP;SQL
+31683,HTML/CSS;Java;JavaScript;PHP;SQL
+31684,Go;JavaScript;PHP;SQL
+31685,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+31686,HTML/CSS;JavaScript;Python;SQL;Other(s):
+31687,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+31688,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+31689,C;C++;Python
+31690,Bash/Shell/PowerShell;C;C++;Java;SQL
+31691,C;JavaScript;PHP
+31692,HTML/CSS;Java;JavaScript;Kotlin
+31693,HTML/CSS;JavaScript;Python;R;SQL
+31694,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+31695,Bash/Shell/PowerShell;C++;Python
+31696,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Swift
+31697,Bash/Shell/PowerShell;C;Go;JavaScript;Python;R;Rust;VBA
+31698,HTML/CSS;JavaScript
+31700,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL
+31701,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript
+31702,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+31703,C#;HTML/CSS;SQL;TypeScript
+31704,Bash/Shell/PowerShell;Java;R;Ruby;SQL
+31705,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift;TypeScript
+31706,C;HTML/CSS;JavaScript;PHP;Python;SQL
+31707,Bash/Shell/PowerShell;C#
+31708,Bash/Shell/PowerShell;C++;HTML/CSS;Rust;WebAssembly
+31709,C#;Java;Python
+31710,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+31711,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+31712,HTML/CSS;JavaScript;Python;TypeScript
+31713,C#;Java;JavaScript;Kotlin;Swift;TypeScript
+31714,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+31715,HTML/CSS;Java;JavaScript;TypeScript
+31716,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+31717,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+31718,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31719,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+31720,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Rust;SQL;Swift
+31721,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+31722,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+31723,Bash/Shell/PowerShell;C++;Python
+31724,HTML/CSS;JavaScript;TypeScript
+31725,Assembly;Bash/Shell/PowerShell;C#;Java;SQL
+31726,Java;JavaScript;Ruby
+31727,C#;JavaScript;Ruby;SQL
+31728,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+31729,JavaScript;PHP
+31730,C;C++;HTML/CSS;Java;PHP;SQL
+31731,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Rust;SQL;TypeScript
+31732,HTML/CSS;JavaScript;PHP;SQL
+31733,Bash/Shell/PowerShell;JavaScript;Python;SQL
+31734,Go;HTML/CSS;PHP;TypeScript
+31735,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+31736,Go;HTML/CSS;JavaScript;SQL
+31737,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+31738,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+31739,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31740,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+31741,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+31742,HTML/CSS;JavaScript;PHP
+31743,C;C++;HTML/CSS
+31744,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Kotlin;SQL
+31745,Java;JavaScript;Kotlin;TypeScript
+31746,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python
+31747,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby
+31748,C#;SQL
+31749,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+31750,Bash/Shell/PowerShell;C;C++;Java;Python
+31751,C;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+31752,Bash/Shell/PowerShell;C;C++;Python
+31753,PHP
+31754,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;R;SQL
+31755,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+31756,HTML/CSS;Java;JavaScript
+31757,HTML/CSS;JavaScript;Scala;TypeScript
+31758,HTML/CSS;JavaScript;Python;SQL
+31759,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+31760,Go;JavaScript;Ruby
+31761,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+31762,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+31763,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31764,C;C++
+31765,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+31766,HTML/CSS;Java;JavaScript;SQL
+31767,C;JavaScript;Python
+31768,Assembly;Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+31769,JavaScript;PHP;SQL
+31770,Bash/Shell/PowerShell;Java
+31771,HTML/CSS;JavaScript;PHP;SQL;VBA
+31772,Bash/Shell/PowerShell;JavaScript
+31773,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31774,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+31775,Java;Kotlin
+31776,Bash/Shell/PowerShell;C#;SQL
+31777,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript;Other(s):
+31778,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+31780,Bash/Shell/PowerShell;Java;JavaScript;SQL
+31781,HTML/CSS;JavaScript
+31782,C;C++;Python;SQL
+31783,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+31784,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+31785,HTML/CSS;JavaScript
+31786,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+31787,HTML/CSS;JavaScript;PHP
+31788,Bash/Shell/PowerShell;C;JavaScript;Python;SQL;TypeScript
+31789,C#;HTML/CSS;Python;TypeScript
+31790,C#;Go;HTML/CSS;JavaScript;PHP;Swift
+31791,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+31792,Swift
+31793,C#;HTML/CSS;JavaScript;TypeScript
+31794,C#;HTML/CSS;JavaScript;SQL
+31795,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+31796,Assembly;C;Python
+31797,JavaScript;Python;SQL
+31798,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+31799,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+31800,C#;HTML/CSS;JavaScript;SQL
+31801,Bash/Shell/PowerShell;Go;SQL
+31802,C;C#;Java;JavaScript;Python
+31803,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+31804,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+31805,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+31806,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+31807,C;C++
+31808,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;TypeScript
+31809,Bash/Shell/PowerShell;C++
+31810,C;HTML/CSS;JavaScript;TypeScript
+31811,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+31812,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+31813,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+31814,Bash/Shell/PowerShell;C++;C#;Python
+31815,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+31816,Bash/Shell/PowerShell;Elixir;Python;Ruby;SQL
+31817,HTML/CSS;JavaScript;PHP;Ruby;SQL
+31818,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31819,C#;HTML/CSS;JavaScript;PHP;TypeScript
+31820,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+31821,HTML/CSS;Java;JavaScript;SQL
+31822,HTML/CSS;JavaScript
+31823,HTML/CSS;JavaScript;Python
+31824,HTML/CSS;Java;PHP;Ruby;SQL
+31825,C#;HTML/CSS;Java;JavaScript;SQL
+31826,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+31827,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+31828,Kotlin;Scala
+31829,C;C++;HTML/CSS;JavaScript;PHP;SQL
+31830,C++;HTML/CSS;Java
+31831,Python;R;SQL
+31832,C;HTML/CSS;JavaScript;Objective-C
+31833,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+31834,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+31835,Bash/Shell/PowerShell;Elixir;JavaScript;Ruby;SQL
+31836,Python;R;Other(s):
+31837,C#;HTML/CSS;Java;JavaScript;TypeScript
+31838,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+31839,Bash/Shell/PowerShell;C++;Python
+31840,C++;Java
+31841,HTML/CSS;Java;Other(s):
+31842,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+31843,C++;C#;HTML/CSS;JavaScript;SQL
+31844,Bash/Shell/PowerShell;JavaScript;TypeScript
+31845,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31846,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Rust;TypeScript
+31847,Bash/Shell/PowerShell;C++;Java;Objective-C
+31848,Go;Python;Scala
+31849,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+31850,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31851,Go;HTML/CSS;JavaScript;Python
+31852,Python;Other(s):
+31853,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+31854,C#;JavaScript;SQL
+31855,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+31856,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+31857,HTML/CSS;Java;JavaScript
+31859,HTML/CSS;JavaScript;SQL;TypeScript
+31860,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+31861,HTML/CSS;JavaScript;PHP;Python;SQL
+31862,C;C++
+31863,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31864,C;C++;C#
+31865,JavaScript;Python;TypeScript
+31866,JavaScript;Python;TypeScript
+31867,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;SQL
+31868,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;Other(s):
+31869,JavaScript;Python;TypeScript;VBA
+31870,HTML/CSS;Java;JavaScript;Other(s):
+31871,C;Java;SQL
+31872,C#;HTML/CSS;JavaScript;Kotlin;TypeScript
+31873,C#;JavaScript;SQL;Other(s):
+31874,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+31875,C#;HTML/CSS;Python;SQL;TypeScript
+31876,Python;SQL
+31877,C#;HTML/CSS;JavaScript;SQL
+31878,Bash/Shell/PowerShell;C++;Objective-C;Other(s):
+31879,Python;R;SQL;VBA
+31880,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+31881,Bash/Shell/PowerShell;JavaScript;Python;SQL
+31882,C#;JavaScript;SQL;TypeScript
+31883,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31884,Bash/Shell/PowerShell;Java;Python
+31885,C++;Objective-C;Swift
+31886,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+31887,Go;HTML/CSS;JavaScript;Python;SQL
+31888,HTML/CSS;JavaScript;PHP;SQL
+31889,C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+31890,C#;HTML/CSS;JavaScript;SQL
+31891,HTML/CSS;JavaScript;R;Other(s):
+31892,Kotlin
+31893,HTML/CSS;Java;JavaScript;TypeScript
+31894,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL
+31895,Ruby;TypeScript
+31896,Dart;Java;JavaScript;Kotlin;PHP
+31897,Bash/Shell/PowerShell;Java
+31898,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+31899,Bash/Shell/PowerShell;Go;Java;Python;Scala;SQL
+31900,Bash/Shell/PowerShell;SQL
+31901,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Swift
+31902,HTML/CSS;JavaScript;Python
+31903,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;Other(s):
+31904,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+31905,HTML/CSS;JavaScript;Python;SQL;Swift
+31906,Bash/Shell/PowerShell;Go;Python;SQL
+31907,C;C#;Java;SQL
+31908,Bash/Shell/PowerShell;C++;Java;Python;SQL;Other(s):
+31909,Bash/Shell/PowerShell;Python
+31910,C;C++;Go;HTML/CSS;Java;JavaScript;R;Scala;SQL
+31911,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python
+31913,Java;JavaScript;SQL
+31914,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+31915,JavaScript;Objective-C;Swift
+31916,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+31917,Java;SQL;Other(s):
+31918,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL;TypeScript;WebAssembly
+31919,Bash/Shell/PowerShell;C;C++;R
+31920,C++;C#;Java
+31921,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+31922,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+31923,C#;Elixir;Erlang;JavaScript
+31924,C;C++;HTML/CSS;Java;Python
+31925,HTML/CSS;JavaScript;TypeScript
+31926,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+31927,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+31928,Bash/Shell/PowerShell;C;C++;Python
+31929,Bash/Shell/PowerShell;C#;JavaScript;SQL
+31930,HTML/CSS;Java;JavaScript;Kotlin
+31931,C#;Java
+31932,Python;R;Other(s):
+31933,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+31934,Other(s):
+31935,Bash/Shell/PowerShell;Python
+31936,HTML/CSS;Java;JavaScript
+31937,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+31938,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+31939,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+31940,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+31941,Kotlin;Objective-C;Swift
+31942,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;R;SQL
+31943,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL
+31944,C++;C#;Python
+31945,Bash/Shell/PowerShell;Kotlin;Objective-C;PHP;Python;Ruby;Swift
+31946,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+31947,C++;HTML/CSS;Other(s):
+31948,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+31949,C#;HTML/CSS;JavaScript;SQL;TypeScript
+31950,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+31951,Objective-C;Swift
+31952,Bash/Shell/PowerShell;JavaScript;Ruby;Other(s):
+31953,C++;Python;SQL
+31954,HTML/CSS;JavaScript
+31956,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+31957,Bash/Shell/PowerShell;C;C++;Python
+31958,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+31959,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+31960,C;Java;Python;SQL
+31961,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+31962,Python;R;SQL
+31963,C#;HTML/CSS;SQL;Other(s):
+31964,Python;SQL
+31965,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+31966,Bash/Shell/PowerShell;C;C++;C#;SQL
+31967,R;SQL
+31968,C#;HTML/CSS;JavaScript
+31969,HTML/CSS;JavaScript;PHP;Python;SQL
+31970,Go;HTML/CSS;Java;JavaScript;Python
+31971,C#;Java;JavaScript;Kotlin;SQL
+31972,C#;JavaScript;SQL
+31973,C++;C#;HTML/CSS;Java;JavaScript;R;SQL
+31974,Bash/Shell/PowerShell;C;C++;Python;SQL
+31975,HTML/CSS;Python;VBA
+31976,Java;Kotlin;Objective-C;SQL;Swift
+31977,JavaScript;PHP;SQL
+31978,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+31979,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+31980,HTML/CSS;JavaScript
+31981,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+31982,C++;HTML/CSS;Java;PHP;Python;Swift
+31983,C#;HTML/CSS;JavaScript;Python
+31984,Java;JavaScript;Python
+31985,HTML/CSS;Java;JavaScript;SQL;TypeScript
+31986,Bash/Shell/PowerShell;C#;Python;SQL
+31987,HTML/CSS;JavaScript;Python;SQL
+31988,HTML/CSS;JavaScript;Objective-C;SQL;Swift
+31989,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;VBA
+31990,C#;HTML/CSS;JavaScript;SQL
+31991,HTML/CSS;Java;JavaScript;Kotlin;PHP
+31992,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;SQL;Swift;VBA;WebAssembly
+31993,HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL;TypeScript
+31994,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+31995,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+31996,Elixir;JavaScript
+31997,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL;VBA
+31998,HTML/CSS;Java;JavaScript;PHP;SQL
+31999,Bash/Shell/PowerShell;Go;Java;Scala;SQL
+32000,HTML/CSS;Java;JavaScript;PHP
+32001,SQL;VBA
+32002,C;Go;JavaScript;PHP
+32003,Bash/Shell/PowerShell;JavaScript;Ruby;TypeScript
+32004,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32005,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+32006,C++;HTML/CSS;JavaScript;Python;Other(s):
+32007,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32008,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+32009,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript
+32010,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+32011,Go;Kotlin;Objective-C;Swift
+32012,Bash/Shell/PowerShell;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+32013,Bash/Shell/PowerShell;C;C++
+32014,JavaScript;PHP;Ruby
+32015,C#;Kotlin;SQL
+32016,HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+32017,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+32018,HTML/CSS;Java;JavaScript;PHP;SQL
+32019,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+32021,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+32022,HTML/CSS;JavaScript;Python
+32023,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+32024,HTML/CSS;Java;JavaScript;Kotlin;Python
+32025,Assembly;C;Java;Objective-C;Swift
+32026,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+32027,Bash/Shell/PowerShell;C#;HTML/CSS
+32028,C#;SQL
+32029,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;R;SQL
+32030,Dart;Go;Python;Other(s):
+32031,Objective-C;Swift
+32032,Bash/Shell/PowerShell;C
+32033,C#
+32034,Java;Kotlin;Python
+32035,Objective-C;Swift
+32036,HTML/CSS;JavaScript;PHP
+32037,HTML/CSS;Java;JavaScript;SQL
+32038,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+32039,PHP;Scala;SQL
+32040,Java
+32042,Java
+32043,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+32044,HTML/CSS;Java;JavaScript;PHP;SQL
+32045,C#
+32046,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+32047,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;JavaScript;Python;Ruby;SQL
+32048,C#;HTML/CSS;JavaScript;Python;SQL
+32049,C#;HTML/CSS;JavaScript;Python;Ruby
+32050,Bash/Shell/PowerShell;C++;Python;Rust
+32051,C;C++;C#;HTML/CSS;Java;JavaScript
+32052,Bash/Shell/PowerShell;C;C++;Java;R;TypeScript;Other(s):
+32053,C++;Java
+32054,C#;HTML/CSS;JavaScript;PHP;Python;VBA
+32055,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+32056,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32057,C;C++;C#
+32058,Java;Python;SQL
+32059,HTML/CSS;JavaScript;TypeScript
+32060,Clojure;Java;JavaScript;Python;SQL
+32061,C#;Java;JavaScript;Python;Ruby;TypeScript
+32062,Assembly;C;C++;Java;Python;SQL
+32063,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+32064,HTML/CSS;JavaScript
+32065,C#;HTML/CSS;Java;JavaScript;PHP;Scala;TypeScript
+32066,C++;R;SQL
+32067,Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+32068,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript;Other(s):
+32069,C;C++;C#;Java;JavaScript;PHP;SQL
+32070,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+32071,Java;JavaScript;SQL;TypeScript
+32072,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+32073,Java;Python;R;SQL
+32074,Dart;HTML/CSS;Java;JavaScript;Kotlin;Python
+32075,Assembly;C;C++;Go;HTML/CSS;JavaScript;Kotlin;Swift;TypeScript
+32076,HTML/CSS;JavaScript;Python
+32077,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+32078,Bash/Shell/PowerShell;C++;Other(s):
+32079,Java;JavaScript;Kotlin
+32080,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+32081,Java
+32082,Bash/Shell/PowerShell;C#;Python;SQL
+32083,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+32084,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32085,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP
+32086,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+32087,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+32088,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+32089,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32090,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32091,C++;C#;HTML/CSS;Java;JavaScript;Python
+32092,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+32093,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32094,HTML/CSS;JavaScript;TypeScript
+32095,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+32096,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+32097,Bash/Shell/PowerShell;Java;Rust;Other(s):
+32098,HTML/CSS;JavaScript;PHP
+32099,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R
+32100,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+32101,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+32102,Bash/Shell/PowerShell;JavaScript;PHP;Python;Ruby;SQL
+32103,C++;Java;SQL
+32104,HTML/CSS;JavaScript;SQL;TypeScript
+32105,C#;Python
+32106,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+32107,C#;HTML/CSS;JavaScript;SQL;Other(s):
+32108,Bash/Shell/PowerShell;Python;Scala;SQL
+32110,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32111,HTML/CSS;JavaScript
+32112,HTML/CSS;JavaScript;Other(s):
+32113,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+32115,Bash/Shell/PowerShell;Java;Python;SQL
+32116,Bash/Shell/PowerShell;JavaScript;Python;SQL;Other(s):
+32117,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Scala;SQL;TypeScript
+32118,C#;HTML/CSS;JavaScript;SQL
+32119,HTML/CSS;JavaScript;Ruby
+32120,Java;Kotlin
+32121,C++;C#;F#;Java;Python
+32122,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+32123,HTML/CSS;JavaScript;PHP;Python;SQL
+32124,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+32125,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+32126,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+32127,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+32128,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32129,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+32130,Ruby
+32131,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+32132,HTML/CSS;Java;JavaScript;SQL
+32133,C#;HTML/CSS;JavaScript;PHP;SQL
+32134,C++;HTML/CSS;JavaScript;Python
+32135,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+32136,Bash/Shell/PowerShell;Clojure;Java;Python;R;SQL
+32137,C++;Java;Rust;SQL;TypeScript
+32138,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+32139,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+32140,C#;HTML/CSS;JavaScript;Python
+32141,Go;HTML/CSS;JavaScript;TypeScript
+32142,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+32143,Elixir;HTML/CSS;Java;JavaScript;Python;SQL
+32144,Erlang
+32145,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+32146,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32147,Bash/Shell/PowerShell;C;R;SQL;Other(s):
+32148,Java;SQL
+32149,C#;HTML/CSS;SQL;TypeScript
+32150,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala
+32151,C++;Elixir;HTML/CSS;JavaScript;TypeScript
+32152,C;C++;Go;Java;JavaScript;PHP;Python;SQL;TypeScript
+32153,C++;JavaScript;Objective-C;Swift
+32154,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+32155,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+32156,HTML/CSS;JavaScript;PHP;SQL
+32157,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+32158,C#;Ruby;SQL;TypeScript
+32159,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+32160,C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift;TypeScript
+32161,C++;Objective-C;SQL
+32162,Go;Java
+32163,HTML/CSS;JavaScript
+32164,HTML/CSS;Java
+32165,Kotlin;SQL;VBA
+32166,C++;C#;HTML/CSS;Java;JavaScript;SQL
+32167,HTML/CSS;Java;JavaScript
+32168,C#;JavaScript;SQL
+32169,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32170,Bash/Shell/PowerShell;Java;Kotlin;Python
+32171,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+32172,C#;SQL
+32173,C++;HTML/CSS;JavaScript;PHP
+32174,HTML/CSS;Java;JavaScript;SQL;TypeScript
+32175,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+32176,C#;HTML/CSS;SQL
+32177,HTML/CSS;JavaScript;PHP;SQL
+32178,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+32179,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+32180,C#;SQL
+32181,Bash/Shell/PowerShell;Go;Python;SQL
+32182,Java
+32183,HTML/CSS;Java;JavaScript;SQL
+32184,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+32185,Bash/Shell/PowerShell;Java
+32186,C;C++;HTML/CSS;JavaScript;PHP;SQL
+32187,C#;HTML/CSS;JavaScript;SQL
+32188,HTML/CSS;JavaScript
+32189,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+32190,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+32191,C++;C#;HTML/CSS;JavaScript;TypeScript
+32192,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Swift;TypeScript
+32193,C++;HTML/CSS;JavaScript;TypeScript
+32194,C;C++;C#;HTML/CSS;JavaScript;SQL
+32195,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Kotlin;Python;Rust;SQL;Other(s):
+32196,Bash/Shell/PowerShell;Python;SQL
+32197,C;C++;HTML/CSS;JavaScript;Python
+32198,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python
+32199,HTML/CSS;Objective-C;Python;Swift
+32200,Python
+32201,Python
+32202,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+32203,HTML/CSS;JavaScript;PHP;Ruby
+32204,Bash/Shell/PowerShell;C;C++;Go;Python;Rust;Swift;TypeScript
+32205,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32206,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+32207,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+32208,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+32209,C;C#;Rust;TypeScript;Other(s):
+32210,HTML/CSS;Java;PHP;SQL
+32211,HTML/CSS;Java;JavaScript;Python;Swift
+32212,Python;SQL;Other(s):
+32213,HTML/CSS;Java;JavaScript;Scala;SQL
+32214,Assembly;C++;C#;HTML/CSS;Java;Kotlin;PHP;Python;SQL;Other(s):
+32215,Clojure;F#;Java;Ruby
+32216,C#;HTML/CSS;JavaScript;PHP;SQL
+32217,Bash/Shell/PowerShell;C;Python
+32218,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+32219,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32220,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+32221,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python
+32222,Clojure;JavaScript
+32223,HTML/CSS;Java;JavaScript;SQL
+32224,Bash/Shell/PowerShell;Java;Python;SQL
+32225,HTML/CSS;JavaScript;PHP
+32226,C;C++;HTML/CSS;Java;Kotlin;Python
+32227,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;VBA
+32228,Bash/Shell/PowerShell;Java;JavaScript;PHP;Rust;SQL;TypeScript
+32229,C#;Java;SQL
+32230,Objective-C;Swift
+32231,Bash/Shell/PowerShell;C;C++;Java;Python
+32232,Java;Python;TypeScript
+32233,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;Rust
+32235,Bash/Shell/PowerShell;Java;Python;SQL
+32236,C#;HTML/CSS;JavaScript;SQL;Other(s):
+32237,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32238,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32239,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;WebAssembly
+32240,Java;JavaScript;Python
+32241,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+32242,HTML/CSS;JavaScript;PHP;R;VBA
+32243,HTML/CSS;PHP
+32244,JavaScript
+32245,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+32246,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA;Other(s):
+32247,Java;Python
+32248,HTML/CSS;JavaScript;SQL
+32249,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+32250,C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+32251,C++;C#;Python
+32252,HTML/CSS;Java;JavaScript;Python
+32253,HTML/CSS;JavaScript;Python;TypeScript
+32254,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+32255,C#;HTML/CSS;Java;JavaScript
+32256,C#
+32257,Bash/Shell/PowerShell;Ruby;Scala;SQL
+32258,HTML/CSS;Java;JavaScript;Python;SQL
+32259,HTML/CSS;JavaScript;Python;SQL;VBA
+32260,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;WebAssembly;Other(s):
+32261,Python;SQL
+32262,Java;SQL
+32263,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA;Other(s):
+32264,Java;Kotlin;Swift
+32265,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+32266,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+32267,C#;HTML/CSS;JavaScript;SQL
+32268,C;C++;C#;HTML/CSS;JavaScript
+32269,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+32270,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32271,HTML/CSS;Java;JavaScript;Python
+32272,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32273,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+32274,Bash/Shell/PowerShell;Java;JavaScript
+32275,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+32276,TypeScript
+32277,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+32278,C#;JavaScript;TypeScript
+32279,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+32280,C#;HTML/CSS;JavaScript;TypeScript
+32281,Python;Ruby;SQL
+32282,Java;JavaScript;Python;R;Ruby
+32283,C#;HTML/CSS
+32284,HTML/CSS;SQL
+32285,HTML/CSS;JavaScript;Python;SQL
+32286,HTML/CSS;Java;JavaScript;Python;TypeScript
+32287,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+32289,HTML/CSS;SQL
+32290,HTML/CSS;Java;JavaScript;PHP;SQL
+32291,Python
+32292,Python;SQL
+32293,Bash/Shell/PowerShell;Python;SQL
+32294,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+32295,Assembly;Bash/Shell/PowerShell;C;C++;Python
+32296,Assembly;Bash/Shell/PowerShell;Go;Python;SQL
+32297,C;C++;HTML/CSS;Java;JavaScript;PHP
+32298,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+32299,C++;C#;HTML/CSS;JavaScript
+32300,C++;Java;Kotlin
+32301,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+32302,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32303,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32304,C;C++;Other(s):
+32305,C#
+32306,C#;HTML/CSS;JavaScript;TypeScript
+32307,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+32308,Bash/Shell/PowerShell;C;C++;C#;Java;Rust;SQL
+32309,Bash/Shell/PowerShell;C;C++;Python
+32310,HTML/CSS;JavaScript
+32311,C++;Python
+32312,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+32313,Java;JavaScript;SQL
+32314,C#;SQL
+32315,HTML/CSS;Java;JavaScript;Scala;SQL
+32316,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32317,Java;JavaScript;PHP;Python;SQL
+32318,SQL;Other(s):
+32319,HTML/CSS;JavaScript;R;Ruby
+32320,C#;HTML/CSS;JavaScript;SQL
+32321,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+32322,Java
+32323,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32324,HTML/CSS;JavaScript;Ruby;SQL
+32325,HTML/CSS;Java;JavaScript;Python;Swift
+32326,C++;JavaScript
+32327,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+32328,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+32329,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+32330,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+32331,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+32332,Java;JavaScript;PHP;Python;SQL
+32333,C;C++;C#;HTML/CSS;Java;SQL
+32334,Bash/Shell/PowerShell;JavaScript;TypeScript
+32335,Python;Rust;Other(s):
+32336,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Ruby;SQL
+32337,Bash/Shell/PowerShell;HTML/CSS;Python;R;Other(s):
+32338,Assembly;Bash/Shell/PowerShell;C;C++;C#;PHP;Python;SQL
+32339,Bash/Shell/PowerShell;C#
+32340,C;C++;C#;HTML/CSS;Objective-C;PHP;SQL
+32341,Assembly;Bash/Shell/PowerShell;C;Python;SQL
+32342,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+32343,HTML/CSS;JavaScript;SQL;TypeScript
+32344,C++;HTML/CSS;Java;JavaScript;Python;SQL
+32345,Bash/Shell/PowerShell;Objective-C;Swift
+32346,JavaScript
+32347,Bash/Shell/PowerShell;C#;JavaScript
+32348,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+32349,Dart;Java;Kotlin
+32350,C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+32351,HTML/CSS;Java;JavaScript;SQL;TypeScript
+32352,Python
+32353,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+32354,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+32355,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32356,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+32357,HTML/CSS;PHP
+32358,HTML/CSS;Java;JavaScript;SQL
+32359,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+32360,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;TypeScript
+32361,JavaScript;Python
+32362,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+32363,C;C++;HTML/CSS;Java;JavaScript;SQL
+32364,C#;HTML/CSS;JavaScript;SQL
+32365,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+32366,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+32367,C#;JavaScript;SQL
+32368,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+32369,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Other(s):
+32370,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32371,HTML/CSS;JavaScript
+32372,C++;C#;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly;Other(s):
+32373,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+32375,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;VBA
+32376,Assembly;C;C++
+32377,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+32378,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+32379,C;C++
+32380,Clojure;JavaScript;Swift;TypeScript
+32381,Python;R
+32382,Dart;HTML/CSS;JavaScript;Python;SQL;TypeScript
+32383,Bash/Shell/PowerShell;Python;R;SQL;VBA;Other(s):
+32384,HTML/CSS;JavaScript;PHP;SQL
+32385,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;Scala;SQL
+32386,C#;Java;JavaScript;Kotlin;Ruby;Scala
+32387,C;HTML/CSS;Java;PHP;SQL
+32388,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+32389,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+32390,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+32391,HTML/CSS;Java
+32392,C
+32393,HTML/CSS;JavaScript;Python
+32394,HTML/CSS;JavaScript
+32395,C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+32396,C#;HTML/CSS;JavaScript;TypeScript
+32397,C++;HTML/CSS;Java;JavaScript
+32398,Bash/Shell/PowerShell;C;Go;Java;JavaScript;PHP;Python;SQL
+32399,SQL;VBA
+32400,C;C++;C#;VBA
+32401,Python;R
+32402,Java
+32403,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+32404,Bash/Shell/PowerShell;C;C++;Python
+32405,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+32406,HTML/CSS;Java;JavaScript
+32407,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+32408,HTML/CSS;JavaScript;Python;SQL;Swift
+32409,C;C++
+32410,C;C++;HTML/CSS;Java;JavaScript;SQL
+32411,C;C++;Python;Other(s):
+32412,JavaScript;Python;SQL
+32413,C++;HTML/CSS;JavaScript
+32414,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+32415,Bash/Shell/PowerShell;JavaScript;SQL
+32416,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+32417,C++;C#;HTML/CSS;JavaScript
+32418,Bash/Shell/PowerShell;JavaScript;Python;SQL
+32419,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+32420,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+32421,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+32422,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+32423,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+32424,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+32425,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+32426,JavaScript;Python
+32427,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32428,Assembly;Bash/Shell/PowerShell;C;C#;JavaScript;Python;SQL;Other(s):
+32429,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32430,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+32431,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+32432,C;C#;HTML/CSS;SQL
+32433,C;C#
+32434,HTML/CSS;PHP;SQL;Other(s):
+32435,C#;HTML/CSS;PHP;Python
+32436,Java;Kotlin;Python
+32437,Bash/Shell/PowerShell;JavaScript;SQL
+32438,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+32439,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32440,Java;Kotlin
+32441,HTML/CSS;JavaScript
+32442,C;Python
+32443,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+32444,HTML/CSS;PHP
+32445,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+32446,C#;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+32447,C#;HTML/CSS;TypeScript
+32448,HTML/CSS;Java;JavaScript;SQL
+32449,C#;HTML/CSS;JavaScript;SQL
+32450,Java;JavaScript;SQL
+32451,HTML/CSS;Java;JavaScript;Python;SQL
+32452,HTML/CSS;Java;JavaScript;SQL
+32453,Dart;HTML/CSS;JavaScript
+32454,C#;HTML/CSS
+32455,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+32456,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+32457,PHP
+32458,JavaScript
+32459,C;C++;HTML/CSS;Python
+32460,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+32461,C#;Objective-C;Swift
+32462,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+32463,Kotlin
+32464,Clojure;Go;HTML/CSS;JavaScript;Python;Rust;Scala;SQL
+32465,C;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL;Swift;TypeScript;Other(s):
+32466,HTML/CSS;JavaScript
+32467,C++;Java;Python;R;SQL
+32468,C++;Go;Python;Rust
+32469,C;C#;HTML/CSS;JavaScript
+32470,C#;HTML/CSS;JavaScript;Python;VBA
+32471,Java;SQL
+32472,HTML/CSS;Java;JavaScript;SQL;TypeScript
+32473,Python;R
+32474,Java;Scala;SQL
+32475,Bash/Shell/PowerShell;C++;Java
+32476,HTML/CSS;Java;JavaScript
+32477,Java;JavaScript;Other(s):
+32478,Java;JavaScript;Kotlin;Swift;TypeScript
+32479,HTML/CSS;JavaScript;PHP;Python;SQL
+32481,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Ruby;SQL
+32482,Clojure;HTML/CSS;JavaScript;Kotlin
+32483,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL
+32484,Dart;Java;Kotlin;Swift
+32485,Java
+32486,HTML/CSS;JavaScript;TypeScript
+32487,Go;Python;SQL
+32488,C++;HTML/CSS;Java;JavaScript;WebAssembly
+32489,C#;Go;JavaScript
+32490,Bash/Shell/PowerShell;HTML/CSS;Java
+32491,Bash/Shell/PowerShell;SQL
+32492,HTML/CSS;JavaScript;Python;SQL;TypeScript
+32493,Dart;HTML/CSS;Java;JavaScript;SQL
+32494,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;Swift
+32495,C;C++;Java
+32496,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+32497,Assembly;Go;HTML/CSS;JavaScript;PHP;TypeScript
+32498,C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+32499,HTML/CSS;Java;JavaScript;SQL
+32500,Assembly
+32501,C;C++;HTML/CSS;JavaScript;Python
+32502,C;C++;C#;Python;SQL;VBA
+32503,HTML/CSS;JavaScript;PHP;Python;TypeScript
+32504,C;C++;Python;Other(s):
+32505,Python;Scala;SQL
+32506,C#;HTML/CSS;JavaScript;Python
+32507,HTML/CSS;JavaScript;PHP;SQL
+32508,C;C++;HTML/CSS;Python;SQL
+32509,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+32510,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+32511,JavaScript;SQL;TypeScript;Other(s):
+32512,C++;C#;SQL
+32513,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+32514,C#;SQL
+32515,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+32516,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+32517,C++;Java;Python;SQL
+32518,HTML/CSS;JavaScript
+32519,Python
+32520,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Python;Ruby
+32521,C#;HTML/CSS;SQL
+32522,C;C++;C#;HTML/CSS;JavaScript;Objective-C;Swift
+32523,HTML/CSS;JavaScript;Python
+32524,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+32525,C;HTML/CSS;Java;PHP;SQL;Other(s):
+32526,Java;Python;Scala;SQL
+32527,Assembly;HTML/CSS;JavaScript
+32528,C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+32529,C;C++;HTML/CSS;Java;Other(s):
+32530,Java
+32531,HTML/CSS;Java;JavaScript;PHP;TypeScript
+32532,Objective-C;Swift
+32533,C;Java
+32534,HTML/CSS;JavaScript;Python
+32535,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript
+32536,C++;Java;JavaScript;Python;SQL
+32537,C#;Java;Python
+32538,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+32539,Bash/Shell/PowerShell;C;Java;Python;Scala;SQL
+32540,C#;F#;HTML/CSS;JavaScript;TypeScript
+32541,Java;JavaScript;Python;SQL
+32542,HTML/CSS;Java;JavaScript;PHP;SQL
+32543,C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+32544,C#;Java;Kotlin;Swift
+32545,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+32546,Java;JavaScript;SQL
+32547,Bash/Shell/PowerShell;C;C++;Python
+32548,Assembly;Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python
+32549,HTML/CSS;JavaScript;PHP
+32550,JavaScript;SQL
+32551,JavaScript;SQL
+32552,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+32553,C++;Python
+32554,Bash/Shell/PowerShell;Go;JavaScript
+32555,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Other(s):
+32556,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+32557,Bash/Shell/PowerShell;C#
+32558,Bash/Shell/PowerShell;Other(s):
+32559,C#;HTML/CSS;JavaScript;SQL;VBA
+32560,C;HTML/CSS;Java;JavaScript;PHP;Python
+32561,Python;R;SQL
+32562,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+32564,C#;SQL
+32565,HTML/CSS;Java;Kotlin;Python;Ruby;SQL
+32566,JavaScript;PHP;SQL
+32567,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32568,C#;JavaScript
+32569,JavaScript
+32570,C#;F#;HTML/CSS;JavaScript
+32571,HTML/CSS;JavaScript
+32572,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+32573,C;HTML/CSS;Java;Kotlin;PHP;TypeScript
+32575,C++;C#
+32576,Bash/Shell/PowerShell;C;C++;JavaScript
+32577,C;Objective-C;Swift;TypeScript
+32578,Assembly;C;C++;HTML/CSS;PHP;SQL
+32579,Bash/Shell/PowerShell;Python
+32580,Bash/Shell/PowerShell;C;C++;C#;Go;Python
+32581,C#;HTML/CSS;JavaScript;SQL
+32582,C#
+32583,HTML/CSS;Java;JavaScript;SQL
+32584,C;JavaScript;Python;SQL;Other(s):
+32585,HTML/CSS;JavaScript;PHP
+32586,Assembly;C;C++;C#;HTML/CSS;Java;PHP;Python;Ruby;SQL
+32587,C#;HTML/CSS;JavaScript;PHP
+32588,C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby
+32589,Bash/Shell/PowerShell;C#;JavaScript
+32590,C++;C#;HTML/CSS;JavaScript
+32591,C++;HTML/CSS;JavaScript;PHP;Python
+32592,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+32593,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+32594,Java;JavaScript;PHP;SQL
+32595,HTML/CSS;Java;JavaScript;SQL
+32596,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+32597,HTML/CSS;JavaScript
+32598,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+32599,C#;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+32600,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32601,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL
+32602,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+32604,C#;HTML/CSS;Java;JavaScript;TypeScript
+32605,Clojure;HTML/CSS;SQL
+32606,Bash/Shell/PowerShell;C;C++;Other(s):
+32607,HTML/CSS;JavaScript;PHP;Python;R;SQL
+32608,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+32609,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+32610,C++;Java
+32611,Java
+32612,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;TypeScript
+32613,C#;SQL
+32614,Bash/Shell/PowerShell;Java;JavaScript;Python
+32615,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+32616,Python
+32617,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+32619,C#;HTML/CSS;Java;JavaScript;Ruby;Swift
+32620,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+32621,HTML/CSS;Java;JavaScript;PHP;SQL
+32622,C++;HTML/CSS;Java;JavaScript;Swift
+32623,HTML/CSS;JavaScript;PHP
+32624,C;C++;SQL;VBA;Other(s):
+32625,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32626,HTML/CSS;Java;JavaScript;SQL
+32627,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+32628,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+32629,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32630,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript
+32631,C#;HTML/CSS;Java;JavaScript;TypeScript
+32632,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+32633,Bash/Shell/PowerShell;Python;SQL
+32634,Bash/Shell/PowerShell
+32635,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+32636,Java;JavaScript;SQL
+32637,C#;JavaScript;Python
+32638,C;Python;SQL
+32639,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+32640,HTML/CSS;Java;JavaScript;Python;TypeScript
+32641,C++;HTML/CSS;JavaScript;Python;Swift
+32642,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32643,C++;Java;Rust
+32644,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+32645,HTML/CSS;JavaScript
+32646,Assembly;C;C++;HTML/CSS;Java;PHP;Python;R;SQL
+32647,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+32648,HTML/CSS;JavaScript;Python;SQL;TypeScript
+32649,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+32650,Bash/Shell/PowerShell;Erlang;Go;Java;JavaScript;SQL;Other(s):
+32651,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;Scala
+32652,JavaScript;Python
+32653,C++;HTML/CSS;Java;JavaScript
+32654,JavaScript;SQL;TypeScript
+32656,JavaScript;Python;SQL
+32657,HTML/CSS;JavaScript;Other(s):
+32658,Bash/Shell/PowerShell;Java;JavaScript;Python;R;TypeScript
+32659,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+32660,Bash/Shell/PowerShell;C;C++;Java
+32661,C#;HTML/CSS;JavaScript
+32662,Bash/Shell/PowerShell;C++;Python;SQL
+32663,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32664,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL;Other(s):
+32665,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+32666,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Ruby;SQL;Other(s):
+32667,Bash/Shell/PowerShell;Other(s):
+32668,JavaScript
+32669,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;Other(s):
+32670,C#;Java;Python;SQL
+32671,Bash/Shell/PowerShell;Python;VBA
+32672,Python
+32674,Python
+32675,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+32676,R
+32678,Java
+32679,HTML/CSS;JavaScript;PHP;TypeScript
+32680,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+32681,HTML/CSS;JavaScript;Python;R;SQL;VBA
+32682,Bash/Shell/PowerShell;C#;Java;Scala
+32683,C++
+32684,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+32685,Assembly;C;C++;HTML/CSS;JavaScript
+32686,Assembly;C;C#;Go;HTML/CSS
+32687,Bash/Shell/PowerShell;Python;SQL
+32688,C#;HTML/CSS;JavaScript;SQL;VBA
+32689,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;VBA
+32690,Bash/Shell/PowerShell;JavaScript;SQL
+32691,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;WebAssembly
+32692,C;C++;Java;Python
+32693,Assembly;C#
+32694,C++;Java;Objective-C;Python;Swift
+32695,Bash/Shell/PowerShell;Dart;Python;SQL
+32696,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32697,C#;HTML/CSS;JavaScript
+32698,HTML/CSS;JavaScript
+32699,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Other(s):
+32700,Go;HTML/CSS;JavaScript;Ruby;SQL
+32701,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32702,C#;HTML/CSS;JavaScript;SQL
+32703,C#;HTML/CSS;SQL;TypeScript
+32704,HTML/CSS;Java;JavaScript
+32705,HTML/CSS;JavaScript;SQL;Other(s):
+32706,HTML/CSS;JavaScript;PHP
+32707,C#;HTML/CSS;JavaScript;Kotlin;SQL
+32708,Java;Kotlin;SQL
+32709,JavaScript;Python
+32710,HTML/CSS;JavaScript;PHP
+32711,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+32712,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32713,HTML/CSS;JavaScript;TypeScript
+32714,HTML/CSS;Java;JavaScript;PHP
+32716,HTML/CSS;JavaScript
+32717,JavaScript;Kotlin;PHP;Python;SQL
+32718,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+32719,Bash/Shell/PowerShell;Java;SQL;Swift
+32720,C
+32721,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+32722,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin
+32723,C#;Java;JavaScript;SQL
+32724,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+32725,SQL;VBA
+32726,C++;Elixir;Java;Kotlin;Python;Ruby
+32727,HTML/CSS;JavaScript
+32728,C++;HTML/CSS
+32729,HTML/CSS;JavaScript;TypeScript
+32730,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32731,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32732,HTML/CSS;Java;JavaScript;PHP;SQL
+32733,Go;Java;JavaScript;Scala;TypeScript;WebAssembly
+32734,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+32735,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+32736,HTML/CSS;JavaScript;PHP;SQL
+32737,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+32738,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+32739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+32740,C#;Elixir;Go;JavaScript;TypeScript
+32741,C++;Python
+32742,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+32743,Bash/Shell/PowerShell;PHP;Python;SQL
+32744,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust
+32745,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+32746,C#;HTML/CSS;JavaScript;SQL;VBA
+32747,Bash/Shell/PowerShell;JavaScript;Ruby
+32748,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+32749,Bash/Shell/PowerShell;JavaScript;PHP
+32750,C;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript;WebAssembly
+32751,C;HTML/CSS;JavaScript;PHP
+32752,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+32753,C;C++;Java;Swift
+32754,C++;Java;R;SQL;VBA
+32755,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+32756,Java;Kotlin
+32757,C;C++;Java;SQL;Other(s):
+32758,Bash/Shell/PowerShell;JavaScript;Python;SQL
+32759,Clojure;Java;Scala
+32761,C#
+32762,JavaScript;Rust
+32763,Java;JavaScript;SQL
+32764,C++;HTML/CSS;Python;R;Ruby;VBA
+32765,C#;Java;JavaScript;SQL
+32766,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32767,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+32768,HTML/CSS;JavaScript;Ruby
+32769,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+32770,HTML/CSS;JavaScript;PHP
+32771,Bash/Shell/PowerShell;C#;WebAssembly
+32772,Bash/Shell/PowerShell;C;Java
+32773,Objective-C;Swift
+32774,Go;HTML/CSS;JavaScript;Ruby;SQL
+32775,Bash/Shell/PowerShell;Python;SQL
+32776,C++;Swift
+32777,Bash/Shell/PowerShell;Python
+32778,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;R;SQL
+32779,Bash/Shell/PowerShell;JavaScript;Python;R;SQL;Swift
+32780,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+32781,C#;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+32782,Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL;TypeScript
+32783,Java;Kotlin;SQL
+32784,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+32785,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+32786,Bash/Shell/PowerShell;Java;Python;R
+32787,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+32788,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+32789,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+32790,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+32791,Python;R;SQL
+32792,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL;TypeScript
+32793,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32794,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+32795,HTML/CSS;JavaScript;PHP
+32796,C;C++;HTML/CSS;Java;JavaScript;Kotlin
+32797,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32798,C#;Java;JavaScript;PHP;Python;SQL
+32799,C#;JavaScript;SQL;TypeScript
+32800,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+32801,C#;SQL;VBA;Other(s):
+32802,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+32803,Java;JavaScript;Kotlin;SQL
+32804,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+32805,C#;HTML/CSS;JavaScript;SQL
+32806,Assembly;C;C++;Python
+32807,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32808,HTML/CSS;Java;JavaScript;SQL
+32809,C;C++;Java;SQL
+32810,PHP
+32811,C#;Java;SQL
+32812,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+32813,C;C++;Java;Kotlin
+32814,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+32815,HTML/CSS;JavaScript;Ruby
+32816,HTML/CSS;Java;JavaScript
+32817,HTML/CSS;JavaScript;Python
+32818,C#;HTML/CSS;JavaScript;TypeScript
+32819,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;SQL
+32820,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+32821,JavaScript;Python;Ruby;SQL
+32822,Bash/Shell/PowerShell;C++;Java;Scala;SQL
+32823,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+32824,C#
+32825,Assembly
+32827,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Scala;SQL;Other(s):
+32828,Bash/Shell/PowerShell;C#;Java;TypeScript
+32829,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+32830,C#;Java
+32831,Bash/Shell/PowerShell;C#;Python
+32832,C#;HTML/CSS;Java;Kotlin;SQL
+32833,JavaScript
+32834,Go;Java;JavaScript;Python
+32835,Bash/Shell/PowerShell;Java;JavaScript;SQL
+32836,HTML/CSS;Java;JavaScript;Swift
+32837,HTML/CSS;Java;Kotlin
+32838,C#;HTML/CSS
+32839,Bash/Shell/PowerShell;C++;C#;Python
+32840,Bash/Shell/PowerShell;C++;HTML/CSS;Java;SQL
+32841,HTML/CSS;JavaScript;PHP;Other(s):
+32842,Java
+32843,C#
+32844,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+32845,C#;JavaScript;SQL;TypeScript
+32846,Bash/Shell/PowerShell;Python;R
+32847,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+32848,Bash/Shell/PowerShell;C#;Elixir;Java;Kotlin;Python;Ruby;Scala;SQL
+32849,C#;Python;SQL
+32850,C#;Go;SQL
+32851,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+32852,C#;HTML/CSS;Java;JavaScript;TypeScript
+32853,C#;Clojure;Go;Java;Python;Ruby;Scala
+32854,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+32855,C#;Dart;HTML/CSS;JavaScript;Python;TypeScript
+32856,C++;C#;HTML/CSS;Python
+32857,WebAssembly
+32858,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+32859,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+32860,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+32861,JavaScript;Python
+32862,HTML/CSS;Java;JavaScript;TypeScript
+32863,Bash/Shell/PowerShell;C;JavaScript;Objective-C;Swift
+32864,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+32865,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+32866,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32867,Java
+32868,Assembly;C;C++;C#;Objective-C;PHP;SQL;Swift
+32869,C;C++
+32870,C;C++;HTML/CSS;Java;JavaScript;Python
+32871,Clojure;HTML/CSS;Java;JavaScript;Scala;SQL
+32872,HTML/CSS;Ruby
+32873,Bash/Shell/PowerShell;C++;Go;Python;Ruby
+32874,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32875,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+32876,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+32877,Go;HTML/CSS;JavaScript;Python
+32878,JavaScript;TypeScript
+32879,C#;Dart
+32880,Go;HTML/CSS;Java;Python;TypeScript
+32881,Assembly;C;C++;Python
+32882,C++;C#;Dart;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+32883,C#;HTML/CSS;JavaScript;SQL
+32884,HTML/CSS;Java;JavaScript;Python
+32885,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+32886,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+32887,C#;HTML/CSS;JavaScript;SQL
+32888,Dart;HTML/CSS;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+32889,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+32890,HTML/CSS;Java;JavaScript;SQL
+32891,R
+32892,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+32893,Python
+32894,HTML/CSS;JavaScript;Python;SQL;Swift
+32895,Swift;Other(s):
+32896,Java;PHP
+32897,HTML/CSS;JavaScript;PHP
+32898,HTML/CSS;JavaScript;PHP;SQL
+32899,Java;PHP;SQL;Other(s):
+32900,Java;JavaScript;SQL;TypeScript
+32901,Python
+32902,Bash/Shell/PowerShell;Dart;Elixir;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust
+32903,C#
+32904,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+32905,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+32906,Java;Python;SQL;TypeScript
+32907,Python
+32908,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+32909,Bash/Shell/PowerShell;C;JavaScript;PHP;SQL;Other(s):
+32910,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+32911,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+32912,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;Ruby;TypeScript
+32913,Assembly;Bash/Shell/PowerShell;C;C++;Python
+32914,Bash/Shell/PowerShell;Ruby;SQL;Other(s):
+32915,C#;Java;JavaScript;Python;Ruby
+32916,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+32917,HTML/CSS;JavaScript;Python
+32918,Bash/Shell/PowerShell;Java;Python;SQL
+32919,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+32920,Dart;TypeScript
+32921,C++;C#;HTML/CSS;JavaScript
+32922,C++;C#;JavaScript;SQL;TypeScript
+32923,C#;Python
+32924,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;TypeScript
+32925,C++;C#;Go;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+32926,C#;HTML/CSS;JavaScript;SQL
+32927,C;C#;Go;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+32928,Dart;Java;Kotlin;Objective-C;Swift
+32929,C++;Python
+32930,Bash/Shell/PowerShell;Python;SQL
+32931,Bash/Shell/PowerShell;C#;HTML/CSS;Other(s):
+32932,JavaScript
+32933,HTML/CSS;JavaScript;TypeScript
+32934,HTML/CSS;JavaScript;PHP
+32935,Bash/Shell/PowerShell;C++;F#;Python;R;Rust
+32936,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+32937,C++;Objective-C
+32938,HTML/CSS;Java;Python;SQL
+32939,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;Ruby;SQL
+32940,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+32942,HTML/CSS;JavaScript;PHP;SQL
+32943,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Rust;TypeScript
+32944,C;HTML/CSS;Java;JavaScript;Python;Rust
+32945,Assembly;C;HTML/CSS;SQL
+32946,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;VBA
+32947,C
+32948,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+32949,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+32950,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+32951,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;R;Ruby;SQL;TypeScript
+32952,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+32953,C#;JavaScript;SQL;TypeScript
+32954,C++;HTML/CSS;Java;JavaScript;Python;SQL
+32955,HTML/CSS;JavaScript;PHP;SQL
+32956,C#;HTML/CSS;SQL
+32957,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+32958,C;C++;Python;R
+32959,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Objective-C;Python;Swift
+32960,HTML/CSS;Java;JavaScript;Kotlin;PHP;Swift
+32961,TypeScript
+32962,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python
+32963,C#;HTML/CSS;SQL;TypeScript
+32964,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+32965,C#;HTML/CSS;JavaScript;SQL;Other(s):
+32966,C;Java;JavaScript
+32967,Java
+32968,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+32969,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Rust;SQL;Swift
+32970,C;C++;HTML/CSS;Python
+32971,Assembly
+32972,HTML/CSS;JavaScript
+32973,Bash/Shell/PowerShell;Java;JavaScript
+32974,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+32976,HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript;Other(s):
+32977,R
+32978,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+32979,C#;HTML/CSS;JavaScript;SQL;TypeScript
+32980,C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+32981,Assembly;Bash/Shell/PowerShell;C;C++;Python
+32982,HTML/CSS;JavaScript;PHP;SQL
+32983,C
+32984,HTML/CSS;JavaScript
+32985,HTML/CSS;JavaScript;PHP
+32986,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL;Other(s):
+32987,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+32988,HTML/CSS;Java;JavaScript;Python;SQL
+32989,Assembly;Bash/Shell/PowerShell;C++;Java;Python
+32990,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+32991,Bash/Shell/PowerShell;C#;JavaScript;SQL
+32992,Java;Python
+32993,HTML/CSS;Python
+32994,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+32995,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby
+32996,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+32997,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+32998,C++;Java;Objective-C;Swift
+32999,C;C++;Python;SQL;Other(s):
+33000,C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33001,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+33002,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+33003,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33004,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+33005,Python
+33006,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;VBA
+33008,Bash/Shell/PowerShell;C++;C#;Python
+33009,HTML/CSS;JavaScript
+33010,HTML/CSS;JavaScript;PHP
+33011,SQL
+33012,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33013,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+33014,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+33015,C#;JavaScript;TypeScript
+33016,HTML/CSS;PHP
+33017,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33018,Java;Scala
+33019,HTML/CSS;Java;JavaScript;SQL
+33020,C#;HTML/CSS;JavaScript;PHP;SQL
+33021,HTML/CSS;Java;JavaScript;Python;SQL
+33022,Other(s):
+33023,C;JavaScript;Python;VBA;WebAssembly
+33024,Bash/Shell/PowerShell;C#;HTML/CSS;PHP
+33025,C++;HTML/CSS;JavaScript;Python
+33026,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+33027,Dart;Objective-C;Swift
+33028,HTML/CSS;JavaScript;PHP
+33029,C;C#;HTML/CSS;Java;Python
+33030,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript;VBA;Other(s):
+33031,C++;C#;Clojure;HTML/CSS;JavaScript;Objective-C;Python;SQL
+33032,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33034,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+33035,C#;HTML/CSS;JavaScript;SQL
+33036,Java
+33037,Clojure;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+33038,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+33040,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+33041,HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript;Other(s):
+33042,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+33043,C#;HTML/CSS;Java;JavaScript;SQL
+33044,C#;JavaScript;SQL
+33045,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+33046,Swift
+33047,C#
+33048,Bash/Shell/PowerShell
+33049,Java;Python
+33050,C#
+33051,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+33052,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+33053,C;C++;Java;JavaScript;Python
+33054,HTML/CSS;JavaScript;Ruby
+33056,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+33057,Python;R;SQL;VBA;Other(s):
+33058,C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+33059,HTML/CSS;JavaScript;Ruby
+33060,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+33061,C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+33062,HTML/CSS;JavaScript;PHP;SQL
+33063,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+33064,C#;HTML/CSS;JavaScript;SQL
+33065,Objective-C;Swift
+33066,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+33067,C++;Java;JavaScript;SQL;TypeScript
+33068,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+33069,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33070,C++;Kotlin
+33071,Java;Python;Ruby;Scala
+33072,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+33073,HTML/CSS;JavaScript;Python;SQL
+33074,HTML/CSS;JavaScript;Ruby;Other(s):
+33075,Java;JavaScript;Kotlin;SQL
+33076,Bash/Shell/PowerShell;C;C++;Python;TypeScript
+33077,HTML/CSS;JavaScript;TypeScript
+33078,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+33079,Java;Kotlin
+33080,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+33082,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+33083,C;C++;Python
+33084,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33085,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+33086,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Swift;TypeScript
+33087,HTML/CSS;JavaScript;PHP;SQL
+33089,C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP
+33090,Bash/Shell/PowerShell;Java;Python;SQL
+33091,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+33092,Python;SQL;Other(s):
+33093,C#;HTML/CSS;SQL;TypeScript
+33094,Python;Other(s):
+33095,C;HTML/CSS;Java
+33096,C;C#;SQL
+33097,C#;Java;Kotlin;Objective-C
+33098,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+33099,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+33100,C;Python
+33101,HTML/CSS;Java;JavaScript
+33102,Python
+33103,Java;JavaScript;SQL
+33104,HTML/CSS;JavaScript;Ruby
+33105,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+33106,Python;VBA
+33107,C#;F#;HTML/CSS;Java;JavaScript;SQL;VBA
+33108,C;C#;HTML/CSS;SQL;VBA
+33109,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;Rust;SQL
+33111,Bash/Shell/PowerShell;Java;JavaScript
+33112,C#;HTML/CSS;JavaScript;SQL;VBA
+33113,HTML/CSS;JavaScript
+33114,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+33115,C;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+33116,Java;Kotlin
+33117,HTML/CSS;JavaScript;PHP;SQL;VBA
+33118,JavaScript;TypeScript
+33119,HTML/CSS;JavaScript;PHP;Python;SQL
+33120,Bash/Shell/PowerShell;Clojure;Ruby;SQL
+33121,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33122,C++;HTML/CSS;JavaScript;PHP;SQL
+33123,Bash/Shell/PowerShell;C;C++;Java;VBA
+33124,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+33125,Java
+33126,HTML/CSS;JavaScript
+33127,Bash/Shell/PowerShell;C;C++;C#;Python;Other(s):
+33128,HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+33129,Bash/Shell/PowerShell;Python;Ruby;SQL
+33130,HTML/CSS;Java;JavaScript;Python;SQL
+33131,JavaScript;Python;R
+33132,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+33133,HTML/CSS;JavaScript;PHP;SQL
+33134,C#;HTML/CSS;JavaScript;Python;SQL
+33135,C;Java
+33136,C#;Go;Java;JavaScript;TypeScript
+33137,Bash/Shell/PowerShell;C;C++;Python
+33138,HTML/CSS;JavaScript;PHP
+33139,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+33140,Assembly;C++;Rust;WebAssembly
+33141,C;C++;Python
+33142,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+33143,C;Java;SQL
+33144,C++;Java
+33145,Assembly;C;C++;C#;Python
+33146,HTML/CSS;JavaScript;Python
+33147,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+33148,C++;C#
+33149,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;TypeScript
+33150,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+33151,SQL
+33152,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP
+33153,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+33154,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+33155,C++;Python
+33156,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+33157,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+33159,C;C++;Go
+33160,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+33162,Java;Python;SQL
+33163,HTML/CSS;Java;JavaScript;SQL
+33164,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33165,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33166,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+33167,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33168,HTML/CSS;Java;JavaScript;PHP;SQL
+33169,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+33170,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33171,Java;Python
+33172,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+33173,C#;HTML/CSS;Java;JavaScript;TypeScript
+33174,HTML/CSS;Java
+33175,Bash/Shell/PowerShell;C;HTML/CSS;Java;Kotlin;Python;SQL
+33176,C#;JavaScript;SQL
+33177,C#;Java;JavaScript;Python;SQL;TypeScript
+33178,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+33179,C++;C#;HTML/CSS;Objective-C;Swift;TypeScript
+33180,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+33181,JavaScript;Python
+33182,JavaScript
+33183,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+33184,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33185,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+33186,C#;HTML/CSS;Java;SQL
+33187,C#;Java;JavaScript;Python;SQL;TypeScript
+33188,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+33189,C++;C#;JavaScript;Python;TypeScript;VBA
+33190,SQL;VBA
+33191,C++;C#;HTML/CSS;Python;Other(s):
+33192,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript;VBA
+33193,C++;Python
+33194,HTML/CSS;Java;JavaScript
+33195,HTML/CSS;JavaScript;SQL
+33196,C;C++;JavaScript
+33197,Java;JavaScript;Objective-C
+33198,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33199,Java;Kotlin;Python
+33200,HTML/CSS;JavaScript;Python;SQL
+33201,HTML/CSS;Java;JavaScript
+33202,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33203,HTML/CSS;Java;JavaScript;Ruby
+33204,Java;JavaScript;Kotlin;Python;Scala;SQL
+33205,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+33206,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33207,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+33208,C;C++;Python
+33209,Assembly;PHP;Other(s):
+33210,C;C++
+33211,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+33212,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33213,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+33214,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+33215,HTML/CSS;JavaScript;SQL;Other(s):
+33216,C#;JavaScript
+33217,C#;HTML/CSS;JavaScript;SQL
+33218,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+33220,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33221,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Python;R;SQL
+33222,C;C++
+33223,Java;JavaScript;SQL;TypeScript
+33224,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+33225,Clojure;Python;Ruby;Rust
+33226,Java;SQL
+33227,Bash/Shell/PowerShell;C;Java;Python;Scala
+33228,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+33229,Java;SQL
+33230,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+33231,C;C++;HTML/CSS;JavaScript;TypeScript
+33232,HTML/CSS;Java;JavaScript;SQL;Other(s):
+33233,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33234,HTML/CSS;JavaScript
+33235,C#;SQL
+33236,HTML/CSS;Java;JavaScript;TypeScript
+33237,Bash/Shell/PowerShell;Java;Python;Scala;Swift;Other(s):
+33238,C;Java;PHP;Python;SQL;TypeScript
+33239,Go;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+33240,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;JavaScript;PHP;Python;Rust;TypeScript;WebAssembly
+33241,C#;JavaScript;PHP;TypeScript
+33242,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+33243,HTML/CSS;JavaScript;PHP;SQL
+33245,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;SQL
+33246,Java;Swift
+33247,Python
+33248,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+33249,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+33250,Other(s):
+33251,C++;C#;Elixir;HTML/CSS;JavaScript;SQL;Swift
+33252,Assembly;C;C++;C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+33253,HTML/CSS;Java;JavaScript;Kotlin;SQL
+33254,HTML/CSS;Java;JavaScript;SQL;TypeScript
+33255,HTML/CSS;Java;JavaScript;SQL
+33256,Bash/Shell/PowerShell;JavaScript;Python
+33257,HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL;TypeScript
+33258,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+33259,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+33260,Bash/Shell/PowerShell;Java
+33261,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Python;SQL
+33262,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+33263,C#;JavaScript;SQL
+33264,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33265,HTML/CSS;Java;JavaScript;SQL
+33266,C#;Java;PHP;Python;SQL
+33267,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+33268,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+33269,Java;Kotlin
+33270,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+33271,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python
+33272,HTML/CSS;Java;Python
+33273,Java;JavaScript;SQL
+33274,C;Dart;HTML/CSS;Java;PHP;SQL
+33275,Python;VBA;Other(s):
+33276,C#;HTML/CSS;TypeScript
+33277,C;Java;Python;SQL
+33278,Bash/Shell/PowerShell;C;C++;F#;Python
+33279,Bash/Shell/PowerShell;C++;JavaScript;Python;Swift
+33280,C++;JavaScript
+33281,HTML/CSS;Java;JavaScript;PHP
+33282,C#;HTML/CSS;JavaScript;SQL
+33283,Bash/Shell/PowerShell;C++;Java;SQL;VBA
+33284,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+33285,HTML/CSS;Java;JavaScript;Ruby;SQL
+33286,C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+33287,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+33288,C;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+33289,C++;SQL;Other(s):
+33290,Bash/Shell/PowerShell;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+33291,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+33292,HTML/CSS;JavaScript;PHP;SQL
+33293,HTML/CSS;JavaScript;PHP;SQL
+33294,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+33295,C#;F#;HTML/CSS;Java;JavaScript;TypeScript
+33296,Ruby
+33297,C;C++;HTML/CSS;Java;JavaScript;Python
+33298,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+33299,Bash/Shell/PowerShell;HTML/CSS;Objective-C;Swift
+33300,HTML/CSS;Java
+33301,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+33302,Java;Python;SQL
+33303,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33304,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33305,Bash/Shell/PowerShell
+33307,Java;SQL;Other(s):
+33308,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+33309,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Ruby
+33310,Go;PHP;Python;SQL
+33311,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33312,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL
+33313,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33314,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33315,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+33316,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+33317,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+33318,Bash/Shell/PowerShell;Python;SQL
+33319,Bash/Shell/PowerShell;C#;Java;JavaScript;Objective-C;SQL;TypeScript
+33320,HTML/CSS;JavaScript;PHP;SQL
+33321,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+33322,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+33323,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+33324,HTML/CSS;JavaScript
+33325,C#;Python;SQL
+33326,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33327,Assembly;Bash/Shell/PowerShell;C;C++;Python
+33328,HTML/CSS;JavaScript;Python;SQL;TypeScript
+33329,Assembly;C#;HTML/CSS;JavaScript;Ruby;SQL
+33330,HTML/CSS;Java;JavaScript;SQL;Other(s):
+33331,Bash/Shell/PowerShell;Python
+33332,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+33333,HTML/CSS;JavaScript;PHP
+33334,C#;HTML/CSS;JavaScript;SQL
+33335,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+33336,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;TypeScript
+33337,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+33338,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby
+33339,Java;Kotlin;Python;Rust
+33340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+33341,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;SQL;VBA
+33342,Other(s):
+33343,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33344,Bash/Shell/PowerShell;Java;JavaScript;Python
+33345,C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+33346,C#;Java;PHP;SQL
+33347,Java;SQL
+33348,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33349,C#;HTML/CSS;JavaScript;TypeScript
+33350,Bash/Shell/PowerShell;Java;JavaScript
+33351,C#
+33352,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+33353,C#;Java
+33354,Bash/Shell/PowerShell;C#;Go;Java;Rust;SQL
+33355,HTML/CSS;JavaScript;Python;SQL;TypeScript
+33356,Python
+33357,HTML/CSS;Java;JavaScript;Python;R
+33358,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+33359,C;C++;C#;Other(s):
+33360,Assembly;C;Python
+33361,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript;Other(s):
+33362,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+33363,C;C++;HTML/CSS;Java;JavaScript;SQL
+33364,Bash/Shell/PowerShell;C#;Python;SQL
+33365,Bash/Shell/PowerShell;Java;Python;Ruby
+33366,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+33367,HTML/CSS;JavaScript;SQL;TypeScript
+33368,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+33369,Java;Kotlin
+33370,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+33371,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+33372,HTML/CSS;Java;Python
+33373,HTML/CSS;JavaScript
+33374,C#;HTML/CSS;JavaScript;PHP;SQL
+33375,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+33376,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+33377,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33378,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+33379,C#;JavaScript;SQL;TypeScript
+33380,Bash/Shell/PowerShell;Java;Ruby;SQL
+33381,C++;Python;R
+33382,C#;Java;JavaScript;TypeScript
+33383,JavaScript;Objective-C;Python;Swift
+33384,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33386,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+33387,C#;JavaScript;PHP;SQL
+33388,SQL;Other(s):
+33389,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+33390,HTML/CSS;JavaScript;Ruby
+33391,HTML/CSS;JavaScript;TypeScript
+33392,C;C++;Python
+33393,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+33394,Java;SQL
+33395,Bash/Shell/PowerShell;Java;PHP;Python;Ruby;SQL;Other(s):
+33396,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+33397,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;R;Swift;TypeScript
+33398,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby
+33399,C#;HTML/CSS;Java;JavaScript;Ruby;Rust;SQL
+33400,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+33401,Bash/Shell/PowerShell;Python
+33402,C#;Java;JavaScript;SQL
+33403,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+33404,Go;Python
+33405,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;Swift
+33406,C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;WebAssembly
+33407,C++;HTML/CSS;JavaScript;Python;TypeScript
+33408,Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL
+33409,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33410,Bash/Shell/PowerShell;Go;Ruby;SQL
+33411,C#;Java;JavaScript;Kotlin;SQL
+33412,C#;SQL
+33413,Java;Python
+33414,JavaScript;PHP;Rust;SQL
+33415,Java;JavaScript;SQL;Other(s):
+33416,Assembly;C;C++;C#
+33417,HTML/CSS;Java;JavaScript;SQL
+33418,C#;Java;Other(s):
+33419,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+33420,Bash/Shell/PowerShell;Go;Java;SQL
+33421,HTML/CSS;Java;JavaScript;SQL;VBA;WebAssembly
+33422,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;Other(s):
+33423,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+33424,HTML/CSS;JavaScript;PHP;Ruby
+33425,SQL;VBA
+33426,JavaScript;PHP;TypeScript
+33427,HTML/CSS;JavaScript
+33428,Bash/Shell/PowerShell;C;C++;Java;Python;R
+33429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+33430,Bash/Shell/PowerShell;Go;Python
+33431,C;C++;Java;JavaScript;Kotlin;PHP;Python;SQL
+33432,C#;HTML/CSS;VBA
+33433,SQL
+33434,Java;Kotlin;Objective-C;Swift
+33435,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+33436,HTML/CSS;Java;JavaScript
+33437,Bash/Shell/PowerShell;Go;Rust
+33438,HTML/CSS;JavaScript;Python;SQL;VBA
+33439,C;Clojure;Elixir;Erlang;HTML/CSS;JavaScript;Python;Scala;TypeScript
+33440,HTML/CSS;Java;JavaScript;Python;SQL
+33441,C#;Python
+33442,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;Ruby;SQL;Other(s):
+33443,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33444,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+33445,HTML/CSS;PHP
+33446,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33447,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+33448,C++;Java;Kotlin
+33449,Bash/Shell/PowerShell;C#;Dart;Java;Kotlin
+33450,C;C#
+33451,Bash/Shell/PowerShell;Java;Python;SQL
+33452,HTML/CSS;JavaScript;PHP
+33453,Bash/Shell/PowerShell;Java;JavaScript;SQL
+33454,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33455,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+33456,Assembly;C#;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+33457,HTML/CSS;JavaScript;PHP;SQL
+33458,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+33459,Other(s):
+33460,HTML/CSS;JavaScript;PHP;SQL
+33461,HTML/CSS;JavaScript;Ruby;TypeScript
+33462,Bash/Shell/PowerShell;C#;SQL
+33463,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;Other(s):
+33464,HTML/CSS;JavaScript;PHP;Ruby
+33465,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Python
+33466,C;Java;Other(s):
+33467,Bash/Shell/PowerShell;Java;Python
+33468,Bash/Shell/PowerShell;Dart;Kotlin;Scala;Other(s):
+33469,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33470,Bash/Shell/PowerShell;C;C++;Python;R;Other(s):
+33471,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33472,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+33473,C#;HTML/CSS;JavaScript;SQL
+33474,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33475,C++;Java
+33476,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+33477,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Python;SQL
+33478,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;R;Ruby;SQL;TypeScript
+33479,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+33480,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+33481,C#;HTML/CSS;JavaScript;SQL
+33482,Java
+33483,HTML/CSS;JavaScript;TypeScript
+33484,HTML/CSS;JavaScript
+33485,HTML/CSS;Java;JavaScript;Kotlin
+33486,HTML/CSS;JavaScript;PHP
+33487,Python;SQL;Other(s):
+33488,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+33489,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+33490,Assembly;Bash/Shell/PowerShell;C;C++;F#;HTML/CSS;PHP;Python;R;SQL
+33491,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+33492,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33493,HTML/CSS;JavaScript;PHP;TypeScript
+33494,HTML/CSS;JavaScript;PHP
+33495,HTML/CSS;JavaScript;PHP;SQL
+33496,HTML/CSS;JavaScript
+33497,Bash/Shell/PowerShell;C;C++;C#;Java;PHP;Python;SQL
+33498,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+33499,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+33500,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+33501,Bash/Shell/PowerShell;C++;JavaScript;Python
+33502,C#;HTML/CSS;JavaScript;SQL
+33503,Java;JavaScript
+33504,C;HTML/CSS;Java;JavaScript;PHP;SQL
+33505,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+33506,Elixir;JavaScript;Ruby;Other(s):
+33507,Assembly;Bash/Shell/PowerShell;C;Java;Python
+33508,C++;C#;HTML/CSS;Java;JavaScript;SQL
+33509,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+33510,C;HTML/CSS;JavaScript;PHP;SQL
+33511,Bash/Shell/PowerShell;Java;SQL
+33512,C#
+33513,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+33514,HTML/CSS;PHP;SQL;Swift
+33515,C;C++;Java;JavaScript
+33517,Java;JavaScript;Kotlin
+33518,Python
+33519,C#;HTML/CSS;JavaScript;SQL
+33520,Bash/Shell/PowerShell;C#;Java;JavaScript;Rust;SQL;TypeScript
+33521,Bash/Shell/PowerShell;C;C++;PHP;Python;SQL
+33522,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+33523,Bash/Shell/PowerShell;JavaScript
+33524,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+33525,C++;Python;SQL
+33526,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+33527,Java
+33528,C#
+33529,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+33530,Java;JavaScript;Kotlin;Python;SQL;TypeScript
+33531,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript;Other(s):
+33532,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+33533,HTML/CSS;Other(s):
+33534,HTML/CSS;JavaScript;PHP;Python;SQL
+33535,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+33536,HTML/CSS;JavaScript;PHP;SQL
+33537,HTML/CSS;Java;JavaScript;SQL;TypeScript
+33538,HTML/CSS;JavaScript
+33539,C;HTML/CSS;Java;JavaScript;SQL
+33540,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+33541,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+33542,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+33543,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;TypeScript;Other(s):
+33544,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33545,C++;C#;Go
+33546,Python;R;SQL
+33547,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+33548,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL;TypeScript
+33549,Bash/Shell/PowerShell;Java;PHP
+33550,Other(s):
+33551,Bash/Shell/PowerShell;Java;Python;SQL
+33552,C++;C#
+33553,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python
+33554,Scala;SQL
+33555,C;Java;Python
+33556,Bash/Shell/PowerShell;C;C++;Python;SQL
+33557,Assembly;HTML/CSS;PHP;Python
+33558,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+33559,C++;Java;JavaScript;SQL
+33560,F#;JavaScript;Python;SQL;Other(s):
+33561,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+33562,Assembly;C;Objective-C;Python
+33563,HTML/CSS;JavaScript;Ruby;TypeScript
+33564,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;R;SQL;TypeScript
+33565,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+33566,C#;JavaScript
+33567,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+33568,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33570,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+33571,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+33572,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+33573,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;VBA
+33574,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;SQL;Other(s):
+33575,Bash/Shell/PowerShell;Python;SQL
+33576,C++;C#;Python
+33577,C;C++;C#;HTML/CSS;JavaScript;Objective-C
+33578,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+33579,Bash/Shell/PowerShell;C;Objective-C;Swift
+33580,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+33581,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+33582,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+33583,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Kotlin;Python;SQL;TypeScript
+33585,Java;JavaScript;Python;SQL
+33586,Python;R;VBA
+33587,C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+33588,Bash/Shell/PowerShell;C;C++;Java
+33589,Bash/Shell/PowerShell;Go;JavaScript;SQL;Swift
+33590,JavaScript;Python;SQL
+33591,JavaScript;Python;Other(s):
+33592,C++;VBA
+33593,HTML/CSS;Java;JavaScript
+33594,HTML/CSS;JavaScript;PHP
+33597,Java;Kotlin;Scala;Swift
+33598,HTML/CSS;JavaScript;PHP;SQL
+33599,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33600,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python
+33601,Assembly;C++;C#;SQL
+33602,Objective-C;Swift
+33603,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+33604,C#;F#;Python;R;SQL;TypeScript
+33605,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33606,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+33607,Go;HTML/CSS;Java;Python;SQL
+33608,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33609,Bash/Shell/PowerShell;C++;Python
+33610,C#;Java;JavaScript;TypeScript
+33611,Bash/Shell/PowerShell;C;C++;Python
+33612,JavaScript;Ruby
+33613,C#;HTML/CSS;JavaScript;SQL
+33614,Bash/Shell/PowerShell;C#;Java;PHP;Python;Scala
+33615,Bash/Shell/PowerShell;C;C++;HTML/CSS;Kotlin;Python
+33616,Java
+33617,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;Other(s):
+33618,C++;Python;Other(s):
+33619,C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+33620,PHP;SQL
+33621,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+33622,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33623,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+33624,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+33625,C#;SQL;VBA
+33626,Bash/Shell/PowerShell;HTML/CSS;Ruby
+33627,Bash/Shell/PowerShell;Java;Python;Other(s):
+33628,Bash/Shell/PowerShell;C++;Java;Python;R;SQL
+33629,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL;Other(s):
+33630,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Ruby
+33631,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+33632,Bash/Shell/PowerShell;Java;Python
+33633,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+33634,C#;HTML/CSS;JavaScript;SQL;TypeScript
+33635,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33636,Go;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+33637,HTML/CSS;Java;JavaScript;SQL
+33638,C#;HTML/CSS;JavaScript;SQL
+33639,Java;Objective-C;PHP;TypeScript
+33640,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+33641,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+33642,C#;HTML/CSS;JavaScript;SQL;VBA
+33643,HTML/CSS;JavaScript;Python;SQL
+33644,C++;Python
+33645,C#;Java
+33646,Go;Java;Kotlin;Scala;TypeScript
+33647,C;C++;JavaScript;PHP;Python;SQL
+33648,C++;C#;HTML/CSS;Java;JavaScript;SQL
+33649,C#;HTML/CSS;JavaScript
+33650,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+33651,JavaScript
+33652,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Kotlin
+33653,HTML/CSS;JavaScript
+33654,Objective-C;Swift
+33655,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;SQL
+33656,Bash/Shell/PowerShell;JavaScript;Kotlin;SQL;TypeScript
+33657,Bash/Shell/PowerShell;Python;SQL
+33658,Java
+33659,HTML/CSS;Python;SQL
+33660,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+33661,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL;TypeScript
+33663,HTML/CSS;Java;Python;R;SQL
+33664,C;C++;Python
+33665,C++;Java;Python;SQL
+33666,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;Other(s):
+33667,C;C++;C#;HTML/CSS;Java;Kotlin;Swift
+33668,HTML/CSS;JavaScript;PHP;TypeScript
+33669,Bash/Shell/PowerShell;C;Java;SQL
+33670,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL
+33671,Bash/Shell/PowerShell;Python;R
+33672,HTML/CSS;JavaScript;Ruby
+33673,C#;HTML/CSS;JavaScript;SQL
+33674,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+33675,C#
+33676,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python
+33677,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+33678,HTML/CSS;JavaScript
+33679,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust
+33680,HTML/CSS;JavaScript;PHP;SQL
+33681,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+33682,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+33683,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+33684,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+33685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+33686,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33687,Bash/Shell/PowerShell;C#;Java;Python;R;SQL
+33688,C;C++;C#;PHP;Python
+33689,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33690,Java;Python
+33691,HTML/CSS;Java;JavaScript;Kotlin
+33692,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33693,C++;HTML/CSS;Java;JavaScript;Python
+33694,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+33695,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;JavaScript;Python;TypeScript
+33696,C++;C#;HTML/CSS;JavaScript;Python
+33697,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+33698,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+33699,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33700,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+33701,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;Swift
+33702,JavaScript;Python;SQL
+33703,JavaScript;Python
+33704,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+33705,HTML/CSS;Java;JavaScript;Python
+33706,C++;C#;JavaScript;Kotlin;Python;SQL
+33707,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33708,Swift
+33709,Objective-C;Swift
+33710,Assembly;Bash/Shell/PowerShell;C;Python
+33711,Python
+33712,Bash/Shell/PowerShell;C;C++;Erlang;Objective-C;Python;R;Swift
+33713,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33714,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33715,C++;C#;HTML/CSS;Java;JavaScript;Python
+33716,HTML/CSS;Java;JavaScript;PHP;SQL
+33717,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Swift
+33718,Go;HTML/CSS;Java;Python;SQL
+33719,C;C++;HTML/CSS;Python
+33720,Java;JavaScript;Kotlin;SQL
+33721,PHP
+33722,Java;JavaScript;TypeScript
+33723,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+33724,HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript
+33725,C++;JavaScript
+33726,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA;Other(s):
+33727,HTML/CSS;JavaScript;Ruby;SQL
+33728,JavaScript
+33729,C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+33730,C++;C#;Python
+33731,Bash/Shell/PowerShell;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL
+33732,C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+33733,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;Rust;Other(s):
+33734,C#;HTML/CSS;JavaScript;SQL;VBA
+33735,JavaScript;TypeScript
+33736,C#;Go;HTML/CSS;Java;SQL
+33737,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33738,R
+33739,C;C#;Elixir;Java;JavaScript;Ruby;Rust;SQL
+33740,HTML/CSS;JavaScript;PHP;Python;R;SQL;Other(s):
+33741,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33742,HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+33743,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+33744,HTML/CSS;PHP
+33745,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+33746,C++;Go;Java;Swift
+33747,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;VBA
+33748,C#;VBA
+33749,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+33750,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+33751,HTML/CSS;JavaScript
+33752,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Ruby;Other(s):
+33753,JavaScript
+33754,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+33755,HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+33756,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+33757,C;C++;HTML/CSS;Java;JavaScript
+33758,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+33759,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33760,C#;HTML/CSS;Java;JavaScript;SQL
+33761,Java;Kotlin
+33762,JavaScript;Python;Scala
+33763,C#;HTML/CSS;PHP;SQL
+33764,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+33765,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+33766,C++;JavaScript;Kotlin
+33767,Java;JavaScript;SQL
+33768,Kotlin;Swift
+33769,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33770,Python;R
+33771,JavaScript;PHP
+33772,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+33773,Bash/Shell/PowerShell;C;C++
+33774,HTML/CSS;JavaScript
+33775,C#;HTML/CSS;JavaScript;Other(s):
+33776,C#;F#;Ruby
+33777,Dart;Java;Kotlin;SQL
+33778,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+33779,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python
+33780,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+33781,HTML/CSS;JavaScript;TypeScript
+33782,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL
+33783,SQL;Other(s):
+33784,C;C++;HTML/CSS;Objective-C;PHP;Python;Swift
+33785,Scala;SQL
+33786,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust;SQL;TypeScript;WebAssembly
+33787,Bash/Shell/PowerShell;Go;Scala;SQL
+33788,Java;TypeScript
+33789,HTML/CSS;Python;SQL
+33790,Bash/Shell/PowerShell;C;C++;Java
+33791,Python
+33792,JavaScript;Python;R;SQL
+33793,C#;HTML/CSS;Java;JavaScript;TypeScript
+33794,Java;JavaScript;PHP;Python;SQL
+33795,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+33796,Bash/Shell/PowerShell;Python
+33797,HTML/CSS;Java;JavaScript;Python;TypeScript
+33798,Bash/Shell/PowerShell;C++;Python
+33799,Assembly;C#;Java;JavaScript;Python;Ruby
+33800,HTML/CSS;JavaScript
+33801,HTML/CSS;JavaScript;PHP
+33802,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+33803,Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;PHP;Swift
+33804,HTML/CSS;JavaScript
+33805,Go;JavaScript;Objective-C;Swift
+33806,Java;SQL;Swift
+33807,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+33808,HTML/CSS;Java;JavaScript;Swift
+33809,Bash/Shell/PowerShell;C#;Dart;JavaScript;SQL
+33810,C;C++;Clojure;Java;Python
+33811,HTML/CSS;Java;JavaScript;TypeScript
+33812,Bash/Shell/PowerShell;C;C++;JavaScript;Python;R;Other(s):
+33813,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL
+33814,C;C#;HTML/CSS;Java
+33815,C#;Java
+33816,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+33817,Bash/Shell/PowerShell;C#;TypeScript
+33818,Bash/Shell/PowerShell;Go;SQL
+33819,C++;Python;R;SQL
+33820,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+33821,C#;JavaScript;Python
+33822,C#;HTML/CSS;SQL
+33823,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+33824,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+33825,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+33827,C;Java
+33828,Ruby
+33829,Assembly;Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+33830,C#;SQL;VBA
+33831,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+33832,Bash/Shell/PowerShell;C;Dart;Go;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+33833,Go;Python;SQL
+33834,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33835,C#;HTML/CSS;JavaScript;SQL;VBA
+33836,C#;HTML/CSS;Java;JavaScript;SQL
+33837,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33838,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+33839,HTML/CSS;JavaScript;PHP;SQL
+33840,Bash/Shell/PowerShell;Java;Python
+33841,Bash/Shell/PowerShell
+33842,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33843,C#
+33844,C#;Dart;HTML/CSS;Java;JavaScript;TypeScript
+33845,HTML/CSS;JavaScript;PHP
+33846,Bash/Shell/PowerShell;HTML/CSS;R
+33847,C#;HTML/CSS;JavaScript;TypeScript
+33848,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+33849,C#;HTML/CSS;JavaScript;TypeScript
+33850,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+33851,C#;HTML/CSS;JavaScript;TypeScript
+33852,HTML/CSS;JavaScript;PHP
+33853,Bash/Shell/PowerShell;Java;Python
+33854,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+33855,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33856,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+33857,HTML/CSS;Java;JavaScript;SQL;TypeScript
+33858,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+33859,Bash/Shell/PowerShell;JavaScript;Python;Scala;TypeScript
+33860,C;C++;C#;HTML/CSS;Java;PHP;SQL;Other(s):
+33861,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+33862,HTML/CSS;JavaScript;PHP;SQL
+33863,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33864,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;R;SQL
+33865,HTML/CSS;JavaScript;TypeScript
+33866,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+33867,C;C++;C#;Python;Rust
+33868,Bash/Shell/PowerShell;SQL;VBA
+33869,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+33870,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;VBA
+33871,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+33872,HTML/CSS;JavaScript;Ruby;SQL
+33873,HTML/CSS;Java;JavaScript;Python;SQL
+33874,HTML/CSS;JavaScript;PHP;SQL
+33876,Bash/Shell/PowerShell;HTML/CSS;Java
+33877,C++;HTML/CSS;JavaScript
+33878,Java;JavaScript;SQL
+33879,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+33880,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+33881,HTML/CSS;JavaScript;PHP;SQL
+33882,C;C++;HTML/CSS
+33883,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+33884,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+33885,Bash/Shell/PowerShell;C++;C#;Java;Python;SQL
+33886,HTML/CSS;JavaScript;Python;Other(s):
+33887,C;C++;C#;Java;Python
+33888,HTML/CSS;Ruby;SQL
+33889,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+33890,Bash/Shell/PowerShell;Ruby;Swift
+33891,Python
+33892,Java;JavaScript;Python;Ruby;SQL
+33893,JavaScript;Rust;SQL;VBA
+33894,Java;JavaScript;Python;SQL
+33895,C#;HTML/CSS;JavaScript;SQL
+33896,HTML/CSS;JavaScript;TypeScript
+33897,C#;Python;SQL;VBA;Other(s):
+33898,C#;VBA
+33899,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+33900,C;C++;Java;Python
+33901,HTML/CSS;Java;JavaScript;Python;SQL
+33902,C++;C#
+33903,Bash/Shell/PowerShell;Python;R;Ruby;SQL
+33904,HTML/CSS;JavaScript;Ruby
+33905,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python
+33906,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+33907,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+33908,Assembly;SQL;Other(s):
+33909,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+33910,C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+33911,C#;HTML/CSS;JavaScript;SQL
+33912,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+33913,Java
+33914,C#;HTML/CSS;Java;SQL;Swift;TypeScript
+33915,Assembly;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript
+33916,C#;HTML/CSS;JavaScript;Python
+33917,C#;HTML/CSS;JavaScript
+33918,Bash/Shell/PowerShell;C;Go;JavaScript;Python;TypeScript
+33919,Bash/Shell/PowerShell;Python;SQL;VBA
+33920,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+33921,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+33922,Java
+33923,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;TypeScript
+33924,Bash/Shell/PowerShell;Java;SQL;TypeScript
+33925,C#;HTML/CSS;JavaScript;SQL
+33926,C++;HTML/CSS;Java;PHP;Python
+33927,HTML/CSS;Java;JavaScript;Python;SQL
+33928,Clojure;SQL
+33929,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+33930,C#;HTML/CSS;JavaScript;SQL
+33931,C#;JavaScript;SQL
+33932,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+33933,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+33934,C#
+33935,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+33936,Java;Swift
+33937,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;Other(s):
+33938,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL;Other(s):
+33939,HTML/CSS;JavaScript;Python
+33940,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+33941,HTML/CSS;Python
+33942,C#
+33943,C;Java;Python
+33944,HTML/CSS;JavaScript;Ruby;SQL
+33945,JavaScript;Ruby;SQL
+33946,Bash/Shell/PowerShell;Go;Python
+33947,PHP;SQL
+33948,C++;HTML/CSS;Python;R
+33949,C#
+33950,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust
+33951,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+33952,Bash/Shell/PowerShell;C;Python
+33953,C++;C#;JavaScript;Python;SQL
+33954,C#;HTML/CSS;JavaScript;SQL
+33955,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+33956,Bash/Shell/PowerShell;Java;Objective-C;SQL
+33957,Go;Python;Ruby
+33958,HTML/CSS;Java;JavaScript;SQL
+33959,C#;HTML/CSS;JavaScript;SQL
+33960,Java;Kotlin
+33961,JavaScript;Ruby
+33962,Assembly;C;C#
+33963,Bash/Shell/PowerShell;C++;C#;Python
+33964,C;C++;C#;HTML/CSS;Objective-C;PHP
+33965,C#;HTML/CSS;JavaScript;SQL
+33966,Bash/Shell/PowerShell;C++;Go;Java;Python;R;Scala;SQL
+33967,C#;HTML/CSS;JavaScript;Python;SQL
+33968,C#;Erlang;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+33969,SQL
+33970,HTML/CSS;Java;Kotlin
+33971,HTML/CSS;PHP;Python
+33972,C;C++;HTML/CSS;Java
+33973,C++;JavaScript;Python
+33974,Go;HTML/CSS;JavaScript;TypeScript
+33975,C;HTML/CSS;JavaScript;Python
+33976,Assembly;Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+33977,C;C++;Python
+33978,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+33979,Java;JavaScript;PHP;TypeScript
+33980,Java;Python
+33981,HTML/CSS;JavaScript;Python;R;Scala;TypeScript
+33982,C++;Go;HTML/CSS;JavaScript;TypeScript
+33983,Elixir;Erlang;Ruby;SQL
+33984,Java;Python
+33985,VBA;Other(s):
+33986,C++;JavaScript
+33987,C++;HTML/CSS
+33988,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+33989,HTML/CSS;JavaScript;PHP;SQL
+33990,C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+33991,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+33992,C#;HTML/CSS;JavaScript
+33993,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+33994,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+33995,HTML/CSS;JavaScript;TypeScript
+33996,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+33997,C++;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+33998,Clojure;HTML/CSS;SQL
+33999,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+34000,C;Go;HTML/CSS;JavaScript;Python;Other(s):
+34001,C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+34002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+34003,C++
+34004,HTML/CSS;JavaScript;TypeScript
+34005,HTML/CSS;JavaScript;PHP;SQL
+34006,HTML/CSS;Java;JavaScript;Swift;TypeScript
+34007,C#;HTML/CSS;JavaScript;Python;TypeScript
+34008,Java
+34009,HTML/CSS;JavaScript;PHP;SQL
+34010,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+34011,Bash/Shell/PowerShell;Java
+34012,HTML/CSS;Java;JavaScript;Swift
+34013,Bash/Shell/PowerShell;C;Go;Swift
+34014,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+34015,Swift
+34016,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;TypeScript
+34017,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34018,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34019,C++;C#;JavaScript
+34020,C++;Java;Other(s):
+34021,C++;C#;HTML/CSS;JavaScript;SQL
+34022,C#;HTML/CSS;JavaScript;PHP;SQL
+34023,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+34024,C#;Java;PHP;SQL
+34025,HTML/CSS;Java;JavaScript;VBA
+34026,Ruby
+34027,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+34028,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+34029,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript
+34030,JavaScript;PHP;SQL;Other(s):
+34031,C#;HTML/CSS;JavaScript;PHP;SQL
+34032,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;Ruby
+34033,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34034,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34035,Java;JavaScript;Python
+34036,HTML/CSS;JavaScript;PHP;Python;SQL
+34037,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+34038,HTML/CSS;JavaScript;Ruby;SQL
+34039,Python;Ruby;Other(s):
+34040,Java;Python
+34041,C#;Ruby;SQL
+34042,C++;Go;Java;Python;Ruby;SQL
+34043,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+34044,HTML/CSS;Java;JavaScript
+34045,C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+34046,C#;HTML/CSS;JavaScript;SQL
+34047,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+34048,C++;Java;JavaScript;Objective-C;Scala;TypeScript;WebAssembly
+34049,Bash/Shell/PowerShell;C++;Python;SQL
+34050,Bash/Shell/PowerShell;Python
+34051,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+34052,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34053,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34054,C;C#;Java;JavaScript;Ruby;Scala;SQL
+34055,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+34056,Bash/Shell/PowerShell;C++;C#;F#;SQL
+34057,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+34058,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+34059,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34060,Bash/Shell/PowerShell;C;C++
+34061,C#;HTML/CSS;JavaScript;SQL
+34062,HTML/CSS;Java;JavaScript;Python;TypeScript
+34063,C++;C#;Java;Python;SQL
+34064,Bash/Shell/PowerShell;C;HTML/CSS;Python;R
+34065,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+34066,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+34067,HTML/CSS;Java;JavaScript;SQL
+34068,Bash/Shell/PowerShell;Java;Python
+34069,C#
+34070,Java;Python
+34071,Bash/Shell/PowerShell;C++;F#;Java;Ruby;SQL
+34072,Python
+34073,C#;HTML/CSS;JavaScript;PHP;Swift;Other(s):
+34074,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34075,Bash/Shell/PowerShell;C;Python;R;SQL;TypeScript
+34076,HTML/CSS;Java
+34077,Go;Python;SQL;TypeScript
+34078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+34079,Bash/Shell/PowerShell;C++;C#
+34080,Bash/Shell/PowerShell;Clojure
+34081,Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+34082,Bash/Shell/PowerShell;C;C++;C#;Clojure;F#;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript;Other(s):
+34083,HTML/CSS;JavaScript;SQL;Other(s):
+34084,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+34085,Other(s):
+34086,C#
+34087,HTML/CSS;JavaScript;TypeScript
+34088,Clojure;JavaScript;Python
+34089,JavaScript
+34090,Java;Kotlin;Python
+34091,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Rust;SQL;TypeScript;WebAssembly
+34092,C++;Python;Other(s):
+34093,C#;JavaScript;TypeScript
+34094,HTML/CSS;JavaScript;Python
+34095,HTML/CSS;JavaScript;TypeScript
+34096,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34097,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python
+34098,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+34099,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+34100,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+34101,C;HTML/CSS;Java;JavaScript;Python
+34102,Go;HTML/CSS;Java;JavaScript
+34103,Assembly;C;C++;Dart;HTML/CSS;Java;Kotlin;Python;TypeScript
+34104,Bash/Shell/PowerShell;JavaScript;Python
+34105,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34106,Java;Kotlin
+34107,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+34108,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+34109,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+34110,Dart;HTML/CSS;Java;Kotlin;Swift;TypeScript
+34111,Java;JavaScript
+34112,Bash/Shell/PowerShell;C#;JavaScript;SQL
+34113,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+34114,Bash/Shell/PowerShell;C++;Go;Python;Ruby
+34115,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+34116,C++;C#;Go;HTML/CSS;JavaScript;Python
+34117,C++;Java
+34118,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift;TypeScript
+34119,C++;C#;Python;Ruby
+34120,JavaScript;Python
+34121,Python;SQL
+34122,Java;JavaScript;PHP;Python
+34123,HTML/CSS;Java;JavaScript
+34124,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34125,C;HTML/CSS;Java;PHP;Python;SQL
+34126,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34127,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+34128,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+34129,Bash/Shell/PowerShell;JavaScript;Ruby
+34130,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34131,C;Go;HTML/CSS;Java;JavaScript;Rust;TypeScript
+34132,HTML/CSS;JavaScript;Python;TypeScript
+34133,HTML/CSS;JavaScript;PHP;SQL
+34134,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+34135,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+34136,C#;Go;PHP;SQL;TypeScript
+34137,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+34139,HTML/CSS;JavaScript;TypeScript
+34140,C#;HTML/CSS;JavaScript;SQL
+34141,Clojure;JavaScript
+34142,Python
+34143,HTML/CSS;Java;JavaScript;SQL;Other(s):
+34144,HTML/CSS;Java;JavaScript;Kotlin;VBA
+34145,C#
+34147,C++;HTML/CSS;Java;JavaScript;TypeScript
+34148,Go;HTML/CSS;Java;JavaScript;Python;SQL
+34149,HTML/CSS;JavaScript;PHP
+34150,Java;Python
+34151,Bash/Shell/PowerShell;Python;SQL
+34152,Bash/Shell/PowerShell;C;C++;HTML/CSS
+34153,Java;JavaScript
+34154,Java
+34155,C++;C#
+34156,HTML/CSS;Java;JavaScript;Python;SQL
+34157,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+34158,JavaScript;SQL
+34159,HTML/CSS;JavaScript;Python
+34160,C++;HTML/CSS;Java;JavaScript;SQL
+34161,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+34162,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Swift
+34163,SQL;Other(s):
+34164,Bash/Shell/PowerShell;C;C#;JavaScript;Python;R;TypeScript
+34165,HTML/CSS;Java;Other(s):
+34166,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+34167,HTML/CSS;Java;Python
+34168,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+34169,HTML/CSS;JavaScript
+34170,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+34171,HTML/CSS;JavaScript;Python
+34172,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+34173,HTML/CSS;JavaScript;PHP;SQL
+34174,C++;C#;HTML/CSS;Java;Python;SQL;VBA;Other(s):
+34175,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+34176,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34177,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+34178,HTML/CSS;JavaScript;PHP;SQL
+34179,Java;Python;R
+34180,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL;Other(s):
+34181,C#;Dart;Java;JavaScript;SQL
+34182,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+34183,C;C++;Java;Other(s):
+34184,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python;SQL
+34185,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+34186,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+34187,Java;JavaScript;PHP;Scala;SQL;TypeScript
+34188,C;C++;C#;Go
+34189,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34190,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+34191,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+34192,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34193,C#;HTML/CSS;JavaScript;SQL
+34194,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34195,Java;JavaScript;Python;Ruby;SQL
+34196,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+34197,Python;R;SQL
+34198,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34199,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34200,Assembly;Java;SQL
+34201,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34202,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34203,Python;SQL
+34204,Bash/Shell/PowerShell;Go;Java;JavaScript;Ruby;SQL
+34205,Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;Python;Rust;Scala;Other(s):
+34206,Java;JavaScript;PHP;SQL;TypeScript
+34207,Other(s):
+34208,Bash/Shell/PowerShell;C++;Kotlin;Rust
+34209,C#;HTML/CSS;JavaScript;PHP
+34210,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34211,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+34212,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;WebAssembly
+34213,C#;HTML/CSS;JavaScript;SQL
+34214,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+34215,Assembly;C;HTML/CSS
+34216,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34217,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34218,HTML/CSS;Java;JavaScript;PHP;SQL
+34219,HTML/CSS;Java;JavaScript;PHP;SQL
+34220,HTML/CSS;JavaScript;PHP;TypeScript
+34221,Java
+34222,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34223,C#;HTML/CSS;JavaScript;SQL
+34224,C#;JavaScript
+34225,Bash/Shell/PowerShell;C;R;SQL
+34226,JavaScript;Python;Rust
+34227,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+34228,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34229,SQL
+34230,Bash/Shell/PowerShell;HTML/CSS;Python;R
+34231,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34232,C#;HTML/CSS;JavaScript;SQL
+34233,HTML/CSS;JavaScript;PHP;SQL
+34234,Bash/Shell/PowerShell;C;C++
+34235,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34236,Bash/Shell/PowerShell;Dart;Java;Kotlin;Python
+34237,HTML/CSS;JavaScript;TypeScript
+34238,C#;HTML/CSS;Java;JavaScript;SQL
+34239,R
+34240,HTML/CSS;JavaScript;PHP;SQL
+34241,Dart;HTML/CSS;JavaScript;PHP;TypeScript
+34242,HTML/CSS;Java;JavaScript;TypeScript
+34243,Java;Kotlin
+34244,HTML/CSS;Python;R;SQL;WebAssembly
+34245,Bash/Shell/PowerShell;C;C++;PHP;Python;R;SQL
+34246,Java;JavaScript;SQL;TypeScript
+34247,HTML/CSS;PHP;SQL
+34248,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;R;SQL
+34249,Java
+34251,C;C++
+34252,HTML/CSS;JavaScript
+34253,HTML/CSS;JavaScript;PHP;Ruby;SQL
+34254,HTML/CSS;JavaScript;PHP;TypeScript
+34255,C;C++;JavaScript;PHP;Python;SQL
+34256,C#;HTML/CSS;JavaScript;SQL
+34257,Assembly;C#;Dart;Go;JavaScript;PHP;Python;SQL;TypeScript
+34258,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34259,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+34260,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+34261,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+34262,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+34263,Assembly;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34264,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust
+34265,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+34266,HTML/CSS;JavaScript;PHP
+34267,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;WebAssembly
+34268,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+34269,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34270,Objective-C;Swift
+34271,Objective-C;Python;Swift
+34273,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+34274,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+34275,HTML/CSS;JavaScript;Python;Ruby
+34276,HTML/CSS;JavaScript;Python;Ruby
+34277,C#;F#;HTML/CSS;JavaScript
+34278,Bash/Shell/PowerShell;Python;SQL
+34279,C#;HTML/CSS;JavaScript;SQL
+34280,Java;Kotlin
+34281,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34282,Bash/Shell/PowerShell;C;Go;Java;SQL;Other(s):
+34283,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+34284,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+34285,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34286,Bash/Shell/PowerShell;Java;SQL
+34288,C#;HTML/CSS;JavaScript;TypeScript
+34289,Bash/Shell/PowerShell;C;Go;HTML/CSS;SQL;TypeScript;Other(s):
+34290,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL
+34291,HTML/CSS;JavaScript;TypeScript
+34292,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+34293,HTML/CSS;TypeScript
+34294,HTML/CSS;JavaScript;Python;SQL
+34295,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+34296,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+34297,Bash/Shell/PowerShell;JavaScript;Python
+34298,HTML/CSS;JavaScript;PHP;Python
+34299,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+34300,Java;JavaScript;SQL
+34301,Java;JavaScript;Kotlin;Swift
+34302,HTML/CSS;JavaScript;PHP;SQL
+34303,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+34304,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;JavaScript;Python;Other(s):
+34305,C#;HTML/CSS;JavaScript;PHP;TypeScript
+34306,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+34307,HTML/CSS
+34308,HTML/CSS;JavaScript;Python;R;SQL;VBA
+34309,Go;Java;JavaScript;Ruby
+34310,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+34311,HTML/CSS;JavaScript
+34312,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+34313,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+34314,JavaScript;Python
+34315,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+34316,C#;HTML/CSS;JavaScript;TypeScript
+34317,Bash/Shell/PowerShell;Java;JavaScript;SQL
+34318,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+34319,C++;HTML/CSS;SQL;VBA
+34320,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+34321,Bash/Shell/PowerShell;JavaScript;PHP;SQL;Other(s):
+34322,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34323,C#;HTML/CSS;Java;JavaScript;SQL
+34324,HTML/CSS;JavaScript;Python;Ruby;SQL
+34325,Bash/Shell/PowerShell;Clojure;HTML/CSS
+34326,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;Swift
+34327,C#;Python;SQL
+34328,Java;JavaScript;Python
+34329,HTML/CSS;JavaScript;PHP;TypeScript
+34330,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+34331,C#;HTML/CSS;SQL
+34332,HTML/CSS;JavaScript
+34333,Java;Python
+34334,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+34335,C;C++;C#;Java;JavaScript;Objective-C;Python;SQL;Swift
+34336,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Python;SQL
+34337,HTML/CSS;JavaScript;PHP;Python;TypeScript
+34338,Bash/Shell/PowerShell;C#;JavaScript
+34339,C#;HTML/CSS;JavaScript
+34340,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+34341,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+34342,VBA
+34343,C#;Java;Kotlin;SQL
+34344,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+34345,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+34346,C#;HTML/CSS;JavaScript
+34347,Assembly;C;C++;C#;Java;JavaScript;Other(s):
+34348,Bash/Shell/PowerShell;R;VBA;Other(s):
+34349,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+34350,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+34351,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34352,C++;HTML/CSS;Java;JavaScript;Ruby;SQL
+34353,JavaScript;SQL;TypeScript
+34354,C;Java;Kotlin
+34355,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;JavaScript;SQL
+34356,C#;SQL;VBA
+34357,Java;JavaScript;Kotlin;Objective-C;Scala;SQL;TypeScript
+34358,Bash/Shell/PowerShell;C;SQL;Other(s):
+34359,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+34360,Java;JavaScript;Rust;SQL
+34361,C#;HTML/CSS;JavaScript;SQL;Other(s):
+34362,SQL;Other(s):
+34363,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34364,C;C#;JavaScript;Objective-C;PHP
+34365,Elixir;Go;Ruby
+34366,HTML/CSS;JavaScript
+34367,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34368,C++;C#;Python
+34369,C#;HTML/CSS;JavaScript;SQL
+34370,C;C++;Python;Other(s):
+34371,Assembly;Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+34372,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+34373,JavaScript;Python;SQL;TypeScript
+34374,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+34375,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;SQL;VBA
+34376,C#;SQL;VBA
+34377,Go;SQL
+34378,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34379,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34380,Java
+34381,C++;Python
+34382,Bash/Shell/PowerShell;C#;Python
+34383,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34384,C;Java;JavaScript;Other(s):
+34385,Bash/Shell/PowerShell;C#;Go;Java;Python;R;Scala;SQL
+34386,R;SQL
+34387,Elixir;Python;Rust;Scala
+34388,Bash/Shell/PowerShell
+34389,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34390,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java
+34391,C;Erlang;F#
+34392,Java;JavaScript
+34393,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34394,HTML/CSS;Java;JavaScript
+34395,Assembly;C;Java;Python;Other(s):
+34396,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+34397,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34398,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34399,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Swift
+34400,C;HTML/CSS;Java;PHP;Python;SQL
+34401,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript;VBA
+34402,C++;C#;HTML/CSS;PHP;Python;SQL
+34403,HTML/CSS;Java;JavaScript
+34404,C;C++;HTML/CSS;JavaScript;Python;SQL
+34405,Bash/Shell/PowerShell;SQL
+34406,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34407,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34408,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+34409,C;C++;Python
+34410,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+34411,Bash/Shell/PowerShell;C;C++;Other(s):
+34412,Java;Python
+34413,C;C++;C#;Java;Other(s):
+34414,Python;R
+34415,C;C++;HTML/CSS;JavaScript;Python;Ruby;Swift;TypeScript
+34416,HTML/CSS;Python;SQL
+34417,HTML/CSS;Java;JavaScript;Python;SQL
+34418,Kotlin;SQL;Swift
+34419,Bash/Shell/PowerShell;JavaScript;PHP;SQL;Other(s):
+34420,C++;HTML/CSS;JavaScript
+34421,Bash/Shell/PowerShell;Go;JavaScript;Ruby;Rust;Swift
+34422,C#;HTML/CSS;JavaScript;SQL
+34423,C#
+34424,Java;Python;SQL
+34425,C#;HTML/CSS;JavaScript;SQL
+34426,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+34427,HTML/CSS;JavaScript;PHP;SQL
+34428,C++;Java;Python
+34429,HTML/CSS
+34430,C#;Java;JavaScript;Ruby
+34431,Bash/Shell/PowerShell;C;C++;Ruby
+34432,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+34433,HTML/CSS;Java;JavaScript;SQL
+34434,JavaScript;Python;Rust;SQL
+34435,HTML/CSS;Java;JavaScript;SQL
+34436,C++;Go;HTML/CSS;JavaScript;Ruby
+34437,Java
+34438,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift
+34439,HTML/CSS;JavaScript;Python
+34440,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34441,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+34442,C++;C#;HTML/CSS;Java;JavaScript;Python
+34443,C;C++;SQL
+34444,C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+34445,C#;Java
+34446,HTML/CSS;JavaScript;PHP;SQL
+34447,C++;HTML/CSS
+34448,C;C++;Java;Kotlin
+34449,HTML/CSS;Java;JavaScript;TypeScript
+34450,Python
+34451,HTML/CSS;JavaScript;Ruby
+34452,HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift
+34453,HTML/CSS;JavaScript;PHP
+34454,C;Java
+34455,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+34456,Java;Python;SQL
+34457,C;C#
+34458,C++;C#
+34459,Bash/Shell/PowerShell;Dart;Java;Kotlin
+34460,Java;R;SQL;Other(s):
+34461,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+34462,C++;Java;Python;Scala;SQL
+34463,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+34464,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+34465,HTML/CSS;JavaScript;PHP
+34466,C
+34467,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34468,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34469,HTML/CSS;Java;JavaScript;PHP;SQL
+34470,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP
+34471,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+34472,Assembly;C;C++;HTML/CSS;Java;SQL
+34473,C;C++;HTML/CSS;JavaScript;PHP;Python
+34474,Java;Python
+34475,Java;Objective-C;Swift
+34476,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;TypeScript
+34477,C#;HTML/CSS;Java;JavaScript;Python;SQL
+34478,C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+34479,HTML/CSS;JavaScript;Python
+34480,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34482,HTML/CSS;JavaScript;Python;SQL
+34483,C;Go;JavaScript;Python;Ruby;SQL
+34484,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python
+34485,C#;TypeScript
+34486,C#;HTML/CSS;JavaScript;SQL
+34487,C#;HTML/CSS;JavaScript;Python;Rust;SQL;Swift;WebAssembly
+34488,C++
+34489,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+34490,HTML/CSS;JavaScript
+34491,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+34492,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34493,Python;R
+34494,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+34495,HTML/CSS;JavaScript;Python
+34496,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34497,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+34498,C#;Java;SQL;Swift;TypeScript
+34499,Bash/Shell/PowerShell;C;C++;Objective-C;Python;Other(s):
+34500,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;SQL
+34501,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34502,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34503,Bash/Shell/PowerShell;C;C++;Go;Python;Scala;WebAssembly
+34504,HTML/CSS;JavaScript;PHP
+34505,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+34506,C++;Python
+34507,Java;Kotlin
+34508,HTML/CSS;JavaScript
+34509,C++;JavaScript;Kotlin;Rust;TypeScript;WebAssembly
+34510,Ruby
+34511,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Swift
+34512,C;C++;HTML/CSS;JavaScript;SQL
+34513,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34514,Bash/Shell/PowerShell;C#
+34515,C#;Java;Ruby
+34516,HTML/CSS;JavaScript;PHP;TypeScript
+34517,Java
+34518,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34519,JavaScript;Python;Swift
+34520,Python
+34522,HTML/CSS;Java;JavaScript;SQL
+34523,Assembly;Bash/Shell/PowerShell;C++;Java;Python;SQL
+34524,HTML/CSS;Java;JavaScript;Kotlin
+34525,Dart;HTML/CSS;JavaScript;Python
+34526,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+34527,Go;HTML/CSS;JavaScript;Ruby;SQL
+34528,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+34529,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Swift;TypeScript;VBA
+34530,C;HTML/CSS;JavaScript;PHP;SQL
+34531,JavaScript;Scala;SQL;TypeScript
+34532,Bash/Shell/PowerShell;Java
+34533,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+34534,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+34535,C;C#;Java;JavaScript;Python;SQL
+34536,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+34537,JavaScript;PHP;SQL
+34538,Python;R;SQL
+34539,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Rust;SQL
+34540,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+34541,Go;Java
+34542,HTML/CSS;JavaScript
+34543,Bash/Shell/PowerShell;JavaScript;Scala;SQL
+34544,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34545,Bash/Shell/PowerShell;Python
+34546,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+34547,Java;Python
+34548,HTML/CSS;Java;JavaScript;PHP;SQL
+34549,Go;Python
+34550,HTML/CSS;Java;Kotlin;Scala;TypeScript
+34551,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+34552,Bash/Shell/PowerShell;C
+34553,Java;JavaScript;Ruby;Scala;SQL;TypeScript
+34554,HTML/CSS;Java;JavaScript;Kotlin
+34555,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;Scala
+34556,Bash/Shell/PowerShell;JavaScript;Python
+34557,C;C++;Java;JavaScript;PHP;SQL
+34558,C#;F#;HTML/CSS;JavaScript;PHP;SQL
+34559,HTML/CSS;JavaScript;PHP;SQL
+34560,C;C#;Python
+34561,C;C++;C#;Java;JavaScript;SQL
+34562,HTML/CSS;JavaScript;Python
+34563,Bash/Shell/PowerShell;Python
+34564,C;C++;C#;Java;PHP
+34565,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34566,Bash/Shell/PowerShell;Java;Kotlin
+34567,C++;C#;SQL
+34568,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+34569,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+34570,C;C++;Java;JavaScript;SQL;Other(s):
+34571,C#;Go;HTML/CSS;SQL;TypeScript
+34572,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+34573,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+34574,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+34575,Java;JavaScript
+34576,Bash/Shell/PowerShell;Ruby;SQL
+34577,C#;Java;JavaScript;SQL;TypeScript
+34578,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+34579,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+34580,Bash/Shell/PowerShell;C;C++;Python
+34581,C;Java;JavaScript;Python;SQL
+34582,Bash/Shell/PowerShell;C#;Python
+34583,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34584,HTML/CSS;JavaScript
+34585,C#;Elixir;F#;HTML/CSS;JavaScript;Python
+34586,Python;SQL
+34587,HTML/CSS;JavaScript
+34588,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34589,HTML/CSS;JavaScript;PHP;TypeScript
+34590,Java;Python;R;Other(s):
+34591,C#;HTML/CSS;JavaScript;SQL;VBA
+34592,Bash/Shell/PowerShell;Java
+34593,C#;JavaScript;SQL;TypeScript
+34594,Bash/Shell/PowerShell;C;C++;HTML/CSS;Objective-C;Swift;WebAssembly
+34595,Java;JavaScript;Python;TypeScript
+34596,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+34597,Bash/Shell/PowerShell;C;C++;Python;Ruby;Rust
+34598,C;C++;C#;Go;Objective-C;Python
+34599,C#;SQL
+34600,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+34601,Go;Java
+34602,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+34603,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+34604,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+34605,Java;Kotlin
+34606,HTML/CSS;Java;JavaScript;Kotlin;SQL
+34607,Assembly;C;C++;Python;R;Other(s):
+34608,HTML/CSS;Java;JavaScript;Python;TypeScript
+34609,C;Java;Python
+34610,F#;Rust
+34611,HTML/CSS;Java;R
+34612,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+34613,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+34614,C++;Python
+34615,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+34616,C#;HTML/CSS;JavaScript;SQL;Other(s):
+34617,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+34618,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34619,HTML/CSS;JavaScript;Python;TypeScript
+34620,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+34621,C++;C#;SQL;Other(s):
+34622,C;C++;HTML/CSS;JavaScript;PHP;SQL
+34623,HTML/CSS;Java;SQL;TypeScript
+34624,C#;HTML/CSS;JavaScript
+34625,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34626,Java;Kotlin
+34627,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+34628,C#;JavaScript;SQL;Other(s):
+34629,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+34630,Assembly;Bash/Shell/PowerShell;C;C++;Java
+34631,HTML/CSS;JavaScript
+34632,Objective-C;Swift
+34633,HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+34634,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;TypeScript;Other(s):
+34635,C;C++;Java;Python
+34636,HTML/CSS;Java;JavaScript;SQL
+34637,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+34638,C#;F#;Java;JavaScript;PHP;Python;SQL
+34639,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;VBA
+34640,C++;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL
+34641,Bash/Shell/PowerShell;Java;Scala;SQL
+34642,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+34643,JavaScript;PHP;Python;TypeScript
+34644,HTML/CSS;Java;JavaScript;Python;SQL
+34645,JavaScript;Python
+34647,C#;Java;Kotlin;Python;SQL
+34648,Assembly;HTML/CSS;Java;JavaScript;PHP;SQL
+34649,Bash/Shell/PowerShell;C++;Python;SQL
+34650,Bash/Shell/PowerShell;Java;TypeScript
+34651,C#;HTML/CSS;JavaScript;PHP;SQL
+34652,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+34654,HTML/CSS;JavaScript;TypeScript
+34655,C++;C#;HTML/CSS;PHP;SQL
+34656,Java
+34657,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+34658,HTML/CSS;Java;JavaScript;PHP
+34659,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+34660,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+34661,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+34662,HTML/CSS;JavaScript;TypeScript
+34663,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34664,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+34665,C++;C#;JavaScript;Other(s):
+34666,HTML/CSS;Java;Kotlin;Swift
+34667,C#;SQL
+34668,Java;JavaScript
+34669,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34670,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Ruby;SQL
+34671,Java
+34672,HTML/CSS;JavaScript
+34673,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;SQL
+34674,HTML/CSS;JavaScript;SQL
+34675,Bash/Shell/PowerShell;C;C++;Python;SQL
+34676,C++
+34677,Bash/Shell/PowerShell;C;C++;F#;Java;JavaScript;R;Scala;SQL
+34678,Bash/Shell/PowerShell;C++;HTML/CSS;Java;R;Scala;SQL
+34679,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34680,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+34681,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+34682,C++;Python;Ruby;SQL;Swift
+34683,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+34684,Java;Scala
+34685,HTML/CSS;JavaScript;Other(s):
+34686,C;C++;C#;Java;Python;R;SQL;Other(s):
+34687,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Kotlin;Python;SQL;Other(s):
+34688,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34689,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+34690,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+34691,HTML/CSS;JavaScript;TypeScript
+34692,Bash/Shell/PowerShell;Elixir;Erlang;Java;JavaScript;Objective-C;PHP;Swift
+34693,C#;HTML/CSS;JavaScript;SQL
+34694,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL;TypeScript
+34695,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Scala
+34696,Python;SQL
+34697,C++;Python
+34698,Go;JavaScript;Kotlin;Objective-C;PHP;Swift;TypeScript
+34699,Assembly;C;C++;C#;Java;Python;SQL;Other(s):
+34700,C;C++;C#;Elixir;Erlang;JavaScript;Python;SQL
+34701,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+34702,C#;HTML/CSS;JavaScript;TypeScript
+34703,C;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+34704,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+34705,Go;HTML/CSS;Java;JavaScript;SQL;Other(s):
+34706,C;C++;Clojure;Go;JavaScript;Python;Ruby;Rust;SQL;Other(s):
+34707,C#;HTML/CSS;JavaScript;SQL
+34709,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+34710,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+34711,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+34712,Go;Java;Scala
+34713,C;C++
+34714,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+34715,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+34716,JavaScript;TypeScript
+34717,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+34718,PHP;SQL
+34719,C;C++;HTML/CSS;JavaScript;TypeScript
+34720,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+34721,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+34722,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;SQL;Other(s):
+34723,HTML/CSS;JavaScript;Other(s):
+34724,Go;HTML/CSS;JavaScript;TypeScript
+34725,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;Ruby;Scala;SQL
+34726,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;TypeScript
+34727,Elixir;HTML/CSS;JavaScript;PHP;Ruby
+34728,HTML/CSS;Java;JavaScript
+34729,HTML/CSS;JavaScript;PHP;Ruby;SQL
+34730,C#;HTML/CSS;PHP;Python;SQL;TypeScript;VBA;Other(s):
+34731,Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL
+34732,Java
+34733,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+34734,C#;F#;HTML/CSS;Java;JavaScript;TypeScript
+34735,C++;C#;HTML/CSS;Python;R;SQL
+34736,Java;JavaScript;SQL;TypeScript
+34737,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+34738,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34739,C++;Java;Python;R
+34740,Assembly;Bash/Shell/PowerShell;PHP;SQL;VBA
+34741,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34742,Assembly;C#;HTML/CSS;VBA
+34743,Assembly;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+34744,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+34745,Bash/Shell/PowerShell;C++;HTML/CSS;Java;SQL
+34746,HTML/CSS;Java;JavaScript;Python;Other(s):
+34747,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+34748,C#;JavaScript;SQL;Other(s):
+34749,Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34750,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34751,C#;SQL
+34752,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34753,C++;Python
+34754,C#;HTML/CSS;JavaScript;SQL;Other(s):
+34755,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34756,Bash/Shell/PowerShell;C++;Python;Other(s):
+34757,Java;SQL
+34758,C#;JavaScript;VBA
+34759,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+34760,C#;SQL
+34761,C#;HTML/CSS;Kotlin;Python
+34762,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+34763,Java;Kotlin
+34764,Python;Other(s):
+34765,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Swift
+34766,C;HTML/CSS;JavaScript;Python;SQL
+34767,C++;HTML/CSS;Python
+34768,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+34769,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;VBA
+34770,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+34771,HTML/CSS;JavaScript;TypeScript
+34772,Bash/Shell/PowerShell;Java;Swift
+34773,Bash/Shell/PowerShell;Java;JavaScript;Python
+34774,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+34775,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34776,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+34778,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34779,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL;Other(s):
+34780,JavaScript;PHP;SQL
+34781,Python;Other(s):
+34782,Java;JavaScript;Ruby;SQL
+34783,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;R
+34784,Python
+34785,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+34786,Go;HTML/CSS;JavaScript;PHP
+34787,Bash/Shell/PowerShell;C;Go;JavaScript;Python
+34789,Swift
+34790,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34791,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+34792,Java;Scala
+34793,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL;TypeScript
+34794,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+34795,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34796,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Ruby;SQL;TypeScript
+34797,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+34798,Python
+34799,Swift
+34800,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python
+34801,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+34802,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+34803,HTML/CSS;JavaScript;PHP;Python;Ruby
+34804,Assembly;C++;C#;HTML/CSS;PHP
+34805,C++;C#;Python;Scala;SQL
+34806,HTML/CSS;Java;JavaScript;PHP;Python
+34807,C;Erlang;Python
+34808,JavaScript
+34809,HTML/CSS;JavaScript;Python;SQL;Other(s):
+34810,C#;HTML/CSS;JavaScript;SQL;Other(s):
+34811,HTML/CSS;Java;JavaScript;PHP;TypeScript;Other(s):
+34812,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+34813,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+34814,C++;C#;Java;JavaScript;SQL;TypeScript
+34815,C++;C#;JavaScript;Objective-C;PHP
+34816,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript;VBA
+34817,HTML/CSS;JavaScript;TypeScript
+34818,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34819,C#;Java;JavaScript;Python;SQL
+34820,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+34821,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+34822,HTML/CSS;JavaScript;TypeScript
+34823,Python;Scala
+34824,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+34825,Ruby
+34826,Assembly;C++;HTML/CSS;Java;Python;SQL;VBA
+34827,C++;Python
+34828,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34829,JavaScript;Ruby
+34830,C#
+34831,C++;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+34832,Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+34833,C#;HTML/CSS;JavaScript;SQL
+34834,C#;Python
+34835,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+34836,Bash/Shell/PowerShell
+34837,C++;HTML/CSS;JavaScript;Python;TypeScript
+34838,C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+34839,HTML/CSS;JavaScript;PHP;SQL
+34840,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL
+34841,HTML/CSS;Java;JavaScript;PHP;Python
+34842,HTML/CSS;JavaScript;PHP
+34843,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+34844,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+34845,C++;C#;HTML/CSS;Java;Objective-C;Python;Swift
+34846,Objective-C;Swift
+34847,Java;JavaScript;SQL
+34848,HTML/CSS;JavaScript;PHP;SQL
+34849,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+34850,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34851,Java;Python;R;SQL
+34852,C++;JavaScript;Python;TypeScript
+34853,C#;SQL;TypeScript
+34854,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+34855,C++;Java;JavaScript
+34856,Java;Kotlin
+34857,Java;JavaScript
+34858,Python;Rust;SQL
+34859,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34860,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+34861,C#;HTML/CSS;JavaScript;SQL
+34862,HTML/CSS;JavaScript;Python;SQL;TypeScript
+34863,Bash/Shell/PowerShell;Java;JavaScript;Python;R
+34864,Bash/Shell/PowerShell;C++;Python
+34865,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+34866,C#;HTML/CSS;JavaScript;PHP;SQL
+34867,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34868,HTML/CSS;JavaScript;TypeScript
+34869,HTML/CSS;JavaScript
+34870,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34871,Bash/Shell/PowerShell;Python;Ruby
+34872,HTML/CSS;JavaScript
+34873,Java;Python;R;SQL;VBA
+34874,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+34875,C++;C#;HTML/CSS;Java;PHP;Python;Ruby
+34876,C++
+34878,Go;JavaScript;Kotlin;TypeScript
+34879,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34880,C#;HTML/CSS;JavaScript;SQL
+34881,C++;SQL
+34882,Bash/Shell/PowerShell;C;Other(s):
+34883,Java;Kotlin
+34884,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34885,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript
+34886,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+34887,C#;HTML/CSS
+34888,Bash/Shell/PowerShell;Python;R
+34889,C++;Java;Kotlin
+34890,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+34891,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34892,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34894,C#;HTML/CSS;JavaScript;PHP;SQL
+34895,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+34896,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34897,C#;SQL
+34898,C;C++;Python
+34899,Bash/Shell/PowerShell;C;C++;Python
+34900,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;TypeScript
+34901,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34902,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+34903,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+34904,HTML/CSS;JavaScript;SQL
+34905,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+34906,HTML/CSS;Java;JavaScript;SQL
+34907,Assembly;C;Java;SQL
+34908,R
+34909,Go;JavaScript;TypeScript
+34910,Java
+34911,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;Other(s):
+34912,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34913,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+34914,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+34915,Java;Scala;SQL
+34916,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;R
+34917,Java;Kotlin;Ruby
+34918,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+34919,C;C++;C#;Go;JavaScript;Rust;TypeScript;WebAssembly
+34920,C#;HTML/CSS;JavaScript;SQL;TypeScript
+34921,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+34922,HTML/CSS;Java;JavaScript;PHP;SQL
+34923,Other(s):
+34924,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;TypeScript;WebAssembly;Other(s):
+34925,Go;Java;Kotlin;Python;Swift
+34926,Java;JavaScript;Python;SQL;Other(s):
+34927,Assembly;C;JavaScript;Python;Rust
+34928,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+34929,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34930,Java;SQL
+34931,Assembly;Bash/Shell/PowerShell;C;C++
+34932,Assembly;C;C++;Python
+34933,C;C++;HTML/CSS;PHP;R;SQL;Other(s):
+34934,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+34935,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Swift
+34936,JavaScript;PHP;SQL
+34937,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;VBA
+34938,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+34939,Objective-C;Swift
+34940,Bash/Shell/PowerShell;Java;SQL;TypeScript;Other(s):
+34941,C;C++;C#;Java;PHP;Python;SQL
+34942,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP
+34943,C#;HTML/CSS;JavaScript
+34944,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+34945,Bash/Shell/PowerShell;C;C++;C#;Python;R;SQL
+34946,JavaScript;Other(s):
+34947,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+34949,Java;JavaScript;Python
+34950,HTML/CSS;Java;JavaScript;Python;Scala
+34951,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift
+34952,HTML/CSS;JavaScript;PHP;SQL
+34953,Bash/Shell/PowerShell;C++;Java;Kotlin;Python;SQL
+34954,HTML/CSS;Java;JavaScript;SQL
+34955,C#;HTML/CSS;JavaScript;SQL
+34956,F#;HTML/CSS;Java;JavaScript;TypeScript
+34957,Bash/Shell/PowerShell;Python;Other(s):
+34958,Bash/Shell/PowerShell;C;C#;HTML/CSS;Ruby;SQL
+34959,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+34960,Bash/Shell/PowerShell;HTML/CSS;Java
+34961,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+34962,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+34963,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;Ruby;SQL;VBA
+34964,Bash/Shell/PowerShell;Go;Python
+34965,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+34966,Python;Scala;SQL
+34967,C;C++;HTML/CSS;Java;SQL
+34968,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;SQL
+34969,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Other(s):
+34970,C;C++;Java;JavaScript;Python;R;Ruby;Rust;SQL
+34971,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+34972,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL
+34973,Other(s):
+34974,C#;Java;JavaScript;Python;SQL
+34975,C#
+34976,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+34977,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34978,HTML/CSS;JavaScript;PHP;SQL
+34979,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+34980,Assembly;Bash/Shell/PowerShell;Python
+34981,Python;R;SQL
+34982,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+34983,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+34984,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+34985,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+34986,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+34987,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;SQL;VBA
+34988,C#;HTML/CSS;JavaScript;SQL
+34989,SQL;VBA
+34990,HTML/CSS;Java;JavaScript;Kotlin;PHP
+34991,Python
+34992,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+34993,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;Scala;SQL
+34994,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+34995,Java;SQL
+34996,C#;Java;JavaScript
+34997,Bash/Shell/PowerShell;JavaScript;Python;SQL;VBA
+34998,HTML/CSS;JavaScript;Python;SQL
+34999,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+35000,C#;Objective-C;Python
+35001,C;C++;HTML/CSS;JavaScript;PHP;Python
+35002,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+35003,C#;HTML/CSS;JavaScript;SQL
+35004,Go;HTML/CSS;JavaScript;Python
+35005,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+35006,HTML/CSS;JavaScript;PHP
+35007,Bash/Shell/PowerShell;C#;Python;R;SQL;VBA
+35008,SQL
+35009,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+35011,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+35012,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+35013,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+35014,C#;SQL
+35015,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+35016,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+35017,C;C++;HTML/CSS;Java;JavaScript;SQL
+35018,JavaScript;Python
+35019,C#;HTML/CSS;JavaScript;TypeScript
+35020,C;C++;Java;JavaScript;SQL
+35021,C#;HTML/CSS;Java;JavaScript;TypeScript
+35022,JavaScript;Python;SQL
+35023,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+35024,JavaScript;Python;TypeScript
+35025,C;C++;Java;JavaScript
+35026,C;C++;Java
+35027,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;TypeScript
+35028,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+35029,HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+35030,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+35031,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+35032,Objective-C;Swift
+35033,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Swift
+35034,Bash/Shell/PowerShell;Python
+35035,Bash/Shell/PowerShell;Python;R;SQL
+35036,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35037,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript
+35038,Bash/Shell/PowerShell;C;C++;Clojure;Erlang;Go;Java;JavaScript;Objective-C;Ruby;WebAssembly
+35039,Go;Java;Python;R;Scala;SQL
+35040,C;C#;HTML/CSS;Java;JavaScript;Python
+35041,Go;HTML/CSS;Python;SQL
+35042,Bash/Shell/PowerShell;PHP
+35043,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+35044,HTML/CSS;Java;JavaScript;Ruby
+35045,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+35046,Assembly;C;C++;C#;Java;PHP;Ruby;SQL;VBA
+35047,C;HTML/CSS;JavaScript;PHP;Python;SQL
+35048,Bash/Shell/PowerShell;C++;C#;SQL
+35049,HTML/CSS;JavaScript;Ruby
+35050,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+35051,C;C++;C#;PHP;TypeScript
+35052,Assembly;C;C++;Java;Ruby;SQL;Other(s):
+35053,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35054,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+35055,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python
+35056,Java
+35057,Java;Python
+35058,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+35059,Go;Java;JavaScript;Kotlin;Rust;SQL
+35060,HTML/CSS;JavaScript
+35061,Assembly;Bash/Shell/PowerShell;C;C++;Python;Ruby;Scala
+35062,HTML/CSS;JavaScript;Ruby;SQL
+35064,Bash/Shell/PowerShell;C#;SQL
+35065,HTML/CSS;Java;JavaScript;SQL
+35066,JavaScript
+35067,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+35068,Bash/Shell/PowerShell;C#;Java
+35069,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35070,C;HTML/CSS;Java;TypeScript;VBA
+35071,C#;HTML/CSS;JavaScript;SQL
+35072,Java
+35074,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Kotlin;TypeScript
+35075,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+35076,C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+35077,JavaScript
+35078,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35079,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+35080,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+35081,JavaScript;TypeScript
+35082,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+35083,Bash/Shell/PowerShell;C#;Elixir;F#;Kotlin;SQL
+35084,Java;SQL
+35085,Bash/Shell/PowerShell;C++;C#;F#;JavaScript;SQL;TypeScript;VBA
+35086,C#;Java;JavaScript;Python
+35087,HTML/CSS;PHP;Ruby;SQL
+35088,Java;Python
+35089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+35090,Assembly;C++;Python;Scala
+35091,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Rust;SQL
+35092,Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35093,Bash/Shell/PowerShell;C++;Python
+35094,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+35095,Bash/Shell/PowerShell;Java
+35096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35097,Bash/Shell/PowerShell;SQL
+35098,Python
+35099,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+35100,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+35101,Bash/Shell/PowerShell;Java;JavaScript;SQL;Other(s):
+35102,Bash/Shell/PowerShell;Python;SQL
+35103,C#;F#
+35104,C++;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+35105,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35106,Java;JavaScript;SQL;TypeScript
+35107,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+35108,Bash/Shell/PowerShell;C;JavaScript;Objective-C
+35109,HTML/CSS;Java;SQL
+35110,C#;Java
+35111,Assembly;HTML/CSS;JavaScript;Python;Rust;TypeScript;WebAssembly
+35112,C++;HTML/CSS;Java;JavaScript;TypeScript
+35113,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+35114,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35115,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+35116,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;SQL
+35117,Java;SQL
+35118,C;C++;HTML/CSS;VBA;Other(s):
+35119,C#;HTML/CSS;JavaScript;SQL
+35120,Clojure
+35121,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+35122,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+35123,C#;JavaScript
+35124,Objective-C;Swift
+35125,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+35126,Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35127,C#;Java;SQL
+35128,Java;JavaScript;PHP;Python
+35129,HTML/CSS;JavaScript;PHP;SQL
+35130,Assembly
+35131,C;Go;HTML/CSS;JavaScript
+35132,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+35133,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35134,JavaScript;SQL;TypeScript
+35135,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+35136,Bash/Shell/PowerShell;Go;JavaScript;Python;R;SQL
+35137,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript
+35138,HTML/CSS;Java;JavaScript
+35139,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+35140,Java;JavaScript
+35141,C#;JavaScript;SQL
+35142,Bash/Shell/PowerShell;PHP;SQL
+35143,Bash/Shell/PowerShell;JavaScript;Python;R
+35144,HTML/CSS;JavaScript
+35145,Java;SQL
+35146,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;VBA
+35147,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+35148,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+35149,C;C++;Java;Python
+35150,JavaScript;Ruby;Other(s):
+35151,Bash/Shell/PowerShell;JavaScript;Python;Rust;Scala;SQL;TypeScript
+35152,Python;R;SQL
+35153,C#;SQL
+35154,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+35155,C#
+35156,C++;C#
+35157,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+35158,C#;HTML/CSS;Java;JavaScript;SQL
+35159,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+35160,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Python
+35161,Bash/Shell/PowerShell;C;C++;Python
+35162,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+35163,C#;SQL
+35164,HTML/CSS;JavaScript;TypeScript
+35165,Bash/Shell/PowerShell;Go;Ruby
+35166,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35167,F#;HTML/CSS;JavaScript;R;SQL;TypeScript;Other(s):
+35168,C++
+35169,Bash/Shell/PowerShell;Go;Python
+35170,HTML/CSS;Java;JavaScript;Scala
+35171,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35172,R;SQL
+35173,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+35174,Java;JavaScript;Objective-C;Swift;Other(s):
+35175,Bash/Shell/PowerShell;R
+35176,C#;JavaScript;TypeScript
+35177,Java;Python
+35178,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35179,C;Java;Python
+35180,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;R;SQL;Other(s):
+35181,Swift
+35182,HTML/CSS;Java;JavaScript;Python;TypeScript
+35183,HTML/CSS;JavaScript;PHP;SQL
+35184,Java
+35185,HTML/CSS;Java;JavaScript;SQL
+35186,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+35187,C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+35188,C#;HTML/CSS;JavaScript;SQL
+35189,JavaScript;SQL;TypeScript
+35190,HTML/CSS;JavaScript;PHP
+35191,C#;HTML/CSS;JavaScript
+35192,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+35193,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+35194,Swift
+35195,C++;Java;Python
+35196,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL;Other(s):
+35197,Assembly;Bash/Shell/PowerShell;C;Python;Ruby;SQL;TypeScript;WebAssembly;Other(s):
+35198,HTML/CSS;JavaScript;PHP;SQL
+35199,HTML/CSS;PHP;Python;SQL
+35200,HTML/CSS;Java;JavaScript;PHP;SQL
+35203,C#;Python;SQL
+35204,C;HTML/CSS;JavaScript;Ruby;SQL
+35205,C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+35206,HTML/CSS;JavaScript;Python;Ruby
+35207,HTML/CSS;JavaScript;SQL;TypeScript
+35208,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+35209,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+35210,C#;HTML/CSS;JavaScript;Python
+35211,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+35212,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+35213,Assembly
+35214,Bash/Shell/PowerShell;C++;Python
+35215,Java;Kotlin;TypeScript
+35216,HTML/CSS;JavaScript
+35217,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;Other(s):
+35218,JavaScript;Swift
+35219,Assembly;C++;C#;HTML/CSS;Java;Scala
+35220,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+35221,HTML/CSS;JavaScript;TypeScript
+35222,HTML/CSS;JavaScript;PHP;Python;SQL
+35223,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+35224,HTML/CSS;JavaScript
+35225,C#;HTML/CSS;JavaScript
+35226,Java;Other(s):
+35227,JavaScript;Python;R;SQL
+35228,HTML/CSS;JavaScript;PHP
+35229,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35230,HTML/CSS;JavaScript;PHP
+35232,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;SQL
+35233,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;R;SQL
+35235,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+35236,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Swift
+35237,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35238,HTML/CSS;Java;JavaScript;SQL;Swift;Other(s):
+35239,C;C++;Go;HTML/CSS;JavaScript;Python;Ruby
+35240,C;HTML/CSS;JavaScript;PHP;SQL
+35241,HTML/CSS;Java;JavaScript;PHP;SQL
+35242,C++;C#;HTML/CSS;Java;Python;Other(s):
+35243,C;C++;C#;Dart;Elixir;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+35244,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+35245,Assembly;C;C++;C#;Python
+35246,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35247,PHP
+35248,Bash/Shell/PowerShell;C#;SQL;VBA
+35249,Bash/Shell/PowerShell;Python;SQL
+35250,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+35251,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+35252,C;C++;HTML/CSS;Python;SQL
+35253,C;HTML/CSS;Java;JavaScript;PHP;SQL
+35254,C;Objective-C;Other(s):
+35255,Go;Rust
+35256,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35257,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+35258,C#;HTML/CSS;JavaScript;SQL
+35259,Rust
+35260,R
+35261,Bash/Shell/PowerShell;C;Python
+35262,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35263,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;SQL
+35264,C#;PHP;SQL;VBA
+35265,JavaScript;Python;Swift
+35266,Swift
+35267,C#;JavaScript;SQL;TypeScript
+35268,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Rust;Scala;SQL;Swift;Other(s):
+35269,HTML/CSS;PHP;SQL
+35270,C++;Python;Rust
+35271,Assembly;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+35272,Kotlin;PHP
+35273,C;HTML/CSS;JavaScript;Python;SQL
+35274,C;HTML/CSS;Java;JavaScript;PHP;SQL
+35275,JavaScript
+35276,HTML/CSS;JavaScript;PHP;SQL
+35277,Python
+35278,Bash/Shell/PowerShell;Java;JavaScript;Python
+35279,C#;HTML/CSS;JavaScript;SQL
+35280,C#;HTML/CSS;JavaScript;SQL;VBA
+35281,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35282,Bash/Shell/PowerShell;C;C++;Java;Python
+35283,Bash/Shell/PowerShell;Java;Python;SQL
+35284,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35285,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+35286,C#;HTML/CSS;JavaScript;SQL
+35287,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+35288,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35289,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+35290,HTML/CSS;JavaScript;PHP
+35291,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+35292,C;Objective-C;Swift
+35293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript;Other(s):
+35294,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+35295,Assembly;Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;SQL;VBA
+35296,C#;HTML/CSS;JavaScript;Swift;TypeScript
+35297,HTML/CSS;JavaScript;PHP;SQL
+35298,Java;JavaScript;SQL
+35299,Java;Python
+35300,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala
+35301,HTML/CSS;JavaScript;Python;TypeScript
+35302,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+35303,Bash/Shell/PowerShell;C;HTML/CSS;Python
+35304,Go;HTML/CSS;Python
+35305,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+35306,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+35307,C;JavaScript;Python
+35308,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+35309,C#;HTML/CSS;JavaScript
+35310,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+35311,C#;HTML/CSS;JavaScript;PHP;SQL
+35313,C++;C#;HTML/CSS;PHP;SQL;VBA
+35314,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+35315,HTML/CSS;JavaScript;PHP;SQL
+35316,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+35317,C;Java;Python
+35318,Bash/Shell/PowerShell;C;C++;Java;Objective-C;PHP;Python;Swift
+35319,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;Scala;SQL;Other(s):
+35320,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+35321,Bash/Shell/PowerShell;C;C++;Java;Python;R;Scala
+35322,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+35323,Bash/Shell/PowerShell;Python;R;SQL
+35324,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+35325,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35326,Bash/Shell/PowerShell;C#;SQL
+35327,C#;HTML/CSS;Java;SQL
+35328,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35329,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+35330,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+35331,HTML/CSS;Java;JavaScript;SQL;VBA
+35332,HTML/CSS;JavaScript;Python;SQL;TypeScript
+35333,C#;HTML/CSS;JavaScript;SQL
+35334,HTML/CSS;Java;JavaScript;SQL
+35335,C;Java;Python
+35336,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35337,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35338,C;C#;HTML/CSS;Java;JavaScript;Python;Ruby
+35339,Java
+35340,HTML/CSS;JavaScript;PHP;Ruby;SQL
+35341,C++;HTML/CSS;Java;JavaScript;SQL
+35342,C#;Java;JavaScript;SQL;TypeScript
+35343,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+35344,C#;JavaScript;PHP;SQL
+35345,Bash/Shell/PowerShell;C#;Clojure;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala;SQL
+35346,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+35347,C;C++
+35348,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;VBA
+35349,Bash/Shell/PowerShell;SQL
+35350,Bash/Shell/PowerShell;Java;JavaScript;Ruby;Rust;Scala
+35351,Bash/Shell/PowerShell;Python;SQL
+35352,C#;HTML/CSS;Python;SQL
+35353,HTML/CSS;JavaScript;PHP;Python;SQL
+35354,HTML/CSS;JavaScript;Ruby
+35355,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35356,HTML/CSS;JavaScript;Python
+35357,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35358,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+35359,HTML/CSS;JavaScript;Python;Ruby;SQL
+35360,C++;C#;HTML/CSS;Java;SQL;TypeScript
+35361,Java
+35362,HTML/CSS;PHP;Python;SQL
+35363,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+35364,Bash/Shell/PowerShell;C#;F#;HTML/CSS
+35365,SQL
+35366,C;C++;C#;Java;JavaScript;Objective-C;Python;SQL;Swift
+35367,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35368,HTML/CSS;JavaScript;Ruby;SQL
+35369,C#;TypeScript
+35370,C#;HTML/CSS;JavaScript;SQL
+35371,Java;JavaScript;Python;SQL
+35372,C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+35374,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+35375,Bash/Shell/PowerShell;C#
+35376,C;C++;Go;HTML/CSS;Java;JavaScript;Python;Swift
+35377,Dart;Java;Kotlin;Other(s):
+35378,C;C#;Dart;Elixir;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+35379,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+35380,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift
+35381,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+35382,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35383,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+35384,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+35385,HTML/CSS;JavaScript;PHP;Python;SQL
+35386,HTML/CSS;Java;JavaScript;PHP;SQL
+35387,Java;Kotlin;Ruby
+35388,C;C++;Java;SQL
+35389,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;PHP;Python;Ruby;SQL
+35391,Java
+35392,C#;HTML/CSS;JavaScript
+35393,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+35394,Bash/Shell/PowerShell;Java;Python;SQL
+35395,C#;HTML/CSS;JavaScript;TypeScript
+35396,HTML/CSS;Java;JavaScript;Scala;TypeScript
+35397,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+35398,Bash/Shell/PowerShell;C;Java;Python;SQL
+35399,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+35400,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35401,HTML/CSS;JavaScript;PHP;Python;TypeScript;Other(s):
+35402,C;Java;R
+35403,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+35404,C
+35405,HTML/CSS;Java;JavaScript;Other(s):
+35406,JavaScript;Ruby;TypeScript
+35407,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+35408,HTML/CSS;JavaScript;PHP;Python
+35409,C#;HTML/CSS;Java;JavaScript;SQL
+35410,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+35411,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+35412,C#;JavaScript;SQL;TypeScript
+35413,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL;TypeScript;VBA
+35414,C;HTML/CSS;Java;JavaScript;Python;TypeScript
+35415,C++;Java;Python
+35416,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+35417,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+35418,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35419,C;Java;Python;Scala
+35420,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+35421,R;SQL
+35422,Assembly;C;C++;Java;JavaScript;PHP;SQL
+35423,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+35424,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+35425,Bash/Shell/PowerShell;Kotlin;Objective-C;Python;Ruby;Swift
+35426,C#;HTML/CSS;Java;Kotlin;Python;SQL
+35427,HTML/CSS;JavaScript;Python;R;SQL
+35428,C++;Java;Other(s):
+35429,C++;HTML/CSS;JavaScript;PHP
+35430,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35431,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+35432,C++;C#;Go;HTML/CSS;Java;JavaScript
+35433,JavaScript;TypeScript
+35434,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+35435,Bash/Shell/PowerShell;Java;JavaScript;Other(s):
+35436,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript;Other(s):
+35437,HTML/CSS;JavaScript;Ruby;SQL
+35438,HTML/CSS;JavaScript
+35439,Assembly;Bash/Shell/PowerShell;C;Java;Python
+35440,C#;JavaScript;SQL
+35441,C#;HTML/CSS;Java;SQL
+35442,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Scala;SQL;TypeScript;WebAssembly
+35443,Bash/Shell/PowerShell;C++;C#;HTML/CSS;PHP;R;SQL;TypeScript;VBA
+35444,HTML/CSS;JavaScript;PHP;TypeScript
+35445,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+35446,SQL
+35447,Java;Kotlin
+35448,SQL
+35449,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+35450,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+35451,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+35452,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+35453,C++;Clojure;Java;JavaScript;Rust;Scala;WebAssembly
+35454,C++;Java
+35455,C;C++;C#;Java;SQL
+35456,Java;Scala
+35457,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+35458,Bash/Shell/PowerShell;C;Go;JavaScript;Python;Ruby
+35459,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+35460,Bash/Shell/PowerShell;SQL
+35461,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+35462,HTML/CSS;Java;JavaScript;Kotlin
+35463,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+35464,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+35465,Bash/Shell/PowerShell;Java;Python
+35466,Python;Other(s):
+35467,C#;Java;JavaScript;PHP;SQL
+35468,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+35469,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Rust
+35470,Bash/Shell/PowerShell;Java;JavaScript
+35471,Bash/Shell/PowerShell;C;C++;Python
+35472,C;C++;HTML/CSS
+35474,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35476,C#;HTML/CSS;JavaScript;TypeScript
+35477,C++;Dart;HTML/CSS;Java
+35478,Dart;Objective-C;R
+35479,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript
+35480,Assembly;C;C++;C#;Java;Kotlin
+35481,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+35482,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+35483,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL
+35484,HTML/CSS;JavaScript
+35485,C#;Java;Kotlin;SQL
+35486,HTML/CSS;Other(s):
+35487,HTML/CSS;JavaScript;Python
+35488,Bash/Shell/PowerShell;C;C++;Java;SQL
+35489,C#;Objective-C;Swift
+35490,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+35491,Go;HTML/CSS;JavaScript;Python
+35492,Assembly;Bash/Shell/PowerShell
+35493,Bash/Shell/PowerShell;C#;F#;Java;JavaScript;SQL;TypeScript
+35494,C;HTML/CSS;Java;JavaScript;PHP;SQL
+35495,HTML/CSS;JavaScript;Python;TypeScript
+35496,Kotlin;Other(s):
+35497,Elixir;HTML/CSS;JavaScript;TypeScript;VBA
+35498,C;C++;Python
+35499,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+35500,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+35501,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+35502,Bash/Shell/PowerShell;HTML/CSS;Python;R
+35503,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+35504,C#;HTML/CSS;JavaScript;PHP;SQL
+35505,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+35506,JavaScript;PHP;SQL
+35507,Assembly;Java;JavaScript
+35508,C;C++;C#;PHP
+35509,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+35510,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+35511,HTML/CSS;Java;JavaScript;Python
+35512,C++;C#;HTML/CSS;Java;Kotlin;PHP
+35513,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+35514,C#;Python;SQL
+35515,HTML/CSS;Java;JavaScript;TypeScript
+35516,HTML/CSS;JavaScript;Python;SQL
+35517,Bash/Shell/PowerShell;C;C++
+35518,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+35519,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+35520,C;Go;Python;SQL
+35521,Python;Swift
+35522,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+35523,JavaScript;Python;SQL
+35524,Java;Kotlin;SQL;TypeScript
+35525,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+35526,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+35527,C;C++;C#;HTML/CSS
+35528,HTML/CSS;JavaScript;PHP;Ruby;SQL
+35529,HTML/CSS;JavaScript;Python;VBA
+35530,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+35531,C#;HTML/CSS;JavaScript;TypeScript
+35532,C++;Python
+35533,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+35534,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+35535,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+35536,C#;HTML/CSS;PHP;SQL
+35537,C#;Java
+35538,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35539,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+35540,C++;Java;JavaScript;TypeScript
+35541,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+35542,Bash/Shell/PowerShell;Elixir;HTML/CSS;Python;Ruby;SQL
+35543,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+35544,Bash/Shell/PowerShell;C#;R;SQL;VBA;Other(s):
+35545,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python
+35546,HTML/CSS;JavaScript;Objective-C;Ruby;TypeScript
+35547,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35548,Java
+35549,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+35550,HTML/CSS;JavaScript;PHP;Python;VBA
+35551,C;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript;Other(s):
+35552,C#;HTML/CSS;JavaScript
+35553,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+35554,C;C++
+35555,HTML/CSS;Java;JavaScript;Kotlin
+35556,Assembly;C;Java
+35557,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+35558,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+35559,C#;JavaScript;Scala;SQL;TypeScript
+35560,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL
+35561,HTML/CSS;Java;JavaScript;Python
+35562,PHP;Python;SQL
+35563,Bash/Shell/PowerShell;C++;Python;R;Other(s):
+35564,C;C++;HTML/CSS;Java;PHP;SQL
+35565,Java
+35566,HTML/CSS;JavaScript;Ruby;Rust;SQL
+35567,Java;JavaScript;Python
+35568,C#;SQL
+35569,HTML/CSS;JavaScript;Python
+35570,C#;Java;Python
+35571,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Ruby;SQL
+35572,Bash/Shell/PowerShell;Java;JavaScript;SQL
+35573,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35574,C#;Java;JavaScript;SQL
+35575,C#;HTML/CSS;JavaScript
+35576,Elixir;JavaScript;Ruby
+35577,HTML/CSS;JavaScript
+35578,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+35579,C#;HTML/CSS;JavaScript;TypeScript
+35580,Java;Python;SQL
+35581,Bash/Shell/PowerShell;HTML/CSS;SQL
+35582,Java;SQL
+35583,Bash/Shell/PowerShell;Java;JavaScript;Other(s):
+35584,Java;Kotlin
+35585,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+35586,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+35587,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+35588,Java;JavaScript;Kotlin;Ruby;TypeScript
+35589,C#;SQL
+35590,Java;Other(s):
+35591,C
+35592,Bash/Shell/PowerShell;C;C++;JavaScript;Python;TypeScript
+35593,Bash/Shell/PowerShell;C#;Python;R;SQL
+35594,HTML/CSS;JavaScript;Python;SQL;Swift
+35595,Java;JavaScript;Swift
+35596,Clojure;HTML/CSS;Java;JavaScript;SQL;Swift
+35597,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+35598,C#;F#;HTML/CSS;Ruby;SQL
+35599,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+35600,Bash/Shell/PowerShell;Go;Java;Python
+35601,C;HTML/CSS;Java;Python;SQL
+35602,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Swift
+35603,C++;HTML/CSS;JavaScript;Python;SQL
+35604,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+35605,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+35606,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+35607,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35608,HTML/CSS;JavaScript;TypeScript
+35609,Bash/Shell/PowerShell;C#;F#;HTML/CSS;R;Scala;SQL
+35610,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+35611,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+35612,JavaScript;Objective-C;PHP;Swift
+35613,C++;HTML/CSS
+35614,HTML/CSS;JavaScript
+35615,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35616,R
+35617,C;C++;Java
+35618,HTML/CSS;JavaScript
+35619,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;PHP;Python;SQL;Swift
+35620,Java;JavaScript;Kotlin
+35621,HTML/CSS;JavaScript;PHP
+35622,C#;HTML/CSS;Java;PHP;Ruby;SQL
+35624,HTML/CSS;JavaScript;Python;Swift;Other(s):
+35625,C#;Java;JavaScript
+35626,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+35627,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;Rust
+35628,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Rust;TypeScript;WebAssembly
+35629,C#;HTML/CSS;JavaScript
+35630,Go;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+35631,C++;Go;HTML/CSS;Java;Python
+35632,C;C++;HTML/CSS;Java;JavaScript;SQL
+35633,JavaScript;Ruby
+35634,Python
+35635,C++;C#;F#;Python
+35636,SQL;VBA;Other(s):
+35637,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+35638,HTML/CSS;Python;R
+35640,C;HTML/CSS;JavaScript;PHP;SQL
+35641,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+35642,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+35643,C#;HTML/CSS;JavaScript;SQL
+35644,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+35645,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+35646,HTML/CSS;Java;JavaScript;PHP;SQL
+35647,C;C++;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+35648,C#;SQL
+35649,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35650,C;C++;C#;Objective-C;PHP;SQL;Swift
+35651,C;Java;Objective-C;Swift
+35652,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+35653,Assembly;Bash/Shell/PowerShell;C;C++;Kotlin;Python;Rust
+35654,HTML/CSS;JavaScript;Python;Ruby
+35655,Assembly;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+35656,C#;SQL
+35657,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+35658,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+35660,HTML/CSS;Java;JavaScript;Python
+35661,HTML/CSS;JavaScript
+35662,Assembly;C#;Java;JavaScript;Python;SQL;TypeScript
+35663,C#;JavaScript
+35664,HTML/CSS;JavaScript
+35665,HTML/CSS;JavaScript
+35666,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+35667,HTML/CSS;JavaScript;PHP;SQL
+35668,HTML/CSS;JavaScript;PHP;Python;SQL
+35669,HTML/CSS;Java;JavaScript;Python;SQL
+35670,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala;SQL;TypeScript
+35671,Assembly;C;C++;Other(s):
+35672,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+35673,C#;HTML/CSS;JavaScript;SQL
+35674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35675,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35676,TypeScript
+35678,C;C++;Python
+35679,Bash/Shell/PowerShell;Java;Python;SQL
+35680,Bash/Shell/PowerShell;C;C++;Go;PHP;Python;SQL;Other(s):
+35681,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+35682,HTML/CSS;JavaScript;PHP;SQL
+35683,Java;Kotlin;Other(s):
+35684,HTML/CSS;Java;PHP
+35685,Clojure;HTML/CSS;JavaScript;PHP;Python
+35686,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+35687,JavaScript;Other(s):
+35688,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+35689,Java;JavaScript;Kotlin;Python;SQL
+35690,C++
+35691,HTML/CSS;JavaScript;PHP;Python;Other(s):
+35692,HTML/CSS;PHP
+35693,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Other(s):
+35694,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+35695,HTML/CSS;JavaScript
+35696,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;VBA
+35697,Bash/Shell/PowerShell;C#;Java;Python
+35698,C#;HTML/CSS;Java;SQL
+35699,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+35700,C#;SQL;TypeScript
+35701,C++;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+35702,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+35703,Clojure;Elixir;JavaScript;Kotlin;TypeScript
+35704,C#;JavaScript;PHP
+35705,Bash/Shell/PowerShell;C;Python
+35706,JavaScript;Python;Ruby;SQL;Other(s):
+35707,C;C++;HTML/CSS;JavaScript;PHP;SQL
+35708,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+35709,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+35710,C;C++;Java;Python
+35711,HTML/CSS;JavaScript;PHP;SQL
+35712,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+35713,C;C++;C#
+35714,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+35715,Bash/Shell/PowerShell;Dart;Go;Java;Kotlin;SQL
+35716,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+35717,PHP
+35718,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+35719,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python
+35720,C#;Other(s):
+35721,Bash/Shell/PowerShell;JavaScript;SQL;TypeScript
+35722,C#;JavaScript;SQL
+35723,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+35724,C#;HTML/CSS;JavaScript;TypeScript
+35725,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;SQL
+35726,Go;Java;Python;SQL
+35727,C#;JavaScript
+35728,Java;SQL
+35729,Python;Other(s):
+35730,R;SQL
+35732,Java;Kotlin;Objective-C;Swift
+35733,C;HTML/CSS;Java;Python;SQL
+35734,Assembly;C++;HTML/CSS;JavaScript;SQL;WebAssembly;Other(s):
+35735,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+35736,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+35737,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust
+35738,Bash/Shell/PowerShell;C;C++;HTML/CSS
+35739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+35740,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+35741,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Scala;SQL;Swift
+35742,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+35743,HTML/CSS;JavaScript
+35744,Bash/Shell/PowerShell;Java;Rust;Scala
+35745,Java;Python;Swift
+35746,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+35747,C;C#;Python;SQL;VBA;Other(s):
+35748,Bash/Shell/PowerShell;Java;SQL;Other(s):
+35749,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+35750,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+35751,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35752,Assembly;C++;HTML/CSS;PHP;Other(s):
+35753,Bash/Shell/PowerShell;C++;C#
+35754,HTML/CSS;Java;JavaScript;SQL;VBA
+35755,Java;Python
+35756,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35757,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+35758,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+35759,Java;VBA;Other(s):
+35760,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+35761,C++;Python;R;SQL;Other(s):
+35762,Bash/Shell/PowerShell;C;C++;Python
+35763,JavaScript;Objective-C;Swift
+35764,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;Swift
+35765,HTML/CSS;Java;JavaScript;SQL
+35766,C;Go;Python;R;Other(s):
+35767,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+35768,Python
+35769,Java;Kotlin;PHP;SQL
+35770,Bash/Shell/PowerShell
+35771,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+35772,Java;TypeScript
+35773,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+35774,Bash/Shell/PowerShell;Python
+35775,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+35776,Java;Other(s):
+35777,C#;HTML/CSS;JavaScript;PHP;SQL
+35778,C#;HTML/CSS;JavaScript;SQL
+35779,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+35780,Assembly;Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Swift;TypeScript
+35781,C++;Java;Kotlin;SQL;TypeScript
+35782,C;HTML/CSS;Java;JavaScript;PHP
+35783,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+35784,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+35785,C#;HTML/CSS;Java;JavaScript;TypeScript
+35786,HTML/CSS;JavaScript;PHP;SQL
+35787,C;Java;Kotlin
+35788,HTML/CSS;JavaScript;Ruby;TypeScript
+35789,HTML/CSS;Java;JavaScript;SQL;TypeScript
+35790,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+35791,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+35792,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35793,Java;JavaScript
+35794,C;C++;Python
+35795,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Swift
+35796,HTML/CSS;JavaScript
+35797,HTML/CSS;Java;JavaScript;Kotlin;SQL
+35798,Bash/Shell/PowerShell;C;Erlang;Go;JavaScript;Python;SQL
+35799,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Ruby
+35800,C;Python;Other(s):
+35801,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+35802,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+35803,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+35804,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+35805,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+35806,HTML/CSS;JavaScript
+35807,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35808,Assembly;C;C++;C#;JavaScript;SQL
+35809,Dart;Python;Swift
+35810,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+35811,HTML/CSS;JavaScript;PHP
+35812,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35813,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+35814,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python
+35815,Assembly;C++
+35816,Java
+35817,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+35818,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+35819,C;HTML/CSS;Java;Swift
+35820,HTML/CSS;JavaScript;Python
+35821,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+35822,HTML/CSS;Java;JavaScript;Python;SQL
+35823,Assembly;C;C++;Swift
+35824,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35825,C;C++;HTML/CSS;PHP;Python;Ruby;SQL;Swift
+35826,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+35827,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript;Other(s):
+35828,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+35829,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+35830,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+35831,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+35832,C#;HTML/CSS;Java;JavaScript;SQL
+35833,C;HTML/CSS;JavaScript
+35834,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+35835,Bash/Shell/PowerShell;Python
+35836,HTML/CSS;Java;JavaScript;SQL
+35837,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+35838,Java;Kotlin;Scala
+35839,Assembly;C;C++;Python
+35840,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+35841,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35842,JavaScript;Ruby
+35843,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+35844,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+35845,Bash/Shell/PowerShell;C#;Erlang;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+35846,C#;HTML/CSS;JavaScript;SQL
+35847,C;Python;Rust
+35848,HTML/CSS;JavaScript;SQL
+35849,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35850,Bash/Shell/PowerShell;C;Clojure;Elixir;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+35851,HTML/CSS;JavaScript;Rust;Other(s):
+35852,C++;Java
+35853,Assembly;Java;Python;SQL
+35854,C#;HTML/CSS;Java;JavaScript;TypeScript
+35855,HTML/CSS;JavaScript;R
+35856,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+35857,Python
+35858,C#;Java;Kotlin;SQL
+35859,Java
+35860,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+35861,HTML/CSS;Java;JavaScript
+35862,C#;HTML/CSS;JavaScript;SQL
+35863,C++;C#;Python
+35864,Bash/Shell/PowerShell;C;C++;Python;Rust;Other(s):
+35865,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+35866,Bash/Shell/PowerShell;C;JavaScript;Python;R;VBA
+35867,Bash/Shell/PowerShell;Python;SQL
+35868,C#;Python;VBA
+35869,C;C++;Java;JavaScript;Python
+35870,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+35871,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+35872,C;HTML/CSS;Java;Kotlin;PHP;Python;SQL
+35873,C++;C#;Java
+35874,Java;JavaScript;Python
+35875,C#;HTML/CSS;Java;JavaScript;PHP
+35876,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+35877,C#;SQL
+35878,Bash/Shell/PowerShell;Java;Python;R
+35879,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+35880,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+35881,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+35882,C;C++;SQL
+35883,C;Java;Kotlin;Scala
+35884,Assembly;C#;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+35885,Assembly;C;C#;HTML/CSS;Java;JavaScript;SQL
+35886,Python
+35887,C++;HTML/CSS;JavaScript
+35888,C;C++;Python;SQL
+35889,HTML/CSS;JavaScript;PHP;SQL
+35890,Bash/Shell/PowerShell;Java;JavaScript;SQL
+35891,C#;Dart;HTML/CSS;Java;Rust;Scala
+35892,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+35893,C#;Clojure;Python
+35894,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+35895,C#;Java;JavaScript;Kotlin;Python
+35896,Java;JavaScript;SQL;TypeScript
+35897,JavaScript;Python
+35898,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+35899,Java;JavaScript;Kotlin;Objective-C;Python;Rust
+35900,HTML/CSS;Java;JavaScript;SQL
+35901,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+35902,C#;HTML/CSS;JavaScript;SQL
+35903,C++;C#;HTML/CSS;JavaScript;SQL
+35904,Bash/Shell/PowerShell;Python;SQL
+35905,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+35906,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+35907,HTML/CSS;JavaScript;PHP
+35908,Assembly;C#
+35909,C#;HTML/CSS;JavaScript;PHP;TypeScript
+35910,R;Other(s):
+35911,HTML/CSS;JavaScript;TypeScript
+35912,C;C#
+35913,Assembly;Bash/Shell/PowerShell;C;Go;Java;R;Rust;SQL;TypeScript;Other(s):
+35914,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+35915,C#;HTML/CSS;JavaScript;SQL;TypeScript
+35916,C#;HTML/CSS;JavaScript
+35917,HTML/CSS;Java;JavaScript;SQL;VBA
+35918,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+35919,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+35920,C#;HTML/CSS;JavaScript;TypeScript
+35921,Assembly;HTML/CSS
+35922,C;C++
+35923,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Ruby
+35924,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+35925,C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+35926,Bash/Shell/PowerShell;C;C++;Java;Python;SQL;Other(s):
+35927,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;SQL
+35928,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+35929,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Rust;SQL;Other(s):
+35930,C;C++;C#;HTML/CSS;JavaScript;Python
+35931,HTML/CSS;Java;Python;SQL
+35932,HTML/CSS;JavaScript;Python;SQL
+35933,Assembly;C;C++;Java;Python;SQL
+35934,C#;HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript;VBA
+35935,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+35936,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript
+35937,Java;Kotlin;SQL;Swift
+35938,Go;Java;Python
+35939,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+35940,Java;JavaScript;PHP;SQL
+35941,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+35942,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+35943,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+35944,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+35945,HTML/CSS;JavaScript
+35946,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+35947,Java
+35948,C#;HTML/CSS;Java;JavaScript;SQL
+35949,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+35950,C;JavaScript;Python
+35951,R
+35952,HTML/CSS;JavaScript;PHP;TypeScript
+35953,Bash/Shell/PowerShell;Python;Other(s):
+35954,Bash/Shell/PowerShell;Java;JavaScript;SQL;VBA
+35955,C++;C#;HTML/CSS;JavaScript
+35956,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript;Other(s):
+35957,C;C++;C#
+35958,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+35959,HTML/CSS;JavaScript;PHP;Python;SQL
+35960,JavaScript;Rust
+35961,C#;Swift
+35962,HTML/CSS;JavaScript;TypeScript
+35963,Java;Scala
+35964,Java;Python;VBA
+35965,Erlang;SQL;VBA
+35966,C++;HTML/CSS;SQL;Other(s):
+35967,HTML/CSS;JavaScript
+35968,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35969,Python;R
+35970,Assembly;C;C++;Java;Python;Other(s):
+35971,C#;SQL;VBA
+35972,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35974,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+35975,Go;Scala
+35976,HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+35977,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Objective-C;Python;SQL;Swift
+35978,Bash/Shell/PowerShell;C;C++;C#;Python;R;SQL
+35979,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+35980,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+35981,HTML/CSS;JavaScript;SQL
+35982,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+35983,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+35984,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;Other(s):
+35985,C#;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+35986,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+35987,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;R
+35988,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL;VBA
+35989,HTML/CSS;Java;JavaScript;Ruby;SQL
+35990,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+35991,HTML/CSS;JavaScript;Kotlin;Python;SQL
+35992,C++;JavaScript;Objective-C;Swift
+35993,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+35994,C#;HTML/CSS;JavaScript;TypeScript
+35995,Bash/Shell/PowerShell;C;Python
+35996,Swift;Other(s):
+35997,HTML/CSS;TypeScript
+35998,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+35999,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+36000,HTML/CSS;JavaScript;PHP;SQL
+36001,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL
+36002,JavaScript;PHP
+36003,JavaScript;Python;SQL;TypeScript
+36004,C;C++;HTML/CSS;JavaScript;PHP;SQL
+36005,C#;JavaScript;Python
+36006,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+36007,C++;Java
+36008,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+36009,C#;JavaScript;Ruby
+36010,Bash/Shell/PowerShell;Java;JavaScript
+36011,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+36012,Python;R;VBA
+36013,Assembly;C++;HTML/CSS;Java;JavaScript
+36014,C;C++;Java;JavaScript
+36015,C#;JavaScript;SQL
+36016,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36017,C#;JavaScript;Python;VBA;Other(s):
+36018,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36019,C#;HTML/CSS;JavaScript
+36020,Assembly;Bash/Shell/PowerShell
+36021,Bash/Shell/PowerShell;C;HTML/CSS;Python
+36022,C#;HTML/CSS;JavaScript;SQL
+36023,Go;Ruby;Swift
+36024,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;WebAssembly
+36025,Dart;HTML/CSS;Java;JavaScript;Swift
+36026,Bash/Shell/PowerShell;Java;JavaScript;PHP
+36027,HTML/CSS;JavaScript;Python;SQL
+36028,HTML/CSS;JavaScript;Other(s):
+36029,Java
+36030,Bash/Shell/PowerShell;C;C++;Python
+36031,Assembly;Bash/Shell/PowerShell;C;C#;Python
+36032,C#;HTML/CSS;Java;JavaScript;SQL
+36033,C#;HTML/CSS;Swift
+36034,Bash/Shell/PowerShell;C;Java;Python
+36035,Bash/Shell/PowerShell;C#;F#;SQL;TypeScript
+36036,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+36037,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36038,C;C++;C#;JavaScript;Python;SQL;TypeScript
+36039,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+36040,Assembly;C;C#;Go;Java;JavaScript;Python;SQL
+36041,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+36042,Bash/Shell/PowerShell;C;HTML/CSS;Python
+36043,Go;Python;SQL
+36044,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+36045,HTML/CSS;Java;JavaScript;SQL;TypeScript
+36046,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36047,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+36048,Rust
+36049,Bash/Shell/PowerShell;JavaScript;Python;Ruby;Scala
+36050,Java
+36051,Bash/Shell/PowerShell;Java;SQL
+36052,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+36053,C++;HTML/CSS;Python
+36054,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+36055,HTML/CSS;Ruby
+36056,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+36057,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+36058,C;Python
+36059,C#;HTML/CSS;JavaScript;PHP;Python
+36060,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+36062,Bash/Shell/PowerShell;C++;C#
+36063,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+36064,Bash/Shell/PowerShell;Go
+36065,Java;Swift
+36066,C#;HTML/CSS;JavaScript
+36067,HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+36068,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+36069,C#;HTML/CSS;JavaScript;SQL
+36070,Go;Java;Kotlin;PHP
+36071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+36072,HTML/CSS;Java;JavaScript;Objective-C
+36073,HTML/CSS;JavaScript;TypeScript
+36074,HTML/CSS;JavaScript;VBA
+36075,C++;Python
+36076,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+36077,C;C++;C#;JavaScript;Python
+36078,Bash/Shell/PowerShell;JavaScript;Ruby;Rust;SQL
+36079,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+36080,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python
+36081,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36082,Clojure;JavaScript;Python;SQL
+36083,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36084,Bash/Shell/PowerShell;HTML/CSS;Python
+36085,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+36086,C++;Python
+36087,Java;Python
+36088,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36089,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C
+36090,C#;HTML/CSS;JavaScript;SQL
+36091,Java;SQL
+36092,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby
+36093,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+36095,Go;HTML/CSS;JavaScript;PHP;TypeScript
+36096,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+36097,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+36098,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+36099,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+36100,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;Scala
+36101,JavaScript;TypeScript
+36102,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+36103,C#;HTML/CSS;JavaScript;SQL
+36104,C#;Java;Python;R;SQL
+36105,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36106,Java;JavaScript;Python;SQL;TypeScript
+36107,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+36108,C++;C#;JavaScript;PHP;Other(s):
+36109,C#;HTML/CSS;JavaScript;SQL
+36110,C#;HTML/CSS;SQL
+36111,C;C++;C#;Clojure;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+36112,C++;C#;HTML/CSS;JavaScript;SQL
+36113,C#;HTML/CSS;JavaScript;TypeScript
+36114,C;Python
+36115,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+36116,Bash/Shell/PowerShell;C++;Python;SQL
+36117,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+36118,Bash/Shell/PowerShell;C#;Java;JavaScript;Python
+36119,Bash/Shell/PowerShell;Java;PHP;Python;SQL
+36120,Python;Scala
+36121,C;C++;Objective-C;PHP;Python;SQL;Swift
+36122,C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+36123,Bash/Shell/PowerShell;SQL
+36125,C;Python;SQL
+36126,HTML/CSS;Java;JavaScript;SQL;Swift
+36127,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+36128,Java;JavaScript;Kotlin;SQL;Swift
+36130,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+36131,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+36132,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Kotlin;TypeScript
+36133,HTML/CSS;JavaScript;SQL;TypeScript
+36134,Bash/Shell/PowerShell;C;C++;Erlang;Go;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+36135,C#;HTML/CSS;Java;JavaScript;Python
+36136,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36137,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+36138,JavaScript;Other(s):
+36139,HTML/CSS;JavaScript
+36140,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;VBA;Other(s):
+36141,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+36142,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+36143,Bash/Shell/PowerShell;C;Java;Python
+36144,C#;HTML/CSS;Java;PHP;SQL
+36145,Bash/Shell/PowerShell;C;C++;Java;Ruby;SQL
+36146,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36147,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python
+36148,HTML/CSS;JavaScript;Objective-C;Swift
+36149,HTML/CSS;Java;JavaScript;SQL;Other(s):
+36150,HTML/CSS;JavaScript;Python;SQL
+36151,C++;C#
+36152,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+36153,Swift
+36154,Java;JavaScript
+36155,Bash/Shell/PowerShell;Python;Scala;SQL
+36156,C#;HTML/CSS;JavaScript;TypeScript
+36157,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;VBA;WebAssembly
+36158,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+36159,Assembly;Bash/Shell/PowerShell;C;C++;Python
+36160,Java;Kotlin;Objective-C;Swift
+36161,C++;HTML/CSS;Java;JavaScript;PHP;Python
+36162,Bash/Shell/PowerShell;Java;JavaScript;Python
+36163,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36164,Bash/Shell/PowerShell;C++;Java;Scala;SQL
+36165,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;Rust;Other(s):
+36166,Bash/Shell/PowerShell;Go;Java;Kotlin;PHP;Rust;Scala;TypeScript;Other(s):
+36167,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36168,HTML/CSS;JavaScript
+36169,HTML/CSS;Python;SQL
+36170,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36171,C#;HTML/CSS;JavaScript;SQL
+36172,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+36173,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36174,HTML/CSS;Java;JavaScript
+36175,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Swift
+36176,Java
+36177,Assembly;Bash/Shell/PowerShell;Python
+36178,Java;JavaScript;SQL
+36179,HTML/CSS;JavaScript
+36180,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36181,HTML/CSS;JavaScript;PHP
+36182,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+36183,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+36184,C++;Java;Python
+36185,Java
+36186,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Swift
+36187,Assembly;Bash/Shell/PowerShell;C;C++
+36188,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+36189,HTML/CSS;JavaScript
+36190,C;C++;HTML/CSS;Java;JavaScript;PHP
+36191,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+36192,C;C++;Go;SQL
+36193,HTML/CSS;JavaScript;PHP
+36194,C#;HTML/CSS;JavaScript;Python;SQL
+36195,Dart;Java;Kotlin;Ruby;Other(s):
+36196,C#;SQL;VBA
+36197,Assembly;HTML/CSS;JavaScript;Python
+36198,HTML/CSS;JavaScript
+36199,HTML/CSS;Java;JavaScript;Python;Ruby
+36200,C;C++;HTML/CSS;JavaScript
+36201,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+36202,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+36203,HTML/CSS;Python;SQL
+36204,C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;SQL
+36205,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+36206,C#
+36207,C#;JavaScript;TypeScript
+36208,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R
+36209,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+36210,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+36211,C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+36212,HTML/CSS;JavaScript;Python
+36213,HTML/CSS;Java;JavaScript;Kotlin;SQL
+36214,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Objective-C;Python;WebAssembly
+36215,Java;Kotlin;Ruby;SQL
+36216,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Swift
+36217,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36218,HTML/CSS;JavaScript;PHP;Python;SQL
+36219,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36220,Bash/Shell/PowerShell;C++;HTML/CSS
+36222,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+36223,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+36224,C;Python
+36225,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+36226,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+36227,C++;HTML/CSS;JavaScript
+36228,HTML/CSS;Java;JavaScript;SQL
+36229,Java;JavaScript;PHP;SQL
+36230,C++;Java
+36231,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+36232,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36233,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+36234,Java;Python;Other(s):
+36235,C++;HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+36236,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36237,JavaScript;PHP;Python
+36238,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;TypeScript
+36239,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+36240,Bash/Shell/PowerShell;Java;Python;Ruby
+36241,Bash/Shell/PowerShell;Elixir;JavaScript;PHP;Python;Scala;SQL
+36242,C;HTML/CSS;Java;Python;R
+36243,Java;PHP;Python
+36244,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Scala;SQL
+36245,C++;C#;HTML/CSS;Java;JavaScript
+36246,C#;HTML/CSS;JavaScript;Python;SQL
+36247,C#;HTML/CSS;JavaScript
+36248,C#;HTML/CSS;JavaScript;TypeScript
+36249,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+36250,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36251,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+36252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36253,Bash/Shell/PowerShell;Java
+36254,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+36255,Java;JavaScript;TypeScript
+36257,JavaScript;PHP;Python
+36258,Assembly;C#;HTML/CSS;JavaScript
+36259,HTML/CSS;JavaScript;PHP;SQL
+36260,C#;HTML/CSS;JavaScript;TypeScript
+36261,Bash/Shell/PowerShell;R;Other(s):
+36262,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;TypeScript;Other(s):
+36263,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;TypeScript
+36264,Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+36265,HTML/CSS;JavaScript
+36266,HTML/CSS;Java;JavaScript;TypeScript
+36267,JavaScript
+36268,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+36269,HTML/CSS;JavaScript;PHP
+36270,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+36271,Bash/Shell/PowerShell;C#;Java;SQL
+36272,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36273,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;Other(s):
+36274,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36275,JavaScript;PHP;SQL
+36276,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+36277,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+36278,JavaScript;Python
+36279,Go;Java
+36280,C#;HTML/CSS;JavaScript;Python;SQL
+36281,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;SQL
+36282,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36283,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+36284,Java;Other(s):
+36285,HTML/CSS;Java;JavaScript;PHP;SQL
+36286,Java;JavaScript
+36287,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36288,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+36289,C#;HTML/CSS;JavaScript;Other(s):
+36290,Bash/Shell/PowerShell;Other(s):
+36291,C;HTML/CSS;JavaScript;PHP;Python
+36292,Python;Scala;SQL
+36293,Bash/Shell/PowerShell;C;Java;Python
+36294,HTML/CSS;Java;JavaScript;SQL
+36295,Assembly;HTML/CSS;Java;JavaScript;Python;R;SQL
+36296,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+36297,C#;HTML/CSS;JavaScript
+36298,Other(s):
+36299,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;TypeScript
+36300,C#
+36301,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+36302,C#;HTML/CSS;JavaScript;SQL
+36303,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36304,HTML/CSS;JavaScript;Python;TypeScript
+36305,Assembly;Java;Python;R
+36306,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+36307,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36308,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+36309,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+36310,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL
+36311,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;SQL;Swift
+36312,C#;Go;Java;JavaScript;Python;TypeScript
+36313,C++;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+36314,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+36315,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+36316,Java;JavaScript;Objective-C;SQL
+36317,HTML/CSS;PHP;Swift
+36318,HTML/CSS;JavaScript;PHP;TypeScript
+36320,Bash/Shell/PowerShell;HTML/CSS;Python;Swift
+36321,JavaScript;TypeScript;VBA
+36322,Java;Scala
+36323,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+36324,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+36325,C#;HTML/CSS;JavaScript
+36326,Assembly;C++
+36327,HTML/CSS;Java;JavaScript;SQL;TypeScript
+36328,HTML/CSS;JavaScript
+36329,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36330,C;HTML/CSS;JavaScript;PHP;Python;SQL
+36331,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust
+36332,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36333,C#;JavaScript;SQL
+36334,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+36335,Python
+36336,Java;JavaScript
+36337,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Scala;VBA
+36338,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36339,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+36340,HTML/CSS;Java;JavaScript;SQL
+36341,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;Scala
+36342,HTML/CSS;JavaScript
+36343,C;C++;C#;F#;JavaScript;Python;Rust;SQL;TypeScript
+36344,Bash/Shell/PowerShell;Java;VBA;Other(s):
+36345,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+36346,HTML/CSS;JavaScript;PHP
+36347,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL;Other(s):
+36348,HTML/CSS
+36349,C#;HTML/CSS;JavaScript;SQL;Other(s):
+36351,Bash/Shell/PowerShell;Ruby
+36352,HTML/CSS;JavaScript;Python;SQL
+36353,Go;Java
+36354,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+36355,Bash/Shell/PowerShell;C;Go;JavaScript;Python;Rust;Scala;SQL;TypeScript;Other(s):
+36356,Assembly;C;C++;HTML/CSS;JavaScript;Python
+36357,HTML/CSS;Objective-C;SQL;Swift
+36358,Bash/Shell/PowerShell;C#;Java;Ruby;Other(s):
+36359,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+36360,C;C++
+36361,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+36362,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+36363,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36364,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+36365,HTML/CSS;JavaScript;PHP;SQL
+36366,HTML/CSS;JavaScript;Python;SQL
+36367,C++;C#;F#;Go;HTML/CSS;Java;JavaScript;R;SQL
+36368,HTML/CSS;Java;JavaScript;SQL
+36369,Java
+36370,HTML/CSS;JavaScript;Ruby
+36371,C#;HTML/CSS;JavaScript;SQL
+36372,HTML/CSS;JavaScript;Kotlin;Python;SQL;Swift;Other(s):
+36373,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+36374,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+36375,C;Go;Java;Rust;Swift
+36376,Assembly;C;C++;HTML/CSS;Java;VBA
+36377,Bash/Shell/PowerShell;Python
+36378,C++;Java
+36379,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+36380,HTML/CSS;JavaScript;TypeScript
+36381,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL;Other(s):
+36382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+36383,C#;HTML/CSS;JavaScript;SQL
+36384,HTML/CSS;JavaScript
+36385,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+36386,HTML/CSS;PHP;SQL;Other(s):
+36387,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+36388,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+36389,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+36390,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36391,HTML/CSS;JavaScript;Ruby;SQL
+36392,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL
+36393,C#;HTML/CSS;JavaScript;Python;SQL
+36394,Bash/Shell/PowerShell;Go;Java;JavaScript
+36395,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36396,Bash/Shell/PowerShell;Java
+36397,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36398,C#;HTML/CSS;Java;JavaScript
+36399,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Objective-C;Rust;Scala
+36400,JavaScript;Other(s):
+36401,C#;Java;PHP;SQL
+36402,HTML/CSS;Python;SQL
+36403,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby
+36404,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+36405,Java;Python;SQL
+36406,JavaScript;Objective-C;Swift
+36407,Bash/Shell/PowerShell;Python;R;SQL
+36408,R;SQL;VBA
+36409,HTML/CSS;JavaScript
+36410,PHP
+36411,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Other(s):
+36412,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+36413,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36414,HTML/CSS;Java;PHP;Python
+36415,Assembly;Bash/Shell/PowerShell;C;Python
+36416,Bash/Shell/PowerShell;HTML/CSS;Python
+36417,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+36418,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python
+36419,Java;Rust;Scala
+36420,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+36421,C++;HTML/CSS;JavaScript;Python
+36423,Bash/Shell/PowerShell;Go
+36424,Bash/Shell/PowerShell;Objective-C;SQL;Swift
+36425,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Scala
+36426,JavaScript;PHP;Python;SQL
+36427,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+36428,HTML/CSS;JavaScript;Other(s):
+36429,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+36430,HTML/CSS;Swift
+36431,Bash/Shell/PowerShell;C;C++;Java;Ruby
+36432,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+36433,C;C++;HTML/CSS;Java;Python;R;SQL
+36434,HTML/CSS;Java;JavaScript;SQL;Other(s):
+36435,C#;HTML/CSS;JavaScript;SQL
+36436,HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+36437,HTML/CSS;JavaScript;PHP;SQL
+36438,C;C++;C#;HTML/CSS;Java
+36439,Java;Kotlin
+36440,HTML/CSS;JavaScript;TypeScript
+36441,Bash/Shell/PowerShell;Java;Python
+36442,C#;HTML/CSS;Java;JavaScript
+36443,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+36444,Assembly;C++;Java;PHP;Python
+36445,C
+36446,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+36448,HTML/CSS;JavaScript
+36449,Bash/Shell/PowerShell;Java;Kotlin
+36450,Java;Python
+36451,JavaScript;Python;R;Ruby;SQL
+36452,C;HTML/CSS;Java;Python
+36453,Java;JavaScript;SQL
+36454,Go;HTML/CSS;Java;TypeScript
+36455,Bash/Shell/PowerShell;Java;JavaScript
+36456,HTML/CSS;JavaScript;Ruby;SQL
+36457,C;C#;HTML/CSS;Objective-C;Swift
+36458,HTML/CSS;JavaScript;TypeScript
+36459,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36460,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+36461,C#;Java;JavaScript;SQL
+36462,Assembly;C;C++;C#;Java;JavaScript;Objective-C;Python;SQL;Swift
+36463,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+36464,C;C++
+36465,C;C#;HTML/CSS;Java;JavaScript;Kotlin;VBA
+36466,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+36467,Bash/Shell/PowerShell;C#;SQL
+36468,HTML/CSS;JavaScript;PHP
+36469,Bash/Shell/PowerShell;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Ruby;SQL
+36470,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;Python
+36471,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+36472,C++;C#
+36473,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36474,C++
+36475,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+36476,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+36477,Assembly;C;Go;Objective-C
+36478,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+36479,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+36480,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+36481,C++;C#;Python;R
+36482,C++;Java
+36483,HTML/CSS;JavaScript;PHP;SQL
+36484,JavaScript;Objective-C
+36485,HTML/CSS;JavaScript;Python
+36486,HTML/CSS;JavaScript;PHP;SQL
+36487,C#;JavaScript;SQL
+36488,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+36489,HTML/CSS;JavaScript;Python;SQL
+36490,Bash/Shell/PowerShell;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36491,C#;HTML/CSS;JavaScript;PHP;SQL
+36492,Java;Python;R;Ruby;SQL
+36493,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;TypeScript
+36494,JavaScript;Python;Other(s):
+36495,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+36496,C++;Java;Python
+36497,C;C++;HTML/CSS;JavaScript;Python
+36498,C#;HTML/CSS;JavaScript;SQL;Swift
+36499,C++;Python
+36500,C++;HTML/CSS;PHP;Other(s):
+36501,C;C++;HTML/CSS;JavaScript;Objective-C
+36502,C++;HTML/CSS;Java;Scala;SQL
+36503,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36504,C#;HTML/CSS;JavaScript
+36505,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+36506,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+36507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+36508,Dart
+36509,Python
+36511,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+36512,C#;HTML/CSS;Kotlin;PHP;SQL;Swift
+36513,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript;VBA;WebAssembly
+36514,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript;Other(s):
+36515,JavaScript;PHP
+36516,C;C++;HTML/CSS;JavaScript;Python;SQL
+36517,C++;Python
+36518,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+36519,HTML/CSS;JavaScript;PHP;Scala
+36520,Bash/Shell/PowerShell;Python;R;SQL
+36521,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+36522,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Other(s):
+36523,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+36524,JavaScript;PHP;Python;Ruby;SQL;TypeScript
+36525,HTML/CSS;Java;JavaScript;SQL;TypeScript
+36526,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;Other(s):
+36527,C;C++;C#;Java;Python;SQL;Other(s):
+36528,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36529,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+36531,HTML/CSS;Java;JavaScript;TypeScript
+36532,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+36533,JavaScript
+36534,Assembly;Bash/Shell/PowerShell;C;C#;SQL;WebAssembly
+36535,C#;HTML/CSS;JavaScript;SQL
+36536,HTML/CSS;JavaScript
+36537,HTML/CSS;JavaScript;Python;TypeScript
+36538,Java;JavaScript
+36539,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;TypeScript;VBA
+36540,HTML/CSS;Java;JavaScript;Kotlin;Scala
+36541,C#;HTML/CSS;Java;TypeScript
+36542,C++;C#;Java;JavaScript
+36543,C++;Python
+36544,HTML/CSS;JavaScript;PHP;TypeScript
+36545,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+36546,C#;HTML/CSS;PHP;SQL;Other(s):
+36547,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+36548,Java;Python;SQL
+36549,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+36550,Assembly;C;C++;HTML/CSS;Java;JavaScript;Rust;Swift;WebAssembly;Other(s):
+36551,C++;HTML/CSS;Java;TypeScript
+36552,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+36553,Bash/Shell/PowerShell;C++;C#;Python;Other(s):
+36554,HTML/CSS;JavaScript;PHP;Python;SQL
+36555,C#;HTML/CSS;JavaScript;SQL
+36556,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+36557,JavaScript;PHP;SQL;TypeScript
+36558,C;C++;C#;Java;Python
+36559,HTML/CSS;Java;SQL
+36560,HTML/CSS;JavaScript;TypeScript
+36561,HTML/CSS;JavaScript;Ruby;SQL
+36562,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;WebAssembly;Other(s):
+36563,Assembly;C#;HTML/CSS
+36564,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+36565,C;HTML/CSS;Java;JavaScript;PHP;SQL
+36566,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+36567,HTML/CSS;JavaScript;PHP;SQL
+36568,HTML/CSS;Java;JavaScript;TypeScript
+36569,C#;Go;JavaScript
+36570,C#;JavaScript;Python;SQL
+36571,C;Erlang;HTML/CSS;JavaScript;Python
+36572,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+36573,C#;JavaScript;SQL;TypeScript
+36577,C;C++
+36578,C#;HTML/CSS;JavaScript;PHP;SQL
+36579,C#;HTML/CSS;JavaScript;PHP;SQL
+36580,HTML/CSS;JavaScript;PHP;Python;VBA
+36581,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;Python;Swift
+36582,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36583,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+36584,C#;JavaScript;PHP;Python;R;SQL
+36585,HTML/CSS;JavaScript;PHP;SQL;VBA
+36586,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+36587,Bash/Shell/PowerShell;R
+36588,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+36589,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python
+36590,Assembly;HTML/CSS;Java;JavaScript
+36591,HTML/CSS;JavaScript
+36592,C++;Python;Other(s):
+36594,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+36595,C++;C#;Python
+36596,HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript
+36597,Bash/Shell/PowerShell;C#;Go;Java;Python;SQL
+36598,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL
+36599,Assembly;HTML/CSS;Java;JavaScript;SQL;TypeScript
+36600,C++;HTML/CSS;JavaScript;Python;TypeScript
+36601,Bash/Shell/PowerShell;C++;C#;Python;Other(s):
+36602,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+36603,HTML/CSS;JavaScript;Ruby;SQL
+36604,Go;HTML/CSS;JavaScript;Python;SQL
+36605,C#;HTML/CSS;JavaScript;SQL;VBA
+36606,HTML/CSS;JavaScript;SQL
+36607,Assembly;C++;C#
+36608,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+36609,HTML/CSS;JavaScript;TypeScript
+36610,Java;Objective-C;Python;Ruby;Swift
+36611,SQL
+36612,Python
+36613,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+36614,Go;HTML/CSS;JavaScript;Python;SQL
+36615,C;C++;HTML/CSS;Java;JavaScript;Python
+36616,C;HTML/CSS;JavaScript
+36617,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+36618,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+36619,C#;HTML/CSS;JavaScript
+36620,R
+36621,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+36622,C;JavaScript;SQL
+36623,C#;HTML/CSS;JavaScript;PHP;SQL
+36624,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36625,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;Other(s):
+36626,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+36628,C#;HTML/CSS;Java;JavaScript;SQL
+36629,HTML/CSS;JavaScript
+36630,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript;VBA;WebAssembly
+36631,C#;VBA
+36632,HTML/CSS;Java;JavaScript;Python;SQL
+36633,Bash/Shell/PowerShell;C++;C#;Clojure;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;SQL;TypeScript
+36634,C++;HTML/CSS;Java;JavaScript;PHP;VBA
+36635,Bash/Shell/PowerShell;Ruby
+36636,Bash/Shell/PowerShell;Java;Python
+36637,HTML/CSS;Java;JavaScript;PHP;SQL
+36639,C;C++;HTML/CSS;Java;JavaScript;SQL
+36640,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+36641,Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+36642,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL;VBA;Other(s):
+36643,C#;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+36644,C++;C#;HTML/CSS;Python;VBA
+36645,HTML/CSS;JavaScript;PHP;Python
+36646,JavaScript;Swift;TypeScript
+36647,Assembly;C;C++;PHP;Python;R;Scala;SQL;Swift;Other(s):
+36648,HTML/CSS
+36649,C;Java;SQL
+36650,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+36651,Assembly;Bash/Shell/PowerShell;C;C++;C#;Other(s):
+36652,Ruby
+36653,HTML/CSS;Java;JavaScript;Kotlin;Python;R
+36654,R
+36655,Python
+36656,C++;Java;R
+36657,C++;Java;Python
+36658,C#;HTML/CSS;JavaScript;SQL
+36659,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+36660,C#;HTML/CSS;JavaScript;Python;SQL
+36661,C#;SQL
+36662,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36663,HTML/CSS;PHP;Python;SQL;Other(s):
+36664,C;HTML/CSS;Java;JavaScript;PHP;SQL
+36665,C#;Java;JavaScript;Python;SQL
+36666,C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+36667,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+36668,C;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;TypeScript
+36669,HTML/CSS;JavaScript;PHP
+36670,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+36671,HTML/CSS;Java;JavaScript;Swift
+36672,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+36673,SQL
+36674,Python;Scala
+36675,C#;HTML/CSS;JavaScript;SQL;Other(s):
+36676,C++;Python;SQL
+36677,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+36678,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;Scala;SQL;Other(s):
+36679,C;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+36680,C#;HTML/CSS;Java;JavaScript
+36681,Bash/Shell/PowerShell;Java;Python;R
+36682,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+36683,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;Rust;SQL;TypeScript
+36684,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+36685,C;C++;Go;HTML/CSS;Python;Other(s):
+36686,Python
+36687,C#;SQL
+36688,HTML/CSS;Java;JavaScript;Python;SQL;VBA
+36689,Go;HTML/CSS;Java;JavaScript;Objective-C;SQL
+36690,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+36691,Bash/Shell/PowerShell;Java;Python;Other(s):
+36692,C#;HTML/CSS;JavaScript;PHP
+36693,C#;Dart;Java;Kotlin;Swift
+36694,Bash/Shell/PowerShell;C;C++;Go;Python
+36695,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36696,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36697,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+36698,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+36699,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+36700,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36701,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+36702,Bash/Shell/PowerShell;C#;JavaScript;Python
+36703,C;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+36704,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+36705,C;C++;HTML/CSS;JavaScript
+36706,HTML/CSS;JavaScript;PHP;Python;SQL
+36707,Java;Kotlin;Python
+36708,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+36709,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+36710,Bash/Shell/PowerShell;C;C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+36711,C#;Java;SQL;Other(s):
+36712,C;C++;C#;HTML/CSS;Java;JavaScript
+36713,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+36714,JavaScript;SQL;Other(s):
+36715,C#;Go;Java;TypeScript
+36716,JavaScript
+36717,HTML/CSS;Java;JavaScript;TypeScript
+36718,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36719,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+36720,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+36721,C#;HTML/CSS;Java;JavaScript
+36722,HTML/CSS;JavaScript
+36723,C;Java;Python
+36724,Assembly;C#;HTML/CSS;Java;JavaScript;R;SQL
+36725,HTML/CSS;Java;JavaScript;Python
+36726,Python;R;SQL
+36727,JavaScript;Python;SQL;TypeScript
+36728,C;HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift
+36729,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;SQL
+36730,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+36731,C;C++;HTML/CSS;Python
+36732,HTML/CSS;SQL
+36733,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36734,Java;JavaScript;Python
+36735,C++;C#;HTML/CSS;JavaScript;SQL
+36736,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+36737,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+36738,Bash/Shell/PowerShell;C;C++;PHP;Python;Other(s):
+36739,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Kotlin;Python;SQL
+36740,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;R;Ruby;SQL;TypeScript
+36741,Java;JavaScript
+36742,C#;HTML/CSS;JavaScript;SQL
+36743,Java;Kotlin
+36744,Assembly;C;Python
+36745,C++;C#;Python
+36746,Python;R
+36747,C#;HTML/CSS;JavaScript;SQL
+36748,Python
+36749,Assembly;HTML/CSS;JavaScript;TypeScript
+36750,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+36751,C;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+36752,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36753,HTML/CSS;JavaScript;PHP;SQL
+36754,HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+36755,JavaScript;Ruby;Scala
+36756,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36757,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+36758,Bash/Shell/PowerShell;Other(s):
+36759,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36760,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+36761,R
+36762,C#;SQL;Other(s):
+36763,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+36764,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+36765,C#;JavaScript;Python;SQL;TypeScript;Other(s):
+36766,Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+36767,HTML/CSS;Java;JavaScript;Swift
+36768,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python;TypeScript;Other(s):
+36769,HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+36770,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+36771,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+36772,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+36773,HTML/CSS;JavaScript;Ruby
+36774,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+36775,Bash/Shell/PowerShell;C#;SQL
+36776,Assembly;C;C#;Java;JavaScript;Kotlin;TypeScript
+36777,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+36778,HTML/CSS;JavaScript;PHP
+36779,C#;SQL
+36780,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Other(s):
+36781,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+36782,C;Dart;Java;JavaScript;Python;SQL
+36783,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36784,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36785,JavaScript;PHP;Python;SQL
+36786,JavaScript;Ruby;SQL;TypeScript;Other(s):
+36787,Elixir;HTML/CSS;JavaScript;Python;Swift;TypeScript
+36788,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL;VBA
+36789,Python;Scala
+36790,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+36791,C#;HTML/CSS;JavaScript;SQL
+36792,C++;C#;JavaScript;WebAssembly
+36793,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL;TypeScript
+36794,Java;Kotlin
+36795,HTML/CSS;JavaScript
+36796,C;C++;C#;Go;Java;Python
+36797,C#;HTML/CSS;JavaScript;SQL;Other(s):
+36799,Java
+36800,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python
+36801,JavaScript;TypeScript
+36802,Java;JavaScript;TypeScript
+36803,HTML/CSS;JavaScript;Python
+36804,C;C++;Java;JavaScript;PHP;SQL
+36805,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+36806,HTML/CSS;JavaScript;Python;TypeScript
+36807,HTML/CSS;Java;JavaScript
+36808,C++;C#
+36809,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36811,Java;JavaScript
+36812,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+36813,HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+36814,Bash/Shell/PowerShell;SQL
+36816,Bash/Shell/PowerShell;Erlang;JavaScript;Python;Scala;Other(s):
+36817,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36818,C;C++;HTML/CSS;Java;JavaScript
+36819,C#;HTML/CSS;Java;JavaScript;SQL
+36820,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36821,Assembly;C++;HTML/CSS;PHP;SQL
+36822,HTML/CSS;Java;SQL
+36823,Bash/Shell/PowerShell;Python;Scala;SQL
+36824,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL
+36825,C#;Go;HTML/CSS;JavaScript
+36826,Bash/Shell/PowerShell;Erlang;Java;Python;R;SQL
+36827,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+36828,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+36829,HTML/CSS;Java;JavaScript;PHP;SQL
+36830,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Swift;TypeScript
+36831,C#;HTML/CSS;JavaScript;Python;SQL
+36832,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Rust;Scala;SQL;TypeScript;VBA;WebAssembly
+36833,Java;PHP;Python;SQL;TypeScript
+36834,Bash/Shell/PowerShell;Python;R;SQL
+36835,C
+36836,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL;TypeScript
+36837,Bash/Shell/PowerShell;C++;Python;R;Ruby
+36838,HTML/CSS;JavaScript;Python;SQL
+36839,C#;PHP;SQL
+36840,C++;C#;HTML/CSS;Java;JavaScript;PHP;R;Ruby;SQL;VBA
+36841,C#;F#;SQL;Other(s):
+36842,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+36843,HTML/CSS;JavaScript;Python;SQL
+36844,Objective-C;Swift
+36845,Bash/Shell/PowerShell;Go;JavaScript;PHP
+36846,Python
+36847,HTML/CSS;Java;JavaScript;PHP;SQL
+36848,Java
+36849,Assembly;C;C++;JavaScript;Python
+36850,Assembly
+36851,HTML/CSS;Java;JavaScript;Kotlin;Swift
+36852,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36853,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+36854,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+36855,C++;Go;Java;JavaScript;Objective-C;Python;Rust
+36856,Assembly;C;C++;Rust
+36857,Bash/Shell/PowerShell;JavaScript;Python
+36858,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;TypeScript
+36859,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+36860,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+36861,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36862,C;C++;Python;Swift
+36863,HTML/CSS;JavaScript;PHP;SQL
+36864,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+36865,Java;Python;Rust;Scala;SQL;Other(s):
+36866,HTML/CSS;JavaScript
+36867,C++;C#;HTML/CSS;JavaScript;SQL
+36868,Java
+36869,Bash/Shell/PowerShell;C#;F#;Scala;SQL
+36870,Bash/Shell/PowerShell;C++;Java;Kotlin;Python;SQL;Other(s):
+36871,HTML/CSS;JavaScript;Objective-C;Swift
+36872,Bash/Shell/PowerShell;C++;C#;JavaScript;PHP;Python;TypeScript
+36873,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+36874,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+36875,Bash/Shell/PowerShell;Java
+36876,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+36877,C++;R
+36878,Java;JavaScript
+36879,Assembly;C;C++;C#;JavaScript;Python;SQL;Other(s):
+36880,Elixir;HTML/CSS;JavaScript;Ruby;Swift
+36881,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+36882,Bash/Shell/PowerShell;C++;C#;JavaScript;PHP;SQL;TypeScript;VBA
+36883,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+36884,C;C++;Java;PHP
+36885,Python;VBA
+36886,JavaScript;Python;TypeScript
+36887,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+36888,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36889,C#;HTML/CSS;JavaScript;SQL
+36890,Bash/Shell/PowerShell;C++;JavaScript;Python;Other(s):
+36891,C#;HTML/CSS;JavaScript;R
+36892,HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+36893,Java
+36894,Bash/Shell/PowerShell;Python;Other(s):
+36895,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+36896,HTML/CSS;JavaScript;PHP;SQL
+36897,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Kotlin;Python;TypeScript
+36899,C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+36900,Java
+36901,C;C#
+36902,Bash/Shell/PowerShell;Java;JavaScript;Ruby;Rust
+36903,HTML/CSS;JavaScript
+36904,C;C++;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+36905,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+36906,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+36907,HTML/CSS;Java;JavaScript
+36908,C++
+36909,Java;SQL;TypeScript
+36910,Bash/Shell/PowerShell;Java;Scala;SQL
+36911,HTML/CSS;JavaScript;PHP;SQL
+36912,C#;HTML/CSS;JavaScript;SQL
+36913,C#;Python;SQL
+36914,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+36915,Bash/Shell/PowerShell;C;C#;JavaScript;Python;SQL;Other(s):
+36916,JavaScript;Python;TypeScript
+36917,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+36918,C#;HTML/CSS;JavaScript;SQL;TypeScript
+36919,HTML/CSS;JavaScript;PHP;SQL
+36920,C#;HTML/CSS;JavaScript;Python;SQL
+36921,Bash/Shell/PowerShell;Kotlin;R;SQL
+36922,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+36923,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;Python
+36924,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+36925,HTML/CSS;Java;JavaScript;TypeScript
+36926,C;C#;HTML/CSS;JavaScript;Python;SQL
+36927,Java;JavaScript;Other(s):
+36928,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+36929,Python
+36930,JavaScript;PHP;Python;SQL
+36931,Go;Java;JavaScript;Python;R;Scala;SQL
+36932,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+36933,Assembly;C;C++;Java;Python
+36934,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+36935,C#;SQL
+36936,Assembly;C;C++;C#;HTML/CSS;PHP
+36937,Java;Python
+36938,HTML/CSS;Java;JavaScript;PHP;SQL
+36939,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+36940,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala
+36941,HTML/CSS;JavaScript;TypeScript;Other(s):
+36942,Bash/Shell/PowerShell;Erlang;Go;Python;Ruby;SQL
+36943,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+36944,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+36945,HTML/CSS;JavaScript;PHP;Python
+36946,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36947,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+36948,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+36949,HTML/CSS;JavaScript;PHP;SQL
+36950,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+36951,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+36952,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+36953,Bash/Shell/PowerShell;JavaScript;Python;Ruby;Rust;WebAssembly
+36954,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+36955,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+36956,C#;HTML/CSS;JavaScript;TypeScript
+36957,C;C++;JavaScript;Ruby
+36958,C;C++;Go;Python;Other(s):
+36959,Java
+36960,Bash/Shell/PowerShell;Python;SQL;Other(s):
+36961,C++;C#;HTML/CSS;Java;Objective-C;SQL;Swift
+36962,C;C++;HTML/CSS;Java;JavaScript;Python
+36963,Java;Python
+36964,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL;VBA
+36965,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA;Other(s):
+36966,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+36967,HTML/CSS;Java;JavaScript;TypeScript
+36968,C++;C#
+36969,C#;HTML/CSS;JavaScript;SQL
+36970,HTML/CSS;JavaScript;PHP;SQL
+36971,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+36972,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+36973,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+36974,Dart;HTML/CSS;Java;JavaScript
+36975,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+36976,C#;JavaScript;SQL;TypeScript;VBA
+36977,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+36978,HTML/CSS;JavaScript;Ruby
+36979,C;C++;Java;VBA
+36980,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+36981,C#;Go;TypeScript
+36982,C#;HTML/CSS;Java;JavaScript;PHP;Python
+36983,Java;SQL
+36984,C#;Java;SQL
+36985,C;HTML/CSS
+36986,HTML/CSS;JavaScript;PHP;SQL
+36987,C#;Java;JavaScript;Ruby
+36988,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+36989,Bash/Shell/PowerShell;C
+36990,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift
+36991,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+36992,Bash/Shell/PowerShell;Python;Other(s):
+36993,Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+36994,HTML/CSS;JavaScript;PHP;SQL
+36995,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+36996,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+36997,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+36998,HTML/CSS;JavaScript
+36999,JavaScript
+37000,Go;HTML/CSS;JavaScript;Python;Ruby
+37001,C#;HTML/CSS;JavaScript
+37002,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+37003,C++;HTML/CSS;JavaScript;Python
+37004,Python
+37005,Java;JavaScript;SQL
+37006,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+37007,Bash/Shell/PowerShell;C;JavaScript;Python;Rust;WebAssembly
+37008,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+37009,HTML/CSS;JavaScript;PHP;TypeScript
+37010,HTML/CSS;JavaScript;PHP
+37011,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+37012,C#
+37013,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+37014,Bash/Shell/PowerShell;C;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL;TypeScript
+37015,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37016,C++;Python;Other(s):
+37017,Python;SQL;VBA
+37018,Bash/Shell/PowerShell;Go;Python
+37019,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+37020,Java;PHP
+37021,C#;Other(s):
+37022,Java
+37025,C#;HTML/CSS;JavaScript;SQL
+37026,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+37027,Bash/Shell/PowerShell;HTML/CSS;Python;Swift
+37028,HTML/CSS;JavaScript;PHP;Python;Ruby
+37029,Bash/Shell/PowerShell;Java;Python
+37030,Java;JavaScript
+37031,HTML/CSS;JavaScript;PHP;SQL
+37032,Bash/Shell/PowerShell;Go;Python;SQL
+37033,C#;HTML/CSS;Java;JavaScript;SQL
+37034,C#;HTML/CSS;JavaScript;SQL
+37035,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+37036,HTML/CSS;JavaScript;Python
+37037,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+37038,Bash/Shell/PowerShell;Dart;Go;Java;Kotlin;SQL
+37039,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript;Other(s):
+37040,Java
+37041,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;TypeScript
+37042,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+37043,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+37044,HTML/CSS;JavaScript;PHP;Python;SQL
+37045,Python;R;SQL
+37046,Bash/Shell/PowerShell;PHP;Python;SQL
+37047,C++;HTML/CSS;Java;JavaScript;Ruby;Scala
+37048,Bash/Shell/PowerShell;Clojure;Go;Python
+37049,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+37050,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+37051,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+37052,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37053,Python
+37054,C#;HTML/CSS;JavaScript;TypeScript
+37055,Java;SQL
+37056,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;SQL
+37057,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37058,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+37059,PHP
+37060,C#;Java;Kotlin;PHP;SQL;Other(s):
+37061,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+37062,C;C++;Python
+37063,Java;SQL
+37064,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+37065,C#;HTML/CSS;Java;JavaScript;SQL
+37066,Assembly;Java;Kotlin
+37067,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+37068,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Rust;SQL
+37069,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+37070,Bash/Shell/PowerShell;JavaScript;Python
+37071,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+37072,Bash/Shell/PowerShell;Java;SQL
+37073,C;C#;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift;Other(s):
+37074,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+37075,Java;Scala;SQL
+37076,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+37077,SQL;VBA
+37078,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37079,HTML/CSS;R
+37080,Java;Python
+37081,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+37083,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37084,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+37085,C#;HTML/CSS;JavaScript;TypeScript;VBA
+37087,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37088,Scala
+37089,Python;SQL;Swift;VBA
+37090,C#;JavaScript;Python
+37091,HTML/CSS;Java;JavaScript;SQL;Other(s):
+37092,C;C++;Dart;HTML/CSS;Java;JavaScript;Objective-C;Rust;Swift
+37093,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+37094,JavaScript;PHP
+37095,HTML/CSS;JavaScript;PHP;TypeScript
+37096,Java;Kotlin;Swift
+37097,Bash/Shell/PowerShell;PHP;Other(s):
+37098,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+37099,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;SQL
+37100,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+37101,C#
+37102,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37103,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+37104,HTML/CSS;Java;JavaScript;SQL
+37105,C#;SQL
+37106,C#;HTML/CSS;JavaScript;SQL
+37107,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+37108,C#;HTML/CSS;JavaScript;SQL;VBA
+37109,C;C#;HTML/CSS;Java;JavaScript;PHP
+37110,C#;HTML/CSS;JavaScript;TypeScript
+37111,Assembly;Bash/Shell/PowerShell;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+37112,C++;Java;Scala
+37113,HTML/CSS;Java;JavaScript;PHP;SQL
+37114,Go;JavaScript;Python;TypeScript;Other(s):
+37115,C#;HTML/CSS;JavaScript;TypeScript
+37116,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;Scala;SQL;Swift
+37117,C#;HTML/CSS
+37118,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37119,HTML/CSS;Java;JavaScript;PHP;SQL
+37120,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+37121,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+37122,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+37123,Java;Kotlin
+37124,HTML/CSS;JavaScript;SQL
+37125,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+37126,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+37127,Bash/Shell/PowerShell;Python
+37128,C#;JavaScript
+37129,HTML/CSS;JavaScript;Ruby
+37130,C++;HTML/CSS;Java;JavaScript;Python
+37131,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37132,Go;JavaScript;Python;SQL
+37133,C++;C#;HTML/CSS;Rust;TypeScript
+37134,Java;SQL
+37135,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+37136,Bash/Shell/PowerShell;JavaScript;Ruby
+37137,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA;WebAssembly
+37138,HTML/CSS;JavaScript;PHP
+37139,C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+37140,Bash/Shell/PowerShell;C;C++;R;Ruby;SQL
+37141,C;C++;C#;Java;Objective-C;SQL;Swift
+37142,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+37143,C#;Dart;HTML/CSS;JavaScript;PHP;SQL
+37144,Go;JavaScript;PHP;Ruby;SQL;Other(s):
+37145,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Ruby;SQL
+37146,Bash/Shell/PowerShell
+37147,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+37148,Bash/Shell/PowerShell;C#;SQL
+37149,Assembly;Bash/Shell/PowerShell;C;C++;Python
+37150,C#;JavaScript;Objective-C;SQL;Swift;TypeScript
+37151,C;HTML/CSS;Java
+37152,C#;R;SQL
+37153,C#;HTML/CSS;JavaScript;TypeScript
+37154,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Rust;SQL;Other(s):
+37155,HTML/CSS;JavaScript;PHP;SQL
+37156,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+37157,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+37158,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;TypeScript
+37159,C++;Other(s):
+37160,C;C++;Python
+37161,HTML/CSS;JavaScript;PHP;SQL
+37162,HTML/CSS;JavaScript;TypeScript
+37163,Python
+37164,C++;JavaScript;Python
+37165,HTML/CSS;Java;Other(s):
+37166,Assembly;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+37167,C;C++;C#;JavaScript;SQL;TypeScript
+37168,C++;C#;Clojure;Dart;F#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+37169,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+37170,HTML/CSS;JavaScript;PHP;SQL
+37171,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python
+37172,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+37173,C#;SQL
+37174,Bash/Shell/PowerShell;C;JavaScript;PHP;SQL;Other(s):
+37175,Java;Python
+37176,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+37177,HTML/CSS;JavaScript;PHP;SQL
+37178,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift
+37179,Clojure;JavaScript;Other(s):
+37180,C#;SQL;Other(s):
+37181,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37182,Bash/Shell/PowerShell;Python
+37183,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37184,Java;JavaScript;Kotlin;Objective-C;PHP;Swift
+37185,Java;JavaScript;Python;Other(s):
+37186,C#;Python;SQL
+37187,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Other(s):
+37188,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+37189,Java;JavaScript;Ruby;SQL
+37190,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+37191,HTML/CSS;JavaScript;PHP;SQL
+37192,Java;JavaScript;Kotlin
+37193,C#;HTML/CSS;JavaScript;SQL
+37194,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+37195,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;SQL
+37196,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+37197,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+37198,JavaScript;PHP;SQL
+37199,Bash/Shell/PowerShell;Elixir;Erlang;JavaScript;PHP;SQL;TypeScript
+37200,C#;HTML/CSS;JavaScript;SQL
+37201,HTML/CSS;Java;JavaScript;SQL;TypeScript
+37202,Clojure;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+37203,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+37204,Objective-C;Swift
+37205,Python
+37206,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;Scala;SQL;TypeScript
+37207,HTML/CSS;JavaScript
+37208,C#;HTML/CSS;Java;PHP;Swift
+37209,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37210,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37211,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+37212,HTML/CSS;JavaScript;TypeScript
+37213,C;C++;HTML/CSS;Java;JavaScript;WebAssembly
+37214,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37215,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+37216,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+37217,C#;HTML/CSS;JavaScript;SQL
+37218,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+37219,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;JavaScript;Kotlin;SQL
+37220,HTML/CSS;JavaScript
+37221,HTML/CSS;Java;JavaScript;PHP;SQL
+37222,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+37223,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL
+37224,C;C#;Java;JavaScript;Python;TypeScript
+37225,HTML/CSS;JavaScript
+37226,C;C++;HTML/CSS;Java;Python
+37227,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;TypeScript
+37228,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+37229,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;SQL
+37230,Bash/Shell/PowerShell;C;Python;SQL
+37231,C;Python
+37232,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+37233,HTML/CSS;JavaScript;SQL;Other(s):
+37234,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+37235,Assembly;Bash/Shell/PowerShell;C;C++;Java;PHP;Python;SQL
+37236,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+37237,C;JavaScript;Python;Scala;SQL
+37238,Go;HTML/CSS;Java;PHP;Python;Rust;SQL
+37239,C;C++;Go;HTML/CSS;Java;JavaScript;Rust;Swift
+37240,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL
+37241,Bash/Shell/PowerShell;C#;SQL
+37242,Go
+37243,Python;R
+37244,HTML/CSS;JavaScript;PHP;SQL
+37245,C#
+37246,C#;Java;JavaScript;Python;SQL
+37247,Bash/Shell/PowerShell;C;C++;Python
+37248,JavaScript;Python;SQL
+37249,Bash/Shell/PowerShell;C++;Ruby;SQL;TypeScript
+37250,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+37251,Assembly;HTML/CSS;JavaScript;Ruby;SQL
+37252,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+37253,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+37254,HTML/CSS;JavaScript;SQL;TypeScript
+37255,Python
+37256,C#;R;SQL;VBA
+37257,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+37258,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37259,C#;HTML/CSS;SQL;VBA
+37260,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+37261,HTML/CSS;JavaScript;PHP;SQL
+37262,HTML/CSS;Java;Kotlin
+37263,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+37264,HTML/CSS;Java;JavaScript;PHP
+37265,Bash/Shell/PowerShell;HTML/CSS;Python;Scala;SQL
+37266,C#;HTML/CSS;Python;SQL
+37267,JavaScript
+37268,C#;HTML/CSS;JavaScript;SQL
+37269,C#;Java
+37270,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37271,HTML/CSS;JavaScript;Rust;TypeScript
+37272,C#;TypeScript
+37273,HTML/CSS;Java;JavaScript;TypeScript
+37274,Java;Python
+37275,Bash/Shell/PowerShell;Java;Python;VBA
+37276,Assembly;Bash/Shell/PowerShell;C;Python
+37277,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+37278,C#;JavaScript;SQL
+37279,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+37280,Bash/Shell/PowerShell;C;JavaScript;Objective-C;Swift
+37281,Bash/Shell/PowerShell;Java;Ruby;Scala;SQL
+37282,C#
+37283,Bash/Shell/PowerShell;C;C++;C#;Erlang;Java;SQL
+37284,Java;JavaScript
+37285,Java;JavaScript
+37286,SQL;Other(s):
+37287,HTML/CSS;JavaScript;PHP;SQL
+37288,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+37289,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37290,Swift
+37291,C;C#;Java;JavaScript;PHP;Python;SQL;Swift
+37292,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37293,HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+37294,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37295,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+37296,C#;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+37297,Java;Python;Rust;Scala
+37298,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+37299,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+37300,Bash/Shell/PowerShell;C#;Objective-C;PHP;SQL;Swift
+37301,Assembly;C;C++;Go;Other(s):
+37302,JavaScript
+37303,C;C++;HTML/CSS;Java;JavaScript
+37304,C#;Objective-C;Ruby;Swift
+37305,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+37306,C;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+37307,R
+37308,HTML/CSS;Java;SQL
+37309,Bash/Shell/PowerShell;C++;Python;SQL
+37310,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37311,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python
+37312,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+37313,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37314,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+37315,C#;HTML/CSS;JavaScript
+37316,C++;Python;R;SQL;VBA
+37317,HTML/CSS;JavaScript;PHP;SQL
+37318,JavaScript;Python;R;Ruby;SQL
+37319,Bash/Shell/PowerShell;PHP;SQL
+37320,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+37321,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+37322,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+37323,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Python
+37324,Go;HTML/CSS;JavaScript
+37325,Java;Kotlin
+37326,HTML/CSS;JavaScript;PHP
+37327,HTML/CSS;JavaScript;Python;SQL
+37328,HTML/CSS;JavaScript;PHP;Python;TypeScript
+37329,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+37330,HTML/CSS;JavaScript;PHP;SQL
+37331,C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+37332,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37333,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+37334,HTML/CSS;Java;JavaScript;TypeScript
+37335,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Ruby
+37336,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+37337,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;VBA
+37338,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+37339,Java;JavaScript
+37340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+37341,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+37342,Bash/Shell/PowerShell;C;C++;Python
+37343,Java
+37344,Java;Kotlin
+37345,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37346,HTML/CSS;JavaScript;Ruby;SQL
+37347,C++;HTML/CSS;JavaScript;Python
+37348,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+37349,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+37350,C;C++;Python
+37351,Bash/Shell/PowerShell;Java;Python
+37352,HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+37353,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL;Swift;VBA
+37354,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;VBA
+37355,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+37356,C++;HTML/CSS;Java;JavaScript;Python
+37357,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37358,C++;HTML/CSS;JavaScript
+37359,HTML/CSS;Java;JavaScript;SQL
+37360,C++;HTML/CSS;PHP
+37361,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+37362,Java;Other(s):
+37363,C;C++;C#;HTML/CSS;Python
+37364,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+37365,JavaScript;Python
+37366,Bash/Shell/PowerShell;C;Python
+37367,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+37368,Bash/Shell/PowerShell;HTML/CSS;Ruby
+37369,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+37370,Bash/Shell/PowerShell;HTML/CSS;SQL
+37371,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Scala
+37372,Bash/Shell/PowerShell;C++;C#;SQL;VBA;Other(s):
+37373,Bash/Shell/PowerShell;Java;Scala;SQL
+37374,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+37375,C#;Python
+37376,HTML/CSS;JavaScript;PHP
+37377,C++;JavaScript;Python;TypeScript
+37378,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+37379,HTML/CSS;JavaScript;Python;SQL
+37380,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL;Other(s):
+37381,C#;Java;JavaScript;SQL;Other(s):
+37382,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+37383,JavaScript
+37384,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+37385,Bash/Shell/PowerShell;Python
+37386,C#;HTML/CSS;JavaScript;PHP;SQL
+37387,C#;Java;Kotlin;Python
+37388,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+37389,Go;HTML/CSS;JavaScript;Python
+37390,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Kotlin;Python;R;SQL
+37391,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA;Other(s):
+37392,C++;Java;SQL
+37393,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python
+37394,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+37395,HTML/CSS;JavaScript;Other(s):
+37396,HTML/CSS;Python;SQL
+37397,Java;Kotlin
+37398,PHP
+37399,HTML/CSS;Java;Kotlin;Python;TypeScript
+37400,HTML/CSS;JavaScript
+37401,HTML/CSS;JavaScript;PHP;Other(s):
+37402,HTML/CSS;Python;Rust;SQL;Other(s):
+37403,JavaScript;PHP;Other(s):
+37404,HTML/CSS;Java;JavaScript;Kotlin;Python
+37405,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+37406,Java;SQL
+37407,Bash/Shell/PowerShell;C;C++;Python
+37408,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+37409,Java;SQL
+37410,Bash/Shell/PowerShell;C;C++;Kotlin;Swift
+37411,JavaScript;Python
+37412,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+37413,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;VBA
+37414,C;C++;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Swift;TypeScript
+37415,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+37416,C#
+37417,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37418,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37419,F#;HTML/CSS;Other(s):
+37420,C;HTML/CSS;PHP;Python
+37421,C#;HTML/CSS;JavaScript;PHP;SQL
+37422,HTML/CSS;JavaScript;SQL;TypeScript
+37424,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+37425,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+37426,C++;Java;Python
+37427,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Scala
+37428,HTML/CSS;JavaScript;PHP;SQL
+37429,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+37430,Python;Other(s):
+37431,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript;VBA
+37432,PHP;Python
+37433,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37434,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+37435,Bash/Shell/PowerShell;Java;SQL
+37436,C#;HTML/CSS;SQL;VBA
+37437,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+37438,HTML/CSS;Java;JavaScript;Python
+37439,C#;JavaScript;SQL;TypeScript
+37440,C#;HTML/CSS;JavaScript;SQL
+37441,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37442,Bash/Shell/PowerShell;Python;SQL
+37443,Java;SQL;TypeScript
+37444,HTML/CSS;Java
+37445,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Scala;SQL;Swift;TypeScript
+37446,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37447,C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+37448,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+37449,C#;HTML/CSS;Java;JavaScript;SQL
+37450,C;C++;C#;Java;Kotlin;SQL
+37451,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+37452,C++;C#;Java;Kotlin;Python;Swift
+37453,Python;R;SQL
+37454,Bash/Shell/PowerShell;C;C++;C#;F#;Java;JavaScript;Objective-C;Python;Rust;SQL;TypeScript;WebAssembly
+37455,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+37456,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+37457,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+37458,Bash/Shell/PowerShell;JavaScript;Python
+37459,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+37460,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+37461,Go;HTML/CSS;JavaScript
+37462,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+37463,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+37464,Bash/Shell/PowerShell;Java;Kotlin
+37465,JavaScript;Python;SQL
+37466,Objective-C;Swift
+37467,Bash/Shell/PowerShell;Python;SQL;VBA
+37468,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+37469,C++;Java;JavaScript;SQL;Other(s):
+37470,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+37471,Bash/Shell/PowerShell;C#;Dart;Elixir;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript;Other(s):
+37472,Java;Kotlin;PHP
+37473,C#;HTML/CSS;JavaScript;TypeScript
+37474,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+37475,C;Java
+37476,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37477,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+37478,C++;C#;Java
+37479,HTML/CSS;JavaScript;TypeScript
+37480,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+37481,Python
+37482,C++;C#;JavaScript;SQL;VBA
+37483,Bash/Shell/PowerShell;Go;JavaScript;Python
+37484,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+37485,C#;HTML/CSS;JavaScript;Swift;TypeScript
+37486,HTML/CSS;JavaScript;PHP;SQL
+37487,Java
+37488,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37489,C#;HTML/CSS;JavaScript;SQL
+37490,Kotlin
+37491,HTML/CSS;Java;JavaScript;SQL
+37492,HTML/CSS;JavaScript;PHP;Python
+37493,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+37494,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37495,JavaScript
+37496,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37497,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37498,C;C++;C#;HTML/CSS;Java;PHP
+37499,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Scala
+37500,Go;Java;JavaScript;SQL
+37501,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+37502,Bash/Shell/PowerShell;Java
+37503,Objective-C;Swift
+37504,HTML/CSS;Java;JavaScript
+37505,R
+37506,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+37507,HTML/CSS;Java;JavaScript;PHP;SQL
+37508,HTML/CSS;Kotlin;PHP;TypeScript
+37509,Java;JavaScript
+37510,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Swift
+37511,C#;HTML/CSS;JavaScript;SQL
+37512,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+37513,Java
+37514,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA
+37515,Other(s):
+37516,C;Java;Python
+37517,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37518,HTML/CSS;Java;JavaScript;SQL;Other(s):
+37519,Java;Kotlin;SQL
+37520,Bash/Shell/PowerShell;C;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript
+37521,C;C++;Java;Kotlin
+37522,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+37523,HTML/CSS;JavaScript;PHP;SQL
+37524,HTML/CSS;JavaScript;Ruby;SQL
+37525,C#;JavaScript
+37526,HTML/CSS;JavaScript;Ruby
+37528,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+37529,HTML/CSS;JavaScript;PHP;SQL
+37530,C#;Java
+37531,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;SQL;VBA
+37532,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+37533,Python;Ruby;SQL
+37534,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+37535,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37536,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL
+37537,HTML/CSS;Java;JavaScript
+37538,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+37539,C;HTML/CSS;Java;JavaScript;PHP;SQL
+37540,Bash/Shell/PowerShell;Objective-C;Swift
+37541,HTML/CSS;Java;PHP;SQL;VBA
+37542,C;C++;HTML/CSS;JavaScript;Python
+37543,C#;HTML/CSS;JavaScript;SQL
+37544,C++;HTML/CSS;Java;Kotlin;SQL
+37545,Python
+37546,HTML/CSS;JavaScript;Swift
+37547,C#;JavaScript;SQL;TypeScript
+37548,Go;Java
+37549,C;C++;HTML/CSS;JavaScript;PHP
+37550,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+37551,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+37552,Clojure;Python
+37553,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+37554,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+37555,HTML/CSS;Java;JavaScript;Python
+37556,Go;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL
+37557,HTML/CSS;Java;JavaScript;SQL;VBA
+37558,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37559,JavaScript
+37560,HTML/CSS;Java;Python;TypeScript
+37561,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+37562,HTML/CSS;JavaScript;PHP;SQL
+37563,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+37564,Java;SQL
+37565,C++;Python;R;SQL
+37566,Python
+37567,C#
+37568,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37569,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37570,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37571,C;C++;JavaScript;Objective-C
+37572,C#;JavaScript;SQL
+37573,Other(s):
+37574,C;C++;JavaScript;PHP;Python
+37575,HTML/CSS;JavaScript;PHP;Ruby;SQL
+37576,C#;HTML/CSS;Java;JavaScript;TypeScript
+37577,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+37578,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+37579,C#;HTML/CSS;JavaScript;SQL
+37580,Bash/Shell/PowerShell;C#;SQL
+37581,Dart;Java;JavaScript;Ruby;SQL;TypeScript
+37582,HTML/CSS;JavaScript;Python;R
+37583,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+37584,Java;SQL;TypeScript;Other(s):
+37585,Java;Python;Scala
+37586,Java;JavaScript;TypeScript
+37587,C;Python
+37588,C#;HTML/CSS;JavaScript;SQL
+37589,Bash/Shell/PowerShell;C;C#;Elixir;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Rust;SQL
+37590,Python
+37591,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+37592,C#;HTML/CSS;JavaScript;SQL
+37593,Bash/Shell/PowerShell;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+37594,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+37595,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+37596,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;SQL
+37597,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+37598,Go;HTML/CSS;Java;JavaScript;Python
+37600,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+37601,HTML/CSS;JavaScript;TypeScript
+37602,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python
+37603,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;Other(s):
+37604,HTML/CSS;JavaScript
+37605,Elixir
+37606,HTML/CSS;Java;JavaScript;Kotlin;SQL
+37607,Bash/Shell/PowerShell;Python;R;Other(s):
+37608,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA
+37609,Assembly;Bash/Shell/PowerShell;C;C++;Python
+37610,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+37611,Java;JavaScript;PHP;SQL
+37612,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+37613,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37614,SQL;VBA;Other(s):
+37615,Assembly;Bash/Shell/PowerShell;C;Python
+37616,Java;SQL
+37617,C#;SQL;Other(s):
+37618,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+37619,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+37620,Go;HTML/CSS;JavaScript;Python
+37621,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+37622,Python;R;Other(s):
+37623,Assembly;Bash/Shell/PowerShell;C;C++;Rust;WebAssembly
+37624,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+37625,Bash/Shell/PowerShell;Python;Scala;TypeScript
+37626,HTML/CSS;Swift
+37627,Assembly;C;C++;C#;Java;Python;SQL;Other(s):
+37628,Objective-C;Swift
+37629,C;HTML/CSS;Python;R;SQL
+37630,Erlang;Java;Scala
+37631,Python;SQL
+37632,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+37633,C#;HTML/CSS;JavaScript;PHP;SQL
+37634,C++;Go;Java;Kotlin;Python
+37635,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+37636,Java;Kotlin;SQL
+37637,Other(s):
+37638,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+37639,C;C++;Go;HTML/CSS;Java;Objective-C;Python;R;SQL
+37640,C#;HTML/CSS;Python;SQL
+37641,Java;JavaScript;SQL;TypeScript
+37642,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+37643,Objective-C;Ruby;Swift
+37644,HTML/CSS;Java;JavaScript;SQL
+37645,R
+37646,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java
+37647,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+37648,C;C++;HTML/CSS;Python;SQL
+37649,HTML/CSS;Python;R;SQL
+37650,Java;JavaScript;SQL
+37651,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37652,HTML/CSS;JavaScript
+37653,C#;Go;HTML/CSS;JavaScript;SQL
+37654,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+37655,HTML/CSS;JavaScript;TypeScript
+37656,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+37657,Java;JavaScript
+37658,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+37659,Java;JavaScript
+37660,JavaScript
+37661,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+37662,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37663,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37664,HTML/CSS;JavaScript
+37665,Assembly
+37666,C++;Java;Python
+37667,Java;Kotlin;Python
+37668,Java;JavaScript;SQL
+37669,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+37670,C#;SQL
+37671,C#;Dart;HTML/CSS;JavaScript;TypeScript
+37672,Assembly;C;C#;Python;VBA
+37673,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python
+37674,Bash/Shell/PowerShell;C++;C#;Python;R;SQL;TypeScript
+37675,Bash/Shell/PowerShell;C#;Python
+37676,Java
+37677,C++;C#;F#
+37678,Java;JavaScript;Other(s):
+37679,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+37680,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+37681,R;SQL
+37682,C#;HTML/CSS;JavaScript;Python
+37683,HTML/CSS;JavaScript;Python
+37684,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+37685,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+37687,C#;HTML/CSS;JavaScript;Python;Rust;SQL
+37688,C#;HTML/CSS;Other(s):
+37689,Bash/Shell/PowerShell;C#;SQL
+37690,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Other(s):
+37691,HTML/CSS;Java;JavaScript;SQL
+37692,HTML/CSS;Java;PHP;SQL;VBA
+37693,Python
+37694,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+37695,Java;SQL
+37696,HTML/CSS;Other(s):
+37697,C#;HTML/CSS;Java
+37698,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37699,HTML/CSS
+37700,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+37701,HTML/CSS;JavaScript;PHP
+37702,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37703,Bash/Shell/PowerShell;JavaScript;TypeScript
+37704,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Swift
+37705,Java;Kotlin
+37706,Bash/Shell/PowerShell;R;Scala;SQL
+37707,HTML/CSS;JavaScript;PHP;SQL
+37708,HTML/CSS;Python;R;SQL
+37709,Bash/Shell/PowerShell;Go;Python
+37710,Bash/Shell/PowerShell;JavaScript
+37711,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+37712,C#;SQL
+37713,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+37714,C;C++;Java;SQL
+37715,JavaScript;Python;Rust
+37716,C;C++
+37717,C++;SQL;VBA
+37718,C++;C#;HTML/CSS;JavaScript;SQL
+37719,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+37720,Java;Kotlin;SQL
+37721,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+37722,C#;Go;HTML/CSS;JavaScript;TypeScript
+37723,Java;JavaScript;PHP;SQL
+37724,Java;SQL
+37725,HTML/CSS
+37726,C#;HTML/CSS;JavaScript;SQL;VBA
+37727,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+37728,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;Python
+37729,C#;JavaScript;TypeScript
+37730,HTML/CSS;Java;JavaScript;SQL
+37731,HTML/CSS;JavaScript;SQL;TypeScript
+37732,C;HTML/CSS;JavaScript;SQL;Other(s):
+37733,C++;HTML/CSS;JavaScript;Rust;WebAssembly
+37734,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+37735,C#;HTML/CSS;JavaScript;SQL
+37736,C#;HTML/CSS;JavaScript;SQL;TypeScript
+37737,C;C++;C#;Python
+37738,HTML/CSS;JavaScript;SQL;TypeScript
+37739,HTML/CSS;Java;JavaScript;Python;SQL
+37740,C++;HTML/CSS;JavaScript;SQL
+37741,Bash/Shell/PowerShell;Elixir;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+37742,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL;VBA
+37743,C;C++;HTML/CSS;Objective-C;Python
+37744,C++;Python
+37745,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+37746,C#;SQL
+37747,Java;Scala
+37748,C;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+37749,Assembly;Bash/Shell/PowerShell;C;Go;Python
+37750,C++;C#;SQL
+37751,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python
+37752,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;Swift;Other(s):
+37753,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+37754,C#;HTML/CSS;Java;Objective-C;SQL;TypeScript
+37755,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37756,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;Python;SQL;VBA
+37757,Bash/Shell/PowerShell;Java;SQL;TypeScript
+37758,C;C++;JavaScript;Python
+37759,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+37760,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+37761,C#;HTML/CSS;JavaScript;SQL
+37762,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+37763,HTML/CSS;JavaScript;Python;SQL
+37764,C#;Python
+37765,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+37766,HTML/CSS;JavaScript;PHP
+37767,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+37768,C#;SQL
+37769,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+37770,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+37771,HTML/CSS;Java;JavaScript;SQL;VBA
+37772,C#;HTML/CSS;JavaScript;SQL
+37773,HTML/CSS;Java;JavaScript;SQL
+37774,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+37775,C++;Java;Kotlin
+37776,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+37777,HTML/CSS;JavaScript;Python
+37778,Bash/Shell/PowerShell;Clojure
+37779,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+37780,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+37781,Java;SQL
+37782,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+37783,Objective-C;Swift
+37784,HTML/CSS;JavaScript;PHP
+37785,Bash/Shell/PowerShell;Python
+37786,C#;JavaScript;SQL;TypeScript
+37787,C#;JavaScript;TypeScript
+37788,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;Rust
+37789,C#;HTML/CSS;JavaScript;SQL
+37790,Java;R
+37791,C;C++;Java;JavaScript;Objective-C;PHP;SQL;Swift
+37792,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+37793,Bash/Shell/PowerShell;R;Ruby;SQL;Other(s):
+37794,Bash/Shell/PowerShell;C;C++;Java;Kotlin
+37795,HTML/CSS
+37796,HTML/CSS;Java;JavaScript;SQL;Other(s):
+37797,Objective-C;Swift
+37798,Java;Kotlin
+37799,Assembly;Clojure;Go;Python;SQL
+37800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+37801,C++;C#;Go;HTML/CSS;PHP;SQL;Swift
+37802,Assembly;Bash/Shell/PowerShell;Swift
+37803,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+37804,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;TypeScript
+37805,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37806,C#;JavaScript;SQL
+37808,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;R;SQL;TypeScript
+37809,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+37810,HTML/CSS;JavaScript;TypeScript
+37811,HTML/CSS;Java;JavaScript;TypeScript
+37812,HTML/CSS;Java;JavaScript;Other(s):
+37813,C#;HTML/CSS;Python;SQL
+37814,C++;Other(s):
+37815,HTML/CSS;Java;Python
+37816,HTML/CSS;Java;JavaScript;SQL
+37817,C#;Java;Python
+37818,HTML/CSS;JavaScript;Python;R;SQL
+37819,Other(s):
+37820,HTML/CSS;JavaScript;Python;SQL;TypeScript
+37821,Java;SQL
+37822,Bash/Shell/PowerShell;C
+37823,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+37824,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+37825,C;C++;HTML/CSS;Java;JavaScript;PHP
+37826,JavaScript;Python;R;SQL
+37827,C#;HTML/CSS;JavaScript;SQL
+37828,HTML/CSS;JavaScript;PHP;SQL
+37829,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+37830,Go;HTML/CSS;JavaScript;Python
+37831,JavaScript;PHP
+37832,Swift
+37833,Assembly;C;C++;Java;Objective-C;PHP;VBA
+37834,C;HTML/CSS;Java;JavaScript;PHP;Python
+37835,HTML/CSS;JavaScript
+37836,C#;HTML/CSS;JavaScript;PHP;SQL
+37837,C#;HTML/CSS;JavaScript;PHP;Python
+37838,HTML/CSS;JavaScript;PHP;SQL
+37839,HTML/CSS;JavaScript
+37840,HTML/CSS;JavaScript;TypeScript
+37841,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+37842,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+37843,R;Ruby;SQL
+37844,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+37845,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+37846,JavaScript;Python
+37847,HTML/CSS;SQL
+37848,Bash/Shell/PowerShell;Java
+37849,Java;Python
+37851,Java;Kotlin;SQL
+37852,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Scala
+37853,HTML/CSS;JavaScript;PHP;SQL
+37856,C#;SQL;Other(s):
+37857,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+37858,C;C++;Java;Kotlin
+37859,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+37860,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+37861,HTML/CSS;JavaScript;TypeScript
+37862,HTML/CSS;JavaScript;PHP;SQL
+37863,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37864,C;C++;Java;Python;Other(s):
+37865,JavaScript
+37866,Python
+37867,Objective-C;Swift
+37868,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+37869,C;C++;C#;Java;SQL
+37870,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+37871,HTML/CSS;Java;JavaScript;PHP;SQL
+37872,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+37873,C#;HTML/CSS;JavaScript;PHP;SQL
+37874,Bash/Shell/PowerShell;C;C++;Python;R;Other(s):
+37875,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37876,Bash/Shell/PowerShell;C;C++;SQL
+37877,HTML/CSS;JavaScript;Python;SQL;TypeScript
+37878,C++;C#;Python
+37879,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;VBA
+37880,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+37881,HTML/CSS;Java;JavaScript;SQL
+37882,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37883,Python
+37884,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+37885,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+37886,C#;HTML/CSS;JavaScript;SQL;Other(s):
+37887,C#;HTML/CSS;JavaScript;SQL
+37888,Assembly;Bash/Shell/PowerShell;C;Python;Other(s):
+37889,Dart;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+37890,Bash/Shell/PowerShell;JavaScript;Swift
+37891,Bash/Shell/PowerShell;C#;JavaScript;Python;R;Ruby;SQL
+37892,C++;HTML/CSS;JavaScript;PHP;SQL
+37893,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;TypeScript
+37894,Assembly;HTML/CSS;Java;JavaScript;SQL
+37895,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+37896,Python
+37897,Java;JavaScript;Kotlin;Python;SQL;TypeScript
+37898,C;C++
+37899,Assembly;C;C++;C#;PHP;SQL;VBA;Other(s):
+37900,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+37901,C#;HTML/CSS;Java;JavaScript;TypeScript
+37902,JavaScript;Swift
+37903,Assembly;C;C++;C#;Python
+37904,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;TypeScript
+37905,Bash/Shell/PowerShell;Go;PHP;Ruby;SQL
+37906,Python
+37907,Assembly;C;HTML/CSS;JavaScript;PHP;Python
+37908,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+37909,C#;HTML/CSS;JavaScript;SQL
+37910,Java
+37911,HTML/CSS;JavaScript;PHP;SQL
+37912,C#;HTML/CSS;JavaScript;TypeScript
+37913,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript
+37914,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python
+37915,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+37916,HTML/CSS;Java;JavaScript;PHP;SQL
+37917,HTML/CSS;JavaScript;PHP;SQL
+37918,Dart;Java;Kotlin
+37919,C++;JavaScript
+37920,HTML/CSS;JavaScript;PHP
+37921,C#;HTML/CSS;JavaScript;SQL
+37922,Rust
+37923,HTML/CSS;Java;SQL
+37924,Java;Kotlin;Objective-C;Swift
+37925,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+37926,JavaScript;Python;SQL
+37927,HTML/CSS;JavaScript;PHP;SQL
+37928,C#;HTML/CSS;SQL;TypeScript
+37929,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Rust;Scala;SQL
+37930,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL
+37931,C;C++;HTML/CSS;JavaScript;Ruby;SQL
+37932,C#;HTML/CSS;JavaScript;PHP;Python
+37933,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python
+37934,Bash/Shell/PowerShell;HTML/CSS;Python
+37935,Assembly;C;C++;Java;PHP
+37936,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+37937,JavaScript;PHP;Python;SQL;VBA
+37938,HTML/CSS;JavaScript;Python;SQL
+37939,HTML/CSS;JavaScript;Ruby
+37940,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+37941,C#;HTML/CSS;JavaScript;Python;SQL
+37942,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python
+37943,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+37944,HTML/CSS;JavaScript;Python;R;SQL
+37945,C;Java;JavaScript;SQL
+37946,C#;JavaScript;SQL;TypeScript
+37947,C#;HTML/CSS;JavaScript;SQL
+37948,C#;SQL
+37949,HTML/CSS;Java;JavaScript;SQL
+37950,HTML/CSS;JavaScript;Python;SQL
+37952,HTML/CSS;Java;JavaScript;SQL
+37953,HTML/CSS;Java;JavaScript;Python;SQL
+37954,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;TypeScript
+37955,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Other(s):
+37956,JavaScript;Other(s):
+37957,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+37958,VBA
+37959,C#;Erlang;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+37960,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+37961,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;SQL
+37962,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+37963,Bash/Shell/PowerShell;Go;Python
+37964,C#
+37965,Java
+37966,Bash/Shell/PowerShell;C#;Java;Python
+37967,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+37968,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;Ruby;Rust;Scala;SQL
+37969,C;C++;Java;Python;SQL
+37970,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+37971,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+37972,C#;HTML/CSS;JavaScript;TypeScript
+37973,Bash/Shell/PowerShell;C++;PHP;Python;Swift
+37974,C#;Java;SQL
+37975,HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+37976,C#;HTML/CSS;Java
+37977,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+37978,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+37979,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+37980,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+37981,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;Python;Ruby;SQL
+37982,HTML/CSS;R;SQL;VBA
+37983,C++;JavaScript;Python;SQL
+37985,HTML/CSS;JavaScript;TypeScript
+37986,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Rust;SQL
+37987,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+37988,C#;HTML/CSS;JavaScript;SQL;VBA
+37989,HTML/CSS;JavaScript;SQL;TypeScript
+37990,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+37991,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+37992,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+37994,C;C++;HTML/CSS;PHP;Python;Ruby;SQL
+37995,Java
+37996,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;Ruby;Swift
+37997,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+37998,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+37999,Java;SQL
+38000,Bash/Shell/PowerShell;C#;SQL
+38001,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+38002,HTML/CSS;JavaScript;SQL;Swift;Other(s):
+38003,C#;Kotlin
+38004,C#;SQL
+38005,C#;HTML/CSS;JavaScript
+38006,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+38007,Bash/Shell/PowerShell;TypeScript
+38008,HTML/CSS;Java;Python;Swift
+38009,C#;Java;Kotlin
+38010,HTML/CSS;Java;SQL
+38011,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+38012,C++;C#;HTML/CSS;Java;JavaScript;SQL
+38013,C#;HTML/CSS;Python;Ruby;SQL
+38014,Java;JavaScript;Python;TypeScript
+38015,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+38016,HTML/CSS;JavaScript;Python;Ruby;TypeScript
+38017,C++;Python
+38018,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+38019,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+38020,C#;HTML/CSS;JavaScript;TypeScript
+38021,C++;F#;Kotlin;Rust
+38022,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+38023,Bash/Shell/PowerShell;Python;SQL
+38024,Bash/Shell/PowerShell;Java;Python
+38025,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+38026,Python
+38027,HTML/CSS;JavaScript;SQL
+38028,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala
+38029,Go;HTML/CSS;JavaScript;Python;SQL
+38030,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+38031,C#;HTML/CSS;JavaScript;SQL
+38032,HTML/CSS;JavaScript;PHP
+38033,C++;C#
+38034,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP
+38035,Objective-C;Swift
+38036,Bash/Shell/PowerShell;C++;Java;Python
+38037,C#
+38038,HTML/CSS;JavaScript;VBA
+38039,C#;HTML/CSS;R;SQL
+38040,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+38041,C#;HTML/CSS;JavaScript;Ruby;SQL
+38042,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38043,Assembly;Bash/Shell/PowerShell;C;Elixir;Erlang;Go;Java;Python;R;Rust;SQL;Other(s):
+38044,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+38045,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA;WebAssembly
+38046,C#;HTML/CSS;SQL;TypeScript
+38047,Java;Python
+38048,Assembly;C;C++
+38049,HTML/CSS;JavaScript;PHP;SQL
+38050,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+38051,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+38053,C;C++;Java;Python;R
+38054,C++;Python
+38055,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+38056,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+38057,C#;HTML/CSS;JavaScript;SQL
+38058,Assembly;C;C++;JavaScript;SQL;Other(s):
+38059,Bash/Shell/PowerShell;C#;Java;SQL;TypeScript
+38060,C;Python
+38061,Java;Python;SQL
+38062,SQL
+38063,Java
+38064,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+38065,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+38066,C++;Python;Ruby
+38067,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python
+38068,C#;Java;JavaScript;Kotlin;SQL;TypeScript
+38069,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+38070,Assembly;Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;Scala;Other(s):
+38071,C++;Java;Python
+38072,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+38073,HTML/CSS;JavaScript;Python;SQL
+38074,Python
+38075,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+38076,JavaScript;PHP;SQL
+38077,HTML/CSS;JavaScript;Python;Ruby
+38078,HTML/CSS;Java;JavaScript;TypeScript
+38079,Java;Kotlin
+38080,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+38081,C;Elixir;Erlang
+38082,Java;JavaScript;SQL;TypeScript
+38083,C;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+38084,C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+38085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+38086,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+38087,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+38088,Java;JavaScript;Python;Ruby;Scala;SQL
+38089,Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+38090,C#;JavaScript;SQL;TypeScript
+38091,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+38092,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+38093,HTML/CSS;JavaScript;PHP;Other(s):
+38094,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL;Other(s):
+38095,C++;Java;PHP;Python
+38096,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+38097,HTML/CSS;Java;JavaScript;SQL
+38098,Java
+38099,Bash/Shell/PowerShell;R;Other(s):
+38100,C#;HTML/CSS;JavaScript;SQL
+38101,Go;Java;Kotlin;TypeScript
+38102,Bash/Shell/PowerShell;Java;JavaScript
+38103,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift;TypeScript
+38104,Bash/Shell/PowerShell;C
+38105,Assembly;C;C++;Python
+38106,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+38107,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38108,C++;C#;Java;Kotlin;Objective-C;PHP;SQL;Swift
+38109,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+38110,Objective-C;Swift
+38111,C#;HTML/CSS;Java;SQL;TypeScript
+38112,C#;HTML/CSS;JavaScript;SQL
+38113,Python
+38114,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+38115,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+38116,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;SQL
+38117,HTML/CSS;JavaScript;PHP;Python;SQL
+38118,HTML/CSS;Java;JavaScript;TypeScript
+38119,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38120,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+38121,C#;JavaScript;SQL;TypeScript
+38122,C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+38123,C#;HTML/CSS;JavaScript;PHP;SQL
+38124,HTML/CSS
+38125,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+38126,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+38127,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python
+38128,Java;Kotlin;SQL
+38129,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+38130,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+38131,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Swift;TypeScript;Other(s):
+38132,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Rust;SQL;Swift;TypeScript
+38133,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift
+38134,C#;HTML/CSS;JavaScript;SQL
+38135,Bash/Shell/PowerShell;C#;Python;Other(s):
+38136,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+38137,C++;HTML/CSS;Java;SQL
+38138,Assembly;HTML/CSS;JavaScript;Python;SQL
+38139,C++;HTML/CSS;Java;JavaScript;SQL;VBA
+38140,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+38141,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Rust;SQL;TypeScript;WebAssembly
+38142,Assembly;Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+38143,HTML/CSS;JavaScript;PHP;Python;TypeScript
+38144,Assembly;F#;SQL;VBA
+38145,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+38146,Bash/Shell/PowerShell;Go;JavaScript;Python
+38147,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+38149,C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+38150,HTML/CSS;JavaScript;TypeScript
+38151,C++;Java;JavaScript;Python;Scala;SQL
+38152,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38153,C#;HTML/CSS;Java
+38154,Java
+38155,Bash/Shell/PowerShell;JavaScript;Python;SQL
+38156,SQL;VBA;Other(s):
+38157,HTML/CSS;JavaScript;TypeScript
+38158,C++;C#;JavaScript;Python
+38159,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+38160,C#;Java;SQL
+38161,C;C++;Python
+38162,C++;C#;HTML/CSS;JavaScript;SQL
+38163,Objective-C;Swift
+38164,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Scala;SQL
+38165,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;R;SQL
+38166,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+38167,Python;SQL
+38168,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+38169,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+38170,Bash/Shell/PowerShell;JavaScript;Python;SQL
+38171,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+38172,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+38173,C#;HTML/CSS;Java;JavaScript;SQL
+38174,C++;Objective-C;Python;Swift
+38175,HTML/CSS;Java;JavaScript;Python;SQL
+38176,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+38177,C#;SQL
+38178,Bash/Shell/PowerShell;C++;Python
+38179,HTML/CSS;JavaScript;Ruby;SQL
+38180,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+38181,HTML/CSS;PHP;SQL;TypeScript
+38182,C;Elixir;Go;JavaScript;Python;TypeScript
+38183,Java
+38184,Assembly;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+38185,C
+38186,C#;Python
+38187,Bash/Shell/PowerShell;JavaScript;Objective-C;Ruby;Swift;TypeScript;Other(s):
+38188,HTML/CSS;Java;PHP;SQL;Other(s):
+38189,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+38190,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;Swift
+38191,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+38192,Assembly;Bash/Shell/PowerShell;C;C++;C#;SQL
+38193,Bash/Shell/PowerShell;C#;HTML/CSS;Python;Other(s):
+38194,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+38195,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+38196,C;C++;Java;JavaScript;Objective-C
+38197,HTML/CSS;JavaScript;PHP;Python;SQL
+38198,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+38199,JavaScript
+38201,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+38202,C;C++;JavaScript;Python
+38203,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38204,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+38205,Assembly;C;C++;HTML/CSS;JavaScript;Rust;SQL
+38206,Java
+38207,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+38208,C++;Python;R
+38209,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+38210,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+38211,C#;JavaScript
+38212,Bash/Shell/PowerShell;Java;Python
+38213,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+38214,HTML/CSS;JavaScript;PHP;SQL
+38215,Python
+38216,HTML/CSS;JavaScript
+38217,F#;HTML/CSS;Java;SQL
+38218,HTML/CSS;Java;JavaScript;SQL;TypeScript
+38219,HTML/CSS;JavaScript;PHP;SQL
+38220,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+38221,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38222,C++;C#;HTML/CSS;JavaScript;Python
+38223,HTML/CSS;JavaScript;PHP;Python;SQL
+38224,Bash/Shell/PowerShell;Python
+38225,Bash/Shell/PowerShell;PHP;Python;Ruby;SQL
+38226,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+38227,C#;Java;Objective-C;SQL;Swift
+38228,Bash/Shell/PowerShell;Java;Scala
+38229,HTML/CSS;JavaScript;Ruby
+38230,Assembly;Python;Ruby;SQL
+38231,C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+38232,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+38233,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38234,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38236,JavaScript;Python
+38237,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby
+38238,HTML/CSS;JavaScript;PHP;Python;SQL
+38239,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+38240,Bash/Shell/PowerShell;HTML/CSS;Java
+38241,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+38242,Java;Other(s):
+38243,C;C++;HTML/CSS;JavaScript;PHP
+38244,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;WebAssembly
+38245,C#;HTML/CSS;JavaScript
+38246,HTML/CSS;Java;PHP;SQL;TypeScript
+38247,HTML/CSS;JavaScript;PHP;SQL
+38248,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+38249,Bash/Shell/PowerShell;Python;SQL
+38250,C;C++;Java;JavaScript;Python;SQL
+38251,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;R;SQL
+38252,Go;JavaScript;TypeScript
+38253,Java;Python;Scala
+38254,Java;Ruby;SQL
+38255,Bash/Shell/PowerShell;Dart;Go;Java;Kotlin;SQL
+38256,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+38257,Bash/Shell/PowerShell;C#;F#;JavaScript;Python;Scala;SQL
+38258,Python
+38259,Java;Kotlin;Ruby
+38260,JavaScript;SQL
+38261,Objective-C;Swift
+38262,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+38263,PHP;Other(s):
+38264,HTML/CSS;JavaScript
+38265,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+38266,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;VBA
+38267,C#;Python
+38268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+38269,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;R;Ruby;SQL
+38270,HTML/CSS;Java;JavaScript
+38271,Bash/Shell/PowerShell;JavaScript;Python;TypeScript;WebAssembly
+38272,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+38273,HTML/CSS;JavaScript;TypeScript
+38274,Java;JavaScript
+38275,Elixir;Java;JavaScript;TypeScript
+38276,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+38277,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+38278,Bash/Shell/PowerShell;C;HTML/CSS;Python
+38279,HTML/CSS;PHP;Python;Swift
+38280,Go;HTML/CSS;Java;JavaScript;TypeScript
+38281,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+38282,C++;Python
+38283,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Python;Rust;TypeScript
+38284,Java
+38285,Assembly;C;C++;C#;HTML/CSS;Java;SQL
+38286,HTML/CSS;JavaScript
+38287,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Rust;SQL;TypeScript;WebAssembly;Other(s):
+38288,C#
+38289,Bash/Shell/PowerShell;C#;SQL;Other(s):
+38290,HTML/CSS;Java;JavaScript;PHP;Scala
+38291,C#;HTML/CSS;SQL;TypeScript;VBA
+38292,C#;HTML/CSS;Java;JavaScript;SQL
+38293,C#
+38294,C++;Java;PHP;SQL
+38295,C#;HTML/CSS;JavaScript;TypeScript
+38296,C++;JavaScript;PHP
+38297,HTML/CSS;JavaScript;SQL;TypeScript;VBA
+38298,C;Java;Python
+38299,HTML/CSS;Java;JavaScript;SQL
+38300,Assembly;HTML/CSS
+38301,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;Scala;SQL;TypeScript
+38302,C++;HTML/CSS;Python
+38303,C;C++;HTML/CSS;JavaScript
+38304,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+38305,C#;HTML/CSS;JavaScript;SQL
+38306,Bash/Shell/PowerShell;Java;Python;SQL
+38307,C#;SQL
+38308,Go;HTML/CSS;JavaScript;PHP;Python
+38309,JavaScript;PHP;Ruby
+38310,HTML/CSS;JavaScript;PHP;TypeScript
+38311,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+38312,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+38313,C;C++;Java;SQL
+38314,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+38315,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+38316,Objective-C;Swift
+38317,Python;SQL;Other(s):
+38318,Bash/Shell/PowerShell;JavaScript;Python;SQL
+38319,HTML/CSS;Java;JavaScript;SQL
+38320,C;C++;Clojure;Erlang;Python;Other(s):
+38321,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+38322,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+38323,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+38324,Bash/Shell/PowerShell;Clojure;Java;Kotlin;Python
+38325,Bash/Shell/PowerShell;HTML/CSS;Python
+38326,SQL;Other(s):
+38327,Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+38328,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+38329,Bash/Shell/PowerShell;C#;F#;SQL
+38330,C#;HTML/CSS;JavaScript;Ruby;SQL;Swift;TypeScript
+38331,C#;HTML/CSS;JavaScript;SQL;VBA
+38332,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+38333,HTML/CSS;JavaScript;Python;TypeScript
+38334,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+38335,Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+38336,C;C++;Java;JavaScript;Python;SQL
+38337,Bash/Shell/PowerShell;Java;Python
+38338,HTML/CSS;Java;JavaScript
+38339,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+38340,Bash/Shell/PowerShell;JavaScript;Python
+38341,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38342,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+38343,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38344,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Python
+38345,C;C++;Python
+38346,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+38347,HTML/CSS;JavaScript;PHP
+38348,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+38349,Bash/Shell/PowerShell;F#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38350,Bash/Shell/PowerShell;Java;Python
+38351,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+38352,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+38353,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+38354,C++;JavaScript;Python
+38355,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+38356,Bash/Shell/PowerShell;C#;Python;R;SQL;VBA
+38357,HTML/CSS;Java;JavaScript;VBA
+38358,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+38359,HTML/CSS;PHP
+38360,HTML/CSS;JavaScript;Python
+38361,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+38362,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+38363,Bash/Shell/PowerShell;Go;SQL
+38364,Other(s):
+38365,C#;Java;JavaScript
+38366,C++;C#;Python
+38367,C++;C#;HTML/CSS;Java;JavaScript;SQL
+38368,C#;HTML/CSS;JavaScript;SQL;VBA
+38369,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;Kotlin
+38370,Java;JavaScript;PHP;SQL
+38371,C;C++;Python;SQL
+38372,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+38373,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+38374,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+38375,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+38376,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+38377,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+38378,C#
+38379,C#;SQL
+38380,Go;Ruby;SQL
+38381,C;C++;C#;HTML/CSS;Java;Kotlin;PHP;SQL
+38382,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+38383,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;Other(s):
+38384,HTML/CSS;JavaScript;PHP;Python;SQL
+38385,JavaScript;Other(s):
+38386,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+38387,HTML/CSS;JavaScript;PHP;SQL
+38388,HTML/CSS;Java;JavaScript
+38389,HTML/CSS;Java;JavaScript;Rust;Scala;TypeScript;WebAssembly
+38390,Bash/Shell/PowerShell;HTML/CSS;Python
+38391,Bash/Shell/PowerShell;C#;HTML/CSS;Ruby;SQL;TypeScript
+38392,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+38393,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA
+38394,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+38395,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;TypeScript
+38396,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+38397,Go;HTML/CSS;Java;JavaScript;TypeScript
+38398,Java;JavaScript;Python
+38399,C#;Java;JavaScript;Python;TypeScript
+38400,HTML/CSS;JavaScript;TypeScript
+38401,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+38402,HTML/CSS;Java;JavaScript;Python;SQL
+38403,Bash/Shell/PowerShell;Java;SQL
+38404,Bash/Shell/PowerShell;C++;JavaScript;Python
+38405,Bash/Shell/PowerShell;C#;F#;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+38406,Assembly;PHP
+38407,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+38408,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38409,Assembly;C;C++;C#;HTML/CSS;Java;Python
+38410,C;C++
+38411,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+38412,Python;R;SQL
+38413,C;C#;Java;SQL
+38414,HTML/CSS;Java;JavaScript;SQL
+38415,C#;HTML/CSS;SQL
+38416,Bash/Shell/PowerShell;C;Python
+38417,Assembly;HTML/CSS;JavaScript
+38418,HTML/CSS;Java;JavaScript;PHP;SQL
+38419,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+38420,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python
+38421,Other(s):
+38422,HTML/CSS;JavaScript;TypeScript
+38423,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+38424,C;C#;HTML/CSS;JavaScript;TypeScript
+38425,C++;JavaScript;PHP;SQL
+38426,HTML/CSS;Python;SQL
+38427,Dart;Elixir;HTML/CSS;JavaScript;TypeScript
+38428,C#;HTML/CSS
+38429,C;C++;C#;HTML/CSS;JavaScript;SQL
+38430,Bash/Shell/PowerShell;Java;JavaScript;SQL;VBA
+38431,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+38432,Bash/Shell/PowerShell;C;C++;Java;Objective-C;PHP;Python;Swift
+38433,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38434,Bash/Shell/PowerShell;Go;HTML/CSS;Python;Ruby;SQL
+38435,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Other(s):
+38436,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+38437,C#;HTML/CSS
+38438,Bash/Shell/PowerShell;C++;Python;Other(s):
+38439,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;TypeScript
+38440,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+38441,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+38442,Java;JavaScript;Objective-C;Swift;Other(s):
+38443,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL
+38444,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+38445,Scala
+38446,Assembly;Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+38447,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;TypeScript
+38448,HTML/CSS;JavaScript;Python
+38449,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+38450,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+38451,C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;Other(s):
+38452,HTML/CSS;JavaScript
+38453,JavaScript
+38454,C;C++;HTML/CSS;Java;JavaScript;SQL
+38455,Python;SQL;Swift
+38456,Python;R;Ruby
+38457,C#
+38458,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+38459,HTML/CSS;Java;JavaScript;Python
+38460,C++;Python
+38461,Bash/Shell/PowerShell;C++;Java;Python;SQL
+38462,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+38463,Go
+38464,HTML/CSS;JavaScript
+38465,HTML/CSS;Java;JavaScript;PHP
+38466,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+38467,Bash/Shell/PowerShell;R;SQL
+38468,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+38469,HTML/CSS;Java;JavaScript;PHP;Ruby;TypeScript
+38470,JavaScript;TypeScript
+38471,HTML/CSS;Java;JavaScript
+38472,HTML/CSS;Java;JavaScript
+38473,C#;HTML/CSS;JavaScript;PHP
+38474,C#;Java;Objective-C;Swift
+38475,C#;HTML/CSS;JavaScript;SQL
+38476,C#;HTML/CSS;JavaScript;SQL
+38477,C#;JavaScript
+38478,Java;Python
+38479,Python;R;Other(s):
+38480,JavaScript;PHP;Python;TypeScript
+38481,Bash/Shell/PowerShell;Python;SQL
+38482,C#
+38483,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+38484,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38485,C;HTML/CSS;Java;JavaScript;TypeScript
+38486,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL;TypeScript
+38487,Python;Ruby
+38488,C;C++;HTML/CSS;Java;JavaScript;SQL
+38489,C#;HTML/CSS;JavaScript;Python;R;SQL
+38490,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+38491,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+38492,Python;Scala
+38493,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+38494,C++
+38495,HTML/CSS;Java;JavaScript
+38496,C++;C#;JavaScript;Python
+38497,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+38498,C++;C#;HTML/CSS;Java;JavaScript;SQL
+38499,C#
+38500,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38501,HTML/CSS;JavaScript
+38502,Assembly;C;C++;HTML/CSS;JavaScript;PHP
+38503,C#;HTML/CSS;Java;Python;SQL
+38504,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+38505,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38506,C++;Python
+38507,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+38508,C;C#;SQL;Other(s):
+38510,C++;C#;Java
+38511,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+38512,C#;HTML/CSS;JavaScript;SQL
+38513,Java;Ruby;Other(s):
+38514,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+38515,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+38516,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+38517,Python
+38518,HTML/CSS;JavaScript;PHP;SQL
+38519,HTML/CSS;Java;JavaScript;SQL;TypeScript
+38520,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+38521,HTML/CSS;JavaScript;Ruby;SQL
+38522,Assembly;Clojure;HTML/CSS;JavaScript;SQL;Other(s):
+38523,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38524,C;JavaScript;TypeScript
+38525,Bash/Shell/PowerShell;Python
+38526,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+38527,HTML/CSS;JavaScript;TypeScript
+38528,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+38529,Assembly;Bash/Shell/PowerShell;C;Python
+38530,Bash/Shell/PowerShell
+38531,Kotlin;Objective-C;Swift
+38532,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+38533,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP
+38534,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+38535,Assembly;C#;HTML/CSS;JavaScript;SQL
+38536,C;C++;Rust
+38537,Clojure;Go;Python
+38538,C++;C#;JavaScript;SQL
+38539,C#;JavaScript
+38540,Java;Kotlin
+38541,C#;F#;HTML/CSS;JavaScript;Python;Rust;Scala;SQL
+38542,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;SQL
+38543,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38544,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;SQL
+38545,C#;SQL
+38546,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38547,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;Python;SQL;Swift
+38548,HTML/CSS;JavaScript;Python;TypeScript
+38549,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+38550,HTML/CSS;JavaScript;PHP;SQL
+38551,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+38552,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+38553,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+38554,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Rust;SQL;Other(s):
+38555,Bash/Shell/PowerShell;C;C++;Go;Python
+38556,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+38557,C#
+38558,C#;HTML/CSS;JavaScript;TypeScript
+38559,C#;PHP;Python;SQL;TypeScript
+38560,C++;JavaScript;Python
+38561,HTML/CSS;JavaScript;Python;SQL
+38562,HTML/CSS;Ruby;SQL
+38563,C#;JavaScript;SQL
+38564,Java;SQL
+38565,C#;HTML/CSS;JavaScript
+38566,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+38567,HTML/CSS;JavaScript
+38568,C;Java;SQL;Other(s):
+38569,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;PHP;Python
+38570,C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+38571,Bash/Shell/PowerShell;Java;Python;Scala;SQL;Other(s):
+38572,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+38573,HTML/CSS;Java;JavaScript;Python;SQL
+38574,C;Java;JavaScript;SQL
+38575,Go;HTML/CSS;JavaScript;Python;TypeScript
+38576,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Rust
+38577,C++;HTML/CSS;JavaScript;PHP;SQL
+38578,C;C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+38579,HTML/CSS;JavaScript;Python
+38580,C++;Java;Other(s):
+38581,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;Python;SQL;VBA
+38582,JavaScript;PHP;SQL
+38583,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+38584,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+38585,Bash/Shell/PowerShell;C;C++;C#;Objective-C;Python;Swift
+38586,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+38587,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+38588,Bash/Shell/PowerShell;C;Dart;Elixir;Go;Python;R;Ruby
+38590,Bash/Shell/PowerShell;Go;JavaScript;Scala;TypeScript
+38591,HTML/CSS;Java;JavaScript;SQL
+38592,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38593,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+38594,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;Scala;SQL
+38595,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+38596,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;TypeScript
+38597,C;JavaScript;Python
+38598,C++;Java;Other(s):
+38599,C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby
+38600,Java;SQL
+38601,C#;HTML/CSS;JavaScript
+38602,Bash/Shell/PowerShell;C;Go;HTML/CSS;Other(s):
+38603,Assembly;Bash/Shell/PowerShell;C++;C#
+38604,C;Java;Python;Ruby
+38605,Swift
+38606,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;Swift
+38607,C#;Go;JavaScript
+38608,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+38609,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+38610,C;C++;Java;Python
+38611,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38612,C#;HTML/CSS;JavaScript;TypeScript
+38613,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+38614,Clojure;Go;HTML/CSS;JavaScript;Python
+38615,Java;JavaScript;SQL
+38616,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+38617,HTML/CSS;JavaScript;Python;SQL
+38618,Go;JavaScript;Python;SQL
+38619,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+38620,Other(s):
+38621,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python
+38622,Bash/Shell/PowerShell;HTML/CSS;TypeScript
+38623,C;C++;Go;HTML/CSS;Kotlin;Python;Rust;TypeScript
+38624,HTML/CSS;JavaScript;Python;TypeScript
+38625,Bash/Shell/PowerShell;Java
+38626,C#;HTML/CSS;JavaScript;TypeScript
+38627,C;C++;HTML/CSS;Java;Kotlin;PHP
+38628,HTML/CSS;JavaScript;PHP;Python;SQL
+38629,C#;Java;JavaScript
+38630,C;Java;Python
+38631,C;C++;Go;Python;SQL
+38632,Java
+38633,Java;PHP;Scala;SQL;VBA
+38634,Bash/Shell/PowerShell;Go;Python;SQL
+38635,C
+38636,C#;SQL
+38637,Java
+38638,HTML/CSS;JavaScript;Swift
+38639,Assembly;Bash/Shell/PowerShell;C;C++
+38640,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+38641,Python
+38642,Other(s):
+38643,C#;Other(s):
+38644,C#;HTML/CSS;Java;JavaScript;SQL
+38645,C#;Java
+38646,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+38647,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+38648,HTML/CSS;JavaScript;TypeScript
+38649,HTML/CSS;JavaScript;PHP;SQL
+38650,HTML/CSS;JavaScript;Python
+38651,C++;HTML/CSS;Java;JavaScript;Python;SQL
+38652,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;VBA
+38653,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+38654,HTML/CSS;JavaScript;PHP
+38655,HTML/CSS;JavaScript;PHP;Python
+38656,Java;Ruby
+38657,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+38659,HTML/CSS;JavaScript;Ruby;SQL
+38661,Assembly;Java;JavaScript
+38662,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+38663,Bash/Shell/PowerShell;C++;Python;Ruby
+38664,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+38665,C#;Python
+38666,C#;HTML/CSS;JavaScript;SQL
+38667,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+38668,HTML/CSS;JavaScript;PHP;SQL;Swift
+38669,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+38670,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+38671,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+38672,C#;Java;JavaScript;VBA
+38673,C++;HTML/CSS;JavaScript;Python
+38674,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL
+38675,HTML/CSS;Java;JavaScript;Python;TypeScript
+38676,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+38677,Bash/Shell/PowerShell;C#;JavaScript
+38678,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+38679,JavaScript;TypeScript
+38680,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;TypeScript
+38681,R
+38682,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+38683,C#;Java;SQL
+38684,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+38685,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+38686,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38687,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+38688,Bash/Shell/PowerShell;HTML/CSS;Java
+38689,JavaScript;Python
+38690,C#;Java;Scala;TypeScript
+38691,Python
+38692,C;C++;C#
+38693,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+38694,HTML/CSS;JavaScript
+38695,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python;SQL;Other(s):
+38696,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+38697,JavaScript
+38698,C#;HTML/CSS;JavaScript;SQL
+38699,C#;Python
+38700,C;C++;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+38701,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Ruby;Rust;Swift
+38702,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+38703,C;HTML/CSS;JavaScript;PHP;SQL
+38704,HTML/CSS;JavaScript;TypeScript
+38705,Go;Java;JavaScript;Python
+38706,Java;JavaScript;Python
+38707,HTML/CSS;JavaScript
+38708,Swift
+38709,C#;HTML/CSS;JavaScript;SQL
+38710,Python
+38711,C#;HTML/CSS;JavaScript;Python;SQL
+38712,C++;C#;Other(s):
+38713,Java
+38714,HTML/CSS;JavaScript;Python;SQL
+38715,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;WebAssembly
+38716,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+38717,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+38718,Bash/Shell/PowerShell;C#;HTML/CSS;R;SQL;TypeScript
+38719,Java;SQL;Other(s):
+38720,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+38721,C;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+38722,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+38723,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+38724,HTML/CSS;Java;JavaScript;TypeScript
+38725,Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+38726,Java;JavaScript;Objective-C;Swift
+38727,Go
+38728,Bash/Shell/PowerShell;Java
+38729,Bash/Shell/PowerShell;C#;Python;SQL
+38730,Swift
+38731,HTML/CSS;JavaScript;Python;Ruby;SQL
+38732,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+38733,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+38734,PHP
+38735,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+38736,Bash/Shell/PowerShell;C#;Erlang;F#;HTML/CSS;JavaScript;SQL
+38737,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;TypeScript
+38738,Dart;Java;Kotlin
+38739,C#;HTML/CSS;Java;JavaScript;Python;SQL
+38740,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+38741,Bash/Shell/PowerShell;Go;Java;Python;Rust;Scala;SQL
+38742,Bash/Shell/PowerShell;Elixir;Go;Java;Python;Ruby;Scala;SQL;TypeScript
+38743,Bash/Shell/PowerShell;Python;Scala;SQL
+38744,HTML/CSS;JavaScript;PHP
+38745,Bash/Shell/PowerShell;Python
+38746,C#;SQL;VBA
+38747,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+38748,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+38749,HTML/CSS;JavaScript;SQL
+38750,C#;HTML/CSS;TypeScript
+38751,HTML/CSS;JavaScript;SQL
+38752,C#;HTML/CSS;JavaScript;PHP;SQL
+38753,HTML/CSS;JavaScript;R
+38754,C++;Java;JavaScript;Python
+38755,HTML/CSS;Java;JavaScript;SQL
+38756,Java;Kotlin;Python
+38757,C#;HTML/CSS;SQL
+38758,HTML/CSS;JavaScript;Ruby
+38759,C#
+38760,C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust
+38761,Java
+38762,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP;R;SQL
+38763,HTML/CSS;JavaScript;PHP
+38764,C#;HTML/CSS;JavaScript;SQL
+38765,HTML/CSS;Java;JavaScript;Python;SQL
+38766,HTML/CSS;JavaScript;PHP;Python;SQL
+38767,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+38768,HTML/CSS;JavaScript;Ruby;SQL
+38769,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+38770,C;Go;HTML/CSS;JavaScript;Rust;TypeScript
+38771,Java;SQL
+38772,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+38773,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+38774,C#;HTML/CSS;Java;JavaScript;SQL
+38775,Bash/Shell/PowerShell;HTML/CSS
+38776,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+38777,C++
+38778,Assembly;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+38779,Bash/Shell/PowerShell;Kotlin;Python;Swift;Other(s):
+38780,C#;HTML/CSS;Java;JavaScript;SQL
+38781,Java;Python;SQL
+38782,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+38783,Bash/Shell/PowerShell;C;C++;Python
+38784,Bash/Shell/PowerShell;C;C#;Go;JavaScript;Python;Rust
+38785,C#;HTML/CSS;JavaScript;TypeScript
+38786,HTML/CSS;JavaScript;Ruby;TypeScript
+38787,C++;Python;SQL
+38788,Bash/Shell/PowerShell;C++;C#;Python
+38789,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+38790,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+38791,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+38792,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+38793,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+38794,HTML/CSS;JavaScript;SQL
+38795,C#;HTML/CSS;JavaScript;SQL
+38796,JavaScript;Ruby;SQL
+38797,HTML/CSS;JavaScript;TypeScript;Other(s):
+38798,Bash/Shell/PowerShell;C;C++;Java;SQL
+38799,C#;HTML/CSS;JavaScript;Python;SQL
+38800,Assembly;C#;HTML/CSS;Java;SQL
+38801,HTML/CSS;Python
+38802,C++;HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript
+38803,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+38804,Java;JavaScript;Python
+38805,C#;HTML/CSS;JavaScript
+38806,HTML/CSS;JavaScript;Python;TypeScript
+38807,Python;SQL
+38808,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;Swift;VBA
+38809,HTML/CSS;JavaScript;PHP;SQL
+38810,HTML/CSS;Java;JavaScript;Python;SQL
+38811,HTML/CSS;JavaScript;PHP;SQL
+38812,HTML/CSS;JavaScript
+38813,HTML/CSS;JavaScript;Ruby;SQL
+38814,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+38815,C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+38816,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+38817,C#;Java;Kotlin
+38818,C#;Python;Other(s):
+38819,HTML/CSS;Objective-C;Ruby;Swift;TypeScript
+38820,Java;Kotlin
+38821,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;VBA
+38822,Python;Scala
+38823,C#;HTML/CSS;Java;JavaScript;PHP
+38824,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+38825,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+38826,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+38827,Java;JavaScript;TypeScript;Other(s):
+38828,C#;HTML/CSS;Java;JavaScript;SQL
+38829,HTML/CSS;JavaScript;PHP;SQL
+38830,C#;HTML/CSS;JavaScript;SQL
+38831,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+38832,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+38833,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38834,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+38835,C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+38836,Bash/Shell/PowerShell;Python;SQL
+38837,C;C++;HTML/CSS;JavaScript;Python;SQL
+38838,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+38839,C#;SQL;VBA
+38840,Bash/Shell/PowerShell;Java;Scala
+38841,HTML/CSS;JavaScript
+38842,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+38843,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+38844,HTML/CSS;Java;TypeScript
+38845,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+38846,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+38847,HTML/CSS;Java;JavaScript;SQL
+38848,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;R;SQL;Other(s):
+38849,Go;Java
+38850,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+38851,Bash/Shell/PowerShell;C#;Python
+38852,C#;HTML/CSS;SQL
+38853,Bash/Shell/PowerShell;JavaScript;Python
+38854,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+38855,HTML/CSS;JavaScript;PHP;TypeScript
+38856,C;Go;Python;Ruby
+38857,C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript;WebAssembly
+38858,C#;HTML/CSS;JavaScript;SQL
+38859,C#;HTML/CSS;JavaScript;SQL;Other(s):
+38860,HTML/CSS;JavaScript;PHP;Python;SQL
+38861,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript
+38862,Bash/Shell/PowerShell;Python
+38863,C#;HTML/CSS;JavaScript;SQL;VBA
+38864,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;Other(s):
+38865,HTML/CSS;JavaScript;Python;Ruby;SQL
+38866,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+38867,Bash/Shell/PowerShell
+38868,Java
+38869,Java;Kotlin
+38870,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+38871,Bash/Shell/PowerShell;C#;HTML/CSS;Kotlin
+38872,Objective-C;Swift
+38873,Java;JavaScript;R
+38874,Elixir;Erlang
+38875,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+38876,HTML/CSS;JavaScript;PHP;Other(s):
+38877,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+38878,HTML/CSS;JavaScript;PHP
+38879,HTML/CSS;JavaScript;Ruby
+38880,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+38881,Bash/Shell/PowerShell;C#;Java;SQL
+38882,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Rust;SQL;Swift;TypeScript;VBA;WebAssembly
+38883,C#
+38884,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38885,Java;Kotlin;SQL
+38886,C;C++;C#;Java;Kotlin;Objective-C;Python
+38887,C#;SQL;WebAssembly
+38888,Scala
+38889,Bash/Shell/PowerShell;Java;JavaScript;PHP;Scala;SQL
+38890,HTML/CSS;Java;JavaScript;SQL
+38891,C;HTML/CSS;Java;JavaScript;Python;SQL
+38892,Assembly;Bash/Shell/PowerShell;C;C++;Java;Kotlin
+38893,Go;HTML/CSS;JavaScript;PHP;Python
+38894,C;C++;HTML/CSS;Java;Python
+38895,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+38898,R;SQL;VBA
+38899,Assembly;C;C++;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;Swift;TypeScript
+38900,C#;HTML/CSS;JavaScript;SQL
+38901,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38902,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+38903,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+38904,Bash/Shell/PowerShell;C;Java;Python
+38905,R;Other(s):
+38906,HTML/CSS;JavaScript
+38907,C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+38908,HTML/CSS;Python
+38909,Assembly;Java;JavaScript;Kotlin;Other(s):
+38911,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+38912,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly;Other(s):
+38913,Python
+38914,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38915,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+38916,Bash/Shell/PowerShell;C++;Go;Java;Kotlin;Objective-C;Swift
+38917,Java;PHP;Python
+38918,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+38919,C;C++;C#;HTML/CSS;Java;Objective-C;SQL;Swift
+38920,C;C++;Objective-C;Python;Swift
+38921,HTML/CSS;Java;JavaScript;PHP;Python
+38922,C#;HTML/CSS;JavaScript;SQL;VBA
+38923,HTML/CSS;JavaScript;Other(s):
+38924,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+38925,C;C++;C#;Java;JavaScript;Python
+38926,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+38927,C#;Java;JavaScript;PHP;Python;SQL
+38928,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38929,Java;JavaScript;TypeScript
+38930,C#;HTML/CSS;JavaScript;Python
+38931,C;C++;Java;JavaScript
+38932,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;WebAssembly
+38933,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+38934,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+38935,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+38936,C#;Java;SQL;Other(s):
+38937,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+38938,HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+38939,C#;HTML/CSS;JavaScript;SQL
+38940,HTML/CSS;JavaScript;PHP;SQL
+38941,C#;HTML/CSS;JavaScript;PHP;SQL
+38942,Assembly;C++;HTML/CSS;Java
+38943,Python;R
+38944,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+38945,Java
+38946,Bash/Shell/PowerShell;C;HTML/CSS;PHP;SQL
+38947,Python
+38949,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+38950,HTML/CSS;JavaScript;PHP;Other(s):
+38951,HTML/CSS;JavaScript;PHP;SQL
+38952,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Ruby;SQL
+38953,JavaScript;Python;Other(s):
+38954,Bash/Shell/PowerShell;Java
+38955,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL;TypeScript
+38956,HTML/CSS;Java;SQL
+38957,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+38958,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+38959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+38960,JavaScript;Python;SQL
+38961,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+38962,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38963,C++;HTML/CSS;Java;JavaScript;Python;SQL
+38964,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+38965,Go;Java;PHP;SQL
+38966,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+38967,C#;HTML/CSS;JavaScript;SQL
+38968,HTML/CSS;JavaScript;PHP
+38969,C;C++;HTML/CSS;PHP;SQL
+38970,Java;SQL
+38971,HTML/CSS;JavaScript;PHP;SQL
+38972,Bash/Shell/PowerShell;C;C++;Python;SQL
+38973,Java;JavaScript;Python;SQL
+38974,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+38975,C#;HTML/CSS;JavaScript;SQL
+38976,Assembly;C;C++;C#;Java;JavaScript
+38977,C#;HTML/CSS;JavaScript;SQL
+38978,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+38979,Dart;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+38980,Go;JavaScript;PHP
+38981,C#;HTML/CSS;JavaScript;SQL;TypeScript
+38982,JavaScript;Python;R;SQL
+38983,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+38984,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;Scala;SQL;TypeScript
+38985,PHP
+38986,C++;HTML/CSS;JavaScript;Python
+38987,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+38988,C#
+38989,C;C++;Java;JavaScript;R;TypeScript;VBA
+38990,HTML/CSS;Java;JavaScript;Other(s):
+38991,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+38993,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38994,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+38995,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+38996,HTML/CSS;JavaScript;PHP
+38997,C++;C#;HTML/CSS;JavaScript;SQL
+38998,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Other(s):
+38999,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+39000,HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+39001,C;C#;Go;HTML/CSS;Java;JavaScript
+39002,C++;HTML/CSS;Java;JavaScript;Python
+39003,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+39004,C#
+39005,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+39006,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+39007,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+39008,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+39009,C#;HTML/CSS;JavaScript;TypeScript
+39010,C++;Java;Kotlin;Swift
+39011,Java;Python
+39013,Python
+39014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+39015,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+39016,C#;Swift
+39017,C#;HTML/CSS;JavaScript;TypeScript
+39018,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+39019,HTML/CSS;Java;JavaScript;TypeScript
+39020,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+39021,HTML/CSS;Java;JavaScript;SQL;TypeScript
+39022,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+39023,Bash/Shell/PowerShell;C;C++;C#;Kotlin;Objective-C;Python;Rust;Swift;Other(s):
+39024,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Python;SQL
+39025,Kotlin;Scala
+39026,C#;HTML/CSS;SQL;VBA
+39027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+39028,C++;C#;JavaScript
+39029,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+39030,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+39031,Clojure;Erlang;Java;JavaScript;Python;Other(s):
+39032,C#;HTML/CSS;PHP;SQL
+39033,Python;R
+39034,HTML/CSS;Java;JavaScript;Python;SQL
+39035,HTML/CSS;PHP;SQL
+39036,HTML/CSS;Java;JavaScript
+39037,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+39038,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39039,Python;SQL
+39040,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+39041,HTML/CSS;Java;JavaScript;Swift;TypeScript
+39042,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+39043,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+39044,C;C++;JavaScript;Python;R;Rust
+39045,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Ruby;SQL
+39046,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;R;SQL;VBA
+39047,C++;Other(s):
+39048,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+39049,Elixir;Erlang;WebAssembly
+39050,Kotlin;SQL;Swift
+39051,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+39052,JavaScript;Python;SQL
+39053,C#;HTML/CSS;JavaScript;SQL
+39054,Bash/Shell/PowerShell;Objective-C;Swift
+39055,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+39056,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+39057,C#;Java;Kotlin;Python;SQL
+39058,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+39059,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+39060,Bash/Shell/PowerShell;Python;R
+39061,Bash/Shell/PowerShell;C;C#
+39062,C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+39063,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+39064,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+39065,HTML/CSS;JavaScript;PHP
+39066,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;JavaScript;Python;SQL
+39067,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+39068,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+39069,C;HTML/CSS;Python;R
+39070,C++;Java;Python;Scala
+39071,C#;Java;JavaScript;Scala;SQL;TypeScript
+39072,HTML/CSS;JavaScript;PHP;Python;SQL
+39073,C#;SQL;Swift
+39074,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;TypeScript
+39075,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;SQL
+39076,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+39077,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+39078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+39079,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39080,C++;Go;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+39081,C;C++;Java
+39082,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+39083,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39084,C#;HTML/CSS;Kotlin
+39085,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript;Other(s):
+39086,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+39087,Objective-C;Swift
+39089,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+39090,C#;HTML/CSS;Java;JavaScript;SQL
+39091,C#;HTML/CSS;JavaScript;SQL
+39092,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39093,C;JavaScript;PHP;Python
+39094,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+39095,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+39096,C++;Erlang;Go
+39097,HTML/CSS;Java;JavaScript;Python;SQL
+39098,HTML/CSS;JavaScript
+39099,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+39100,HTML/CSS;Python;SQL
+39101,C#;HTML/CSS;JavaScript;SQL
+39102,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+39103,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;Other(s):
+39104,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+39105,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+39106,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+39107,Java
+39108,HTML/CSS;Java;JavaScript;SQL
+39109,HTML/CSS;JavaScript;Ruby;SQL
+39110,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+39111,Java;Other(s):
+39112,C#;HTML/CSS;TypeScript
+39113,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39114,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+39115,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39116,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+39118,Bash/Shell/PowerShell;SQL
+39119,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+39120,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL
+39121,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+39122,Assembly;C;C++;C#;Go;JavaScript;Objective-C;PHP;Python;R;Rust;TypeScript
+39123,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+39124,HTML/CSS;JavaScript;PHP
+39125,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+39126,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39127,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+39128,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL
+39129,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+39130,C;C++;C#;Java;Python;SQL
+39131,Assembly;C;C++;HTML/CSS;SQL
+39132,Assembly;Bash/Shell/PowerShell;C;C#;Java;Python
+39133,Ruby
+39134,SQL
+39135,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python
+39136,HTML/CSS;Java;JavaScript
+39137,HTML/CSS;Python
+39138,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+39139,C++;C#;JavaScript;Python
+39140,HTML/CSS;JavaScript;SQL;TypeScript
+39141,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript
+39142,C;HTML/CSS;Java;Python;SQL
+39143,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+39144,Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+39145,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39146,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Swift
+39147,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+39148,Go;HTML/CSS;JavaScript;PHP
+39149,C;HTML/CSS;JavaScript;PHP;SQL
+39150,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+39151,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39152,C++;C#
+39153,C;C++;Java;JavaScript
+39154,C#;SQL
+39155,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39156,Java;Python;Scala
+39157,C++;C#;SQL;Other(s):
+39158,C#;HTML/CSS;JavaScript;SQL;Other(s):
+39159,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;Rust
+39160,Python
+39161,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL
+39162,JavaScript;Python;SQL;VBA
+39163,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+39164,Go;HTML/CSS;Java;JavaScript;Python
+39165,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+39166,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+39167,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+39168,C++;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+39169,C;JavaScript;Python
+39170,C;C++;Python
+39171,Dart;Java;Kotlin;Python;TypeScript
+39172,Bash/Shell/PowerShell;Clojure;Java;Python;R;Scala
+39173,C#
+39174,C;C++;JavaScript;Python
+39175,HTML/CSS;JavaScript;Ruby;SQL
+39176,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+39177,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+39178,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;R;SQL;VBA
+39179,C;HTML/CSS;Python
+39180,HTML/CSS;JavaScript;PHP;Python;Ruby
+39181,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+39182,HTML/CSS;PHP;SQL;Other(s):
+39183,C;C#;Python
+39184,PHP;SQL;Other(s):
+39185,Clojure;TypeScript
+39186,HTML/CSS;JavaScript;PHP;SQL
+39187,Clojure;HTML/CSS;Java;SQL;Other(s):
+39188,HTML/CSS;JavaScript;Python;R;Ruby;SQL;TypeScript
+39189,HTML/CSS;JavaScript;TypeScript
+39190,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;VBA;Other(s):
+39191,HTML/CSS;Java;JavaScript;Kotlin
+39192,HTML/CSS;JavaScript;PHP;SQL
+39193,C++;HTML/CSS
+39194,Java;Python;SQL
+39195,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+39196,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript;VBA;Other(s):
+39197,Java;JavaScript;Python
+39198,C#;Python
+39199,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+39200,C;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript;Other(s):
+39201,Java;Kotlin;Swift
+39202,Bash/Shell/PowerShell;Python;R;Scala;SQL
+39203,HTML/CSS;Java;JavaScript;Python;TypeScript
+39204,C++;C#;Java;SQL
+39205,C#
+39206,Go;Ruby;Other(s):
+39207,HTML/CSS;JavaScript;Python
+39208,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+39209,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+39210,Erlang;Rust;TypeScript;Other(s):
+39211,C#;Go;HTML/CSS;JavaScript;SQL
+39213,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+39214,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+39215,HTML/CSS;JavaScript
+39216,HTML/CSS
+39217,C++;HTML/CSS;JavaScript;PHP
+39218,Bash/Shell/PowerShell;C#;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;SQL
+39219,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;Python;SQL;TypeScript
+39220,Java
+39221,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39222,Python
+39223,C#;Java;JavaScript;SQL
+39224,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP;SQL
+39225,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39226,Python
+39227,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+39228,Java
+39229,Java;JavaScript;Kotlin
+39230,Java;Kotlin;Swift
+39231,Assembly;Go;Java;Python
+39232,HTML/CSS;Java;JavaScript;SQL;TypeScript
+39234,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+39235,C;HTML/CSS;JavaScript;VBA
+39236,Assembly;C;C++;Java;Python;R;SQL;Other(s):
+39237,Bash/Shell/PowerShell;Python;R;Scala;SQL
+39238,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python
+39239,Bash/Shell/PowerShell;Python;SQL
+39240,R
+39241,HTML/CSS;JavaScript;Python;SQL
+39242,C++;C#;HTML/CSS;Java;JavaScript;Python
+39243,Bash/Shell/PowerShell;C++;C#;F#;Java;JavaScript;SQL
+39244,C#;HTML/CSS;JavaScript;SQL;TypeScript
+39245,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39246,C++;HTML/CSS;Java;JavaScript
+39247,HTML/CSS;JavaScript;Ruby;SQL
+39248,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+39249,Java
+39250,HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+39251,Bash/Shell/PowerShell;JavaScript;Python;SQL;TypeScript
+39252,C;C++;Python
+39253,C#;HTML/CSS;SQL;TypeScript
+39254,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+39255,HTML/CSS;JavaScript;Ruby
+39256,Bash/Shell/PowerShell;C#;Go;Ruby;TypeScript
+39257,Assembly;C#
+39258,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39259,Go;HTML/CSS;JavaScript;Python;SQL
+39260,R;Other(s):
+39261,Bash/Shell/PowerShell;C;Java;Python;SQL
+39262,C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39263,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39264,C#;Java;SQL
+39265,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+39266,Bash/Shell/PowerShell;Python
+39267,C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+39268,Bash/Shell/PowerShell;Java;JavaScript;SQL
+39269,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+39270,C;C++;HTML/CSS;Python
+39271,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Other(s):
+39272,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+39273,HTML/CSS;JavaScript;PHP;SQL
+39274,Bash/Shell/PowerShell;Java;SQL
+39275,C;C++;HTML/CSS;Java;PHP;Python;SQL
+39276,C#;Other(s):
+39278,C#;HTML/CSS;JavaScript
+39279,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+39280,Bash/Shell/PowerShell;SQL
+39281,HTML/CSS;PHP;SQL;Other(s):
+39282,HTML/CSS;Java;JavaScript;PHP;SQL
+39283,Python
+39284,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+39285,C#;Java
+39286,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39287,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL
+39288,Python;Other(s):
+39289,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+39290,Bash/Shell/PowerShell;C;C++;C#
+39291,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+39292,C#;HTML/CSS;JavaScript;SQL
+39293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39294,Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+39295,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+39296,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+39297,C++;HTML/CSS;Java;JavaScript;Python
+39298,Bash/Shell/PowerShell;JavaScript;PHP;Python;TypeScript;Other(s):
+39299,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+39300,C#;Java;Kotlin;SQL
+39301,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL
+39302,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+39303,Bash/Shell/PowerShell;SQL;VBA
+39304,C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+39305,JavaScript
+39306,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+39307,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+39308,C#;HTML/CSS;JavaScript;SQL;Other(s):
+39309,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;Other(s):
+39310,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+39311,C;Java;Python
+39312,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+39313,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+39314,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+39315,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+39316,C
+39317,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+39318,Go;HTML/CSS;Java;Kotlin;Objective-C;Swift
+39319,Java;JavaScript;SQL
+39320,Assembly;Bash/Shell/PowerShell;C
+39321,C++;Dart;Go;HTML/CSS;Python
+39322,Java
+39323,HTML/CSS;JavaScript;Python;Swift;TypeScript
+39324,C#;HTML/CSS;JavaScript;SQL
+39325,Bash/Shell/PowerShell;C;C++;Java;Python;SQL;Other(s):
+39326,Bash/Shell/PowerShell;C;C++;SQL
+39327,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+39328,Java;Scala
+39329,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+39330,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+39331,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39332,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39333,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+39334,HTML/CSS;Java;JavaScript;Python;SQL
+39335,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+39336,Assembly;Bash/Shell/PowerShell;C;C#;Java;Python;SQL
+39337,HTML/CSS;JavaScript;PHP;TypeScript
+39338,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+39339,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;WebAssembly;Other(s):
+39340,HTML/CSS;Java;SQL
+39341,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+39343,Python
+39344,HTML/CSS;JavaScript;PHP;SQL
+39345,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+39346,Bash/Shell/PowerShell;Python;R;SQL
+39347,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+39348,Assembly;C;C++;C#;Java;JavaScript;PHP;SQL;TypeScript
+39349,Bash/Shell/PowerShell;Python;Ruby;SQL
+39350,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+39351,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39352,Java;JavaScript;Python
+39353,C++;C#;JavaScript
+39354,C;C++;Java;PHP;Python
+39355,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+39356,Java;JavaScript;Kotlin
+39357,C#;SQL
+39358,HTML/CSS;PHP
+39359,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+39360,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+39361,JavaScript;Python;Other(s):
+39363,C#;Java;Kotlin
+39364,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+39365,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+39366,HTML/CSS;JavaScript;PHP;SQL
+39367,HTML/CSS;JavaScript;PHP;Python;R
+39368,C#;HTML/CSS;JavaScript;Python;SQL
+39369,C#;Java
+39370,C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+39371,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+39372,Assembly;C;C++;Go;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+39373,HTML/CSS;JavaScript;PHP;SQL
+39374,C++
+39375,HTML/CSS;Java;JavaScript;SQL
+39376,Bash/Shell/PowerShell;C#;JavaScript
+39377,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+39378,Bash/Shell/PowerShell;Python;Ruby;SQL;TypeScript
+39379,R
+39380,HTML/CSS;JavaScript;TypeScript
+39381,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+39383,C#;JavaScript;Python;SQL;TypeScript
+39384,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;Other(s):
+39385,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+39386,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+39387,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39388,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+39389,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;R;SQL;VBA
+39390,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+39391,Elixir;Other(s):
+39392,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP
+39393,C;C++;Go;JavaScript;Python;TypeScript
+39394,HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+39395,Dart;HTML/CSS;Java;Kotlin;Objective-C;Swift;TypeScript
+39396,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+39397,C;C++;C#;Go;SQL
+39398,C#;HTML/CSS;JavaScript;R;SQL
+39399,HTML/CSS;JavaScript;Python
+39400,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+39401,Java;JavaScript
+39402,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+39403,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+39404,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+39405,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+39406,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+39407,Bash/Shell/PowerShell;C;C++;Clojure;F#;Go;Python;Rust
+39408,C++;HTML/CSS;Java;JavaScript;Python;SQL
+39409,HTML/CSS;Python;SQL
+39410,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Swift
+39411,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39412,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+39414,Java
+39415,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Python
+39416,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Scala
+39417,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+39418,HTML/CSS;Java;JavaScript
+39419,Python;R;SQL
+39420,JavaScript;TypeScript
+39421,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Ruby;SQL
+39422,Java;JavaScript;Kotlin;Python
+39423,HTML/CSS;Java;SQL;TypeScript
+39424,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+39425,Python
+39426,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python
+39427,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Rust
+39429,C;C++;C#;Java;JavaScript
+39430,HTML/CSS;JavaScript;PHP;SQL
+39431,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala;TypeScript
+39432,C#;Java;Kotlin;Swift
+39433,Objective-C;Swift
+39434,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+39435,C;C++
+39436,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;WebAssembly
+39437,C#;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+39438,HTML/CSS;JavaScript;Python;SQL
+39439,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+39440,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL
+39441,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift;WebAssembly
+39442,JavaScript;Python;SQL
+39443,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39444,HTML/CSS;Java;SQL
+39445,C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+39446,Java;JavaScript;Kotlin;Python;Swift
+39447,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+39448,HTML/CSS;JavaScript;PHP;TypeScript
+39450,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;SQL
+39451,C#;HTML/CSS;JavaScript;TypeScript
+39452,C#;Go;Java;JavaScript;Ruby;TypeScript
+39453,Java;Python
+39454,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+39455,HTML/CSS;JavaScript
+39456,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+39457,C++;HTML/CSS;Java;JavaScript;SQL
+39458,C++;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+39459,HTML/CSS;JavaScript;PHP;Ruby;SQL
+39460,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+39461,C;C++
+39462,Bash/Shell/PowerShell;Python;R;SQL
+39463,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+39464,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+39465,Assembly;C;C++;PHP
+39466,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+39467,C#;SQL
+39468,JavaScript;PHP;SQL
+39469,Bash/Shell/PowerShell;C;C++;Objective-C;SQL
+39470,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+39471,Bash/Shell/PowerShell;C;Go;Java;Ruby
+39472,Java;JavaScript;SQL
+39473,HTML/CSS;JavaScript;PHP;Python;SQL
+39474,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+39475,HTML/CSS;Python
+39476,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript
+39477,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+39478,Go;HTML/CSS;Java;JavaScript;TypeScript
+39479,Assembly;Bash/Shell/PowerShell;C;Erlang;Go;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+39480,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39482,HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL
+39483,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+39484,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;SQL
+39485,HTML/CSS;Java;JavaScript;SQL
+39486,C#;JavaScript;SQL;TypeScript
+39487,Assembly;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+39488,C;HTML/CSS;JavaScript;PHP;Python;R
+39489,Bash/Shell/PowerShell;C;C++;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+39490,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;WebAssembly
+39491,Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+39492,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+39493,HTML/CSS;JavaScript;TypeScript;Other(s):
+39494,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39495,C#;HTML/CSS;JavaScript
+39496,Bash/Shell/PowerShell;C;Python;Other(s):
+39497,JavaScript;TypeScript
+39498,C;HTML/CSS;Java;JavaScript;Python
+39499,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+39500,C#;HTML/CSS;JavaScript
+39501,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39502,HTML/CSS;Java
+39503,HTML/CSS
+39504,HTML/CSS;JavaScript;PHP;SQL
+39505,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+39506,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+39507,HTML/CSS;JavaScript;Python
+39508,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+39509,HTML/CSS;JavaScript
+39510,C++;C#
+39511,Bash/Shell/PowerShell;Python;SQL
+39512,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+39513,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;TypeScript
+39514,PHP
+39515,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;WebAssembly
+39516,C#;HTML/CSS;Java;Python;SQL;TypeScript
+39517,C#;HTML/CSS;SQL
+39518,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala
+39519,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39520,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39521,HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+39522,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+39523,C++
+39524,HTML/CSS;JavaScript;Python;Ruby
+39525,C++
+39526,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;WebAssembly
+39527,Python
+39528,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+39529,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+39530,Go;JavaScript;Python;Ruby;SQL
+39531,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Rust;SQL;TypeScript
+39532,HTML/CSS;JavaScript
+39533,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+39534,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript
+39535,Python;Scala
+39536,C;Elixir;Erlang;JavaScript;PHP;SQL;Swift;TypeScript;Other(s):
+39537,C;C++;C#;Java;Swift
+39538,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+39539,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+39540,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Scala;Other(s):
+39541,Bash/Shell/PowerShell;Python;R
+39542,C;C++;Go;Java;JavaScript;PHP;Python;R;SQL;VBA
+39543,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+39544,Clojure;Java;SQL
+39545,HTML/CSS;JavaScript;TypeScript
+39546,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+39547,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+39548,Bash/Shell/PowerShell;C;C++;Python;SQL
+39549,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+39550,C++;Java;Kotlin;Python;SQL
+39551,C#;HTML/CSS;JavaScript;PHP;SQL
+39552,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+39553,Java;SQL
+39554,C#;HTML/CSS;JavaScript;SQL
+39555,Assembly
+39556,Python
+39557,Python
+39558,Assembly;JavaScript;Python
+39559,C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+39560,C;C++;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+39561,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;SQL;Other(s):
+39562,Assembly
+39563,JavaScript;Ruby
+39564,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39565,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala
+39566,HTML/CSS;JavaScript;PHP;Python;SQL
+39567,Java;Python
+39568,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Ruby;Scala;SQL
+39569,Bash/Shell/PowerShell;Python;Other(s):
+39570,Go;JavaScript;PHP;Ruby;SQL;Swift
+39571,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39572,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+39573,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+39574,Bash/Shell/PowerShell;C;Python;R
+39575,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39576,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39577,C#;HTML/CSS;JavaScript;SQL
+39578,C#;HTML/CSS;Java;SQL
+39579,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;TypeScript
+39580,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+39581,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+39582,HTML/CSS;PHP;SQL
+39583,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+39584,Bash/Shell/PowerShell;C#;Dart;Go;Java;JavaScript;Python;SQL;TypeScript
+39585,C;C++;Java;JavaScript;Objective-C;PHP;Swift
+39586,Python;SQL
+39587,HTML/CSS;Java;Objective-C;Swift
+39588,HTML/CSS;JavaScript;PHP
+39589,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+39590,Assembly;C++;C#;Rust
+39591,Java;SQL
+39592,Kotlin
+39593,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+39594,C#;Go;HTML/CSS;JavaScript;Ruby;SQL
+39595,Python
+39596,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+39597,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39598,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+39599,C++;HTML/CSS;JavaScript;Ruby;SQL
+39600,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+39601,HTML/CSS;Java;JavaScript;SQL
+39602,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+39603,HTML/CSS;JavaScript;PHP
+39604,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+39605,HTML/CSS;JavaScript;Ruby
+39606,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39607,Python;Other(s):
+39608,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+39609,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript;WebAssembly;Other(s):
+39610,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+39611,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+39612,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+39613,Bash/Shell/PowerShell;R;SQL
+39614,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+39615,HTML/CSS;JavaScript;Python;Ruby
+39616,Python
+39617,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+39618,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+39619,Java
+39620,C#;HTML/CSS;JavaScript;TypeScript
+39621,C#;Python;Rust
+39622,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;WebAssembly
+39623,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39624,C++;HTML/CSS;PHP;Python;SQL
+39625,Bash/Shell/PowerShell;JavaScript;Python;Scala;TypeScript
+39626,C#;F#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+39627,C#;Java;Other(s):
+39628,C#
+39629,Bash/Shell/PowerShell;C#;F#;JavaScript;Python
+39630,Python;VBA
+39631,C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+39632,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+39633,HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+39634,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+39635,HTML/CSS;Java;JavaScript;Python;Scala
+39636,HTML/CSS;Python
+39637,C++;C#;SQL
+39638,HTML/CSS;Java;Kotlin
+39639,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+39640,C#;JavaScript;SQL
+39641,C#;HTML/CSS;Java;JavaScript;TypeScript
+39642,Assembly;C;Java
+39643,HTML/CSS;JavaScript;PHP
+39644,C;HTML/CSS;Java;JavaScript;Python;TypeScript
+39645,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+39646,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+39647,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+39648,Java
+39649,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+39650,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+39651,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Scala
+39652,C#
+39653,HTML/CSS;JavaScript;SQL;VBA
+39654,Java
+39655,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+39656,C;C++;C#;Java;JavaScript;Kotlin;Python;SQL
+39657,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;VBA
+39658,Python
+39659,C#;HTML/CSS;JavaScript;SQL;TypeScript
+39660,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+39661,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39662,HTML/CSS;Java;JavaScript;SQL;TypeScript
+39663,C#;Java
+39664,HTML/CSS;Java;JavaScript;PHP;SQL
+39665,C
+39666,HTML/CSS;JavaScript;SQL;VBA;Other(s):
+39667,C#;HTML/CSS;JavaScript;SQL
+39668,Java;JavaScript
+39669,C#;SQL
+39670,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;Ruby;Scala;SQL
+39671,Java;JavaScript;Kotlin;SQL
+39672,C#;HTML/CSS;Java;JavaScript
+39673,HTML/CSS;JavaScript;TypeScript
+39674,HTML/CSS;Java;JavaScript;SQL
+39675,C#;HTML/CSS;JavaScript;Python
+39676,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+39677,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+39678,C;C++;HTML/CSS;PHP;Python;Scala;SQL
+39679,HTML/CSS;JavaScript;Objective-C;PHP
+39680,C++;C#;Python
+39681,C;Java;Python;R;Scala;SQL
+39682,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+39683,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+39684,C#;HTML/CSS;JavaScript;SQL
+39685,C++;C#;JavaScript;Python
+39686,C#;HTML/CSS;JavaScript;Scala;SQL;Swift;TypeScript
+39687,Python
+39688,HTML/CSS;JavaScript;TypeScript
+39689,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39690,Java;Python;R;Other(s):
+39691,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39692,Assembly;C;HTML/CSS;Java;JavaScript;Python;SQL
+39693,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+39694,Python;R
+39695,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+39696,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+39697,Bash/Shell/PowerShell;Java;Kotlin;SQL
+39698,Swift
+39699,Bash/Shell/PowerShell;Java;Python;Other(s):
+39700,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+39701,C#;HTML/CSS;JavaScript;SQL;VBA
+39702,Bash/Shell/PowerShell;C;C++;C#;Python;SQL;TypeScript
+39703,HTML/CSS;Java;JavaScript;TypeScript
+39704,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+39705,C;Go;HTML/CSS;Python;Ruby;SQL
+39706,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL
+39707,Assembly;Bash/Shell/PowerShell;C;C#;JavaScript;Python;SQL;Other(s):
+39708,Assembly;Bash/Shell/PowerShell;C;C++;Python
+39709,C;C++;HTML/CSS;Java;JavaScript;Python;R
+39710,JavaScript;Python;TypeScript
+39711,C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+39712,Java;Kotlin;PHP;TypeScript
+39713,C#;HTML/CSS;JavaScript;PHP
+39714,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39715,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+39716,JavaScript;Python;Ruby
+39717,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+39718,C;Dart;Java;Python
+39719,Java;Kotlin
+39720,C#;Go;Python
+39721,HTML/CSS;JavaScript;PHP
+39722,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Ruby;SQL
+39723,Bash/Shell/PowerShell;Go;Java;Kotlin
+39724,C;C++;C#;Go;JavaScript;Kotlin;Python;TypeScript
+39725,HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+39726,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39727,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+39728,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Ruby
+39729,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+39730,C;Java
+39731,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+39732,HTML/CSS;JavaScript;TypeScript
+39733,C++;HTML/CSS;Java
+39734,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL;TypeScript
+39735,Bash/Shell/PowerShell;Java;SQL;Other(s):
+39736,C#;HTML/CSS;JavaScript;SQL;TypeScript
+39737,HTML/CSS;JavaScript;PHP;SQL
+39738,Java
+39739,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python;SQL
+39740,Assembly;Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+39741,C#;SQL
+39742,Assembly;HTML/CSS;JavaScript;Python;Swift;TypeScript
+39743,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+39744,C;C++;Go;HTML/CSS;Java;Python;R;Rust
+39745,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+39746,C;Python;Other(s):
+39747,C++;Erlang;Python
+39748,HTML/CSS;JavaScript;PHP;Python;SQL
+39749,HTML/CSS;PHP;Python;SQL
+39750,HTML/CSS;Java;JavaScript;SQL
+39751,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+39752,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+39753,Assembly;C#;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+39754,C++;Python
+39755,JavaScript;Python;SQL
+39756,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39757,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+39758,Clojure
+39759,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL
+39760,C++;C#;Python
+39761,HTML/CSS;Java;JavaScript;SQL;TypeScript
+39762,HTML/CSS;JavaScript;SQL
+39763,HTML/CSS;JavaScript
+39764,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39765,HTML/CSS;JavaScript;PHP
+39766,C#
+39768,C++;JavaScript;PHP;Python
+39769,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39770,Assembly;C;C++;Java;Python
+39771,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+39772,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+39773,C++;Go;Java;Other(s):
+39774,Bash/Shell/PowerShell;C#;Python
+39775,HTML/CSS;JavaScript;PHP;SQL
+39776,C;C++;Go;Java;Kotlin;Rust;Scala;TypeScript;Other(s):
+39778,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+39779,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39780,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39781,Java;JavaScript;TypeScript
+39782,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39783,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;R;SQL
+39784,HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;VBA
+39785,C#
+39786,HTML/CSS;JavaScript;Python
+39787,Bash/Shell/PowerShell;C#;F#;JavaScript;TypeScript
+39788,HTML/CSS;JavaScript;Python;SQL
+39789,JavaScript;Python;SQL;TypeScript
+39790,C#;HTML/CSS;JavaScript;PHP;SQL
+39791,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+39792,HTML/CSS;JavaScript;Ruby;SQL
+39793,Java;JavaScript;Python;Swift
+39794,Java;Kotlin
+39795,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+39796,Java
+39797,C#;HTML/CSS;JavaScript;SQL;TypeScript
+39798,Bash/Shell/PowerShell;Java;Python;SQL
+39799,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39800,C#;HTML/CSS;Java;SQL
+39801,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+39802,Assembly;Bash/Shell/PowerShell;Java;PHP;Python;R;SQL;Other(s):
+39803,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+39804,Java;SQL
+39805,HTML/CSS;JavaScript;SQL;TypeScript
+39806,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP
+39807,C#;SQL;Other(s):
+39808,C;Go;Java;JavaScript;Kotlin;TypeScript
+39809,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+39810,Bash/Shell/PowerShell;C;Elixir;Erlang;Python;Rust
+39811,Objective-C;Ruby
+39812,JavaScript;PHP;SQL;Other(s):
+39813,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+39814,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL
+39815,HTML/CSS;JavaScript;Python;TypeScript
+39816,C;C#
+39817,C++;C#;Java;Python;Swift
+39818,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+39819,Python;Other(s):
+39820,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+39821,Java;JavaScript
+39822,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+39823,C++;Java
+39824,HTML/CSS;Java;SQL
+39825,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+39826,Bash/Shell/PowerShell;Python
+39827,HTML/CSS;Java;JavaScript;Other(s):
+39828,HTML/CSS;Python;Other(s):
+39829,Java;JavaScript;SQL
+39830,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;TypeScript
+39831,C;C++;Rust
+39832,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+39833,HTML/CSS;JavaScript;Python;SQL
+39834,HTML/CSS;JavaScript;PHP;Ruby
+39835,Bash/Shell/PowerShell;C#
+39836,Bash/Shell/PowerShell;C#;Go;Ruby
+39837,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL
+39838,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+39839,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+39840,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+39841,C#;HTML/CSS;JavaScript;SQL
+39842,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+39843,Java
+39844,C++;HTML/CSS
+39845,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL;Swift;TypeScript
+39846,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+39847,C#;HTML/CSS;JavaScript;SQL
+39848,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+39849,Java;Kotlin
+39850,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39851,Java;Python
+39853,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+39854,C;C++;Java;Kotlin;Swift
+39855,Bash/Shell/PowerShell;C;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+39856,C++;HTML/CSS;SQL;VBA
+39857,Assembly;C#;Dart;F#;Go;Kotlin;Python;TypeScript
+39858,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+39859,Python;VBA
+39860,HTML/CSS;JavaScript;PHP;SQL
+39861,C#;HTML/CSS;JavaScript;Objective-C;Ruby
+39862,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+39863,Python;R;SQL
+39864,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+39865,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+39866,C#;HTML/CSS;JavaScript;SQL;TypeScript
+39867,HTML/CSS;JavaScript;Python;Rust;SQL
+39868,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Swift;TypeScript;WebAssembly;Other(s):
+39869,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+39870,Python;SQL
+39871,C#;Dart;HTML/CSS;JavaScript;Python
+39873,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+39874,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;SQL;VBA
+39875,C++;HTML/CSS;Python;SQL
+39876,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+39877,C;HTML/CSS;JavaScript
+39878,C;C++;C#
+39879,Java;JavaScript;Python;R
+39880,C++;HTML/CSS;Java;JavaScript;Python
+39881,Bash/Shell/PowerShell;Python
+39882,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+39883,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+39885,C;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+39886,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;Kotlin;Python
+39887,HTML/CSS;JavaScript
+39888,C#;HTML/CSS;JavaScript;SQL
+39889,Java;JavaScript;TypeScript
+39890,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+39891,Python
+39892,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python
+39893,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+39894,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+39895,Python
+39896,C#;Java;JavaScript;Scala
+39897,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+39898,HTML/CSS;Java;JavaScript;SQL
+39899,C++;Python
+39900,Bash/Shell/PowerShell;C++;Python
+39901,Bash/Shell/PowerShell;Java;JavaScript;Rust;Scala
+39902,C#;Python;R;SQL;VBA
+39903,C#;JavaScript;SQL
+39904,Dart;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+39905,JavaScript;Python
+39906,Bash/Shell/PowerShell;SQL
+39907,C++;C#
+39908,Java;Swift
+39909,HTML/CSS;Java;JavaScript;SQL
+39910,Java;Kotlin
+39911,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+39912,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+39913,C;HTML/CSS;Java;SQL
+39914,Python
+39915,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;Other(s):
+39916,JavaScript;Ruby;TypeScript
+39917,HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+39918,HTML/CSS;Java;JavaScript;TypeScript
+39919,C++;Python;R;Other(s):
+39920,HTML/CSS;JavaScript
+39921,HTML/CSS;JavaScript;PHP;Python;SQL
+39922,JavaScript;Python
+39923,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+39924,Bash/Shell/PowerShell;C#;JavaScript;R;TypeScript
+39925,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+39926,Bash/Shell/PowerShell;Python;SQL;Other(s):
+39927,C++;C#;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+39928,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+39929,C#;Java;Kotlin
+39930,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Swift
+39931,C++;C#;Python;SQL
+39932,C++;Java
+39933,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+39934,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+39935,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+39936,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript
+39937,HTML/CSS;JavaScript;PHP;SQL
+39938,HTML/CSS;JavaScript;TypeScript;Other(s):
+39939,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL
+39940,Go
+39941,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+39942,HTML/CSS;JavaScript;Python;Ruby;SQL
+39943,C++;HTML/CSS;Java;JavaScript;Python
+39944,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+39945,Assembly;Bash/Shell/PowerShell;C;Clojure;Java;Kotlin;Python;SQL
+39946,Python;R
+39947,C;C#;HTML/CSS;JavaScript;SQL;VBA
+39948,HTML/CSS;JavaScript
+39949,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+39950,C;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+39952,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+39953,C#;HTML/CSS;JavaScript;SQL
+39954,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+39955,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+39956,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+39957,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+39958,HTML/CSS;JavaScript;SQL;TypeScript
+39959,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+39960,C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+39961,Bash/Shell/PowerShell;HTML/CSS;R
+39962,Dart;Java;Kotlin
+39963,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+39964,Assembly;C;HTML/CSS
+39965,HTML/CSS;Java;JavaScript;TypeScript
+39966,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+39968,Java;Python;Scala
+39969,HTML/CSS;JavaScript
+39970,PHP;Python;SQL
+39971,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Scala
+39972,Java
+39973,Python;R
+39974,HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+39975,HTML/CSS;JavaScript;Python;SQL
+39976,Bash/Shell/PowerShell;C;C++;PHP
+39977,HTML/CSS;JavaScript;PHP;SQL
+39978,R
+39979,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+39980,JavaScript;Ruby
+39981,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+39982,Bash/Shell/PowerShell;Python;R;Other(s):
+39983,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;VBA
+39984,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+39985,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+39986,HTML/CSS;Java;JavaScript;Python;R;SQL
+39987,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;VBA
+39988,HTML/CSS;JavaScript;TypeScript
+39989,C++;HTML/CSS;Java;PHP;Python
+39990,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+39991,SQL
+39992,Bash/Shell/PowerShell;C;C++;Python
+39993,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala
+39994,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;Scala;SQL
+39995,HTML/CSS;JavaScript
+39996,HTML/CSS;JavaScript;SQL
+39997,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+39998,Bash/Shell/PowerShell;Erlang;Go;JavaScript;Python;TypeScript
+39999,C;C++;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;Swift;TypeScript
+40000,Python
+40001,Bash/Shell/PowerShell;Python;SQL
+40002,Java;JavaScript;PHP;Scala;SQL
+40003,Assembly;Bash/Shell/PowerShell;C;Python
+40004,C++;Java;Kotlin;SQL
+40005,Objective-C;Swift
+40006,HTML/CSS;Kotlin;PHP;TypeScript
+40007,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+40008,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+40009,HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+40010,Python;R;SQL
+40011,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;TypeScript
+40012,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+40013,C;HTML/CSS;JavaScript;PHP;Ruby
+40014,C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;Other(s):
+40015,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript;WebAssembly
+40016,C;C++;C#;HTML/CSS;Java;PHP;Python;SQL;VBA
+40017,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40018,HTML/CSS;Java;JavaScript
+40019,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+40020,C#;HTML/CSS;JavaScript;SQL
+40021,C#;HTML/CSS;JavaScript;SQL;Other(s):
+40022,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+40023,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift;TypeScript
+40024,Bash/Shell/PowerShell;C++;Python
+40025,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;VBA
+40026,C;HTML/CSS;JavaScript;TypeScript
+40027,Bash/Shell/PowerShell;C;Java;Kotlin;Python
+40028,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+40029,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+40030,C++;C#;Java;JavaScript;Python;SQL
+40031,HTML/CSS;JavaScript;TypeScript
+40032,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;PHP;Python
+40033,HTML/CSS;Java;JavaScript
+40034,Bash/Shell/PowerShell;C#;Dart;Java;JavaScript;Python;SQL;Swift
+40035,R
+40036,C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+40037,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+40038,Java;SQL
+40039,C;C++
+40040,Bash/Shell/PowerShell;C#
+40041,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40042,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala
+40043,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+40044,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+40045,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+40046,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40047,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+40048,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+40049,Bash/Shell/PowerShell;C
+40050,C;C#;HTML/CSS;SQL;Other(s):
+40052,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+40053,C++
+40054,C#;HTML/CSS
+40055,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+40056,C#;SQL;VBA
+40057,C++;C#;HTML/CSS;JavaScript;SQL
+40058,Java;JavaScript;SQL
+40059,C;C++;Java;Python;SQL
+40060,Bash/Shell/PowerShell;C#;F#;R;SQL
+40061,Bash/Shell/PowerShell;C;C++;Python
+40062,C++;Python
+40063,HTML/CSS;JavaScript
+40064,Bash/Shell/PowerShell;Java;Python;SQL
+40065,Dart;Java;Kotlin
+40066,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+40067,HTML/CSS;Java;JavaScript;SQL;TypeScript
+40068,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+40069,HTML/CSS;JavaScript;PHP;SQL
+40070,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+40071,Python;Scala;SQL
+40073,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+40074,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40075,HTML/CSS;JavaScript;PHP
+40076,HTML/CSS;JavaScript
+40077,Java;SQL
+40078,C#
+40079,HTML/CSS;JavaScript;PHP;Python;R;VBA
+40080,C
+40081,JavaScript
+40082,C#;HTML/CSS;JavaScript;SQL
+40083,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+40084,C;C++;Java;Python
+40085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40086,Bash/Shell/PowerShell;C#;JavaScript;PHP;Scala;SQL
+40087,C#;SQL;VBA
+40088,C;C++;HTML/CSS;Java;Objective-C;SQL
+40089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+40090,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;Python;SQL;Other(s):
+40091,HTML/CSS;JavaScript
+40092,HTML/CSS;Java;JavaScript;PHP
+40093,C#;SQL;Other(s):
+40094,JavaScript;TypeScript
+40095,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40096,Java
+40097,C#;HTML/CSS;JavaScript;SQL
+40098,Scala
+40099,Bash/Shell/PowerShell;C;Java;Python;SQL
+40100,JavaScript;Objective-C;PHP;SQL;Swift
+40101,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+40102,Bash/Shell/PowerShell;C;Go;Python;SQL
+40103,PHP
+40104,C;C++;C#;HTML/CSS;JavaScript;SQL
+40105,HTML/CSS;Python
+40106,Bash/Shell/PowerShell;C#;Go;JavaScript;TypeScript
+40107,C;HTML/CSS;Java;Python;R
+40108,HTML/CSS;Java;JavaScript;SQL
+40109,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+40110,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript;WebAssembly
+40111,HTML/CSS;JavaScript;PHP
+40112,Java
+40113,C++;Java;JavaScript;Python
+40114,C#;HTML/CSS;JavaScript;SQL
+40115,HTML/CSS;JavaScript;TypeScript
+40116,C++;C#;Python;Other(s):
+40117,Bash/Shell/PowerShell;Go;JavaScript;Python
+40118,C#;HTML/CSS;JavaScript
+40119,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+40120,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+40121,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+40122,C#;HTML/CSS;JavaScript;PHP;SQL
+40123,HTML/CSS;JavaScript;Python;SQL
+40124,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;R;SQL
+40125,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+40126,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+40127,C;C++;C#;F#;HTML/CSS;Java;SQL
+40128,HTML/CSS;PHP;Python;SQL
+40129,HTML/CSS;JavaScript;Python;SQL
+40130,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+40132,C;HTML/CSS;Java;JavaScript;PHP
+40133,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40134,Java
+40135,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+40136,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+40137,Assembly;HTML/CSS;Java;JavaScript;Python;SQL
+40138,C#;HTML/CSS;JavaScript;SQL
+40139,C;C++;HTML/CSS;Java;SQL
+40140,Bash/Shell/PowerShell;Ruby;SQL;VBA
+40141,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40142,C;C++;PHP;SQL
+40143,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+40144,Bash/Shell/PowerShell;C#;Python
+40145,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+40146,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Python;SQL
+40147,C#;HTML/CSS;JavaScript;TypeScript
+40148,Bash/Shell/PowerShell;C;Java;Kotlin;Python
+40149,HTML/CSS;JavaScript
+40150,Java;JavaScript;Python;SQL;VBA
+40152,Java;JavaScript;PHP;SQL
+40153,JavaScript;Objective-C;Swift
+40154,C#;JavaScript;TypeScript
+40155,Assembly;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+40156,Go;Java;Python
+40157,HTML/CSS;JavaScript;PHP;SQL
+40158,C;C++;C#;Java;JavaScript;SQL
+40159,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+40160,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+40161,C++;Java;Python;Swift
+40162,HTML/CSS;JavaScript;PHP;Ruby;Swift
+40163,HTML/CSS;JavaScript;TypeScript
+40164,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+40165,C;Java;Python
+40166,Python;SQL
+40167,HTML/CSS;JavaScript;PHP;SQL
+40168,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+40169,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+40170,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+40171,Bash/Shell/PowerShell;C;C#
+40172,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;Other(s):
+40173,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;Java
+40174,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+40175,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+40176,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+40177,C;C++;JavaScript;Python;Rust;Other(s):
+40178,Python
+40179,Bash/Shell/PowerShell;Python;R;SQL
+40180,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript;WebAssembly
+40181,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+40182,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+40183,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+40184,HTML/CSS;Java;JavaScript;SQL
+40185,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python
+40186,HTML/CSS;JavaScript;PHP;SQL
+40187,HTML/CSS;Java;JavaScript
+40188,Bash/Shell/PowerShell;Java;Python
+40189,HTML/CSS;JavaScript
+40190,HTML/CSS;JavaScript
+40191,C;HTML/CSS;JavaScript;Ruby;SQL
+40192,HTML/CSS;JavaScript;TypeScript
+40193,C#
+40194,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+40195,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+40196,HTML/CSS;JavaScript;PHP
+40198,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+40199,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Scala;TypeScript
+40200,Swift
+40202,Swift
+40203,C;C++;HTML/CSS;JavaScript;PHP;SQL
+40204,C#;HTML/CSS;JavaScript
+40205,C;Java;Python;Other(s):
+40206,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+40207,Bash/Shell/PowerShell;Java;JavaScript;Python
+40208,Bash/Shell/PowerShell;HTML/CSS;PHP
+40209,Assembly;C#;HTML/CSS;Java;JavaScript;SQL
+40210,HTML/CSS;Java;JavaScript;PHP;SQL
+40211,C#;HTML/CSS;JavaScript;Python;SQL
+40212,Python
+40213,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+40214,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL;VBA;Other(s):
+40215,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+40216,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+40217,Bash/Shell/PowerShell;C;C++;JavaScript;Python;R;Other(s):
+40218,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+40219,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+40220,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+40221,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+40222,C;HTML/CSS;Java;JavaScript;Python;SQL
+40223,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;Other(s):
+40224,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+40225,Python
+40226,Java;SQL
+40227,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+40228,Java;JavaScript;Ruby;TypeScript
+40229,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+40230,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+40231,C#;Elixir;Erlang;JavaScript;Ruby;SQL;TypeScript
+40232,Java;JavaScript;Python
+40233,Assembly;Bash/Shell/PowerShell;Java;JavaScript
+40234,C;Java;Python
+40235,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+40236,Java;JavaScript
+40237,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+40238,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript
+40239,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+40240,Bash/Shell/PowerShell;C++;Python
+40241,C;C++;Kotlin;Objective-C;Swift
+40242,HTML/CSS;JavaScript
+40243,C#;HTML/CSS;Java;JavaScript;SQL
+40244,Bash/Shell/PowerShell;C++;Java;Python;SQL
+40245,Bash/Shell/PowerShell;C++;Java
+40246,C#;JavaScript;TypeScript
+40247,Bash/Shell/PowerShell;C;C#;JavaScript;TypeScript
+40248,Bash/Shell/PowerShell;C#;Elixir;Erlang;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+40249,Bash/Shell/PowerShell;C#;JavaScript
+40250,C#;Other(s):
+40251,C#;Java;JavaScript;SQL
+40252,Python;SQL;VBA
+40253,Java;Swift
+40254,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+40255,C++;Java;JavaScript
+40256,C++;HTML/CSS;Python;SQL
+40257,C#;HTML/CSS;JavaScript;SQL
+40258,R
+40259,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+40260,Bash/Shell/PowerShell;C#;Python;SQL
+40261,C#;HTML/CSS;JavaScript;PHP;SQL
+40262,HTML/CSS;Python;SQL
+40263,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python
+40264,Bash/Shell/PowerShell;C++;C#;Go;Java;JavaScript;Kotlin;Python;Ruby;SQL
+40265,C++;C#;HTML/CSS;JavaScript;Python
+40266,Go;Java;JavaScript;Kotlin;Python;Scala;TypeScript
+40267,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+40269,JavaScript;Kotlin;Rust;TypeScript;Other(s):
+40270,HTML/CSS;JavaScript;Python;Other(s):
+40271,Python;Other(s):
+40272,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;TypeScript;Other(s):
+40273,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+40274,C;Python;R
+40275,Java
+40276,Java;Python;SQL
+40277,C;C++;C#;Java;Kotlin
+40279,C;C++;C#;SQL
+40280,Java;Python
+40281,Python;SQL
+40282,HTML/CSS;JavaScript
+40283,Go;JavaScript;PHP;SQL
+40284,HTML/CSS;JavaScript;PHP;SQL
+40285,C;C++;HTML/CSS;Java;PHP;Python;SQL
+40286,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+40288,JavaScript;Python;R;SQL
+40289,C#;Clojure;Objective-C
+40290,C;HTML/CSS;JavaScript;Python;SQL
+40291,Go;HTML/CSS;JavaScript;Ruby;TypeScript
+40292,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+40293,C;C++;HTML/CSS;JavaScript;PHP;SQL
+40294,C#;SQL;VBA
+40295,C#;HTML/CSS;JavaScript;SQL
+40296,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Python;Ruby;SQL
+40297,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+40298,HTML/CSS;JavaScript;PHP;SQL
+40299,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+40300,C#;Python
+40301,Assembly;Bash/Shell/PowerShell;JavaScript;Python;SQL
+40302,HTML/CSS;Java;JavaScript;Python;SQL
+40303,C++;Erlang;Python
+40304,C++;C#;JavaScript;PHP;SQL;Other(s):
+40305,C++;C#;HTML/CSS;PHP;Python;SQL
+40306,C#;Objective-C;Swift
+40307,Java;Kotlin
+40308,Assembly;HTML/CSS;Java
+40309,Assembly;Bash/Shell/PowerShell;C++;Java;Python
+40310,C#;JavaScript
+40311,Bash/Shell/PowerShell;C;Python;SQL
+40312,HTML/CSS;JavaScript;PHP;SQL
+40313,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+40314,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40315,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Scala
+40316,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+40317,Python;R
+40318,C;Java;Kotlin
+40319,C++;C#;Java;Python
+40320,JavaScript;Python;TypeScript
+40321,Bash/Shell/PowerShell;HTML/CSS;Python
+40322,C++;C#;Java;Kotlin;PHP;SQL;Swift
+40323,JavaScript;PHP;Python
+40324,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+40325,Assembly;C;C++;HTML/CSS;Java;Python;SQL
+40326,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;TypeScript
+40327,C;C++;HTML/CSS
+40328,C;C++;C#;Objective-C;Swift
+40329,HTML/CSS;Java;JavaScript;PHP
+40330,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40331,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40332,C#;HTML/CSS;JavaScript;SQL
+40333,Assembly;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA;Other(s):
+40334,Python;SQL
+40335,Bash/Shell/PowerShell;Java;Python;Ruby;Scala;SQL
+40336,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+40337,C#;SQL;VBA;Other(s):
+40338,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;Swift;TypeScript
+40339,C;C++;C#;HTML/CSS;JavaScript;Python;Rust
+40340,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+40341,Bash/Shell/PowerShell;C;C++;C#;Python
+40342,HTML/CSS;Java;JavaScript;Python;SQL;Swift;Other(s):
+40343,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+40344,Bash/Shell/PowerShell;Python;VBA
+40345,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+40346,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+40347,Bash/Shell/PowerShell;SQL;Other(s):
+40348,Bash/Shell/PowerShell;C;C++;C#;R
+40349,HTML/CSS;JavaScript;PHP;SQL
+40350,C#;HTML/CSS;JavaScript;SQL
+40351,C;C++;SQL
+40352,C;C++;Go;Objective-C;Python;Rust;Swift
+40353,JavaScript
+40354,HTML/CSS;JavaScript;Python
+40355,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python
+40356,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+40357,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;VBA
+40358,HTML/CSS;JavaScript
+40359,HTML/CSS;Python;SQL
+40360,C#;HTML/CSS;R;Other(s):
+40361,HTML/CSS;JavaScript
+40362,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python
+40363,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+40364,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+40365,HTML/CSS;JavaScript;Ruby;TypeScript
+40366,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+40367,C#;JavaScript;SQL
+40368,C#;SQL
+40369,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+40370,C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+40371,JavaScript;Python;Scala;TypeScript
+40372,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+40373,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+40374,Ruby
+40375,C#
+40376,C++;JavaScript;SQL
+40377,Bash/Shell/PowerShell;Clojure;Elixir;HTML/CSS;JavaScript;PHP;Ruby;SQL
+40378,Bash/Shell/PowerShell;Java;SQL
+40379,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+40380,HTML/CSS;Java;JavaScript;Python
+40381,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+40382,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+40383,Bash/Shell/PowerShell;Python
+40384,Assembly;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+40385,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Kotlin;Python;SQL
+40386,Java;JavaScript;Other(s):
+40387,C;C++;HTML/CSS;JavaScript;PHP;SQL
+40388,Erlang;HTML/CSS;Java;JavaScript;Other(s):
+40389,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40390,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+40391,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python
+40392,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+40394,Bash/Shell/PowerShell;C;Clojure;Elixir;JavaScript;Ruby;Rust
+40395,SQL;Other(s):
+40396,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+40397,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+40398,Assembly;HTML/CSS
+40399,C#;Python;R;Other(s):
+40400,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+40401,Bash/Shell/PowerShell;R;Scala;Other(s):
+40402,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+40403,C#;HTML/CSS;JavaScript;SQL
+40404,C#;HTML/CSS;Java;JavaScript;SQL
+40405,Bash/Shell/PowerShell;Clojure;JavaScript;Ruby
+40406,Bash/Shell/PowerShell;R;SQL
+40407,Java;JavaScript;Python;SQL
+40408,Bash/Shell/PowerShell;Java;Scala
+40409,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+40410,C++;HTML/CSS;JavaScript;PHP;SQL
+40411,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+40412,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+40413,C++;HTML/CSS;Kotlin;Python;Rust
+40414,HTML/CSS;Python
+40415,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;VBA
+40416,C;C++;C#;HTML/CSS;JavaScript;Objective-C;Rust;Swift;TypeScript
+40417,Python
+40418,Bash/Shell/PowerShell;Python
+40419,Python
+40420,C#;HTML/CSS;JavaScript;Python
+40421,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+40422,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40423,HTML/CSS;JavaScript;PHP;SQL
+40424,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+40425,C++;Python
+40426,C++;C#;Java;Kotlin;Objective-C;Ruby;Swift
+40427,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+40428,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+40429,C#;HTML/CSS;JavaScript;SQL
+40430,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+40431,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40432,C#;Java;JavaScript;Python;TypeScript
+40433,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+40434,C;JavaScript;SQL
+40435,HTML/CSS;JavaScript;TypeScript
+40436,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;Python;Rust
+40437,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+40438,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+40439,HTML/CSS;JavaScript;PHP
+40440,JavaScript
+40441,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40442,HTML/CSS;Java;PHP;Python;R;Ruby;SQL
+40443,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+40444,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;Swift
+40445,C#;HTML/CSS;Python;TypeScript
+40446,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+40447,Java;Other(s):
+40448,C#;SQL;VBA
+40449,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+40450,C#;HTML/CSS;JavaScript;PHP;SQL
+40451,C;HTML/CSS;Java;JavaScript;Python;SQL
+40452,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+40453,C#
+40454,Bash/Shell/PowerShell;C++;Java;JavaScript;Ruby;SQL
+40455,Bash/Shell/PowerShell;Python
+40456,Java;Python;SQL
+40457,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala
+40458,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+40459,C++;Java
+40460,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+40461,Java;JavaScript;TypeScript;Other(s):
+40462,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+40463,HTML/CSS;Java;JavaScript;SQL
+40464,C++;C#
+40465,Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+40466,HTML/CSS;JavaScript;PHP;SQL
+40467,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+40468,HTML/CSS;JavaScript;SQL;Other(s):
+40469,HTML/CSS;JavaScript
+40470,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+40471,C++;C#;Go;JavaScript;Python;SQL
+40472,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+40473,C++;C#;F#;HTML/CSS;SQL;TypeScript
+40474,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+40475,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+40476,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+40477,Bash/Shell/PowerShell;C#
+40478,HTML/CSS;Java;JavaScript;PHP;SQL
+40479,HTML/CSS;Java;JavaScript;TypeScript
+40480,HTML/CSS;Java;JavaScript;PHP;SQL
+40481,Python;SQL;Other(s):
+40482,C++;HTML/CSS;JavaScript;TypeScript
+40483,C#;HTML/CSS;JavaScript;PHP
+40484,Java
+40485,C++;Python;SQL
+40486,HTML/CSS;JavaScript
+40487,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40488,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40489,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+40490,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+40491,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+40492,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+40493,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+40494,C;C++;Java;JavaScript;Python;Ruby;SQL
+40495,JavaScript;TypeScript
+40496,C#;HTML/CSS;SQL
+40497,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+40498,SQL
+40499,HTML/CSS;JavaScript;Python
+40500,HTML/CSS;JavaScript
+40501,C#;Python;R;SQL
+40502,C++;Java;Other(s):
+40503,Bash/Shell/PowerShell;C;C++;Java;Python
+40504,HTML/CSS;JavaScript;Ruby;SQL
+40505,C++;Java;Objective-C;SQL;TypeScript;WebAssembly
+40506,Assembly;Bash/Shell/PowerShell;C;Java;SQL;TypeScript
+40508,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+40509,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40510,C#;Java;JavaScript;SQL
+40511,C++;HTML/CSS;Java;JavaScript;PHP;Python
+40512,R
+40513,C#;Java;JavaScript
+40514,HTML/CSS;Java;JavaScript;SQL
+40515,HTML/CSS;JavaScript;PHP;VBA
+40516,C#;Dart;Java;JavaScript;Kotlin;Objective-C;Swift
+40517,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+40518,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL;Other(s):
+40519,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;Python;SQL;Other(s):
+40520,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40521,C;Go;HTML/CSS;JavaScript;Python
+40522,C#;JavaScript;Python;SQL;VBA
+40523,C++;HTML/CSS;JavaScript;Objective-C;PHP;Rust;Swift
+40524,HTML/CSS;JavaScript;PHP;SQL
+40525,HTML/CSS;Java;JavaScript
+40526,Assembly;C;C++;HTML/CSS;Java;Kotlin;Python;SQL
+40528,C;C++;HTML/CSS;Java;Objective-C
+40529,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+40530,HTML/CSS;JavaScript;PHP;TypeScript
+40531,C++;Python;R;SQL
+40532,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+40533,Clojure
+40534,Assembly;C;HTML/CSS;JavaScript;PHP
+40535,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+40536,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+40537,Bash/Shell/PowerShell;Elixir;JavaScript;Ruby;SQL;TypeScript
+40538,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+40539,Bash/Shell/PowerShell;C;C++;Python
+40540,Bash/Shell/PowerShell;C++;Python;Other(s):
+40541,Bash/Shell/PowerShell;C++;C#;Python
+40542,Java;Python;R;SQL;VBA
+40543,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+40545,HTML/CSS;Java;JavaScript;SQL
+40546,HTML/CSS
+40547,Java;JavaScript;SQL
+40548,HTML/CSS;JavaScript;TypeScript;Other(s):
+40549,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+40550,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+40551,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+40552,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+40553,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+40554,Bash/Shell/PowerShell;C#;Java;TypeScript
+40555,C#;HTML/CSS;JavaScript;SQL
+40557,Objective-C;Ruby;Swift
+40558,JavaScript;TypeScript
+40559,Python;R
+40560,C++;Python;Other(s):
+40562,Java;Kotlin;Python;R;Scala
+40563,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+40564,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+40565,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+40566,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+40567,C
+40568,C++;Python;SQL
+40569,C;C++;Dart;Java;Kotlin;PHP
+40570,HTML/CSS;Java;JavaScript;PHP;Python
+40571,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+40572,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+40573,Ruby
+40575,C++;HTML/CSS;JavaScript;TypeScript
+40576,HTML/CSS;JavaScript;TypeScript
+40577,C++;Java
+40578,C#;Java;JavaScript;SQL;TypeScript
+40579,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+40580,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Swift
+40581,Bash/Shell/PowerShell;C++;Go;Java;Python;Other(s):
+40582,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+40583,C#;Python
+40584,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;Other(s):
+40585,Bash/Shell/PowerShell;Clojure;Elixir;HTML/CSS;R;Other(s):
+40586,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+40587,Java
+40588,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+40589,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+40590,C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+40591,Go;Java;Python
+40592,Java;Scala;TypeScript;Other(s):
+40593,C++;Java;JavaScript;Ruby;SQL
+40594,HTML/CSS;JavaScript;PHP;Python;SQL
+40595,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+40596,Assembly;C#;HTML/CSS;Java;PHP;SQL
+40597,Bash/Shell/PowerShell;Java;JavaScript;Python
+40598,C#;HTML/CSS;JavaScript;SQL
+40599,Bash/Shell/PowerShell;C++;Go;HTML/CSS;PHP;Python
+40600,HTML/CSS;JavaScript;SQL;TypeScript
+40602,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+40603,Bash/Shell/PowerShell;C;C++;Clojure;Java;JavaScript;Python;R;SQL;Swift
+40605,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Swift
+40606,HTML/CSS;JavaScript;PHP;SQL;VBA
+40607,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40608,HTML/CSS;JavaScript;PHP
+40609,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+40610,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40611,HTML/CSS;JavaScript;PHP
+40612,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+40613,C;C++;C#;Python
+40614,Bash/Shell/PowerShell;Java;Python
+40616,C#;HTML/CSS;JavaScript;SQL
+40617,C++;C#
+40618,HTML/CSS;Java;Kotlin;Python
+40619,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python
+40620,HTML/CSS;JavaScript;TypeScript
+40621,C;C++;JavaScript;Python
+40622,C#;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+40623,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+40624,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL
+40625,C#;Java;JavaScript;SQL;TypeScript
+40626,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;PHP;SQL
+40627,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40628,HTML/CSS;JavaScript;Python;SQL;TypeScript
+40629,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Ruby
+40630,HTML/CSS;JavaScript;PHP
+40631,Java;SQL
+40632,C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python
+40633,HTML/CSS;JavaScript;PHP;SQL
+40634,HTML/CSS;JavaScript;Python;SQL
+40635,Python
+40636,HTML/CSS;JavaScript
+40637,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+40638,JavaScript;Python
+40639,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Rust
+40641,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+40642,Swift
+40643,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript
+40644,Assembly;C;Ruby
+40645,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Scala;SQL
+40646,C#;Java;JavaScript
+40647,C++;Java;Kotlin;Objective-C
+40648,HTML/CSS;Java;JavaScript;PHP;SQL
+40649,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+40650,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Other(s):
+40651,HTML/CSS;JavaScript;PHP;SQL
+40652,C#;HTML/CSS;Java;JavaScript;SQL
+40653,HTML/CSS;JavaScript;Other(s):
+40654,C++;C#;SQL
+40655,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+40656,JavaScript;Ruby
+40657,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+40658,C#;HTML/CSS;JavaScript;SQL
+40659,Java;SQL
+40660,HTML/CSS;JavaScript;PHP;SQL
+40661,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;Swift
+40662,C#;HTML/CSS;JavaScript;SQL;VBA
+40663,Python;Other(s):
+40664,HTML/CSS;Java;JavaScript;PHP
+40665,C++;C#
+40666,C;C++;Python
+40667,HTML/CSS;Java;JavaScript;SQL
+40668,Kotlin
+40669,C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+40670,Java;SQL
+40671,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Other(s):
+40673,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+40674,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;Ruby;SQL
+40675,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+40676,Java
+40677,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+40678,Bash/Shell/PowerShell;C#;SQL;VBA
+40679,Java;Kotlin
+40680,Go;JavaScript;TypeScript
+40681,HTML/CSS;JavaScript;Python
+40682,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+40683,Assembly;C++;JavaScript;Python;Rust
+40684,Bash/Shell/PowerShell;Java;SQL
+40685,Other(s):
+40686,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+40688,Python
+40689,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+40690,C#;HTML/CSS;Java;JavaScript;Python
+40691,C#;SQL
+40692,C#;HTML/CSS;JavaScript;TypeScript
+40693,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+40694,C#;JavaScript;Swift;TypeScript;Other(s):
+40695,Assembly;C;C#;HTML/CSS;JavaScript;Python;R;Ruby
+40696,HTML/CSS;Java;SQL;Other(s):
+40697,Bash/Shell/PowerShell;C#;Java;Python;Other(s):
+40698,C#;HTML/CSS;JavaScript
+40699,Python
+40700,C#;HTML/CSS;JavaScript;SQL
+40701,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+40702,C;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+40703,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA;Other(s):
+40704,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+40705,HTML/CSS;JavaScript;PHP
+40706,C#;HTML/CSS;JavaScript
+40707,Java;JavaScript;Kotlin;Scala
+40708,Clojure;SQL
+40709,Bash/Shell/PowerShell;Python;Rust
+40710,Bash/Shell/PowerShell;C++;Python
+40711,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+40712,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript
+40713,C#;HTML/CSS;SQL
+40714,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+40715,HTML/CSS;JavaScript;Python;SQL
+40716,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+40717,HTML/CSS;Java;JavaScript;Objective-C;Ruby
+40718,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40719,F#;HTML/CSS;Other(s):
+40720,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+40721,Assembly;C;C#
+40722,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;VBA
+40723,SQL;Other(s):
+40724,HTML/CSS
+40725,HTML/CSS;Java;JavaScript;SQL;TypeScript
+40726,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40727,HTML/CSS;JavaScript;PHP
+40728,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;WebAssembly
+40729,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+40730,C#
+40731,Python
+40732,PHP;Other(s):
+40733,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+40734,C#;HTML/CSS;JavaScript
+40735,C#;HTML/CSS;JavaScript;Python;Other(s):
+40736,C;C++;Objective-C;Swift
+40737,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+40738,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+40739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40740,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+40741,Bash/Shell/PowerShell;C#;JavaScript;Ruby;SQL;TypeScript
+40742,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;Ruby;Scala;SQL
+40743,HTML/CSS;Java;JavaScript;SQL;Swift
+40744,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+40745,C#;HTML/CSS;Java;JavaScript;Kotlin;R;SQL;VBA
+40746,C#;SQL;Other(s):
+40747,C++;C#;Java
+40749,Java;Kotlin;SQL
+40750,Bash/Shell/PowerShell;C;Java;Kotlin;Python
+40752,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+40753,C#;F#;HTML/CSS;JavaScript;SQL
+40754,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+40755,HTML/CSS;JavaScript;PHP;SQL
+40756,Dart;Go;HTML/CSS;Java;JavaScript
+40757,C;C++;C#;Java;JavaScript;Kotlin;Swift
+40758,C++;Elixir;HTML/CSS;Python;Swift
+40759,C#;HTML/CSS;JavaScript
+40760,C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40761,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+40762,HTML/CSS;JavaScript;Ruby;SQL
+40764,HTML/CSS;JavaScript;PHP;SQL
+40765,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+40766,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+40767,HTML/CSS;JavaScript;TypeScript
+40768,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40769,HTML/CSS;JavaScript;TypeScript
+40770,HTML/CSS;Python
+40771,C;C++;HTML/CSS;Java;PHP
+40772,C#;JavaScript
+40773,Dart;Java;Python;R;SQL
+40774,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+40775,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+40776,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+40777,R
+40778,Java;Other(s):
+40779,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+40780,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40781,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+40783,C#;HTML/CSS;Python;SQL;VBA
+40784,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+40785,C;Java;SQL
+40786,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+40787,C#;HTML/CSS;JavaScript;SQL
+40788,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+40789,HTML/CSS;Java;JavaScript;Kotlin;SQL
+40790,Java;Objective-C;Python;Ruby;Other(s):
+40791,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;R;SQL
+40792,Dart;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+40793,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+40794,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40795,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Swift;VBA
+40796,Bash/Shell/PowerShell;Go;JavaScript
+40797,Objective-C;Swift
+40799,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+40800,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;TypeScript;VBA
+40801,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40802,HTML/CSS;JavaScript;TypeScript
+40803,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL;Other(s):
+40804,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Kotlin;Python;R;Rust;SQL;Swift;TypeScript
+40805,Assembly;HTML/CSS;Java;JavaScript;SQL
+40806,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40807,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+40808,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+40809,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Rust
+40810,Java;JavaScript;Python
+40811,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP
+40812,HTML/CSS;Java;JavaScript;TypeScript
+40813,HTML/CSS
+40814,Assembly;HTML/CSS;Java;JavaScript;Ruby;SQL
+40815,Bash/Shell/PowerShell;C;C++
+40816,Assembly;C++;C#;Java;JavaScript
+40817,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40818,HTML/CSS;JavaScript;TypeScript
+40819,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40820,HTML/CSS;JavaScript;PHP
+40821,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Python
+40822,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+40823,Assembly;Bash/Shell/PowerShell;Python;SQL
+40824,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+40825,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+40826,HTML/CSS;JavaScript;PHP;Python;SQL
+40827,HTML/CSS;Java;JavaScript;TypeScript
+40828,C#;HTML/CSS;JavaScript;SQL
+40829,Bash/Shell/PowerShell;C;C#;Java;JavaScript;SQL
+40830,C;C#;Python
+40831,HTML/CSS;JavaScript;TypeScript
+40832,HTML/CSS;Java;JavaScript;Python;VBA
+40833,C;C++
+40834,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+40835,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+40836,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40837,Python;R;SQL;VBA
+40838,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+40839,C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+40840,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+40841,HTML/CSS;JavaScript
+40842,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+40843,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+40844,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+40845,HTML/CSS;JavaScript;PHP;Python;Ruby
+40846,C#;Java;JavaScript;SQL
+40847,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+40848,HTML/CSS;JavaScript;PHP;SQL
+40849,Assembly;C;HTML/CSS;Java;JavaScript;Kotlin;SQL
+40850,Python;R
+40851,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+40852,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40853,Assembly;Bash/Shell/PowerShell;C++;C#;Python;SQL
+40854,C++;Java;R;SQL
+40855,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+40856,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+40857,Bash/Shell/PowerShell;Elixir;Erlang;Go;JavaScript;Ruby;SQL;Other(s):
+40859,C++;C#;JavaScript;SQL
+40860,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+40861,C++;C#;HTML/CSS;JavaScript;VBA
+40862,C++;Go;Java;PHP
+40863,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+40864,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+40866,HTML/CSS;Java;JavaScript;PHP;Python;Swift
+40867,C#;Go;JavaScript;PHP;SQL;TypeScript;VBA
+40868,Java;Kotlin;SQL
+40869,Bash/Shell/PowerShell;C;C#;Java;PHP;Python
+40870,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+40872,C;C++;Erlang;Java;Python;SQL
+40873,C;C++;Clojure;Java;JavaScript;Kotlin;Python;R
+40874,JavaScript;PHP;TypeScript
+40875,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL
+40876,Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+40877,Bash/Shell/PowerShell;JavaScript;TypeScript
+40878,HTML/CSS;JavaScript;Python
+40879,C++;Java;JavaScript;Python;SQL;TypeScript
+40880,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+40881,C++;Java;Kotlin
+40882,C#;HTML/CSS;JavaScript;Python;SQL
+40883,HTML/CSS;JavaScript;PHP;SQL
+40884,C#;JavaScript;SQL
+40885,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+40887,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;TypeScript
+40888,C#;Go;SQL;TypeScript
+40889,C++;Go;Python;SQL
+40891,Java;JavaScript;Python;Swift
+40892,Other(s):
+40893,Bash/Shell/PowerShell;C++;Python
+40894,C;C++;HTML/CSS;Java;JavaScript;Python
+40895,Bash/Shell/PowerShell;C;C#;HTML/CSS;SQL;TypeScript
+40896,JavaScript;R;SQL;VBA
+40897,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+40899,Bash/Shell/PowerShell;HTML/CSS;Python
+40900,Java;JavaScript;SQL;TypeScript
+40901,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+40902,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+40903,C;C++;C#;Java;Python
+40904,Bash/Shell/PowerShell;C#;JavaScript
+40905,HTML/CSS;JavaScript;Python;Ruby
+40906,C#;HTML/CSS;JavaScript;SQL
+40907,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+40908,HTML/CSS;Java;JavaScript
+40909,C#;HTML/CSS;JavaScript;SQL;TypeScript
+40910,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+40911,C++;HTML/CSS;JavaScript;Objective-C
+40912,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+40913,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL;TypeScript
+40914,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+40915,HTML/CSS;JavaScript;Python;TypeScript
+40916,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+40918,C#;Go;Java;JavaScript;Kotlin;Python;TypeScript
+40919,HTML/CSS;JavaScript
+40920,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+40921,HTML/CSS;Java;SQL;Other(s):
+40922,Bash/Shell/PowerShell;C++
+40923,Java;JavaScript;Scala;SQL
+40924,HTML/CSS;JavaScript;PHP
+40925,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+40926,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+40927,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL
+40928,C#
+40929,C;C++;Python
+40930,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+40931,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+40932,Assembly;Bash/Shell/PowerShell;Python;R;SQL;TypeScript
+40933,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+40934,Objective-C;Swift
+40935,Bash/Shell/PowerShell;Python
+40936,HTML/CSS;Java;JavaScript;SQL;Other(s):
+40937,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;R;SQL
+40938,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+40939,C++;Elixir;JavaScript;PHP;Python;SQL
+40940,C++;Java;JavaScript
+40941,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+40942,HTML/CSS;Java;JavaScript;Scala
+40943,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+40944,Java;Python;TypeScript
+40945,C#;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+40946,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+40947,C#;HTML/CSS;JavaScript;SQL
+40948,C;C++;HTML/CSS;Python
+40949,Bash/Shell/PowerShell;Java;Python;SQL
+40950,Java;Other(s):
+40951,C#;HTML/CSS;JavaScript
+40952,Bash/Shell/PowerShell;Go;HTML/CSS;Python;R;Ruby;SQL
+40953,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+40954,HTML/CSS;Java;JavaScript;TypeScript
+40955,HTML/CSS;Java;JavaScript;SQL;TypeScript
+40956,C#;HTML/CSS;JavaScript;SQL
+40957,C++;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+40958,C;C++;Other(s):
+40959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL
+40960,HTML/CSS;Java;JavaScript;PHP;SQL
+40961,C++;C#;HTML/CSS;Java;JavaScript;Python
+40962,C++;C#;HTML/CSS;Java;JavaScript;Python
+40963,HTML/CSS;JavaScript;PHP
+40964,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+40965,C++;C#;JavaScript;SQL;TypeScript
+40966,HTML/CSS;Java;Kotlin;Python;R;SQL
+40967,C#;HTML/CSS;JavaScript;Python
+40968,HTML/CSS;JavaScript
+40969,C++;C#
+40970,C++;HTML/CSS;JavaScript;PHP;SQL
+40971,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+40972,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+40973,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;Kotlin;PHP;Python;SQL;TypeScript
+40974,Elixir;HTML/CSS;Java;JavaScript;Ruby;Swift
+40975,C++;Go;Java;Scala;SQL;TypeScript
+40976,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+40977,C#;HTML/CSS;TypeScript
+40978,Assembly;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+40980,HTML/CSS;JavaScript;PHP
+40981,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+40982,C#;Java;Kotlin;Objective-C;Swift
+40983,Bash/Shell/PowerShell;Java;PHP
+40984,Java;JavaScript;Python
+40985,Bash/Shell/PowerShell;C#;SQL;VBA
+40986,C;C++;Go;JavaScript;PHP;SQL;Other(s):
+40987,C#;HTML/CSS;JavaScript;PHP;SQL
+40988,HTML/CSS;JavaScript;PHP;SQL
+40989,Other(s):
+40990,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+40991,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+40992,C#;Java;SQL;TypeScript
+40993,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+40994,HTML/CSS;JavaScript;Python;Ruby
+40995,HTML/CSS
+40996,HTML/CSS;JavaScript;PHP;SQL
+40997,C#;HTML/CSS;JavaScript;PHP
+40998,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL
+40999,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+41000,C#;HTML/CSS;Java;SQL;Other(s):
+41001,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+41002,HTML/CSS;JavaScript;TypeScript
+41003,C#
+41004,Bash/Shell/PowerShell;JavaScript;Python;Swift
+41005,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41006,C#;SQL
+41007,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+41008,C;C++;C#;JavaScript;Python;TypeScript
+41009,C#;HTML/CSS;JavaScript;SQL;VBA
+41010,HTML/CSS;PHP;Python;SQL;TypeScript
+41011,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+41013,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+41014,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+41015,HTML/CSS;Java;JavaScript;Python
+41016,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;SQL
+41017,C#;HTML/CSS;JavaScript;PHP
+41018,C#;HTML/CSS;JavaScript
+41019,C++;C#;HTML/CSS;Python
+41020,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41021,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Rust;SQL
+41022,Assembly;Bash/Shell/PowerShell;C++;C#;Scala;SQL
+41023,C++;Python;Other(s):
+41024,C#
+41025,Bash/Shell/PowerShell;Java;JavaScript;Python;R
+41026,Bash/Shell/PowerShell;C#;SQL
+41027,Bash/Shell/PowerShell;C++;SQL;Other(s):
+41028,Assembly;C#;HTML/CSS;JavaScript;Swift;Other(s):
+41029,C++;HTML/CSS;Java;JavaScript;Python
+41030,C;C++;C#;Dart
+41031,Python;SQL
+41032,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+41033,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+41034,Clojure;Java;Scala;SQL
+41035,C++;HTML/CSS;Java;JavaScript;Kotlin
+41036,HTML/CSS;JavaScript;PHP;SQL
+41037,C++;C#;JavaScript;Other(s):
+41038,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+41039,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+41040,C;C++;JavaScript;TypeScript
+41041,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+41042,Python;Other(s):
+41044,C;C++;C#;HTML/CSS;SQL
+41045,HTML/CSS;JavaScript;PHP;Scala;SQL
+41046,C++;C#;HTML/CSS;Java;JavaScript
+41047,HTML/CSS;JavaScript
+41048,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+41049,Assembly;Bash/Shell/PowerShell;C;C++;C#;Rust
+41050,Assembly;C;C++;Python;Ruby
+41051,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41052,C;C++;HTML/CSS;JavaScript;SQL
+41053,JavaScript;SQL;Other(s):
+41054,C#;HTML/CSS;JavaScript;SQL;TypeScript
+41055,C++;C#;HTML/CSS;JavaScript;SQL
+41056,C#;Rust
+41057,C;C++;C#;HTML/CSS;Java;JavaScript
+41058,C#;HTML/CSS;JavaScript;SQL
+41059,HTML/CSS;Java
+41060,HTML/CSS;JavaScript;PHP;Python;SQL
+41061,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41062,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Objective-C;TypeScript
+41063,C++;Go;Java;Python;Ruby
+41064,Java;Python;R;Scala
+41065,C++;C#
+41066,Go
+41067,C#;Java
+41068,C;C++;C#;HTML/CSS;JavaScript
+41069,C#;F#
+41070,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;PHP;SQL
+41071,C;Go;Java;Objective-C;Swift
+41072,HTML/CSS;JavaScript
+41073,Java;JavaScript
+41074,HTML/CSS;JavaScript;PHP;SQL
+41075,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+41076,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+41077,Assembly;C;C++;C#;Java;Python;SQL
+41078,Python;Swift
+41079,C;HTML/CSS;JavaScript;TypeScript;Other(s):
+41080,Bash/Shell/PowerShell;C;HTML/CSS;Python;Rust
+41081,Bash/Shell/PowerShell;C++;Java;JavaScript;Other(s):
+41082,HTML/CSS;Java;JavaScript;SQL
+41083,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+41084,HTML/CSS;JavaScript;TypeScript
+41085,HTML/CSS;JavaScript;PHP;SQL
+41086,C#;HTML/CSS;JavaScript;TypeScript
+41087,Bash/Shell/PowerShell;C;C++;C#;Go
+41088,Bash/Shell/PowerShell;C;C++;Go;Python;SQL
+41089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+41090,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41091,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+41092,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41093,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;Other(s):
+41094,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+41095,Bash/Shell/PowerShell;Python;Ruby;SQL
+41096,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+41097,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+41098,C#;Java
+41099,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift;TypeScript
+41100,Python;R
+41101,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;Other(s):
+41102,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41103,Dart;HTML/CSS;Java;PHP;SQL
+41104,HTML/CSS;Java;Python;SQL
+41105,Bash/Shell/PowerShell;Python;R;SQL;VBA
+41106,SQL
+41107,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+41108,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;Python
+41109,Bash/Shell/PowerShell;Go;Python;R;SQL
+41110,C;C++;HTML/CSS;Python;SQL
+41111,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+41112,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;Other(s):
+41113,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;Swift
+41114,Java;Swift
+41115,Go;PHP;SQL
+41116,C#;JavaScript
+41117,C;C++;Java;JavaScript;Python
+41118,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+41119,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+41120,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+41121,Java;Python;SQL;Other(s):
+41122,Java;JavaScript;Kotlin;Objective-C;Swift
+41123,HTML/CSS;Python;SQL
+41124,HTML/CSS
+41125,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Scala;Swift
+41126,Java;JavaScript
+41127,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+41128,Java;JavaScript;SQL
+41129,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript
+41130,C#;HTML/CSS;JavaScript;PHP;Python
+41131,Python
+41132,C++;Java;Objective-C;Python
+41133,C;Python
+41134,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+41135,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+41136,Bash/Shell/PowerShell;C;C++;C#;Python
+41137,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+41138,JavaScript;Kotlin
+41139,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift;TypeScript
+41140,C#;HTML/CSS;JavaScript;PHP;SQL
+41141,C#;Java;JavaScript;Ruby;SQL
+41142,Java;Kotlin
+41143,C;C++;Go;JavaScript;Python;Ruby
+41144,Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL
+41145,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+41146,HTML/CSS;JavaScript;Python;SQL;VBA
+41147,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+41148,Bash/Shell/PowerShell;Java;Python;R
+41149,C#;Python;SQL
+41150,C#;Clojure;Java;JavaScript;Kotlin;PHP;Python
+41151,Java;JavaScript;SQL
+41152,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+41153,HTML/CSS;JavaScript
+41154,Assembly;C;C++;C#;HTML/CSS;R;SQL
+41155,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+41156,Assembly;C;C++;Java;Other(s):
+41157,Bash/Shell/PowerShell;C;Java;Python
+41158,C;C++;C#;JavaScript;Python;Other(s):
+41159,Java;Python
+41160,C#;HTML/CSS;Java;JavaScript;SQL
+41161,Kotlin
+41162,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+41163,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+41164,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+41165,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+41166,HTML/CSS;Java;JavaScript;TypeScript
+41167,HTML/CSS;JavaScript
+41168,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python
+41169,Bash/Shell/PowerShell;C++;C#;Go;Kotlin;Python
+41170,C;C++;Python
+41171,Assembly;Bash/Shell/PowerShell;C;C#
+41172,Assembly;C;HTML/CSS;Java;JavaScript;Python
+41173,Assembly;Bash/Shell/PowerShell;C;C++;Python
+41174,C#;HTML/CSS;Java;PHP;SQL
+41175,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+41176,HTML/CSS;Java;JavaScript;PHP;SQL
+41177,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+41178,Bash/Shell/PowerShell;C;C++;Python
+41179,C;C++;Dart;Java
+41180,Bash/Shell/PowerShell;C++;Python
+41181,C++;C#;Go;HTML/CSS;JavaScript;Rust;TypeScript;Other(s):
+41182,Assembly;C;HTML/CSS;JavaScript;PHP;SQL
+41183,Bash/Shell/PowerShell;SQL
+41184,C#
+41185,C;C++;C#;Go;HTML/CSS;JavaScript
+41186,C#;HTML/CSS;JavaScript;PHP
+41187,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;JavaScript;Rust
+41188,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;Scala;SQL;Swift
+41189,Assembly;C;Java
+41190,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Kotlin;Python;TypeScript;Other(s):
+41191,C#;HTML/CSS;JavaScript;SQL
+41192,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+41193,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+41194,Bash/Shell/PowerShell;Java;JavaScript;SQL;Other(s):
+41195,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41196,Python;R
+41197,Bash/Shell/PowerShell;C;C++;Java;Python
+41198,C#;JavaScript;PHP;Python;SQL;Other(s):
+41199,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+41200,HTML/CSS;JavaScript;SQL
+41202,HTML/CSS;JavaScript;Python;SQL
+41203,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+41204,C#;HTML/CSS;JavaScript;SQL
+41205,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+41206,Other(s):
+41207,JavaScript;Python;SQL;TypeScript
+41208,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+41209,HTML/CSS;Java;JavaScript;Python;R;Swift
+41210,Java;Other(s):
+41211,Assembly;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+41212,HTML/CSS;JavaScript;VBA
+41213,HTML/CSS;JavaScript;PHP;SQL
+41214,C
+41215,HTML/CSS;Java;SQL
+41216,HTML/CSS;Java;JavaScript
+41217,C++;HTML/CSS;Kotlin
+41218,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+41220,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Other(s):
+41221,JavaScript;Kotlin;SQL
+41222,C#;Java;SQL;Other(s):
+41223,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL
+41224,HTML/CSS;JavaScript;PHP
+41225,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+41226,C#;HTML/CSS;Python
+41227,Objective-C;Swift
+41228,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+41229,Bash/Shell/PowerShell;C#;SQL
+41230,Go;HTML/CSS;Java;JavaScript;SQL
+41231,Python
+41232,JavaScript;SQL
+41233,C++
+41234,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL
+41235,Python
+41236,C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+41237,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+41238,Go;JavaScript;Ruby;SQL
+41239,HTML/CSS;PHP
+41240,C#;Go;HTML/CSS;Java;JavaScript;Python
+41241,JavaScript;TypeScript
+41242,C++;Python
+41244,Objective-C;Swift
+41245,HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript;Other(s):
+41246,C;Java;VBA
+41247,Bash/Shell/PowerShell;C;C++;WebAssembly
+41248,C++;C#
+41249,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+41250,PHP;Scala;Other(s):
+41251,HTML/CSS;JavaScript;Kotlin
+41252,C;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+41253,Java;JavaScript;Python;SQL
+41254,Go;Java;JavaScript;Python;Scala;SQL
+41255,HTML/CSS;JavaScript;PHP;SQL
+41256,Bash/Shell/PowerShell;Python;Other(s):
+41258,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41259,HTML/CSS;JavaScript
+41260,HTML/CSS;Java;SQL
+41261,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+41262,Erlang;Other(s):
+41263,Assembly;C;Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+41264,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41265,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+41266,PHP
+41267,HTML/CSS;JavaScript;PHP;TypeScript
+41268,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+41269,C#;HTML/CSS;Ruby
+41270,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Rust
+41271,C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+41272,HTML/CSS;Java;JavaScript;PHP;SQL
+41273,C;HTML/CSS;Java;JavaScript;Python;SQL
+41274,Bash/Shell/PowerShell;C;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python
+41275,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;SQL;Swift;TypeScript
+41276,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+41277,HTML/CSS;JavaScript;PHP;Python;SQL
+41278,HTML/CSS;JavaScript
+41279,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Swift
+41280,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+41281,JavaScript
+41282,HTML/CSS;Java;JavaScript;TypeScript
+41283,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+41284,HTML/CSS;JavaScript;PHP;SQL
+41285,HTML/CSS;Java;JavaScript;SQL
+41286,HTML/CSS;Java;Python;VBA
+41287,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+41288,HTML/CSS;Java;JavaScript;SQL;Other(s):
+41289,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+41290,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+41291,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+41292,Bash/Shell/PowerShell;Python;SQL
+41293,Java;R;SQL
+41294,HTML/CSS;Java;JavaScript;PHP;SQL
+41295,Assembly;Bash/Shell/PowerShell;C++;C#;JavaScript;SQL;TypeScript
+41296,HTML/CSS;JavaScript;Python
+41297,HTML/CSS;Java;JavaScript;SQL;Other(s):
+41298,Java;JavaScript;SQL
+41299,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;TypeScript
+41300,HTML/CSS;JavaScript;Ruby;SQL
+41301,Bash/Shell/PowerShell;Python
+41302,HTML/CSS;Java;JavaScript
+41303,Bash/Shell/PowerShell;Python;SQL
+41304,HTML/CSS;Java;JavaScript;SQL
+41305,C++;HTML/CSS;JavaScript;PHP;Python;R;Rust;SQL
+41306,HTML/CSS;JavaScript;PHP;SQL
+41308,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Swift;TypeScript;VBA
+41309,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+41310,HTML/CSS;JavaScript;TypeScript;Other(s):
+41311,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+41312,HTML/CSS;JavaScript
+41313,HTML/CSS;Java;JavaScript;Python;SQL
+41314,HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+41315,HTML/CSS;Python;R;Other(s):
+41316,HTML/CSS;JavaScript;Ruby;SQL
+41317,HTML/CSS;JavaScript;PHP;SQL
+41318,Java;JavaScript
+41319,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+41320,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+41321,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+41322,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+41323,C;C++;C#
+41324,Bash/Shell/PowerShell;C++;Python
+41325,Go;HTML/CSS;Other(s):
+41326,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+41327,Bash/Shell/PowerShell;C#;Kotlin;Ruby;SQL
+41328,C#;TypeScript
+41329,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41330,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+41331,C;C++;Go;HTML/CSS;JavaScript;Python
+41332,Bash/Shell/PowerShell;C++;Python
+41333,Bash/Shell/PowerShell;C++;Python
+41334,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41335,Java;JavaScript
+41336,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+41337,C#;HTML/CSS;JavaScript;SQL
+41338,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;JavaScript;Python;SQL
+41339,HTML/CSS;Java;JavaScript;SQL
+41340,Python
+41341,HTML/CSS;Java;JavaScript
+41342,C++;Java;Kotlin;Ruby;Swift
+41343,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;R;Swift
+41344,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+41345,HTML/CSS;JavaScript;PHP;SQL
+41346,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+41347,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;TypeScript
+41348,C#;Java;SQL;Other(s):
+41349,Java;Rust;TypeScript
+41350,C#;HTML/CSS;JavaScript;SQL;TypeScript
+41351,C;C++;HTML/CSS;JavaScript;PHP
+41352,HTML/CSS;JavaScript;TypeScript
+41353,HTML/CSS;Java;JavaScript;SQL
+41354,HTML/CSS;JavaScript
+41355,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;TypeScript
+41356,Go;HTML/CSS;PHP
+41357,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+41358,Elixir;HTML/CSS;JavaScript;Ruby
+41359,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;R;SQL;VBA
+41360,Java;JavaScript;SQL;TypeScript
+41361,C++
+41362,Java;JavaScript;Python;Scala;SQL
+41363,C;C++;C#;HTML/CSS;JavaScript;Python
+41364,C;C#;HTML/CSS;JavaScript;SQL
+41365,C#;HTML/CSS;JavaScript;SQL;TypeScript
+41366,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python;SQL
+41367,Bash/Shell/PowerShell;Python;R
+41368,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Rust;SQL;Other(s):
+41369,C#;HTML/CSS;SQL
+41370,Bash/Shell/PowerShell
+41371,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+41372,C;JavaScript;Python;Swift
+41373,C++
+41374,Bash/Shell/PowerShell;C;C++;Python
+41375,C++;HTML/CSS;JavaScript;PHP;Python;Ruby
+41376,HTML/CSS;JavaScript;PHP;SQL
+41377,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+41378,Java;JavaScript
+41379,PHP;Python
+41380,HTML/CSS;Java;JavaScript;SQL;TypeScript
+41381,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41382,C++;C#;Erlang;HTML/CSS;JavaScript;SQL
+41383,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+41384,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby
+41385,JavaScript;Rust;Other(s):
+41386,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+41387,Python
+41388,Python
+41390,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python
+41391,Bash/Shell/PowerShell;JavaScript;SQL;Other(s):
+41392,C#;Python
+41393,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+41394,HTML/CSS;VBA
+41395,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41396,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;Ruby;SQL
+41397,Objective-C;Swift
+41398,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;SQL;Other(s):
+41399,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+41400,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+41401,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+41402,Bash/Shell/PowerShell;C;Kotlin;Python;SQL
+41403,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+41404,HTML/CSS;JavaScript
+41405,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+41406,HTML/CSS;JavaScript;PHP;SQL
+41407,HTML/CSS;Java;JavaScript;Objective-C;Swift
+41408,HTML/CSS;JavaScript;PHP;SQL
+41409,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Python;SQL;Swift
+41410,Elixir;PHP;SQL;TypeScript
+41411,Bash/Shell/PowerShell;Go;JavaScript;Python
+41412,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+41413,HTML/CSS;JavaScript;TypeScript
+41414,Swift
+41415,Bash/Shell/PowerShell;Clojure
+41416,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41417,Bash/Shell/PowerShell;C;C++;C#;SQL;Other(s):
+41418,Bash/Shell/PowerShell;JavaScript
+41419,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+41420,Java;Scala
+41421,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+41422,JavaScript;Python
+41423,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Ruby;SQL;Swift
+41424,Java;Kotlin
+41425,C#;JavaScript;TypeScript
+41426,C;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+41427,Assembly;TypeScript;VBA
+41428,HTML/CSS;Java;JavaScript;Python;SQL;VBA;Other(s):
+41429,C++;Python
+41430,C#;TypeScript
+41431,HTML/CSS;JavaScript;PHP;Python;SQL
+41432,Assembly;C++;C#;Java
+41433,C;HTML/CSS;JavaScript;PHP;Python;SQL
+41434,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;Swift;TypeScript
+41435,Assembly;C;HTML/CSS;Python;R
+41436,C#
+41437,HTML/CSS;Java;JavaScript;PHP;SQL
+41438,Bash/Shell/PowerShell;Java;Kotlin;SQL
+41439,Bash/Shell/PowerShell;C++;Python
+41440,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+41441,Go;JavaScript;Rust;Scala
+41442,Objective-C;Ruby;Swift
+41443,HTML/CSS;Java;JavaScript;Python;Ruby
+41444,Java;Kotlin
+41445,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+41446,C;HTML/CSS;JavaScript;PHP;SQL
+41447,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+41448,Bash/Shell/PowerShell;Python;SQL;Other(s):
+41449,C++;Python;Other(s):
+41450,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+41451,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+41452,Bash/Shell/PowerShell;C;C++;Python
+41453,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+41454,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+41455,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+41456,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+41457,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Scala;Swift
+41458,Dart;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+41459,C#;HTML/CSS;JavaScript;SQL
+41460,C#;HTML/CSS;Java;PHP;SQL
+41461,Swift
+41462,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+41463,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+41464,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+41465,C;HTML/CSS;Python;R
+41466,C#;SQL;Other(s):
+41467,Objective-C;Swift
+41468,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+41469,Bash/Shell/PowerShell;SQL;Other(s):
+41470,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+41471,C#;HTML/CSS
+41472,Java;Objective-C;Swift
+41473,C#;HTML/CSS;JavaScript;SQL;TypeScript
+41474,Bash/Shell/PowerShell;Java;JavaScript;Python
+41475,Bash/Shell/PowerShell;C#;F#
+41476,HTML/CSS;JavaScript;PHP;Python;SQL
+41477,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+41478,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+41479,Assembly;Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;JavaScript;Python;Rust
+41480,C++;C#
+41481,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+41482,Assembly;C;C++;C#;Java;Other(s):
+41483,Assembly;Bash/Shell/PowerShell;C
+41484,Assembly;Bash/Shell/PowerShell;C;C++;F#;Python;TypeScript;Other(s):
+41485,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+41486,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;Swift;TypeScript
+41487,C#;HTML/CSS;JavaScript
+41488,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+41489,C;C++;HTML/CSS;JavaScript;Python;SQL
+41490,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+41491,C#;HTML/CSS;JavaScript;PHP;TypeScript
+41492,Bash/Shell/PowerShell;PHP;Python;SQL
+41493,Bash/Shell/PowerShell;C;C++;C#
+41494,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+41495,Objective-C;Swift
+41496,HTML/CSS;JavaScript;PHP
+41497,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+41498,C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+41499,Python;R;SQL;VBA
+41500,Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+41501,Assembly;C;Java;Kotlin;SQL
+41502,Python
+41503,C#;JavaScript;SQL
+41504,C#;TypeScript
+41505,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;R;Scala;SQL
+41506,Bash/Shell/PowerShell;C;C++;C#;Java;Python;Ruby;SQL
+41507,HTML/CSS;Java;JavaScript;Swift
+41508,C++;C#;HTML/CSS;JavaScript
+41509,HTML/CSS;Java;JavaScript;SQL;TypeScript
+41510,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python
+41511,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+41512,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;TypeScript
+41513,Java
+41514,HTML/CSS;Java;JavaScript;SQL;Other(s):
+41515,Bash/Shell/PowerShell;Java;PHP;Python;R;Ruby;Scala;SQL
+41516,Bash/Shell/PowerShell;Java;Python;SQL
+41518,R
+41519,Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+41520,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41521,C#;HTML/CSS;JavaScript;SQL
+41522,C;Python
+41523,C;C++;C#
+41524,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala
+41525,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Python;R
+41526,C;C++;Java;Kotlin;SQL;TypeScript
+41527,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+41528,HTML/CSS;JavaScript;Python;SQL
+41529,PHP;SQL
+41530,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41531,Bash/Shell/PowerShell;C#;Python;TypeScript
+41532,HTML/CSS;JavaScript;PHP
+41533,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;TypeScript;VBA
+41534,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;VBA
+41535,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+41536,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Swift;TypeScript
+41537,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41538,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41539,Assembly;Bash/Shell/PowerShell;C++;C#;JavaScript;Objective-C;Python;SQL
+41540,C#;JavaScript
+41541,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;Scala;SQL;TypeScript
+41542,Python;SQL;VBA
+41543,Assembly;Bash/Shell/PowerShell;C;Python
+41544,C#;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+41545,HTML/CSS;Java;JavaScript;TypeScript
+41546,JavaScript;VBA;Other(s):
+41547,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+41548,C#;HTML/CSS;JavaScript;SQL;TypeScript
+41549,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+41550,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R
+41551,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+41552,C;C++;HTML/CSS;Java;Python;SQL
+41553,Bash/Shell/PowerShell;Go
+41554,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+41555,Python;TypeScript
+41556,HTML/CSS;JavaScript;Python;Ruby;SQL
+41557,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+41558,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+41559,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;WebAssembly;Other(s):
+41560,Go;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+41561,C#;SQL
+41562,JavaScript;Python;Scala;SQL
+41563,HTML/CSS;JavaScript;PHP;SQL
+41564,HTML/CSS;JavaScript
+41565,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby
+41566,Go;HTML/CSS;JavaScript;PHP;SQL
+41567,HTML/CSS;Java;JavaScript;Ruby;SQL
+41568,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+41569,C#;Java;SQL
+41570,C#;JavaScript;TypeScript
+41571,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+41572,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;TypeScript
+41573,Java
+41574,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+41575,Kotlin;Ruby;SQL
+41576,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+41577,HTML/CSS;JavaScript;Ruby;SQL
+41578,C#;HTML/CSS;JavaScript;Python;SQL
+41579,HTML/CSS;JavaScript;Ruby;SQL
+41580,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby
+41581,C#;HTML/CSS;JavaScript;SQL;Other(s):
+41582,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+41583,C;C#;HTML/CSS;Java;JavaScript
+41584,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+41585,C;C++;HTML/CSS;JavaScript;PHP;SQL
+41586,Bash/Shell/PowerShell;C++;Go;HTML/CSS;PHP;Python;R
+41587,C++;HTML/CSS;JavaScript;PHP;Python
+41588,Java
+41589,Bash/Shell/PowerShell;JavaScript;Python;R;Rust;Other(s):
+41590,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+41591,C#;HTML/CSS;JavaScript
+41592,HTML/CSS;Java;JavaScript;Kotlin;SQL
+41593,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41594,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Other(s):
+41595,Java;Kotlin
+41596,HTML/CSS;JavaScript;PHP;Python
+41597,Bash/Shell/PowerShell;HTML/CSS;Java;Ruby
+41598,Bash/Shell/PowerShell;Python;Scala;SQL
+41600,HTML/CSS;JavaScript;PHP;Python;SQL
+41601,HTML/CSS;Java;JavaScript
+41602,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+41603,HTML/CSS;Java;JavaScript;SQL;TypeScript
+41604,Java;JavaScript;PHP;SQL;TypeScript
+41605,C#;HTML/CSS;JavaScript;SQL
+41606,Java;JavaScript;Python
+41607,C#;Elixir;HTML/CSS;JavaScript;Ruby;Other(s):
+41608,HTML/CSS;JavaScript;PHP
+41609,C;C++;C#;HTML/CSS;Java;PHP;Python;Ruby;SQL;VBA
+41610,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41611,Assembly;Bash/Shell/PowerShell;Java;Swift
+41612,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41613,C#
+41614,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+41615,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+41616,Bash/Shell/PowerShell;Java;JavaScript;Python
+41617,HTML/CSS;JavaScript;PHP;SQL
+41618,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+41619,Python;R;SQL;Other(s):
+41620,HTML/CSS;JavaScript;TypeScript
+41621,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Scala;SQL
+41622,HTML/CSS;JavaScript;PHP;Ruby;SQL
+41623,Java;JavaScript;PHP
+41624,HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript
+41625,Assembly;C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+41626,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+41627,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;VBA
+41628,Bash/Shell/PowerShell;Elixir;HTML/CSS;Python;Ruby;Other(s):
+41629,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+41630,C;C#;SQL
+41631,HTML/CSS;Java;JavaScript;SQL;TypeScript
+41632,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+41633,HTML/CSS;Java;JavaScript;SQL;Other(s):
+41634,Assembly;C;C++;C#;VBA
+41635,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+41636,C;C#;Java
+41638,Dart;HTML/CSS;Java;JavaScript;SQL
+41639,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41640,Swift;TypeScript
+41641,HTML/CSS;JavaScript;PHP;SQL
+41642,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Ruby
+41643,HTML/CSS;JavaScript;TypeScript
+41644,HTML/CSS;JavaScript
+41645,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL
+41646,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+41647,C++;HTML/CSS;Java;JavaScript;Objective-C
+41648,Python;R;SQL
+41649,HTML/CSS;PHP;Other(s):
+41650,HTML/CSS;JavaScript;PHP;Ruby
+41651,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+41652,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+41653,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL
+41654,C;C++;HTML/CSS;Java;PHP;Python;VBA
+41655,C;C++;C#;Other(s):
+41656,Python;R;VBA
+41657,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+41658,C#;HTML/CSS;JavaScript;R;TypeScript;VBA
+41659,C#;Java;JavaScript;SQL;VBA
+41660,HTML/CSS;JavaScript;Other(s):
+41661,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+41662,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+41663,HTML/CSS;JavaScript;Ruby
+41664,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;VBA
+41665,Bash/Shell/PowerShell;C;Dart;HTML/CSS;JavaScript
+41666,Go;Java;JavaScript;Python;SQL
+41667,C;HTML/CSS;Java;JavaScript;Python;SQL
+41668,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+41669,Bash/Shell/PowerShell;JavaScript;Kotlin;SQL;Other(s):
+41670,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+41671,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+41672,C++;C#;PHP;Ruby;SQL;VBA
+41673,Objective-C;Swift
+41674,C;C++;C#;HTML/CSS;JavaScript;SQL
+41675,HTML/CSS;Java;PHP;SQL
+41676,Bash/Shell/PowerShell;Python
+41677,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41678,Dart;HTML/CSS;JavaScript;PHP;Swift
+41679,C#;HTML/CSS;JavaScript
+41680,Bash/Shell/PowerShell;Python;SQL
+41681,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA
+41682,C++;PHP
+41683,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+41684,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+41685,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL
+41686,Java;JavaScript
+41687,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Swift;TypeScript
+41688,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+41689,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+41690,Bash/Shell/PowerShell;C++;C#;F#;Java;Kotlin
+41691,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+41692,C++;Rust
+41693,Erlang;HTML/CSS;JavaScript;Rust;Scala;SQL;Swift;TypeScript
+41694,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+41695,C++;Python
+41696,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+41697,C#;Ruby;SQL
+41698,C#;HTML/CSS;JavaScript;PHP;SQL
+41699,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+41700,Java;SQL
+41701,C;Clojure;Elixir;Java
+41702,C++;HTML/CSS;Java;Python;Scala;SQL
+41703,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+41704,Bash/Shell/PowerShell;C#;F#;Java;JavaScript;Python;TypeScript;Other(s):
+41705,HTML/CSS;Java;JavaScript;PHP
+41706,HTML/CSS;Java;JavaScript;SQL
+41707,C#;HTML/CSS;JavaScript;PHP;Python;Other(s):
+41708,C#;HTML/CSS;JavaScript;Python;TypeScript
+41709,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+41710,Java;Python;SQL
+41711,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+41712,C;C++;Objective-C;Swift
+41713,HTML/CSS;Java;Python;Ruby;Scala
+41714,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+41715,Dart;HTML/CSS;JavaScript;TypeScript
+41716,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+41717,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+41718,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+41719,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+41720,C#;HTML/CSS;JavaScript;SQL
+41721,C#;HTML/CSS;JavaScript;SQL
+41722,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41723,HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+41724,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41725,Go;JavaScript
+41726,PHP;Python;SQL
+41727,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+41728,Bash/Shell/PowerShell;C#;SQL
+41729,HTML/CSS;Java;JavaScript;PHP
+41730,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+41731,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+41732,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+41733,PHP;SQL
+41734,HTML/CSS;JavaScript;SQL
+41735,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+41736,C#;HTML/CSS;JavaScript;SQL;TypeScript
+41737,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;Scala;SQL;TypeScript
+41738,C#;HTML/CSS;JavaScript;SQL
+41739,HTML/CSS;Java;Python
+41740,Bash/Shell/PowerShell;HTML/CSS;Ruby
+41741,C#;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+41742,C;Java;JavaScript;Python;R;SQL
+41743,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+41744,HTML/CSS;Java;PHP
+41745,Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+41746,HTML/CSS;JavaScript;PHP;SQL
+41747,C;C++;C#
+41748,HTML/CSS;JavaScript;PHP
+41749,C++;C#;F#;HTML/CSS;SQL;TypeScript;VBA
+41750,Bash/Shell/PowerShell;PHP;Python;R;SQL
+41751,C++;HTML/CSS;Java;JavaScript
+41752,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+41753,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+41754,Python;R;SQL
+41755,Python;SQL
+41756,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+41757,C#
+41758,C;R;SQL
+41759,HTML/CSS;JavaScript;PHP;Python
+41760,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python
+41761,Assembly;Bash/Shell/PowerShell;C;C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+41762,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+41763,Java;JavaScript;Kotlin;Objective-C;Ruby;SQL
+41764,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+41765,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+41766,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+41767,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+41768,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+41769,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+41770,HTML/CSS;JavaScript
+41771,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+41772,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+41773,Java;JavaScript
+41774,Elixir;Erlang;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+41775,JavaScript;PHP
+41776,HTML/CSS;Java;Kotlin;Python;SQL
+41777,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+41778,HTML/CSS;JavaScript;PHP;SQL
+41779,HTML/CSS;JavaScript;PHP;SQL
+41780,HTML/CSS;JavaScript;Python;SQL;TypeScript
+41781,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+41782,HTML/CSS;JavaScript;SQL
+41783,HTML/CSS;JavaScript;Python
+41784,C#;Java;SQL
+41785,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala
+41786,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Swift
+41787,Assembly;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+41788,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41789,Objective-C;Swift
+41790,Kotlin
+41791,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+41792,C;C++;HTML/CSS;JavaScript;Python;R
+41793,C#;HTML/CSS;SQL;TypeScript
+41794,Bash/Shell/PowerShell;Objective-C;Ruby;SQL;Swift;Other(s):
+41795,C++;Java;PHP;SQL
+41796,JavaScript;Ruby
+41797,Bash/Shell/PowerShell;Java;Python;SQL
+41798,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41799,HTML/CSS;JavaScript;PHP;TypeScript
+41800,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+41801,C++;JavaScript;Python
+41802,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+41803,Java
+41804,C++;HTML/CSS;Java;JavaScript
+41805,HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+41807,HTML/CSS;Java;JavaScript;Ruby;Other(s):
+41808,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+41809,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+41810,HTML/CSS;JavaScript
+41811,Bash/Shell/PowerShell
+41812,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+41813,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+41814,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+41815,JavaScript;Python;Ruby
+41816,HTML/CSS;JavaScript;PHP;Ruby
+41817,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+41818,C++
+41819,Java;SQL
+41820,C#;HTML/CSS;JavaScript;PHP;TypeScript
+41821,Rust
+41822,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+41823,Go;HTML/CSS;JavaScript;SQL
+41824,C++;HTML/CSS;Java;SQL
+41825,C#;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+41826,Bash/Shell/PowerShell;C;C++;Rust;Other(s):
+41827,Bash/Shell/PowerShell;Python
+41828,Bash/Shell/PowerShell;Java;SQL
+41829,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+41830,C++;C#;JavaScript;Objective-C;PHP;SQL
+41831,C++;C#
+41832,HTML/CSS;Java;JavaScript;PHP;Python
+41833,C;C++;C#;HTML/CSS;Java;PHP;SQL;VBA
+41834,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+41835,Bash/Shell/PowerShell;C;C++;Python
+41836,HTML/CSS;JavaScript;SQL
+41837,Bash/Shell/PowerShell;C#;Java;Python;SQL
+41838,C#;HTML/CSS;JavaScript;PHP
+41839,HTML/CSS;JavaScript
+41840,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41841,HTML/CSS;Java;JavaScript;PHP;SQL
+41842,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+41843,HTML/CSS;JavaScript;PHP
+41844,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+41845,C#;Python
+41846,Assembly;C;C++;C#;SQL
+41847,HTML/CSS;Java;JavaScript;PHP;SQL
+41848,C;Java;Scala
+41849,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+41850,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+41851,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41852,C++;JavaScript
+41853,C#;F#;HTML/CSS;JavaScript;SQL
+41854,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41855,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+41856,Python
+41857,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+41858,Dart;HTML/CSS;JavaScript;Python;SQL
+41859,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala;SQL
+41860,HTML/CSS;JavaScript;PHP
+41861,Bash/Shell/PowerShell;C++;Python;Swift;Other(s):
+41862,HTML/CSS;Java;JavaScript;PHP
+41863,Go;Python;Rust
+41864,PHP
+41865,Assembly;C;C++;C#;Go;HTML/CSS;JavaScript;R
+41866,Java
+41867,C#;JavaScript
+41868,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Rust;WebAssembly
+41869,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+41870,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+41871,Bash/Shell/PowerShell;Java;JavaScript;Python
+41872,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41873,HTML/CSS;Java;JavaScript;SQL;TypeScript
+41874,JavaScript;Python;SQL;VBA
+41875,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Other(s):
+41876,HTML/CSS;Java;JavaScript;Python;R;TypeScript
+41877,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+41878,R
+41879,C++;HTML/CSS;JavaScript;Python
+41880,Dart;HTML/CSS;Java;JavaScript;Python;SQL
+41881,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+41882,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+41883,Assembly;C;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+41884,Python
+41885,HTML/CSS;JavaScript;TypeScript
+41886,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;R;Ruby;Rust;SQL;Other(s):
+41887,Bash/Shell/PowerShell;Python
+41888,C;SQL;VBA
+41889,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+41890,Python;Ruby
+41891,Go;Python
+41892,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41893,HTML/CSS;JavaScript;Ruby
+41894,Assembly;C;C++;HTML/CSS;Java;Swift
+41895,C;C++;C#;Dart;HTML/CSS;Java;Kotlin;SQL
+41896,Python;Other(s):
+41897,HTML/CSS;Java;JavaScript;SQL;TypeScript
+41898,Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;Swift
+41899,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41900,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+41901,C;Java;Python
+41902,C#;HTML/CSS;Other(s):
+41903,Java;Kotlin;SQL
+41904,Bash/Shell/PowerShell;C;JavaScript;Python
+41905,Python
+41906,C;C++;C#;SQL;VBA;Other(s):
+41907,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript;Other(s):
+41908,C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+41909,Java;Python;R;SQL;TypeScript
+41910,C;C++;C#;Go;Java;JavaScript;Kotlin;PHP;Python;SQL
+41911,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+41912,HTML/CSS;JavaScript;PHP
+41913,C++;Java;Python
+41914,Bash/Shell/PowerShell;C;C++;Go;Python;Rust
+41915,Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+41916,C;C++;C#;Python;WebAssembly
+41917,C#;Java;JavaScript
+41918,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+41919,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+41920,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+41921,C
+41922,HTML/CSS;JavaScript;SQL
+41923,C++;Java;PHP
+41924,HTML/CSS;JavaScript;Ruby
+41925,Bash/Shell/PowerShell;C#;TypeScript
+41926,C;R;Other(s):
+41927,Bash/Shell/PowerShell;C#;HTML/CSS
+41928,HTML/CSS;JavaScript;Python;SQL
+41929,C#;VBA;Other(s):
+41930,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+41931,HTML/CSS;Java;JavaScript
+41932,Bash/Shell/PowerShell;Go;Java;Python;Ruby
+41933,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Ruby;TypeScript;WebAssembly
+41934,Go;HTML/CSS;JavaScript;PHP;Rust;SQL;WebAssembly
+41935,HTML/CSS;JavaScript;PHP
+41936,C++;HTML/CSS;Java;PHP;SQL;WebAssembly
+41937,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+41938,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+41939,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+41940,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+41941,Java;JavaScript
+41942,Java;Python;Other(s):
+41943,HTML/CSS;JavaScript;Python
+41944,C++
+41945,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+41946,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Ruby;SQL;Other(s):
+41947,Java;JavaScript;Python;SQL;TypeScript
+41948,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+41949,Bash/Shell/PowerShell;C;C++;Java
+41950,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+41951,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;Python
+41952,Bash/Shell/PowerShell;C;C++;Java;Other(s):
+41953,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+41954,C#;HTML/CSS;JavaScript;SQL
+41955,HTML/CSS;Java;Other(s):
+41956,C#;HTML/CSS;JavaScript;SQL
+41957,C#;HTML/CSS;JavaScript;SQL
+41958,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+41959,Java
+41960,C;C++;HTML/CSS;JavaScript
+41961,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+41962,HTML/CSS;JavaScript;PHP;SQL
+41963,HTML/CSS;JavaScript;PHP;SQL
+41964,C;HTML/CSS;JavaScript;Python
+41965,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41966,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+41967,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+41968,PHP
+41969,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+41970,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;Python;Other(s):
+41971,Bash/Shell/PowerShell;C;C++;Java;Python
+41972,HTML/CSS;JavaScript;PHP;Python;R;SQL
+41973,HTML/CSS;JavaScript
+41975,HTML/CSS;JavaScript;PHP
+41976,C#;HTML/CSS;JavaScript;SQL
+41977,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41978,C++;Java;Kotlin;PHP;Python
+41979,HTML/CSS;PHP
+41980,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+41981,C#;HTML/CSS;Java;JavaScript;Python
+41982,JavaScript;Python;R;SQL
+41983,C;C++;Go;HTML/CSS;Python;Rust;SQL;TypeScript
+41984,Java;Scala;SQL;Other(s):
+41985,HTML/CSS;Java;JavaScript;Python;SQL
+41986,JavaScript;Python
+41987,C#;SQL
+41988,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+41989,HTML/CSS;JavaScript;Ruby;SQL
+41990,C#;HTML/CSS;JavaScript;SQL;TypeScript
+41991,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+41992,C++;Rust
+41993,HTML/CSS;Java;JavaScript
+41994,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+41995,HTML/CSS;JavaScript;Python;SQL
+41996,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+41997,R
+41998,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+41999,HTML/CSS;Java;TypeScript
+42000,HTML/CSS;JavaScript
+42001,Python;R;SQL
+42002,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+42003,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+42004,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+42005,HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+42006,HTML/CSS;JavaScript;Python
+42007,C;JavaScript;Python;SQL
+42008,Bash/Shell/PowerShell;C;C++;Python;SQL
+42009,Bash/Shell/PowerShell;Clojure;Python;SQL
+42010,C++;R
+42011,C#;HTML/CSS;JavaScript;PHP
+42012,C;C++;C#;HTML/CSS;JavaScript
+42013,C++;C#;SQL
+42014,C#;F#
+42015,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+42017,C#;HTML/CSS;JavaScript;Python;SQL
+42018,C#;SQL
+42019,C#;HTML/CSS;Java;JavaScript;SQL
+42020,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+42021,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42022,C;C++;HTML/CSS;Java;SQL
+42023,Swift
+42024,C;C++;C#;HTML/CSS;JavaScript;Other(s):
+42025,C#;HTML/CSS;JavaScript;TypeScript
+42026,C;Java
+42027,Bash/Shell/PowerShell;Clojure
+42028,JavaScript;SQL
+42029,C;Python;Other(s):
+42030,HTML/CSS;JavaScript;PHP
+42031,C;C++;HTML/CSS;JavaScript;Kotlin;Python
+42032,C#;F#;Go;HTML/CSS;JavaScript;Python;SQL
+42033,C++;Java;Other(s):
+42034,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL;Swift;Other(s):
+42035,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+42036,C#;Kotlin;SQL
+42037,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42038,HTML/CSS;JavaScript;PHP
+42039,Bash/Shell/PowerShell;C;Erlang;Java;JavaScript;Python;Scala;SQL
+42040,Bash/Shell/PowerShell;Python
+42041,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+42042,Bash/Shell/PowerShell;C;C++;Python
+42043,HTML/CSS;Java;PHP
+42044,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+42045,Bash/Shell/PowerShell;C;C#;Python
+42046,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;VBA;Other(s):
+42047,Go;HTML/CSS;PHP;Python;SQL
+42048,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+42049,C#;HTML/CSS;JavaScript;TypeScript
+42050,Assembly;Bash/Shell/PowerShell;C;TypeScript;WebAssembly
+42051,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL;TypeScript
+42052,HTML/CSS;JavaScript;Python;TypeScript
+42053,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+42054,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+42055,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+42056,C++;C#;JavaScript
+42057,HTML/CSS;JavaScript;Python;SQL;Swift
+42058,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+42059,HTML/CSS;Java;JavaScript;Python;R;TypeScript
+42060,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42061,Clojure;Python
+42062,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+42063,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Swift
+42064,Bash/Shell/PowerShell;JavaScript
+42065,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+42066,Bash/Shell/PowerShell;Python
+42067,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+42068,C++;Java;Kotlin;Other(s):
+42069,HTML/CSS;JavaScript;PHP;Python;SQL
+42070,Bash/Shell/PowerShell
+42071,C#;HTML/CSS;SQL;Other(s):
+42072,Kotlin;Objective-C;Ruby;SQL;Swift
+42073,C;Java
+42074,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;VBA
+42075,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+42076,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+42077,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42078,C++;Rust;SQL
+42079,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;TypeScript
+42080,C#;HTML/CSS;Java;JavaScript;Python;SQL
+42081,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+42082,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;R;Ruby;Scala
+42083,HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript
+42084,C#
+42085,HTML/CSS;Java;JavaScript;SQL
+42086,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+42087,Java;SQL
+42088,C#;HTML/CSS;JavaScript;SQL
+42089,C;C++;C#;HTML/CSS;JavaScript;Python
+42090,C#;HTML/CSS;JavaScript;TypeScript
+42091,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+42092,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+42093,C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+42094,C#;HTML/CSS;JavaScript;SQL
+42095,HTML/CSS;JavaScript
+42096,Bash/Shell/PowerShell;Dart;Java;Kotlin
+42097,Kotlin;Python;Ruby;SQL;Swift
+42098,PHP;Ruby
+42099,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+42100,C#;HTML/CSS;JavaScript;SQL
+42101,Java;JavaScript;SQL
+42102,Assembly;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+42103,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+42104,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+42105,JavaScript;PHP
+42106,Bash/Shell/PowerShell;PHP
+42107,C#;Go;Java;Python
+42108,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+42109,C#;HTML/CSS;JavaScript;PHP;Python
+42110,Bash/Shell/PowerShell;Go;Python
+42111,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42112,Bash/Shell/PowerShell;C++;Python;R;SQL;Other(s):
+42113,HTML/CSS;JavaScript;TypeScript
+42114,HTML/CSS;JavaScript;PHP;TypeScript
+42115,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+42116,C++;Python
+42117,C;HTML/CSS;Java;PHP
+42118,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;R
+42119,Bash/Shell/PowerShell;C;C++;Go;Python;R;Other(s):
+42120,Scala
+42121,Bash/Shell/PowerShell;Python
+42122,C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+42123,C#;SQL
+42124,Assembly;Bash/Shell/PowerShell;C;PHP;Python
+42125,C#;F#;Other(s):
+42126,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+42127,C#;HTML/CSS;JavaScript;SQL
+42128,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+42129,Bash/Shell/PowerShell;C;C++
+42130,HTML/CSS;Java;JavaScript;SQL;Other(s):
+42131,HTML/CSS;JavaScript;TypeScript
+42132,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+42133,Bash/Shell/PowerShell;Erlang;Go;Python;SQL
+42134,JavaScript;PHP;Ruby
+42135,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;Scala;SQL
+42136,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+42137,Assembly;Bash/Shell/PowerShell;C;C++;Python
+42138,Clojure;Java;R
+42139,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+42141,HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+42142,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+42143,Swift
+42144,Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+42145,C#;HTML/CSS;JavaScript;SQL
+42146,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+42147,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42148,HTML/CSS;JavaScript
+42149,SQL;Other(s):
+42150,C#;HTML/CSS;JavaScript;Python
+42151,C++;Python
+42152,C;HTML/CSS;Java;JavaScript;Kotlin;Rust;Other(s):
+42153,Bash/Shell/PowerShell;F#;HTML/CSS;JavaScript;Python;R;SQL
+42154,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+42155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+42157,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;Python
+42158,Bash/Shell/PowerShell;Objective-C;Swift
+42159,C#;SQL;TypeScript
+42160,C#
+42161,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+42162,C;JavaScript;Python;SQL;Other(s):
+42163,C;C++;C#;JavaScript;SQL;Other(s):
+42164,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+42165,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+42166,Java;JavaScript;Python;Scala;SQL
+42167,Bash/Shell/PowerShell;Go;Java;PHP;Python;Ruby;SQL
+42168,Bash/Shell/PowerShell;Java;SQL
+42169,Ruby;Swift
+42170,C#;HTML/CSS;JavaScript
+42171,Swift
+42172,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42173,Java;Kotlin;SQL
+42174,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+42175,C#;HTML/CSS;JavaScript;SQL
+42176,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python;R;SQL
+42177,Bash/Shell/PowerShell;JavaScript;Python;SQL
+42178,HTML/CSS;JavaScript;Ruby
+42179,Java;Kotlin
+42180,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+42181,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+42182,C++;C#;Swift
+42183,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;SQL
+42184,C#;Scala;SQL
+42185,HTML/CSS;JavaScript;Other(s):
+42187,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+42188,Bash/Shell/PowerShell;JavaScript;TypeScript;Other(s):
+42189,HTML/CSS;Java
+42190,HTML/CSS;JavaScript;PHP;SQL
+42191,HTML/CSS;JavaScript;PHP;SQL;VBA
+42192,Bash/Shell/PowerShell;C;Go;Python;SQL
+42193,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42194,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+42195,Bash/Shell/PowerShell;C++;Java;JavaScript;SQL
+42196,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42197,Bash/Shell/PowerShell;C#;Python;SQL
+42198,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+42199,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+42200,C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL
+42201,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;Other(s):
+42202,HTML/CSS;Ruby;TypeScript
+42203,C#;Java;JavaScript;PHP;SQL;VBA
+42204,Bash/Shell/PowerShell;Objective-C;SQL
+42205,C#;HTML/CSS;Objective-C;Swift;TypeScript
+42206,Bash/Shell/PowerShell;JavaScript;Python
+42207,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+42208,C#
+42210,C++;HTML/CSS;Java;JavaScript;Python
+42211,Assembly;Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python
+42212,HTML/CSS;Java;JavaScript;Python;SQL
+42213,C;C++;C#;JavaScript;Python;SQL
+42214,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;TypeScript
+42215,Assembly;C;C++;Java;JavaScript;TypeScript
+42216,C++;Other(s):
+42217,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42218,C;C#;F#;JavaScript;Kotlin;Python;R;SQL;TypeScript
+42219,C++;C#;Dart;Go;HTML/CSS;Python;SQL;Swift
+42220,Java
+42221,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42222,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42223,C#;Python;SQL
+42224,C#;HTML/CSS;JavaScript
+42225,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+42226,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+42227,Bash/Shell/PowerShell;C++;Python;R;Ruby;Rust;SQL
+42228,Bash/Shell/PowerShell;JavaScript;PHP;SQL;Other(s):
+42229,HTML/CSS;Java;JavaScript;Python;SQL
+42230,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+42231,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+42232,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Rust;SQL
+42233,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+42234,C#;HTML/CSS;JavaScript;Kotlin;SQL;VBA
+42235,Swift;Other(s):
+42236,C;Clojure;HTML/CSS;Python
+42237,HTML/CSS;JavaScript;Python
+42238,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+42239,Bash/Shell/PowerShell;Clojure;HTML/CSS;Python;SQL
+42240,JavaScript
+42241,Bash/Shell/PowerShell;C#;SQL
+42242,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+42243,Bash/Shell/PowerShell;Go;Python;Ruby;TypeScript
+42244,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+42245,C;Python;SQL
+42246,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+42247,JavaScript;Python
+42248,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+42249,Java;Kotlin;SQL;Other(s):
+42250,Java;JavaScript;Python;SQL
+42251,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+42252,Bash/Shell/PowerShell;C++;Python;SQL
+42253,Swift
+42254,Java;JavaScript;Objective-C;Swift
+42255,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+42256,Bash/Shell/PowerShell;Go;PHP
+42257,HTML/CSS;JavaScript;PHP;Ruby
+42258,C#;Java;JavaScript
+42259,HTML/CSS;Java;JavaScript;Other(s):
+42260,HTML/CSS;JavaScript
+42261,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+42262,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+42263,Python
+42264,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+42265,C;Python
+42266,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;TypeScript
+42267,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;SQL
+42268,Java;SQL
+42269,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42270,Java;Kotlin;Swift
+42271,Python
+42272,C#;Python
+42273,C;C++;HTML/CSS;SQL
+42274,Bash/Shell/PowerShell;C#;Java;SQL;TypeScript;Other(s):
+42275,C++;JavaScript;PHP;Python
+42276,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+42277,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+42278,Go;HTML/CSS;Java;JavaScript
+42279,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Scala
+42280,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+42281,Bash/Shell/PowerShell;C;C++;Objective-C
+42282,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42283,C#;HTML/CSS;JavaScript;SQL
+42284,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL;Swift
+42285,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+42286,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42287,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python
+42288,HTML/CSS;JavaScript;Ruby;TypeScript;VBA
+42289,C;C#;HTML/CSS;JavaScript;PHP;SQL
+42290,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Other(s):
+42291,Assembly;Bash/Shell/PowerShell;C;Clojure;Go;JavaScript;Python
+42292,HTML/CSS;Java;JavaScript;SQL;TypeScript
+42293,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+42294,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly;Other(s):
+42295,HTML/CSS;JavaScript;TypeScript
+42296,C;Dart;JavaScript
+42297,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+42298,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+42299,HTML/CSS;JavaScript;PHP
+42300,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42301,Python;R;SQL
+42302,C#;HTML/CSS;JavaScript;SQL
+42303,Java;JavaScript;Objective-C;Python;Swift
+42304,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42305,HTML/CSS;JavaScript;Python;SQL
+42306,C++;Java;Python
+42307,Bash/Shell/PowerShell;Java;Python
+42308,C++;HTML/CSS;JavaScript;TypeScript
+42309,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+42310,HTML/CSS;JavaScript;PHP
+42311,Bash/Shell/PowerShell;Go;JavaScript;Python;Other(s):
+42312,HTML/CSS;JavaScript;PHP;SQL
+42313,HTML/CSS;Java
+42314,Dart;HTML/CSS;JavaScript;Python;TypeScript
+42315,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+42316,C++;C#;HTML/CSS;SQL
+42317,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+42318,C++;Python
+42319,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+42320,HTML/CSS;JavaScript;PHP;SQL
+42321,C;C++
+42322,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+42323,HTML/CSS;Java;JavaScript;PHP;SQL
+42324,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Rust
+42325,Bash/Shell/PowerShell;Go;JavaScript;Ruby;SQL
+42326,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+42327,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+42328,C;C++
+42329,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;WebAssembly;Other(s):
+42330,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+42331,Python
+42333,C++;Java;SQL
+42334,HTML/CSS;Python
+42336,Java
+42337,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+42338,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+42339,C#;HTML/CSS;JavaScript
+42340,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42341,Bash/Shell/PowerShell;C++;Clojure;JavaScript;R;Ruby;SQL
+42342,C;HTML/CSS;Java;PHP;Scala;SQL
+42343,Bash/Shell/PowerShell;Dart;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+42344,HTML/CSS;JavaScript
+42345,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL;TypeScript
+42346,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+42347,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+42348,C++;HTML/CSS;Java;JavaScript;PHP
+42349,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;SQL
+42350,C#;SQL
+42351,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42352,C#;Python
+42353,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+42354,Bash/Shell/PowerShell;SQL;Other(s):
+42355,C;Java;JavaScript
+42356,HTML/CSS;Java;JavaScript;Kotlin;Rust;Swift
+42357,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+42358,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+42359,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+42360,C#;Python
+42361,Bash/Shell/PowerShell;C#;F#;Java;JavaScript;SQL;VBA
+42362,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+42363,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+42364,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+42365,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python
+42366,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+42367,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;Python;Other(s):
+42368,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42369,Assembly;Python
+42370,HTML/CSS;JavaScript;PHP;Python;SQL
+42371,C;C++;HTML/CSS;Java;PHP;Python
+42372,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+42373,C#;HTML/CSS;Java;JavaScript;SQL
+42374,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42375,C#;HTML/CSS;JavaScript;TypeScript
+42376,JavaScript;Python
+42377,C;C++;Python;Other(s):
+42378,HTML/CSS;Java;JavaScript;Kotlin;SQL
+42379,C++;Java;JavaScript;Objective-C;PHP;Ruby;SQL
+42380,Bash/Shell/PowerShell;SQL
+42381,JavaScript
+42382,C;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+42383,Java
+42384,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL;Other(s):
+42385,Assembly;HTML/CSS;Objective-C;Python;SQL;Swift
+42386,C#;SQL
+42387,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python
+42388,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+42389,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;Rust;Swift
+42390,HTML/CSS;JavaScript;TypeScript
+42391,Java;Objective-C;Swift
+42392,HTML/CSS;Java;JavaScript;PHP;TypeScript
+42393,JavaScript;Scala
+42394,Dart;Java;Kotlin;Ruby
+42395,C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL
+42396,C#;HTML/CSS;JavaScript;PHP;SQL
+42397,C;C++;HTML/CSS;JavaScript;PHP;SQL
+42398,HTML/CSS;JavaScript;SQL
+42399,C#;HTML/CSS;JavaScript;SQL
+42400,Python;Other(s):
+42401,C#;VBA
+42402,JavaScript
+42403,HTML/CSS;Java;JavaScript;PHP;SQL
+42404,HTML/CSS;Java;JavaScript;PHP;SQL
+42405,Bash/Shell/PowerShell;Java;JavaScript
+42406,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+42407,Assembly;C;C++;C#;HTML/CSS;Java
+42408,C++;HTML/CSS;Java;TypeScript
+42409,C#;HTML/CSS;JavaScript
+42410,HTML/CSS;JavaScript;PHP;SQL
+42411,Bash/Shell/PowerShell;JavaScript;PHP;Python
+42412,HTML/CSS;JavaScript;TypeScript
+42413,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+42414,C++;Java;TypeScript
+42415,HTML/CSS;Java;JavaScript;Python;R;SQL
+42416,HTML/CSS;Java;JavaScript;PHP;Other(s):
+42417,C#;HTML/CSS;JavaScript;Python;SQL
+42418,Bash/Shell/PowerShell;C#;HTML/CSS
+42419,C#;Java;Objective-C
+42420,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;WebAssembly
+42421,Python
+42422,HTML/CSS;JavaScript
+42423,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;TypeScript;Other(s):
+42424,Java;SQL
+42425,Go;HTML/CSS;JavaScript;Python;SQL
+42426,Assembly;C;C#;HTML/CSS;Java;JavaScript;SQL
+42427,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+42428,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;Other(s):
+42429,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+42430,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+42431,Java
+42432,C;Go;Java;Ruby
+42433,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python
+42434,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+42435,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+42436,HTML/CSS;JavaScript;TypeScript
+42437,HTML/CSS;JavaScript;TypeScript
+42438,HTML/CSS;JavaScript
+42439,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;TypeScript
+42440,Objective-C;Python;Swift
+42441,C#;HTML/CSS;JavaScript;SQL
+42442,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+42443,Clojure;SQL
+42444,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+42445,C#;HTML/CSS;SQL;VBA
+42446,C;C++;C#;HTML/CSS;Java;Python
+42447,C++;Java;JavaScript;Python;SQL;Swift
+42448,Bash/Shell/PowerShell;Java;Python
+42449,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;SQL
+42450,C++;C#;JavaScript;Python;SQL
+42451,C;C++;Java;Python
+42452,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+42454,C;C++;C#;SQL;Other(s):
+42455,C#;HTML/CSS;JavaScript;SQL
+42456,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+42457,Bash/Shell/PowerShell;C;C++;C#;Java;Python
+42458,C#;Java;Python
+42459,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+42461,C++;JavaScript;Python
+42462,HTML/CSS;JavaScript;Kotlin;Python;Rust
+42463,HTML/CSS;JavaScript;PHP;Python;R;SQL
+42464,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+42465,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42466,Java
+42467,HTML/CSS;JavaScript;PHP;SQL
+42468,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42469,Java;JavaScript;PHP
+42470,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42471,Java;JavaScript
+42472,C;HTML/CSS;Other(s):
+42473,HTML/CSS;Java;JavaScript;SQL
+42474,HTML/CSS;JavaScript;PHP;Python;SQL
+42475,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+42476,C;C++;HTML/CSS;JavaScript;TypeScript
+42477,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+42478,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42479,C#;HTML/CSS;Java;JavaScript;SQL
+42480,HTML/CSS;JavaScript;PHP;SQL
+42481,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+42482,Rust
+42483,C#;HTML/CSS;PHP;SQL
+42484,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+42485,C;Java;JavaScript;Kotlin;Python
+42486,C#;Java;SQL
+42487,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+42488,Bash/Shell/PowerShell;Java;Objective-C;Swift
+42489,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Python;SQL
+42491,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA;Other(s):
+42492,C#;HTML/CSS;JavaScript;SQL
+42493,Objective-C;Swift
+42494,Ruby
+42495,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL;Other(s):
+42496,C;C++;C#;Go;Java;JavaScript;Kotlin;Python;Rust
+42497,Python
+42498,C#;JavaScript
+42499,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+42500,C#;HTML/CSS;JavaScript;PHP;R;SQL
+42501,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+42502,C++;C#;F#;JavaScript;Python;TypeScript
+42503,HTML/CSS;Java;JavaScript;TypeScript
+42504,HTML/CSS;Java;JavaScript;PHP;SQL
+42505,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Rust;SQL;Swift;TypeScript;WebAssembly
+42506,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42507,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+42508,HTML/CSS;JavaScript;SQL;Other(s):
+42509,HTML/CSS;Java;Kotlin;Scala;SQL;TypeScript
+42510,C;C++;Java;Kotlin;Objective-C
+42511,C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+42512,Java;Python;Scala;SQL
+42513,HTML/CSS;JavaScript;SQL
+42514,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;PHP;Python
+42515,HTML/CSS;JavaScript;PHP
+42516,HTML/CSS;JavaScript;PHP;Ruby
+42517,Python;R;Other(s):
+42518,HTML/CSS;JavaScript;PHP
+42519,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP
+42520,Assembly;C;HTML/CSS;Java;JavaScript;SQL;Swift
+42521,HTML/CSS;JavaScript;PHP;SQL
+42522,HTML/CSS;JavaScript;PHP;TypeScript
+42523,C
+42524,HTML/CSS;JavaScript
+42525,Java;JavaScript
+42526,JavaScript;Other(s):
+42527,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+42528,HTML/CSS;Java;JavaScript;TypeScript
+42529,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+42530,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+42531,Bash/Shell/PowerShell;C#;Java;Python;SQL;Swift
+42532,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+42534,C;C++;C#;Go;JavaScript;SQL;Other(s):
+42536,Dart;JavaScript;PHP
+42537,C#;HTML/CSS;JavaScript;SQL
+42538,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+42539,Bash/Shell/PowerShell;C;JavaScript;Python
+42541,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;VBA;Other(s):
+42542,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python
+42543,C#;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+42544,JavaScript;Python;Ruby
+42545,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+42546,C;C++;C#;Java;JavaScript;Python
+42547,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+42548,C#;HTML/CSS;JavaScript;SQL;VBA
+42549,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+42550,C;HTML/CSS;Java;JavaScript;TypeScript
+42551,C;C++;JavaScript;Python
+42552,HTML/CSS;JavaScript;PHP
+42553,HTML/CSS;JavaScript;PHP;SQL
+42554,HTML/CSS;Java;JavaScript;Python
+42555,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42556,Java;JavaScript;Ruby
+42557,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+42558,HTML/CSS;JavaScript;PHP;SQL
+42559,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+42560,C#;HTML/CSS;Java;JavaScript;SQL
+42561,C#;Java;JavaScript;VBA
+42562,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+42563,HTML/CSS;Java;PHP;Python;Rust;SQL
+42564,C;C++;HTML/CSS;Java;Python;R;SQL
+42565,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript
+42566,C#;HTML/CSS;JavaScript;SQL
+42567,HTML/CSS;JavaScript;PHP
+42568,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;VBA
+42569,Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42570,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42571,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Python
+42572,C;Python
+42573,C#;HTML/CSS;Java;Python;SQL
+42574,C;SQL;Other(s):
+42575,JavaScript
+42576,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42577,Bash/Shell/PowerShell;Python
+42578,HTML/CSS;PHP;Python;SQL
+42579,Assembly;Bash/Shell/PowerShell;C;C#;Dart;Java;Python;SQL
+42580,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+42581,Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+42582,HTML/CSS;Java;JavaScript;Python;Ruby
+42583,Assembly;Bash/Shell/PowerShell;C;Python
+42584,Java;SQL
+42585,Clojure;Java;JavaScript;TypeScript
+42586,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+42587,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+42588,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42589,Bash/Shell/PowerShell;C;C++;Python
+42590,Assembly;C#;F#
+42591,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;Swift
+42592,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42593,HTML/CSS;Java;JavaScript;PHP;SQL
+42594,HTML/CSS;JavaScript;Python;SQL
+42595,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42596,C#;HTML/CSS;PHP;TypeScript
+42597,Java;SQL;Other(s):
+42598,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+42600,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+42601,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+42603,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;SQL
+42604,Bash/Shell/PowerShell;C;C#;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript;VBA
+42605,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42606,HTML/CSS;Java;JavaScript;SQL;Other(s):
+42607,HTML/CSS;JavaScript;PHP;Python;SQL
+42608,HTML/CSS;Java;Python;TypeScript
+42609,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+42610,C++;Java;Python;Other(s):
+42611,C;C++;HTML/CSS;Java;JavaScript
+42612,Bash/Shell/PowerShell;Go;JavaScript;Python
+42613,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+42614,Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL
+42615,C;C#;HTML/CSS;Java;PHP;Python;SQL
+42617,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42618,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+42619,Java
+42621,Bash/Shell/PowerShell;C#;JavaScript;Python;Other(s):
+42622,Bash/Shell/PowerShell;JavaScript;R;Swift
+42623,Objective-C;Swift
+42624,C#;HTML/CSS;JavaScript;Python;SQL
+42625,C;C++;Go;Java;Rust
+42626,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+42627,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+42628,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+42629,Bash/Shell/PowerShell;C++;Go;TypeScript
+42630,HTML/CSS;Java;JavaScript;TypeScript
+42631,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+42632,HTML/CSS;Java;JavaScript;SQL
+42633,C++;Java;Python
+42634,Java;Kotlin
+42635,HTML/CSS;Java;JavaScript;PHP;SQL
+42636,HTML/CSS;JavaScript;Python
+42637,HTML/CSS;Python
+42639,Bash/Shell/PowerShell;C;HTML/CSS;Python
+42640,Bash/Shell/PowerShell;C++;Python;Ruby
+42641,Java;SQL
+42642,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42643,Objective-C;Swift
+42644,Bash/Shell/PowerShell;C;C++;Python
+42645,JavaScript;Python
+42646,C#;HTML/CSS;JavaScript;TypeScript
+42647,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+42648,HTML/CSS;JavaScript;PHP;Ruby;SQL
+42649,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+42650,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+42651,Java;Other(s):
+42652,C#;HTML/CSS;SQL;TypeScript
+42653,JavaScript;PHP;Python
+42654,Bash/Shell/PowerShell;Ruby;SQL
+42655,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+42656,C#;Java
+42657,Go;PHP
+42658,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+42659,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42660,C#;HTML/CSS;Java;JavaScript
+42661,HTML/CSS;Java;JavaScript
+42662,C#;Python;SQL
+42663,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA;Other(s):
+42664,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+42665,Java;Kotlin
+42666,Java
+42667,Python
+42668,HTML/CSS;JavaScript;PHP
+42669,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42670,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+42671,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;SQL
+42672,Java;Kotlin
+42673,C#;HTML/CSS;JavaScript
+42674,HTML/CSS;JavaScript;Other(s):
+42675,C#
+42676,HTML/CSS;Java;JavaScript;SQL
+42677,C++;Java;Python
+42678,Bash/Shell/PowerShell;C#;SQL
+42679,Bash/Shell/PowerShell;Clojure;Java;SQL
+42680,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+42681,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;Scala;SQL
+42682,Swift
+42683,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+42684,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+42686,HTML/CSS;JavaScript;Python;Ruby;SQL
+42687,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42688,HTML/CSS;Java;JavaScript;Kotlin
+42689,Java;SQL
+42690,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+42691,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;SQL;Other(s):
+42692,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+42693,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+42694,C;Java;JavaScript;Python;Scala;Swift;Other(s):
+42695,C#;HTML/CSS;JavaScript;PHP;TypeScript
+42696,Bash/Shell/PowerShell;C++;Java;Python;R;SQL
+42697,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+42698,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+42699,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+42700,HTML/CSS;Java;JavaScript;Ruby;SQL
+42701,HTML/CSS;PHP;Python
+42702,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+42703,Assembly;Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Rust;Scala;TypeScript;Other(s):
+42704,HTML/CSS;Java;JavaScript;PHP;SQL
+42705,HTML/CSS;JavaScript;R;SQL
+42706,C;C++;HTML/CSS;Java;JavaScript;Python
+42707,C#;Go
+42708,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+42709,HTML/CSS;Java;SQL
+42710,C++;HTML/CSS;JavaScript;PHP;TypeScript
+42711,C#;Java;JavaScript;Python;SQL
+42712,HTML/CSS;JavaScript;Ruby;TypeScript
+42713,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+42714,Bash/Shell/PowerShell;JavaScript;Python;R;SQL;VBA;Other(s):
+42715,Assembly;HTML/CSS;JavaScript;SQL;TypeScript
+42716,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42717,C++
+42718,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+42719,C#;HTML/CSS;TypeScript
+42720,HTML/CSS;JavaScript
+42721,JavaScript
+42722,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+42723,C#;JavaScript;SQL;TypeScript
+42724,C++;Python
+42725,Dart;HTML/CSS;Java;JavaScript
+42726,HTML/CSS;Java;JavaScript;Python;SQL
+42727,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+42728,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42729,Bash/Shell/PowerShell;C;HTML/CSS;Python;R;Ruby;Other(s):
+42730,HTML/CSS;JavaScript;Kotlin;TypeScript
+42731,C#;HTML/CSS;JavaScript;Python
+42732,Swift
+42733,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+42734,Python
+42735,C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+42736,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+42737,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python
+42738,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+42739,HTML/CSS;JavaScript;Ruby
+42740,C#;SQL
+42741,HTML/CSS;JavaScript;PHP
+42742,C++;C#;HTML/CSS;JavaScript
+42743,HTML/CSS;JavaScript;Python;Ruby;SQL
+42744,JavaScript;Python
+42745,Dart;HTML/CSS;Java;JavaScript;Kotlin
+42746,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL;TypeScript
+42747,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+42748,Bash/Shell/PowerShell;SQL
+42751,Bash/Shell/PowerShell;Java;Kotlin;SQL
+42752,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+42753,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+42754,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Scala
+42755,VBA
+42756,HTML/CSS;JavaScript;PHP;Python
+42757,C#;HTML/CSS;SQL;VBA
+42758,HTML/CSS;JavaScript;PHP;SQL
+42760,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42761,C#;HTML/CSS;JavaScript;SQL
+42764,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42766,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Other(s):
+42768,C#;HTML/CSS;Java;JavaScript;SQL
+42769,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL;WebAssembly
+42770,C#
+42771,C;C++;C#;Python
+42772,Java
+42773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+42774,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+42775,HTML/CSS;JavaScript;PHP;SQL
+42776,C#;HTML/CSS;JavaScript;SQL
+42777,C;C++;Java;Python
+42778,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript
+42779,JavaScript;PHP;SQL
+42780,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42781,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+42782,C;C++;C#;Erlang;HTML/CSS;JavaScript;Objective-C;SQL;Other(s):
+42783,Assembly;C#;HTML/CSS;JavaScript;TypeScript
+42784,C++;C#;Python;SQL
+42785,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+42786,Python;R;SQL
+42788,Bash/Shell/PowerShell;JavaScript;PHP;SQL;VBA
+42790,HTML/CSS;Java;JavaScript;PHP;SQL
+42791,Bash/Shell/PowerShell;Python;R;Other(s):
+42792,Bash/Shell/PowerShell;Java;Python
+42793,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+42794,HTML/CSS;JavaScript;PHP;SQL
+42795,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+42796,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+42797,Other(s):
+42798,C#;HTML/CSS;JavaScript;PHP;SQL
+42799,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42800,HTML/CSS;JavaScript;PHP;Python;SQL
+42801,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;Rust;SQL
+42802,Assembly;Bash/Shell/PowerShell;JavaScript;Python;SQL
+42803,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+42804,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+42805,HTML/CSS;JavaScript;Python;R;Ruby;SQL
+42806,C;C++;C#;Java;Python;SQL
+42807,Java;JavaScript;Kotlin;Python;R;Rust;SQL;TypeScript
+42809,Assembly;C
+42810,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+42811,Bash/Shell/PowerShell;C++;F#;HTML/CSS;JavaScript;Python;Other(s):
+42812,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+42813,Bash/Shell/PowerShell;Objective-C;Swift
+42814,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript;Other(s):
+42815,Java
+42816,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+42817,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+42818,Objective-C;PHP;Python;SQL
+42819,C#;HTML/CSS;JavaScript;TypeScript
+42820,Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+42821,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42822,C++;Java;Python
+42823,Java;JavaScript;Kotlin
+42824,C;C++
+42825,C#;HTML/CSS;SQL;Other(s):
+42827,HTML/CSS;Java;JavaScript;Python;VBA
+42828,HTML/CSS;Java;JavaScript;Python;Ruby
+42829,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+42830,Bash/Shell/PowerShell;C++;Java;PHP;Python;R
+42831,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+42832,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+42833,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+42834,JavaScript;PHP
+42835,C#
+42836,C++;Dart;Go;JavaScript;Rust;TypeScript
+42837,HTML/CSS;JavaScript
+42838,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+42839,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+42840,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42841,C#;Dart;HTML/CSS;JavaScript;SQL
+42842,C;C++
+42843,Other(s):
+42844,C#;SQL
+42845,Assembly;C;C++;Java;PHP
+42846,Java
+42847,C++;C#;HTML/CSS
+42848,JavaScript;Python;Rust;Other(s):
+42849,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+42850,C#;HTML/CSS;JavaScript;SQL
+42851,HTML/CSS;JavaScript;Python
+42852,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+42853,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+42854,C#;SQL
+42856,JavaScript;Ruby
+42857,C;HTML/CSS;Python;SQL;VBA
+42858,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+42859,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+42860,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+42861,Java;Python;Swift
+42862,HTML/CSS;JavaScript;Kotlin;Swift;TypeScript
+42863,R;SQL;Other(s):
+42864,Dart
+42865,C;Java
+42866,C++
+42867,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+42868,HTML/CSS;JavaScript;PHP;Ruby;SQL
+42869,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+42870,C;C++;Go;Java;Python
+42871,Python
+42872,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+42873,HTML/CSS;JavaScript;VBA
+42874,C++;HTML/CSS;JavaScript;Python;SQL
+42875,HTML/CSS;JavaScript;PHP
+42876,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42877,C;C#;Python;Swift
+42878,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+42879,HTML/CSS;JavaScript;PHP;SQL
+42880,JavaScript;VBA
+42881,Bash/Shell/PowerShell;Python
+42882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+42883,Bash/Shell/PowerShell;C;Python
+42884,HTML/CSS;JavaScript;PHP;Python;SQL
+42885,Bash/Shell/PowerShell;C#;JavaScript;Objective-C;PHP;Python;SQL
+42886,HTML/CSS;Java;SQL
+42887,Java;JavaScript;PHP;SQL;Other(s):
+42888,Bash/Shell/PowerShell;Python;R;SQL
+42889,Dart;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+42890,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;TypeScript;Other(s):
+42891,C++;C#;Python;SQL;TypeScript;VBA
+42892,Python;SQL
+42893,HTML/CSS;JavaScript;TypeScript
+42894,Java;Python;Scala
+42895,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+42896,Go;HTML/CSS;JavaScript;PHP;SQL
+42897,C;C++;Go;Python;Ruby
+42898,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+42899,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+42900,C#;HTML/CSS;JavaScript;SQL
+42901,SQL;Other(s):
+42902,C#;HTML/CSS;JavaScript;SQL
+42903,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+42904,HTML/CSS;Java;JavaScript;SQL
+42905,Bash/Shell/PowerShell;SQL;VBA
+42906,Java;Kotlin
+42907,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+42908,C;C++;C#;SQL
+42909,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+42910,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+42911,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;SQL
+42912,C#;Java;Kotlin;Swift
+42913,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+42914,Go;Python
+42915,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+42916,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+42917,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+42918,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Rust
+42919,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;Other(s):
+42920,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42921,HTML/CSS;Java;JavaScript;SQL
+42922,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+42923,Bash/Shell/PowerShell;HTML/CSS;Python
+42924,Assembly;Java;JavaScript
+42925,Bash/Shell/PowerShell;Ruby
+42926,C#;HTML/CSS;JavaScript;PHP;Python
+42927,Java;JavaScript;SQL
+42928,Java;JavaScript;SQL
+42929,C#;HTML/CSS;Java;JavaScript;TypeScript
+42930,HTML/CSS;JavaScript;TypeScript
+42931,Bash/Shell/PowerShell;C++;Python
+42932,HTML/CSS;JavaScript;Python;SQL
+42933,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Swift
+42934,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift
+42935,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+42936,C;C++;Python
+42937,HTML/CSS;JavaScript;PHP;SQL
+42938,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+42939,C;C++;C#;Java
+42940,C#;HTML/CSS;JavaScript;Objective-C;SQL
+42941,Python;SQL
+42942,C#;HTML/CSS;SQL
+42943,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+42944,C++;Python
+42945,Bash/Shell/PowerShell;Objective-C;Swift
+42946,SQL
+42947,HTML/CSS;JavaScript;WebAssembly
+42948,Assembly;C;C++;Java
+42949,Clojure;HTML/CSS;JavaScript;SQL;Other(s):
+42950,HTML/CSS;Java;JavaScript;SQL
+42951,HTML/CSS;Swift
+42952,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;Swift
+42953,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+42954,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+42955,HTML/CSS;Java;JavaScript;Python;TypeScript
+42956,HTML/CSS;JavaScript;Objective-C;Swift
+42957,Python;VBA
+42958,HTML/CSS;JavaScript;PHP;SQL
+42959,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;Swift
+42960,Bash/Shell/PowerShell;Python;Scala;SQL
+42961,Assembly;Bash/Shell/PowerShell;C;Java;Python
+42962,Bash/Shell/PowerShell;C++;C#;Java
+42963,JavaScript;Python
+42964,C++
+42965,C++;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+42966,C++;HTML/CSS;Java;Python
+42967,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+42968,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+42969,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42970,C;C++;JavaScript
+42971,Java;JavaScript;Python;Ruby;TypeScript
+42972,C#;HTML/CSS;JavaScript;SQL
+42973,Assembly;C;Java;SQL;VBA
+42974,C#;Java;R
+42975,C#;HTML/CSS;JavaScript;SQL
+42976,PHP
+42977,HTML/CSS;JavaScript;PHP
+42978,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+42979,C#;Java;JavaScript;Python
+42980,C#;HTML/CSS;JavaScript;SQL;TypeScript
+42981,JavaScript;Scala
+42982,Java;Kotlin;Python
+42983,C#;HTML/CSS;JavaScript;SQL
+42984,Bash/Shell/PowerShell;Java;Swift
+42985,HTML/CSS;JavaScript;SQL
+42986,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+42987,HTML/CSS;Java;JavaScript;PHP;SQL
+42988,C#;HTML/CSS;Java;JavaScript;SQL
+42989,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;Swift;Other(s):
+42990,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+42991,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL
+42992,HTML/CSS;JavaScript;SQL;VBA;Other(s):
+42993,Bash/Shell/PowerShell;HTML/CSS;Python;Swift
+42994,C#;HTML/CSS;SQL;TypeScript
+42995,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+42996,Bash/Shell/PowerShell;Python;SQL;VBA
+42997,Java;JavaScript;Kotlin;Ruby
+42998,C#;HTML/CSS;JavaScript
+42999,Objective-C;Python;Swift
+43000,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Java;Python;R;Scala;Other(s):
+43001,Swift
+43002,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+43003,C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala
+43004,Bash/Shell/PowerShell;Go;Java;Python;Ruby;Scala;TypeScript
+43005,C;C++
+43006,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+43007,Assembly;Bash/Shell/PowerShell;C;C++;Python
+43008,HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript;VBA
+43009,Bash/Shell/PowerShell;C++;JavaScript;Python
+43010,HTML/CSS;JavaScript
+43011,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift
+43013,Bash/Shell/PowerShell;Go;Python;SQL
+43014,HTML/CSS;JavaScript;Ruby
+43015,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+43016,C++;C#;SQL;VBA
+43018,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+43019,Bash/Shell/PowerShell;C#;F#
+43020,HTML/CSS;JavaScript;PHP;Ruby;SQL
+43021,HTML/CSS;JavaScript
+43022,JavaScript;PHP;SQL
+43023,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL;Swift
+43024,C++;C#;Python;SQL;VBA
+43025,C;C++;C#;Java;Python
+43026,Bash/Shell/PowerShell;JavaScript;Python
+43027,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+43028,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+43029,Swift
+43030,HTML/CSS;JavaScript;PHP;SQL
+43031,Bash/Shell/PowerShell;C++;C#;Python;SQL
+43032,HTML/CSS;JavaScript;SQL
+43033,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+43034,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+43035,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+43036,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+43037,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+43038,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+43039,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+43040,HTML/CSS;JavaScript;Python;VBA
+43041,HTML/CSS;JavaScript;Python
+43042,C;Java;Kotlin;Python;R;SQL
+43043,Other(s):
+43044,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+43045,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+43046,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+43047,C#;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+43048,C#;JavaScript;SQL;TypeScript
+43049,Bash/Shell/PowerShell;C#;Ruby
+43050,Python;R;SQL
+43051,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+43052,C#;HTML/CSS;JavaScript;PHP;SQL
+43053,HTML/CSS;JavaScript
+43054,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+43055,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+43056,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+43057,C#;JavaScript;SQL
+43058,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Kotlin;Objective-C;TypeScript
+43059,C++;Java;JavaScript;TypeScript
+43060,C#;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+43061,HTML/CSS;JavaScript
+43062,C;C++;Erlang;Go;JavaScript;Kotlin;PHP;Rust;SQL
+43063,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+43064,Go;HTML/CSS;JavaScript;PHP;TypeScript
+43065,HTML/CSS;JavaScript;PHP
+43066,HTML/CSS;Java;JavaScript;SQL
+43067,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+43068,C++;C#;HTML/CSS;PHP;SQL;VBA
+43069,HTML/CSS;Java;JavaScript;SQL
+43070,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Objective-C;PHP;Python;SQL
+43071,Go;Kotlin
+43072,Java;Objective-C;Swift
+43073,HTML/CSS;Java;JavaScript;Python;SQL;VBA
+43074,HTML/CSS;Java;JavaScript;SQL
+43075,JavaScript;PHP;SQL
+43076,JavaScript;PHP;Python;SQL;TypeScript
+43077,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+43078,C#;HTML/CSS;JavaScript
+43079,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+43080,C#;Java;Kotlin;Python;Swift
+43081,C#;HTML/CSS;JavaScript;SQL
+43082,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+43083,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+43084,Java;Kotlin
+43085,C#;HTML/CSS;SQL;TypeScript
+43086,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+43087,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+43088,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43089,JavaScript;Swift
+43090,Bash/Shell/PowerShell;Clojure;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+43091,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+43092,C#;HTML/CSS;JavaScript;SQL
+43093,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+43094,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+43095,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust
+43096,Bash/Shell/PowerShell;C#;SQL;VBA
+43097,HTML/CSS;PHP
+43098,Java;Kotlin;Ruby;SQL
+43099,Dart;HTML/CSS;Java;JavaScript;Python;SQL
+43100,C;Go;Java;JavaScript;Kotlin;Python;Ruby
+43101,C++;HTML/CSS;JavaScript
+43102,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+43103,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+43104,HTML/CSS;JavaScript;PHP;SQL
+43105,Assembly;Java;JavaScript;PHP;Python;R;Scala;SQL
+43107,HTML/CSS;Java;JavaScript;SQL
+43108,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+43109,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+43110,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+43111,HTML/CSS;JavaScript
+43112,C;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+43113,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+43114,Bash/Shell/PowerShell;Python;Other(s):
+43115,C#;Python;R;SQL;VBA
+43116,HTML/CSS;JavaScript;WebAssembly
+43117,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;Scala;SQL;Swift;TypeScript
+43118,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL
+43120,HTML/CSS;Java;Python;SQL
+43121,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+43122,Bash/Shell/PowerShell;JavaScript;Other(s):
+43123,Python
+43124,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+43125,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript;VBA
+43126,C#
+43127,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+43128,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Python;TypeScript
+43129,Bash/Shell/PowerShell;Python;SQL;VBA
+43130,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+43131,HTML/CSS;JavaScript;SQL;Other(s):
+43132,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+43133,Ruby
+43134,C#;HTML/CSS;JavaScript;Python;SQL
+43135,C;C++;Python;SQL
+43136,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+43137,PHP;SQL
+43138,HTML/CSS;JavaScript;SQL;Other(s):
+43139,C#;HTML/CSS;JavaScript;SQL
+43140,Bash/Shell/PowerShell
+43141,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript;VBA;WebAssembly
+43142,Bash/Shell/PowerShell;C;C++;C#;Rust
+43143,C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;Swift;TypeScript;WebAssembly
+43144,C;C++;Go;HTML/CSS;JavaScript;Python;Rust
+43145,C#;HTML/CSS;JavaScript;PHP;SQL
+43146,Bash/Shell/PowerShell;SQL
+43147,C#;Java;Python;R;VBA;Other(s):
+43148,Bash/Shell/PowerShell;VBA
+43149,HTML/CSS;JavaScript;SQL;Other(s):
+43150,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+43151,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+43152,C#;HTML/CSS;JavaScript;TypeScript
+43153,HTML/CSS;JavaScript;PHP;SQL
+43154,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript
+43155,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+43156,Python;SQL
+43157,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python;Ruby;SQL
+43158,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+43159,C;HTML/CSS;JavaScript;Python
+43160,HTML/CSS;JavaScript;PHP;Python
+43161,Erlang;HTML/CSS;JavaScript;Python
+43162,Bash/Shell/PowerShell;C#;Python;R;SQL
+43163,Java
+43164,Objective-C;Python;Swift;TypeScript
+43165,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+43166,HTML/CSS;JavaScript;PHP;SQL
+43167,HTML/CSS;Java;JavaScript;Ruby;SQL
+43168,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+43169,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+43170,HTML/CSS;Java;JavaScript;Python
+43172,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+43173,JavaScript;Python
+43174,C#;HTML/CSS;JavaScript;Python;SQL
+43175,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+43176,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+43177,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+43178,Java
+43179,Elixir;Python;R;Ruby
+43180,C;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+43181,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+43182,HTML/CSS;JavaScript;PHP;SQL
+43183,HTML/CSS;JavaScript;PHP;SQL
+43184,JavaScript;Python
+43185,C#;Java
+43186,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+43187,C#;Java;Kotlin;SQL
+43188,C;C++;Python
+43189,C++;Java;Python;VBA
+43190,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+43191,HTML/CSS;JavaScript;Ruby;SQL
+43192,C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+43193,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+43194,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+43195,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;VBA;Other(s):
+43196,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+43197,HTML/CSS;Java;JavaScript;TypeScript
+43198,C#;HTML/CSS;JavaScript;SQL
+43199,C;HTML/CSS;Java;JavaScript
+43200,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+43201,Bash/Shell/PowerShell
+43202,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+43203,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+43204,Bash/Shell/PowerShell;Python;R;SQL
+43205,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+43206,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+43207,HTML/CSS;Java;SQL;Other(s):
+43208,C#;HTML/CSS;SQL;TypeScript
+43209,HTML/CSS;JavaScript;Python;SQL;TypeScript
+43210,Java
+43211,Assembly;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+43212,Python
+43213,C#;HTML/CSS;Java;JavaScript;SQL
+43214,C#;HTML/CSS;JavaScript;SQL
+43215,Go;Java
+43216,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+43217,Java;Kotlin;SQL
+43218,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Scala;SQL
+43219,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+43220,Java;Python;Scala
+43221,C;C++
+43222,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+43223,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+43224,Java;Kotlin;Rust
+43225,C;C++;HTML/CSS;Java
+43226,HTML/CSS;JavaScript;PHP
+43227,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+43228,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+43229,Bash/Shell/PowerShell;Go;Java;Kotlin;Objective-C;Ruby;SQL;Swift
+43230,Bash/Shell/PowerShell;C++;Rust
+43231,C#;SQL;Other(s):
+43232,HTML/CSS;Java;Kotlin;PHP;Ruby
+43233,HTML/CSS;Java;JavaScript;Python;SQL
+43234,C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+43235,HTML/CSS;Objective-C;PHP;SQL
+43236,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;SQL
+43237,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+43238,Java;JavaScript;Python;Swift;TypeScript
+43239,C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript;Other(s):
+43240,HTML/CSS;JavaScript;PHP;SQL
+43241,Python;R
+43242,C#;HTML/CSS;JavaScript;SQL
+43243,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+43244,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python
+43245,C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+43246,C;C#;Python
+43247,HTML/CSS;JavaScript;PHP
+43248,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+43249,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;SQL;Swift;TypeScript
+43250,HTML/CSS;JavaScript;TypeScript
+43251,HTML/CSS;JavaScript;PHP;TypeScript
+43252,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+43253,C#;HTML/CSS;JavaScript;SQL
+43254,Java;JavaScript
+43255,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala
+43256,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+43257,C++;HTML/CSS;Java;JavaScript;Python
+43258,HTML/CSS;SQL;VBA
+43259,Bash/Shell/PowerShell;C;Python
+43260,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+43261,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+43262,Java;JavaScript;Kotlin;Python;SQL;TypeScript
+43263,HTML/CSS;JavaScript;PHP;SQL
+43264,HTML/CSS;Java;JavaScript;SQL
+43265,C#;JavaScript;Python;Rust
+43266,Assembly;Bash/Shell/PowerShell;C;Java;Python;Ruby;SQL;Other(s):
+43267,Other(s):
+43268,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;TypeScript
+43269,C#;HTML/CSS;JavaScript
+43270,C;C++;C#
+43271,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+43272,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43273,Bash/Shell/PowerShell;C#;F#;Rust;SQL;TypeScript
+43274,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43275,Objective-C
+43276,Java;JavaScript;Kotlin;Scala
+43277,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43278,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+43279,C#;JavaScript
+43280,Java;JavaScript
+43281,HTML/CSS;PHP
+43282,C#;HTML/CSS;JavaScript;SQL
+43283,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+43284,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+43285,C#;JavaScript;Python
+43286,C++;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+43287,Bash/Shell/PowerShell;Java;JavaScript;Rust
+43288,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+43289,C;Objective-C;Python;TypeScript
+43290,C#;HTML/CSS;JavaScript;SQL
+43291,Python;R;SQL
+43292,C++;C#;F#;VBA
+43293,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+43294,HTML/CSS;JavaScript;PHP
+43295,C#;Python;SQL
+43296,C++;C#;HTML/CSS;Java;JavaScript;Python
+43297,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+43298,Bash/Shell/PowerShell;Clojure;Python;R;Other(s):
+43299,Assembly;C;C#;HTML/CSS;JavaScript;Other(s):
+43300,JavaScript;TypeScript
+43301,Bash/Shell/PowerShell;C++;C#;VBA
+43302,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+43303,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Kotlin;Python;SQL;WebAssembly
+43304,HTML/CSS;Java;JavaScript
+43305,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43306,C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+43307,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43308,HTML/CSS;JavaScript;PHP;SQL
+43309,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+43310,C++;Python;Other(s):
+43311,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+43312,C;Objective-C;Swift
+43313,HTML/CSS;JavaScript;PHP
+43314,Bash/Shell/PowerShell;Java;PHP;Scala
+43315,HTML/CSS;Java;JavaScript;Python;SQL
+43316,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+43317,HTML/CSS;JavaScript;TypeScript
+43318,Bash/Shell/PowerShell;Java;Python
+43319,Java;Kotlin;Python
+43320,HTML/CSS;Java;JavaScript;Python
+43321,HTML/CSS;JavaScript;PHP
+43322,Java;JavaScript;SQL;Other(s):
+43323,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+43324,PHP
+43325,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+43326,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+43327,Java;JavaScript;Python;SQL
+43328,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+43329,C++;C#;Java;Objective-C;Python
+43330,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Ruby;Scala;SQL
+43331,C#
+43332,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript;WebAssembly
+43333,C++;C#;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Rust;SQL
+43334,C#;Java;JavaScript;Python;SQL
+43335,Bash/Shell/PowerShell;C#;Python
+43336,Bash/Shell/PowerShell;Ruby
+43337,Dart;Java
+43338,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43339,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;Python;Swift
+43340,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43341,HTML/CSS;Java;JavaScript;SQL;TypeScript
+43342,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;PHP;Python;SQL
+43343,C++;HTML/CSS;Java;JavaScript;Python
+43344,C;C++;Java
+43345,HTML/CSS
+43346,C;HTML/CSS;Java;JavaScript;SQL
+43347,PHP;SQL
+43348,HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala
+43349,C#;HTML/CSS;JavaScript;Swift
+43350,HTML/CSS;Java;JavaScript;TypeScript
+43351,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+43352,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+43353,HTML/CSS;JavaScript;PHP;SQL
+43354,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+43355,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+43356,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43357,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL;Swift
+43358,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+43359,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;SQL;Swift;TypeScript
+43360,HTML/CSS;Java;Kotlin;TypeScript;VBA
+43361,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+43362,Bash/Shell/PowerShell;Go;Java;Python;Ruby;SQL
+43363,Bash/Shell/PowerShell;C;Java
+43364,Bash/Shell/PowerShell;Python;Scala;Swift
+43365,Bash/Shell/PowerShell;Java;Python;R
+43366,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Objective-C;PHP;Scala;SQL
+43367,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+43368,Bash/Shell/PowerShell;C;C++;Python;VBA
+43369,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43370,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;Other(s):
+43371,C;HTML/CSS;JavaScript;SQL
+43372,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Swift
+43373,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;Swift
+43374,JavaScript;Objective-C;SQL;Swift
+43375,C#;SQL
+43376,Java;Kotlin;SQL
+43377,JavaScript
+43378,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;Java;JavaScript;Python;Rust;Scala
+43379,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;Other(s):
+43380,HTML/CSS;JavaScript;PHP
+43381,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+43382,Other(s):
+43383,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+43384,R
+43385,HTML/CSS;Java;JavaScript;SQL;TypeScript
+43386,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43387,Bash/Shell/PowerShell;JavaScript;Python
+43388,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Swift;TypeScript
+43389,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift
+43390,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+43391,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+43392,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43393,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+43394,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Python;SQL
+43395,Java;Scala
+43396,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python;Ruby;VBA
+43397,C;C++;HTML/CSS;Java;PHP
+43398,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL
+43399,Bash/Shell/PowerShell;C;C++;Python;VBA
+43400,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+43401,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+43402,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+43403,Java;SQL;Other(s):
+43404,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;VBA
+43405,HTML/CSS;JavaScript;TypeScript
+43406,Go;JavaScript;Python;TypeScript
+43407,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+43408,C#;HTML/CSS;Java;SQL
+43409,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+43410,C#;JavaScript;SQL;TypeScript
+43411,HTML/CSS;JavaScript;PHP;Python;R;SQL
+43412,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+43413,HTML/CSS;JavaScript;PHP;Python
+43414,HTML/CSS;JavaScript
+43415,Bash/Shell/PowerShell;Dart;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+43416,HTML/CSS;JavaScript;TypeScript
+43417,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+43418,C#;HTML/CSS;TypeScript
+43419,C;C++;C#;SQL
+43420,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+43421,C++;C#;HTML/CSS;JavaScript;SQL;VBA
+43422,Java;Python
+43423,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+43424,HTML/CSS;JavaScript;PHP;Ruby
+43425,SQL;VBA
+43426,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43427,Python;Other(s):
+43428,Assembly;C;Java;JavaScript;Objective-C;PHP
+43429,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+43430,Bash/Shell/PowerShell;R;SQL
+43431,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Scala
+43432,Bash/Shell/PowerShell;C#;SQL
+43433,C++;C#;Python;TypeScript
+43434,JavaScript;TypeScript
+43435,Python;R;SQL
+43436,Dart;Swift
+43437,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+43438,HTML/CSS;JavaScript;PHP
+43439,Java;Kotlin;SQL
+43440,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+43441,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+43442,Python
+43443,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL
+43444,C#;HTML/CSS;JavaScript;PHP;VBA
+43445,HTML/CSS;Java;JavaScript;SQL
+43446,C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+43447,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+43448,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+43449,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43450,Java;SQL;Other(s):
+43451,HTML/CSS;Java;JavaScript;Swift
+43452,SQL;VBA
+43453,C#;HTML/CSS;SQL;TypeScript
+43454,Bash/Shell/PowerShell;Java;Python
+43455,HTML/CSS;JavaScript;Other(s):
+43456,Bash/Shell/PowerShell;C++;JavaScript;Python;Ruby
+43457,HTML/CSS;PHP;Python;SQL
+43458,HTML/CSS;JavaScript;Ruby;Swift
+43459,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+43460,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+43461,HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+43462,HTML/CSS;Java;JavaScript;Python;SQL
+43463,C#;Dart;HTML/CSS;PHP;Python;SQL;TypeScript
+43464,HTML/CSS;Java;SQL
+43465,Bash/Shell/PowerShell;Java
+43466,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+43467,Bash/Shell/PowerShell;C#;Python;SQL
+43468,HTML/CSS;JavaScript;Python;SQL;TypeScript
+43469,C#;Python;SQL
+43470,C#;HTML/CSS;JavaScript;SQL
+43471,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+43472,HTML/CSS;JavaScript
+43473,Bash/Shell/PowerShell;Java;Scala
+43474,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL
+43475,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+43477,C;C++;Python;Swift
+43478,HTML/CSS;JavaScript
+43479,C;HTML/CSS;Java;JavaScript;TypeScript
+43480,HTML/CSS;JavaScript;PHP
+43481,C#
+43482,Bash/Shell/PowerShell;C;C++;Java;PHP;Python;R;SQL;Other(s):
+43483,C#;JavaScript;SQL
+43484,HTML/CSS;JavaScript;PHP;Python;SQL
+43485,C#;Other(s):
+43486,Bash/Shell/PowerShell;C#;Java;JavaScript;Scala;SQL
+43487,F#;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+43488,C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python
+43489,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;VBA
+43490,HTML/CSS;JavaScript;SQL;VBA;Other(s):
+43491,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43492,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+43493,HTML/CSS;Java;Python;R;SQL
+43494,Java;JavaScript;Scala;SQL
+43495,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+43496,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+43497,Python;Rust
+43498,Java
+43499,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+43500,HTML/CSS;JavaScript;PHP
+43501,C#;HTML/CSS;JavaScript;Python;SQL
+43502,Objective-C;Swift
+43503,HTML/CSS;JavaScript;Python;SQL;TypeScript
+43504,JavaScript;Python;R;SQL
+43505,C;Java;SQL
+43506,HTML/CSS;JavaScript;Python;SQL
+43507,HTML/CSS;JavaScript;SQL
+43508,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+43509,Bash/Shell/PowerShell;Java;Kotlin
+43510,HTML/CSS;JavaScript;PHP;Python;SQL
+43511,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;R;SQL
+43512,Bash/Shell/PowerShell;SQL
+43513,C;C++;HTML/CSS;JavaScript;TypeScript
+43514,C++;C#;Java;JavaScript
+43515,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL
+43516,C#;HTML/CSS;JavaScript;SQL
+43517,C++;Java;JavaScript;Python;TypeScript
+43518,HTML/CSS;Java;Python
+43519,Bash/Shell/PowerShell;Java;Kotlin;SQL
+43520,HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+43521,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+43522,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+43523,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+43524,HTML/CSS;JavaScript;TypeScript
+43525,JavaScript
+43526,C++;C#
+43527,C#;Java;JavaScript;TypeScript
+43528,Java;Kotlin;SQL;Swift;TypeScript
+43529,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;VBA
+43530,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43531,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+43532,C++;C#;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL
+43533,Bash/Shell/PowerShell;C++;C#;VBA
+43534,Bash/Shell/PowerShell;SQL;VBA
+43535,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+43536,Bash/Shell/PowerShell;C;Go;Python
+43537,JavaScript;Python
+43538,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+43539,HTML/CSS;Java;JavaScript;Python
+43540,C#;JavaScript;Ruby;SQL
+43541,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL;Other(s):
+43542,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+43543,PHP
+43544,HTML/CSS
+43545,C#;HTML/CSS;JavaScript;PHP;SQL
+43546,C#;HTML/CSS;Java;PHP;Python;SQL
+43547,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;JavaScript;Python;TypeScript
+43548,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+43549,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43550,HTML/CSS;JavaScript;Python;SQL
+43551,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+43552,Bash/Shell/PowerShell;C;C++;Java;Python
+43553,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Ruby
+43554,Java
+43555,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+43556,Bash/Shell/PowerShell;Elixir;Erlang;Go;Java;Python;R;SQL;Other(s):
+43557,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+43558,Elixir;HTML/CSS
+43559,HTML/CSS;Java;JavaScript;PHP;SQL
+43560,HTML/CSS;JavaScript;PHP;SQL
+43561,Assembly;C++;C#;HTML/CSS;JavaScript;Python;SQL
+43562,C;C#;Go;HTML/CSS;Java;PHP;Python;SQL
+43563,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Ruby;SQL
+43564,C#;HTML/CSS;JavaScript;SQL
+43565,Bash/Shell/PowerShell;C#;Python;SQL
+43566,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+43567,Go;HTML/CSS;JavaScript;SQL
+43568,Assembly;C;C++
+43569,C++;JavaScript;SQL
+43570,Java;JavaScript;TypeScript
+43571,C#;HTML/CSS;JavaScript;SQL
+43572,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+43573,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+43574,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+43575,HTML/CSS;JavaScript;Python;Swift
+43576,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Swift
+43577,Java;SQL;Other(s):
+43578,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+43579,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Scala
+43580,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43581,C#;HTML/CSS;Python;Swift
+43582,HTML/CSS;Python;SQL
+43583,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+43584,Assembly;C;C#;Java
+43585,C++;Rust
+43586,HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+43587,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+43588,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+43589,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+43590,C#
+43591,C++;JavaScript;Python
+43592,C#;HTML/CSS;JavaScript;SQL
+43593,HTML/CSS;JavaScript;PHP;TypeScript
+43594,HTML/CSS;JavaScript;PHP;SQL
+43595,Objective-C;Python;Swift
+43596,JavaScript;TypeScript
+43597,C#;HTML/CSS;JavaScript;SQL
+43598,Bash/Shell/PowerShell;C#;SQL
+43599,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Rust;Other(s):
+43600,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+43601,Clojure;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+43602,Java;SQL
+43603,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+43604,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+43605,C;Python
+43606,Java;Objective-C;Swift
+43607,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Ruby;SQL
+43608,C#;HTML/CSS;JavaScript;SQL
+43609,HTML/CSS;Java;JavaScript;SQL
+43610,Dart;Java;Kotlin
+43611,C++;Java
+43612,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+43613,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43614,Clojure;HTML/CSS;JavaScript
+43615,Java;JavaScript;SQL
+43616,HTML/CSS;Python
+43617,HTML/CSS;JavaScript;PHP;SQL
+43618,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+43619,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;R;Scala;SQL
+43620,C#;HTML/CSS;Java;JavaScript;SQL
+43621,C;C#;HTML/CSS;Java;Objective-C;Swift
+43622,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+43623,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+43624,Bash/Shell/PowerShell;Scala
+43625,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+43626,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+43627,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+43628,C;Python
+43629,Bash/Shell/PowerShell;C#;JavaScript;SQL
+43630,Java;JavaScript;PHP;TypeScript
+43631,C#;HTML/CSS;JavaScript;Python;SQL
+43632,C#;Java;JavaScript;Ruby;SQL
+43633,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43634,C++;Java
+43635,HTML/CSS;JavaScript
+43636,Bash/Shell/PowerShell;Java;Python;SQL
+43637,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43638,Java;Kotlin;Objective-C;Swift
+43639,Python;VBA
+43640,Objective-C
+43641,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+43642,HTML/CSS;R;SQL;VBA
+43643,C;C++;HTML/CSS;PHP;SQL
+43644,C#;HTML/CSS;Java;JavaScript;TypeScript
+43645,C;C++;Ruby;Rust
+43646,JavaScript
+43647,Python;R;Ruby;SQL
+43648,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+43649,C#;HTML/CSS;JavaScript;PHP;SQL
+43650,C#;HTML/CSS;JavaScript;Python
+43651,C;HTML/CSS;Python;SQL
+43652,Bash/Shell/PowerShell;Go;Java;Python;R
+43653,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+43654,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43655,C#;HTML/CSS;JavaScript;PHP
+43656,HTML/CSS;JavaScript;PHP;SQL
+43657,JavaScript
+43658,C#;HTML/CSS;Java;JavaScript;Python;Ruby
+43659,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;R;SQL
+43660,JavaScript;Python;SQL
+43661,C#;HTML/CSS;JavaScript;PHP;TypeScript
+43662,C++;Java;Python
+43663,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+43664,Bash/Shell/PowerShell;Java;JavaScript;PHP
+43665,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+43666,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+43667,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+43668,HTML/CSS;JavaScript;PHP;SQL
+43669,Bash/Shell/PowerShell;Go;HTML/CSS;Python
+43670,C#;Other(s):
+43671,HTML/CSS;Java;JavaScript;SQL
+43672,Bash/Shell/PowerShell;Java
+43673,Java
+43674,Bash/Shell/PowerShell;C#
+43675,HTML/CSS;Java;JavaScript
+43676,Go;JavaScript;TypeScript
+43677,Bash/Shell/PowerShell;Python
+43678,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+43679,C;Java;Kotlin;PHP
+43680,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+43681,Go;HTML/CSS;JavaScript;Ruby;TypeScript
+43682,HTML/CSS;JavaScript;TypeScript
+43683,HTML/CSS;PHP;SQL;TypeScript
+43684,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+43685,HTML/CSS;JavaScript;PHP
+43686,C#;HTML/CSS;JavaScript
+43687,C#;Java;JavaScript;Python
+43688,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+43689,Bash/Shell/PowerShell;C++;C#
+43690,C#
+43691,Bash/Shell/PowerShell;C;C++;Ruby;SQL
+43692,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+43693,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+43694,Bash/Shell/PowerShell;C++;C#;Python
+43695,C#;HTML/CSS;Java
+43696,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+43697,Bash/Shell/PowerShell;C++;Java;Scala
+43698,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+43699,C#;JavaScript;SQL
+43700,Bash/Shell/PowerShell;C++;Elixir;Java;Python
+43701,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43702,Assembly;Bash/Shell/PowerShell;C;C++;Python
+43703,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+43704,HTML/CSS;JavaScript;PHP;TypeScript
+43705,HTML/CSS;Python;Other(s):
+43706,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+43707,HTML/CSS;JavaScript;PHP;SQL
+43708,HTML/CSS;JavaScript;PHP;SQL
+43709,C++;Java;Kotlin;Python;Rust
+43710,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Ruby
+43711,Java;SQL
+43712,HTML/CSS;Java;JavaScript;Python
+43713,C#
+43714,C#;Dart;HTML/CSS;JavaScript;SQL;Swift
+43715,JavaScript;SQL;VBA
+43716,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+43717,C;C#;Python;R;Other(s):
+43718,C++;HTML/CSS;Java;JavaScript;PHP
+43719,HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+43720,Objective-C
+43721,C#;SQL;Other(s):
+43722,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+43723,HTML/CSS;JavaScript;Python;SQL;TypeScript
+43724,C++;Java;Kotlin
+43725,Java;JavaScript;Kotlin;Python;SQL
+43726,Go;Java;Python;Ruby;SQL
+43727,HTML/CSS;Java;JavaScript;TypeScript
+43728,Java
+43729,Python;R;Scala
+43730,Java;SQL
+43731,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+43732,HTML/CSS;JavaScript;PHP
+43733,Bash/Shell/PowerShell;C++;C#;Java;Python;Rust;VBA
+43734,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+43735,C#;HTML/CSS;JavaScript;SQL
+43736,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+43737,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+43738,Java;Python
+43739,Assembly;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+43740,Python
+43741,C++;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+43742,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+43743,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+43744,SQL;Other(s):
+43745,HTML/CSS;JavaScript;TypeScript
+43746,HTML/CSS;Java;SQL;TypeScript;Other(s):
+43747,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+43748,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43749,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+43750,Bash/Shell/PowerShell;Python
+43751,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+43752,C#;Python
+43753,Bash/Shell/PowerShell;Dart;HTML/CSS;PHP;SQL
+43754,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+43755,Bash/Shell/PowerShell;Erlang;Go;JavaScript;Ruby;SQL
+43756,Bash/Shell/PowerShell;Python
+43757,C++;HTML/CSS;Java;SQL
+43758,Java;Python
+43759,HTML/CSS;JavaScript
+43760,Java;Kotlin;Python
+43761,HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+43762,C#;SQL
+43763,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+43764,HTML/CSS;Java;JavaScript;Python;SQL
+43765,Bash/Shell/PowerShell;C;C++;Python
+43766,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+43767,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+43768,PHP
+43769,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+43770,HTML/CSS;JavaScript
+43771,C#;HTML/CSS;Java;JavaScript;SQL
+43772,HTML/CSS;PHP;Python
+43773,HTML/CSS;JavaScript;PHP;SQL
+43774,C;C++;HTML/CSS
+43775,Java;Kotlin;Python;Scala;Swift
+43776,HTML/CSS;JavaScript
+43777,C#;HTML/CSS;TypeScript
+43778,C#;Java;R;SQL
+43779,C++;Java;JavaScript;Python;SQL
+43780,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+43781,Java;Other(s):
+43782,Python;R;SQL
+43783,C;C#;HTML/CSS;SQL
+43784,HTML/CSS;JavaScript;Python;R
+43785,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+43786,HTML/CSS;JavaScript;TypeScript;Other(s):
+43787,HTML/CSS;JavaScript;TypeScript
+43788,HTML/CSS;Java;JavaScript;Objective-C;PHP;TypeScript
+43789,C++;HTML/CSS;Java;JavaScript;Python;SQL
+43790,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+43791,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+43792,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;VBA
+43793,HTML/CSS;JavaScript;SQL
+43794,HTML/CSS;JavaScript;PHP;SQL
+43795,HTML/CSS;JavaScript;PHP;Python;SQL
+43796,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43797,C#;HTML/CSS;JavaScript
+43798,HTML/CSS;JavaScript
+43799,Java;Scala;SQL;TypeScript;Other(s):
+43800,HTML/CSS;JavaScript;Python;R;SQL
+43801,HTML/CSS;JavaScript
+43802,C;C++;C#;JavaScript;SQL
+43803,Java;Scala;SQL
+43804,C#;Java;JavaScript;PHP;Python;SQL
+43805,C#;HTML/CSS;JavaScript;SQL
+43806,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Rust;SQL
+43807,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+43808,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;WebAssembly;Other(s):
+43810,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+43811,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+43812,HTML/CSS;Java
+43813,Java;Swift
+43814,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+43815,HTML/CSS;Python;R
+43816,Elixir;JavaScript;Ruby
+43817,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+43819,Go;Java;JavaScript;Python
+43820,C++
+43821,Assembly;C;C++;HTML/CSS;Java;R
+43822,C;C++;C#;HTML/CSS;Objective-C;PHP;Python;SQL;Swift
+43823,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Rust;SQL;Swift
+43824,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+43825,Python;Scala;SQL
+43826,C#;Python
+43827,C++;Python
+43828,C#;Python
+43829,C++;HTML/CSS;JavaScript;TypeScript
+43830,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+43831,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;VBA;Other(s):
+43832,Java;JavaScript;SQL
+43833,C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+43834,Python
+43835,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+43836,Bash/Shell/PowerShell;C#;Java;Objective-C;Python
+43837,R
+43838,C#;SQL
+43839,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+43840,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+43841,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+43842,HTML/CSS;Java;JavaScript
+43843,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43844,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+43845,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+43846,Bash/Shell/PowerShell;C#;VBA
+43847,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;VBA
+43848,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+43849,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+43850,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;SQL
+43851,Dart;Java;JavaScript;Python;SQL
+43852,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Rust;TypeScript;WebAssembly
+43853,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+43854,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+43855,HTML/CSS;JavaScript;Other(s):
+43856,JavaScript;Python
+43857,HTML/CSS;JavaScript;PHP;SQL
+43858,C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL;Swift
+43859,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA;Other(s):
+43860,HTML/CSS;Java;JavaScript;SQL
+43861,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+43862,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+43863,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;TypeScript;WebAssembly
+43864,Bash/Shell/PowerShell;C#;Java;JavaScript;TypeScript
+43865,HTML/CSS;JavaScript;TypeScript
+43866,C#;Dart;HTML/CSS;Java;JavaScript;Python;TypeScript
+43867,Bash/Shell/PowerShell;Python
+43868,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+43869,Python;Other(s):
+43871,C++;Python;SQL;VBA
+43872,HTML/CSS;JavaScript;PHP;SQL
+43873,HTML/CSS;JavaScript;PHP;Other(s):
+43874,C#;SQL
+43875,HTML/CSS;JavaScript;SQL;Other(s):
+43876,Bash/Shell/PowerShell;C;C++;Clojure;Go;Java;Python
+43877,Java;JavaScript;Kotlin;SQL
+43878,Assembly;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+43879,Java;JavaScript;Python;R;SQL
+43880,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+43881,Java;JavaScript;Python;R;Scala;SQL;Other(s):
+43882,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+43884,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43885,Java;TypeScript
+43886,PHP
+43888,C++;HTML/CSS;Java;JavaScript;Kotlin;Swift
+43889,Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL;VBA
+43890,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+43891,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+43892,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL
+43893,Python
+43894,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python;Scala;SQL
+43895,Java;JavaScript;SQL
+43896,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+43898,Bash/Shell/PowerShell;Python;SQL
+43899,Assembly;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+43900,C#;Java;JavaScript;Python;TypeScript
+43901,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+43902,C;C++;C#;HTML/CSS;Java;Kotlin;Python;SQL
+43903,C++;Java;Python;TypeScript
+43904,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+43905,Bash/Shell/PowerShell;C;HTML/CSS;Python;R;SQL
+43906,C++;C#;Clojure;Other(s):
+43907,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+43908,HTML/CSS;Java;JavaScript;SQL
+43909,HTML/CSS;JavaScript;PHP;SQL
+43910,HTML/CSS;JavaScript;PHP;Ruby;SQL
+43911,Java;JavaScript;Python;SQL
+43912,C#;SQL
+43913,Assembly;Bash/Shell/PowerShell;C++
+43914,Python;R;Scala;SQL
+43915,C#;HTML/CSS;JavaScript;Ruby;SQL
+43916,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL;Swift
+43917,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+43918,C#;HTML/CSS;JavaScript;SQL;Other(s):
+43919,Assembly;C;C++;C#;JavaScript;Python;Rust;WebAssembly
+43920,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+43921,HTML/CSS;Java;JavaScript;SQL
+43922,C#;HTML/CSS;JavaScript;Python;Scala;TypeScript
+43923,C#;HTML/CSS;Java;SQL
+43924,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Objective-C;Python;Rust;Swift;TypeScript;Other(s):
+43925,Java;SQL;Other(s):
+43926,Bash/Shell/PowerShell;C;C++;C#;Python
+43927,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43928,HTML/CSS;JavaScript;Python;Scala
+43929,Bash/Shell/PowerShell;Java;Python;Ruby;Scala
+43930,HTML/CSS;JavaScript;Python;SQL;VBA
+43931,C;Java;JavaScript;PHP
+43932,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+43933,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+43934,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+43935,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+43936,HTML/CSS;JavaScript;PHP;SQL
+43937,C#;HTML/CSS;JavaScript;PHP
+43938,HTML/CSS;JavaScript;TypeScript
+43939,Java;JavaScript
+43940,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+43941,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+43942,C#;HTML/CSS;JavaScript
+43943,C;C++;Java;Python
+43944,HTML/CSS;Java;JavaScript;TypeScript
+43945,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+43946,Java;Ruby;Scala;TypeScript
+43947,C;Python;Other(s):
+43948,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;R;Scala;SQL;TypeScript
+43949,C#;HTML/CSS;Java;JavaScript;SQL
+43950,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+43951,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;Swift
+43952,HTML/CSS;Java;JavaScript
+43953,Bash/Shell/PowerShell;Python;SQL
+43954,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+43955,C;C++;Python
+43956,Bash/Shell/PowerShell;C;C++;Rust;Other(s):
+43957,C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby
+43958,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;TypeScript
+43959,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+43960,C#;HTML/CSS;JavaScript;SQL
+43961,C;C++;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+43962,C#;SQL
+43963,C;C++;HTML/CSS;JavaScript;Python;Swift;TypeScript
+43964,HTML/CSS;JavaScript;PHP;SQL
+43965,C;Python
+43966,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+43967,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43968,Go;HTML/CSS;Java;JavaScript;TypeScript
+43969,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+43970,SQL
+43971,Dart;Java;JavaScript;Python
+43972,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+43973,Go;HTML/CSS;JavaScript;Python
+43974,HTML/CSS;Java;JavaScript;SQL
+43975,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+43976,Bash/Shell/PowerShell;C;C++;C#;Java
+43977,Java;Scala;SQL
+43978,HTML/CSS;JavaScript
+43979,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+43980,Bash/Shell/PowerShell;C++;C#;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+43981,HTML/CSS;JavaScript;PHP;SQL
+43982,C#;HTML/CSS;JavaScript;TypeScript
+43983,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;SQL;TypeScript
+43984,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+43985,Java;Python;SQL;TypeScript
+43986,C;C++;Go;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+43987,C++;Java;JavaScript;Python;Scala
+43988,Assembly;C;C++;C#;Java;Python;Scala;SQL
+43990,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+43991,JavaScript;Ruby
+43992,C;Dart;HTML/CSS;JavaScript;Swift
+43993,Bash/Shell/PowerShell;C#;Java;Kotlin;Python;Rust;Scala
+43994,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+43995,Assembly;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+43996,C#;HTML/CSS;JavaScript;SQL;TypeScript
+43997,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+43998,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+43999,Java;SQL
+44000,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+44001,Bash/Shell/PowerShell;R;SQL
+44002,Bash/Shell/PowerShell;C++;C#;Go;Ruby
+44003,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift
+44004,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+44005,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+44006,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+44007,C#;JavaScript
+44008,Bash/Shell/PowerShell;Python;Other(s):
+44009,Swift
+44010,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+44011,Bash/Shell/PowerShell;C;Java;JavaScript;Python;R
+44012,Java;Kotlin;SQL
+44013,Objective-C;Swift
+44014,HTML/CSS;JavaScript
+44015,C++;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL
+44016,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+44017,Bash/Shell/PowerShell;C#;SQL
+44018,C++;JavaScript;PHP;Python
+44019,C#;Go;HTML/CSS;Java;JavaScript
+44020,HTML/CSS;JavaScript;PHP;SQL
+44021,HTML/CSS;JavaScript;TypeScript;Other(s):
+44022,C++;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+44023,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44024,C;C#;Other(s):
+44025,Dart;Java;Kotlin
+44026,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+44027,Java;JavaScript;Kotlin;Python;SQL
+44028,C#;JavaScript;SQL
+44029,Python
+44030,Python;R
+44031,Java
+44032,HTML/CSS;Java;JavaScript;Python;Ruby;Other(s):
+44033,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+44034,HTML/CSS;JavaScript;PHP
+44035,HTML/CSS;JavaScript
+44036,Java;JavaScript
+44037,C;C++;HTML/CSS;JavaScript;PHP;SQL
+44038,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+44039,Bash/Shell/PowerShell;C++;Python;SQL
+44040,C#;Java;Python;R;SQL;TypeScript
+44041,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44042,Assembly;Bash/Shell/PowerShell;C#;Java;PHP;SQL
+44043,C#;HTML/CSS;JavaScript
+44044,Kotlin;SQL
+44045,JavaScript;PHP;Python;SQL
+44046,C;Objective-C;Python;Ruby;Swift
+44047,JavaScript;Other(s):
+44048,Bash/Shell/PowerShell;C++;Elixir;JavaScript;Python;Ruby;SQL
+44049,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44050,C#;HTML/CSS;JavaScript;TypeScript;VBA
+44051,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+44052,SQL;Other(s):
+44053,Clojure;HTML/CSS;Java;JavaScript;Python
+44054,Java
+44055,Bash/Shell/PowerShell;C++;Clojure;Rust
+44056,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+44057,C#;HTML/CSS;JavaScript;TypeScript
+44058,C;C++;HTML/CSS;Java;JavaScript;PHP;VBA
+44059,C#;Go;HTML/CSS;Java;JavaScript;SQL;Other(s):
+44060,HTML/CSS;JavaScript;PHP
+44061,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+44062,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+44063,HTML/CSS;JavaScript;PHP
+44064,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+44065,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+44066,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+44067,HTML/CSS;JavaScript;Other(s):
+44068,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44069,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+44070,Bash/Shell/PowerShell;C;Python
+44071,Bash/Shell/PowerShell;C;C++;HTML/CSS;Other(s):
+44072,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+44073,C#;HTML/CSS;JavaScript;SQL
+44074,Bash/Shell/PowerShell;HTML/CSS;TypeScript
+44075,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+44076,Python;VBA;Other(s):
+44077,Java;Ruby
+44078,C++;Java;JavaScript;Kotlin;PHP;Other(s):
+44079,Java;Kotlin
+44080,C#;JavaScript;SQL
+44081,Java
+44082,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+44083,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+44084,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;SQL
+44085,Bash/Shell/PowerShell;Java;JavaScript;SQL
+44086,HTML/CSS;JavaScript
+44087,Elixir;Erlang;F#;Go;Rust;SQL;TypeScript
+44088,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+44089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+44090,Java;JavaScript;Kotlin
+44091,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python
+44092,C;C++;HTML/CSS;Java;JavaScript;PHP
+44093,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+44094,C;C++;HTML/CSS;PHP;Python;Rust;SQL
+44095,C#;HTML/CSS;JavaScript;SQL
+44096,HTML/CSS;JavaScript;TypeScript
+44097,Ruby
+44098,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+44099,Objective-C;Swift
+44100,C++;Java;JavaScript;SQL
+44101,Python;SQL
+44102,HTML/CSS;Java;JavaScript;SQL;TypeScript
+44103,HTML/CSS;JavaScript;Ruby;Swift
+44104,C#;Dart;JavaScript;Python;SQL;TypeScript
+44105,Bash/Shell/PowerShell;Java;R;Scala;SQL
+44106,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+44107,Objective-C
+44108,Go;HTML/CSS;JavaScript;PHP;Rust;SQL
+44109,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+44110,HTML/CSS;JavaScript;PHP;SQL
+44111,Bash/Shell/PowerShell;C#;F#;JavaScript
+44112,C#;JavaScript;SQL
+44113,C#;HTML/CSS;JavaScript;Python;SQL
+44114,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44115,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+44116,C#;SQL
+44117,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;Other(s):
+44118,Bash/Shell/PowerShell;HTML/CSS;Python;TypeScript
+44119,Assembly;C#;HTML/CSS;JavaScript
+44120,C;JavaScript
+44121,C++;C#;Dart;HTML/CSS;Java
+44122,HTML/CSS;JavaScript;PHP;SQL
+44124,C;C++;HTML/CSS;JavaScript;Objective-C;Swift
+44125,HTML/CSS;Java;JavaScript;SQL;TypeScript
+44126,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Other(s):
+44127,HTML/CSS;Java;JavaScript;Kotlin;PHP
+44128,HTML/CSS;JavaScript
+44129,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+44130,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+44131,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+44132,C;Java;JavaScript;Python;Scala;SQL;TypeScript
+44133,Objective-C;Swift
+44134,C#;Java;Python
+44135,HTML/CSS;JavaScript;PHP
+44136,Bash/Shell/PowerShell;C++;Java
+44137,Assembly;PHP
+44138,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+44139,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+44140,Python
+44141,C#;HTML/CSS;Java;PHP;Other(s):
+44142,C;Go;Java;JavaScript;Kotlin;Scala
+44143,C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+44144,HTML/CSS;JavaScript
+44145,HTML/CSS;JavaScript;PHP;SQL
+44146,HTML/CSS;Java;JavaScript;Python;SQL
+44147,Java;JavaScript;Kotlin;Objective-C;Swift;Other(s):
+44148,Python
+44149,Java
+44150,Assembly;Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;Ruby;Other(s):
+44151,Other(s):
+44152,HTML/CSS;JavaScript;PHP
+44153,C;C++;Elixir;Java
+44154,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+44155,HTML/CSS;JavaScript;PHP
+44156,Assembly;Bash/Shell/PowerShell;C;C#;Java;PHP;Ruby;SQL
+44157,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+44158,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44159,Go;HTML/CSS;JavaScript;Ruby
+44160,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+44161,Python;R;Scala;Other(s):
+44162,Clojure;HTML/CSS;Java;JavaScript;Python
+44163,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+44164,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R
+44165,HTML/CSS;JavaScript;PHP
+44167,HTML/CSS;JavaScript;VBA
+44168,PHP
+44169,HTML/CSS;Java;JavaScript;Python;SQL
+44170,C;HTML/CSS;Java;Python;SQL
+44171,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+44172,HTML/CSS;JavaScript
+44173,HTML/CSS;JavaScript;PHP;SQL
+44174,C;Go;Java;Kotlin
+44175,HTML/CSS;JavaScript;Rust;TypeScript
+44176,Java;Kotlin;Swift
+44177,C#;HTML/CSS;JavaScript;SQL
+44178,C#;HTML/CSS;Java;PHP;R
+44179,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+44180,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+44181,C;C++;C#;HTML/CSS;Java;PHP;Python
+44182,Java;Kotlin
+44183,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+44184,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44185,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+44186,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+44187,C#;F#;SQL;TypeScript
+44188,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44189,C#;PHP
+44190,HTML/CSS;JavaScript;TypeScript
+44191,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+44192,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Rust
+44193,Assembly;C
+44194,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+44195,Bash/Shell/PowerShell;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift
+44196,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;R;Other(s):
+44197,Bash/Shell/PowerShell;Java
+44198,Swift
+44199,HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+44200,Bash/Shell/PowerShell;C++;C#;JavaScript;SQL
+44201,C;C++;Java
+44202,HTML/CSS;JavaScript;PHP;Python
+44203,Go;JavaScript;Python
+44204,C#;SQL
+44205,HTML/CSS;JavaScript;PHP;SQL;Swift
+44206,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Swift
+44207,HTML/CSS;JavaScript
+44208,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+44209,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44210,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;Python;SQL
+44211,HTML/CSS;Java;JavaScript;Python
+44212,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+44213,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+44214,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+44215,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+44216,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+44217,C#;HTML/CSS;JavaScript;PHP;SQL;Swift;VBA
+44218,C#;Java;JavaScript;SQL
+44219,Bash/Shell/PowerShell;Java;Scala
+44220,Bash/Shell/PowerShell;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+44221,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;R;SQL
+44222,HTML/CSS;Java;Python;R;SQL
+44223,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+44224,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;TypeScript
+44225,C;C++;HTML/CSS;Java;JavaScript;SQL
+44226,Bash/Shell/PowerShell;Java;JavaScript;SQL
+44227,SQL;Other(s):
+44228,Bash/Shell/PowerShell;C#;F#;Java;Kotlin;PHP;Python;SQL
+44229,Java;JavaScript;PHP;Python;SQL
+44230,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+44231,HTML/CSS;JavaScript;PHP
+44232,C#;Go;HTML/CSS;JavaScript;Python
+44233,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+44234,C#;HTML/CSS;JavaScript
+44235,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+44236,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python;SQL
+44237,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+44238,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44239,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+44240,C;C++;Python
+44241,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Other(s):
+44242,HTML/CSS;Java;Other(s):
+44243,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+44244,JavaScript;Python;R;SQL
+44245,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly;Other(s):
+44246,Java;TypeScript;Other(s):
+44247,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+44248,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL
+44249,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+44250,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+44251,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+44252,Java;Kotlin
+44253,Java;JavaScript;Scala;SQL
+44254,C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;VBA
+44255,HTML/CSS;Java;JavaScript;PHP;SQL
+44256,C;C++;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+44257,Java
+44258,Ruby;SQL
+44259,HTML/CSS;Java;JavaScript;Python;SQL
+44260,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+44261,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+44262,HTML/CSS;Java;JavaScript;Python;SQL
+44263,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+44264,C#;HTML/CSS;Java;Objective-C;Ruby;SQL;Swift
+44265,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Python;SQL
+44266,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44267,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44268,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+44269,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+44270,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+44271,Java;Kotlin;Objective-C;Swift
+44272,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+44273,HTML/CSS;Java;Objective-C;Python;SQL
+44274,Elixir;PHP;Python
+44275,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;PHP;Swift;TypeScript
+44276,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+44277,HTML/CSS;Java;JavaScript;Python;SQL
+44278,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+44279,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+44280,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+44281,Bash/Shell/PowerShell;Java;Kotlin
+44282,C;C++;JavaScript;Python
+44283,C++
+44284,Bash/Shell/PowerShell;HTML/CSS;Ruby;TypeScript
+44285,Swift
+44286,HTML/CSS;Java;JavaScript;Python;SQL
+44288,C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+44289,Python;Ruby
+44290,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+44291,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44292,Java;JavaScript
+44293,Objective-C;Swift
+44294,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44295,C#;HTML/CSS;Java;SQL
+44296,C#;HTML/CSS;JavaScript;SQL;Swift
+44297,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+44298,Bash/Shell/PowerShell;Java;Python;Rust
+44299,C#;HTML/CSS;JavaScript;SQL;Swift
+44300,C#;HTML/CSS;JavaScript;SQL
+44301,Bash/Shell/PowerShell;Python
+44302,Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Swift;TypeScript
+44303,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+44304,C;C#;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+44305,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+44306,HTML/CSS;Java;JavaScript;Other(s):
+44307,C++;JavaScript;Python
+44309,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44310,HTML/CSS;JavaScript
+44311,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+44312,Dart;HTML/CSS;JavaScript;PHP
+44313,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+44314,HTML/CSS;JavaScript;SQL
+44315,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+44316,HTML/CSS;JavaScript;TypeScript
+44317,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+44318,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;SQL;TypeScript;VBA;WebAssembly
+44319,C++;C#;Rust
+44320,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+44321,C++;Python;R
+44322,C;C++;C#;HTML/CSS;Java;VBA
+44323,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+44324,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44325,Python
+44326,HTML/CSS;JavaScript
+44327,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+44328,Bash/Shell/PowerShell;Other(s):
+44329,C#;HTML/CSS;JavaScript;SQL
+44330,Java;SQL
+44331,C#;HTML/CSS;JavaScript;SQL
+44332,C#;HTML/CSS;JavaScript;SQL
+44333,C;C++;HTML/CSS;Java;JavaScript;Python
+44334,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+44335,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+44336,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Other(s):
+44337,C;C++;C#;Java;Python;SQL
+44338,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+44340,Assembly;Bash/Shell/PowerShell;C++;C#;Go;Python;SQL
+44341,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+44342,Bash/Shell/PowerShell;C#;Java;R;SQL
+44343,C;HTML/CSS;Python;Ruby;SQL
+44344,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+44345,C++;C#;Rust
+44346,Objective-C;Python;Swift
+44347,C;Ruby
+44348,HTML/CSS;Java;JavaScript;Other(s):
+44350,Dart;HTML/CSS;JavaScript;PHP;Python;TypeScript
+44351,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+44352,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;Other(s):
+44353,C;C++
+44354,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44355,C++;C#;JavaScript;Python;SQL;TypeScript
+44356,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript;WebAssembly;Other(s):
+44357,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+44358,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44359,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+44360,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+44361,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+44362,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44363,VBA
+44364,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Rust;Other(s):
+44365,HTML/CSS;JavaScript;PHP;SQL
+44366,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+44367,Go;HTML/CSS;Java;JavaScript
+44368,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript;WebAssembly
+44369,Java;JavaScript;PHP;SQL;TypeScript
+44370,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44371,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+44372,Assembly;C#;HTML/CSS;Python;SQL;Other(s):
+44373,HTML/CSS;JavaScript;PHP
+44374,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+44375,Assembly;Java;Python;SQL;WebAssembly
+44376,C;C++;Java;JavaScript;Scala;SQL
+44377,C#;HTML/CSS;JavaScript;PHP;SQL
+44378,JavaScript
+44379,Python;R;SQL
+44380,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+44381,Bash/Shell/PowerShell;C;C++;Java;Python;R;VBA
+44382,C++;HTML/CSS;Java;JavaScript;Python;R;Other(s):
+44383,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python;Scala
+44384,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+44385,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Rust;Swift;TypeScript
+44386,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44387,C++;Java;PHP
+44388,C++;HTML/CSS;JavaScript;Python;SQL
+44389,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+44390,C#;HTML/CSS;JavaScript
+44391,Go;Java;JavaScript;Python;TypeScript
+44392,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Rust;TypeScript
+44393,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+44394,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+44395,C#
+44396,Java
+44397,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+44398,Elixir;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+44399,Assembly;Java;Other(s):
+44400,Bash/Shell/PowerShell;Dart;JavaScript;Python;Swift;TypeScript
+44401,Dart;HTML/CSS;Java;JavaScript;Kotlin;Swift
+44402,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+44403,C++;Java;SQL;VBA
+44404,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+44405,Bash/Shell/PowerShell;Java;Python
+44406,HTML/CSS;Java;PHP;SQL
+44407,Java
+44408,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+44409,JavaScript;Ruby;SQL
+44410,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44411,HTML/CSS;JavaScript;Python
+44412,HTML/CSS;JavaScript;PHP;Python;SQL
+44413,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+44414,C#;JavaScript;VBA
+44415,JavaScript;Python
+44416,C;C++;HTML/CSS;Java;Python;SQL;Swift
+44417,Java;SQL
+44418,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+44419,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;Swift
+44420,Objective-C;Python;Ruby;Swift
+44421,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift
+44422,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+44423,JavaScript;Ruby;SQL;TypeScript
+44424,Java
+44425,HTML/CSS;JavaScript
+44426,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+44427,HTML/CSS;JavaScript
+44428,HTML/CSS;Java;SQL;Other(s):
+44429,HTML/CSS;JavaScript;Ruby
+44430,HTML/CSS;JavaScript;Ruby
+44431,Bash/Shell/PowerShell;C;C++;Python;SQL;Other(s):
+44432,C#;HTML/CSS;JavaScript;SQL
+44433,C#
+44434,C;Objective-C;Swift
+44435,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44436,Bash/Shell/PowerShell;C#;Go;SQL;Other(s):
+44437,Java;JavaScript;TypeScript
+44438,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+44439,C#;HTML/CSS;JavaScript;TypeScript
+44440,Go;JavaScript;Python;TypeScript
+44441,Other(s):
+44442,C#;HTML/CSS;JavaScript;SQL
+44443,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+44444,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Ruby;SQL
+44445,HTML/CSS;JavaScript;PHP;Python;SQL
+44446,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+44447,Bash/Shell/PowerShell;Java
+44448,C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+44449,C#;JavaScript
+44450,Java
+44451,Assembly;Bash/Shell/PowerShell;C;Python;R;Rust
+44452,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+44455,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+44456,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+44457,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44458,HTML/CSS;JavaScript
+44459,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+44460,Bash/Shell/PowerShell;Ruby;SQL
+44461,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Rust
+44462,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44463,HTML/CSS;JavaScript
+44464,HTML/CSS;JavaScript
+44465,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44466,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+44467,C#;HTML/CSS
+44468,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+44469,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+44470,C++;C#;HTML/CSS;JavaScript;PHP;Python
+44471,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+44472,C++;C#
+44473,C#
+44474,Assembly;Bash/Shell/PowerShell;C;C++;Python;R;Rust
+44475,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+44476,Bash/Shell/PowerShell;Python;Other(s):
+44477,HTML/CSS;JavaScript;SQL;TypeScript
+44478,Java
+44479,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+44480,Bash/Shell/PowerShell;Erlang;Java
+44481,C;C++;JavaScript;Python;Ruby;SQL;TypeScript
+44482,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44483,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+44484,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+44485,Objective-C;Swift
+44487,C++;Go;Java;Python
+44488,Bash/Shell/PowerShell;C;HTML/CSS;VBA
+44489,HTML/CSS;JavaScript;Ruby;SQL
+44490,R;SQL
+44491,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+44492,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+44493,C#;SQL;VBA;Other(s):
+44494,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44495,Bash/Shell/PowerShell;C#;Java;SQL
+44496,C++;C#;Python
+44497,Go;Java;JavaScript;Python;Ruby
+44498,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+44499,C++;Python;Other(s):
+44500,Go;HTML/CSS;JavaScript;PHP;TypeScript
+44501,C#;Elixir;HTML/CSS;JavaScript
+44502,C++;C#;Python;SQL
+44503,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44504,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44505,HTML/CSS;JavaScript;Python;TypeScript
+44506,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+44507,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+44508,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+44509,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44510,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+44511,C++;C#;HTML/CSS;JavaScript;SQL;VBA
+44512,HTML/CSS;Java
+44513,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+44514,Java
+44515,C#;HTML/CSS;Java;JavaScript;SQL
+44516,HTML/CSS;JavaScript;SQL;TypeScript
+44517,HTML/CSS;JavaScript
+44518,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44519,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44520,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+44521,Go;HTML/CSS;JavaScript;SQL;Other(s):
+44522,Ruby;Swift
+44523,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;Rust;SQL;Other(s):
+44524,C#;HTML/CSS;JavaScript;TypeScript
+44525,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL;TypeScript
+44526,Bash/Shell/PowerShell;C#;SQL
+44527,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+44528,HTML/CSS;JavaScript;Ruby;SQL
+44529,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+44530,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;Scala;SQL
+44531,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44532,HTML/CSS;JavaScript;PHP;Python;SQL
+44533,HTML/CSS;Java;JavaScript;SQL;TypeScript
+44534,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+44535,Java;JavaScript;Kotlin
+44536,Bash/Shell/PowerShell;C++;C#
+44537,HTML/CSS;Java;JavaScript;Ruby
+44538,C#;HTML/CSS;JavaScript;SQL
+44539,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44540,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby
+44541,Bash/Shell/PowerShell;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;Other(s):
+44542,C++;Go;Java;PHP;Python;Rust
+44543,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+44544,C;C++;HTML/CSS;Java;Python;Other(s):
+44545,SQL
+44546,C;C++;HTML/CSS;JavaScript;Objective-C;Python;Swift
+44547,C;C#;Java;Objective-C;R;SQL
+44548,Bash/Shell/PowerShell;JavaScript;Ruby
+44549,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+44550,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+44551,C#;HTML/CSS;JavaScript;SQL
+44552,Bash/Shell/PowerShell;Java;Python;Ruby;Scala
+44553,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+44554,JavaScript;Python
+44555,C#;Java;JavaScript;SQL
+44556,Go;JavaScript;PHP;SQL;TypeScript
+44557,C#;HTML/CSS;JavaScript;PHP
+44558,C++;Java;JavaScript;Other(s):
+44559,C;HTML/CSS;Java;JavaScript;Python;SQL
+44560,HTML/CSS;JavaScript
+44561,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+44562,Java;Kotlin
+44563,C;Python
+44564,C;C++;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+44565,Bash/Shell/PowerShell;Python;SQL;VBA;Other(s):
+44566,Python;R;SQL
+44567,Java;JavaScript;Python;SQL;TypeScript;Other(s):
+44568,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+44570,C++;C#;Clojure;JavaScript;Scala
+44571,C;Java;Python;SQL
+44572,HTML/CSS;JavaScript
+44573,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+44574,C#;HTML/CSS;JavaScript;SQL
+44575,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+44576,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+44577,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+44578,Objective-C
+44579,HTML/CSS;JavaScript;PHP;SQL
+44580,C#;HTML/CSS;JavaScript;PHP;SQL
+44581,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL;Swift
+44582,HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+44583,C;Python;SQL
+44584,Java;JavaScript;Python
+44586,HTML/CSS;JavaScript;Python;SQL
+44587,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+44588,Bash/Shell/PowerShell;JavaScript;Python;SQL
+44589,C;C++;C#;Java;JavaScript;Ruby;SQL;TypeScript
+44590,HTML/CSS;PHP;SQL
+44591,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;VBA
+44592,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL
+44593,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+44594,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+44595,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+44596,SQL
+44597,HTML/CSS;JavaScript;PHP;TypeScript
+44598,HTML/CSS;Java
+44599,C#;HTML/CSS;JavaScript
+44600,Bash/Shell/PowerShell;C#;SQL
+44601,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+44602,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+44603,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+44604,HTML/CSS;JavaScript;Kotlin;TypeScript
+44605,C++;C#
+44606,HTML/CSS;Java;SQL
+44607,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44608,C;HTML/CSS;Java;JavaScript;Python;SQL
+44609,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+44610,C#
+44611,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift
+44612,Bash/Shell/PowerShell;C;HTML/CSS;Java
+44613,HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;WebAssembly
+44614,C#;Other(s):
+44615,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+44616,Bash/Shell/PowerShell;HTML/CSS;Python;Swift;TypeScript
+44617,C#;SQL;Other(s):
+44618,HTML/CSS;Java;JavaScript;Ruby;TypeScript
+44619,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44620,Java
+44622,C#;HTML/CSS;JavaScript;SQL
+44623,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;Other(s):
+44624,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44625,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript;WebAssembly
+44626,Python
+44627,HTML/CSS;JavaScript
+44628,HTML/CSS;JavaScript;PHP;SQL
+44629,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44630,Python
+44631,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+44632,HTML/CSS;Java;JavaScript;SQL;TypeScript
+44633,Java;JavaScript
+44634,HTML/CSS;JavaScript
+44635,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Python
+44636,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+44637,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;Other(s):
+44638,C#;HTML/CSS;JavaScript;SQL
+44639,C++;HTML/CSS;Java;JavaScript;PHP
+44640,HTML/CSS;Java;JavaScript;Python
+44641,C#;Java;Python;SQL
+44642,Java
+44643,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust
+44644,HTML/CSS;Java;JavaScript;SQL;TypeScript
+44645,HTML/CSS;JavaScript;PHP;SQL
+44646,C++;Java;Python
+44647,C#;HTML/CSS;JavaScript;SQL
+44648,C#;TypeScript
+44650,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44651,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+44652,Assembly;C;C++;Objective-C;Swift
+44653,HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+44654,Bash/Shell/PowerShell;C++;C#;HTML/CSS;PHP;Python
+44655,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+44656,SQL
+44657,C;C++;C#;Java;Python
+44658,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+44659,HTML/CSS;JavaScript;PHP
+44660,C#;HTML/CSS;SQL;VBA
+44661,HTML/CSS;JavaScript;Python;SQL
+44662,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+44663,Bash/Shell/PowerShell;C;JavaScript;Python;Scala;SQL
+44664,Python
+44665,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+44666,C#;HTML/CSS;JavaScript;SQL
+44667,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+44668,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;VBA
+44669,HTML/CSS;Java;JavaScript
+44670,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript
+44672,Bash/Shell/PowerShell;Java;JavaScript;SQL
+44673,JavaScript;Python;R
+44674,C++;Other(s):
+44675,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44676,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44677,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+44678,Go;JavaScript;SQL
+44679,HTML/CSS;JavaScript;Python;Ruby
+44680,C++;C#;JavaScript;PHP
+44681,Python
+44682,Bash/Shell/PowerShell;C;Java;JavaScript;Objective-C;Swift
+44683,JavaScript;Python;SQL
+44684,C;C++;C#
+44685,Python
+44686,C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44687,Bash/Shell/PowerShell;C;C++;JavaScript;Python;TypeScript;WebAssembly
+44688,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44689,HTML/CSS;JavaScript;SQL;Swift
+44690,Bash/Shell/PowerShell;C++;Python;SQL
+44691,HTML/CSS;JavaScript;PHP
+44692,HTML/CSS;Java;JavaScript;Python
+44694,Python
+44695,C#;HTML/CSS;JavaScript;SQL
+44697,C#;HTML/CSS;JavaScript;Python;SQL
+44699,C++;JavaScript
+44700,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript;VBA
+44701,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+44702,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;SQL;TypeScript
+44703,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+44704,HTML/CSS;PHP;Python;SQL
+44705,C#;JavaScript;Python;SQL;TypeScript;Other(s):
+44706,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+44707,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;Other(s):
+44708,HTML/CSS;JavaScript;PHP;Python;SQL
+44709,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+44710,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+44711,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Elixir;Go;Java;JavaScript;Python;Swift
+44712,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+44713,C;Python
+44714,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+44715,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Python;SQL
+44716,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+44717,Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+44718,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+44719,Bash/Shell/PowerShell;Python;SQL
+44720,HTML/CSS;PHP;R;SQL
+44721,C;C#;Java;Kotlin;Python;SQL
+44722,Java;JavaScript;Kotlin;TypeScript
+44723,Java
+44724,HTML/CSS;JavaScript;PHP;TypeScript
+44725,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;Ruby;Rust;SQL;Other(s):
+44726,Bash/Shell/PowerShell;C;C++;Python;Rust
+44727,HTML/CSS;Java;JavaScript;PHP;SQL
+44728,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+44729,Assembly;C;C++;C#;Java;JavaScript;Python
+44730,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+44731,Bash/Shell/PowerShell;C#;Java;JavaScript
+44732,C#;Go;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+44733,Java;PHP;SQL
+44734,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+44735,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+44736,Bash/Shell/PowerShell;JavaScript;Python
+44737,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;Scala
+44738,Bash/Shell/PowerShell;C#;F#;Go;Java;Python;SQL
+44739,WebAssembly
+44740,C++
+44741,C#;Java;Python;SQL
+44742,C#;JavaScript
+44743,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44744,Bash/Shell/PowerShell;Python
+44745,C;HTML/CSS;JavaScript;Python
+44746,Python;R
+44747,HTML/CSS;JavaScript;SQL;Swift;TypeScript
+44748,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+44749,C#;JavaScript
+44750,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+44751,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+44752,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+44753,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+44754,Bash/Shell/PowerShell;C++;C#;Python;SQL;VBA
+44755,HTML/CSS;Java;JavaScript;R;SQL
+44756,Python
+44757,HTML/CSS;JavaScript
+44758,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44759,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+44760,C#;HTML/CSS;JavaScript;SQL
+44761,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44762,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44763,Python;R
+44764,Objective-C;Swift
+44765,Clojure;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+44766,C;C++;HTML/CSS;PHP;Python
+44767,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;PHP;Python
+44768,HTML/CSS;Java
+44769,C;C++;Clojure;Java;Kotlin;Python;Rust
+44770,HTML/CSS;Java;JavaScript;PHP;Python
+44771,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;Other(s):
+44772,C;Go;HTML/CSS;JavaScript;PHP;Python
+44773,Bash/Shell/PowerShell;C#;JavaScript;Other(s):
+44774,HTML/CSS;Java;JavaScript;TypeScript
+44775,JavaScript;Python
+44776,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+44777,C++;Java
+44778,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+44779,Assembly;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+44780,HTML/CSS;Java;JavaScript
+44781,Bash/Shell/PowerShell;C#;Clojure;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;Rust;SQL;TypeScript;WebAssembly
+44782,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+44783,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+44784,C#;SQL
+44785,C#;HTML/CSS;JavaScript;SQL;Other(s):
+44786,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+44787,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+44788,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+44789,HTML/CSS;JavaScript;PHP;SQL
+44790,Bash/Shell/PowerShell;C#;Java;R;SQL;TypeScript
+44791,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+44792,HTML/CSS;JavaScript;Python;R;SQL
+44793,Clojure;Java;JavaScript;Python;Scala;SQL
+44794,C++;Java;Python;R;Scala;SQL
+44795,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+44796,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+44797,HTML/CSS;JavaScript;Python
+44798,C#;SQL
+44799,HTML/CSS;JavaScript;PHP
+44800,C;C++;Java;Python;R;SQL
+44801,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+44802,HTML/CSS;Java;JavaScript
+44803,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44804,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+44805,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+44806,Bash/Shell/PowerShell;Java;SQL
+44807,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+44808,Kotlin;SQL
+44809,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44810,Python;R;SQL
+44811,C#;Java;PHP;SQL
+44812,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44813,HTML/CSS;Java;JavaScript;PHP;SQL
+44814,C++;C#;HTML/CSS;SQL
+44815,Bash/Shell/PowerShell;C;C++;C#;SQL
+44816,HTML/CSS;Java;JavaScript;PHP
+44817,HTML/CSS;Java;JavaScript;TypeScript
+44818,C;C++;HTML/CSS;Java;PHP;Python;SQL
+44819,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+44820,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+44821,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44822,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+44823,C;C++;PHP
+44824,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;Swift
+44825,HTML/CSS;Java;JavaScript;PHP;SQL
+44826,C#;HTML/CSS;JavaScript;SQL
+44827,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+44828,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;R;Other(s):
+44829,JavaScript
+44830,C#;Go;HTML/CSS;JavaScript;TypeScript
+44831,C++;C#;HTML/CSS;Java;JavaScript;SQL
+44832,HTML/CSS;JavaScript;PHP;SQL
+44833,C;Java;JavaScript;Python;SQL;TypeScript
+44834,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44835,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+44836,HTML/CSS;JavaScript;PHP;SQL
+44837,HTML/CSS;JavaScript;Ruby;SQL
+44838,C++;C#;Dart;Go;HTML/CSS;Java;JavaScript
+44839,HTML/CSS;JavaScript;Ruby;SQL
+44840,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+44841,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+44842,Go;Java;JavaScript;Scala
+44843,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+44844,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+44845,Bash/Shell/PowerShell;Python;SQL
+44846,Bash/Shell/PowerShell;Python
+44847,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+44848,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+44849,C#;HTML/CSS;JavaScript;Python;SQL
+44851,HTML/CSS;JavaScript;Ruby;SQL
+44852,HTML/CSS;JavaScript
+44853,HTML/CSS;Java
+44854,Java;Python
+44855,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+44856,C;C++
+44857,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;SQL
+44858,C;C++;Java;JavaScript;SQL;Other(s):
+44859,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+44860,HTML/CSS;JavaScript;Python;Ruby;SQL
+44861,HTML/CSS;Java;SQL
+44862,Objective-C;Swift
+44863,Java;JavaScript;Python
+44864,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+44865,HTML/CSS;JavaScript;PHP;Python
+44866,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44867,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript
+44868,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+44869,C;HTML/CSS;JavaScript;SQL
+44870,HTML/CSS;Java
+44871,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+44872,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;TypeScript
+44873,C#;HTML/CSS;JavaScript;Python;TypeScript
+44874,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;TypeScript
+44875,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44876,Bash/Shell/PowerShell;C++;Python
+44877,Go;JavaScript;Python;SQL
+44878,HTML/CSS;Java;Scala
+44879,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+44880,R
+44881,HTML/CSS;JavaScript
+44882,Go;Java;JavaScript;PHP;Python;Scala
+44883,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Other(s):
+44884,HTML/CSS;JavaScript;Swift
+44885,Assembly;C;C++;HTML/CSS;Java;JavaScript;TypeScript
+44886,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust;TypeScript
+44887,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;VBA;Other(s):
+44888,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+44889,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+44890,Java;Python;SQL
+44891,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+44892,C++;Java;JavaScript;SQL
+44893,Python
+44894,HTML/CSS;Java;JavaScript;SQL
+44895,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44896,Java
+44897,C;Java;Kotlin;Python
+44898,Bash/Shell/PowerShell;Java;Other(s):
+44899,Bash/Shell/PowerShell;C++;C#;Other(s):
+44900,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+44901,Java;Python;Scala;SQL
+44902,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+44903,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+44904,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Rust
+44905,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+44906,C++;Java;SQL;VBA
+44907,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+44908,Python;R;Scala;SQL
+44909,Bash/Shell/PowerShell;C++;C#;Erlang;Python
+44910,HTML/CSS;PHP
+44911,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44912,HTML/CSS;JavaScript;PHP
+44913,C;C++;HTML/CSS;JavaScript;PHP;SQL
+44914,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+44915,HTML/CSS;Java
+44916,Bash/Shell/PowerShell;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+44917,Assembly;HTML/CSS;JavaScript;TypeScript
+44918,Bash/Shell/PowerShell;C#;Java;Kotlin;Python;SQL;TypeScript
+44919,Bash/Shell/PowerShell;Go;Java;Kotlin;Scala
+44920,Bash/Shell/PowerShell;C;JavaScript
+44921,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+44922,Bash/Shell/PowerShell;C#;F#;TypeScript;Other(s):
+44924,Swift
+44925,HTML/CSS;JavaScript
+44926,C++;C#;JavaScript;SQL;Other(s):
+44927,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+44928,C;HTML/CSS;JavaScript;PHP;TypeScript
+44929,HTML/CSS;JavaScript
+44931,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+44932,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+44933,HTML/CSS;JavaScript;PHP;SQL
+44934,JavaScript;Ruby;SQL
+44935,Bash/Shell/PowerShell;Kotlin;Objective-C;Swift
+44936,C;C++;HTML/CSS;Python;SQL
+44937,Java;Kotlin;Swift;TypeScript
+44938,Python
+44939,C#;HTML/CSS;JavaScript;TypeScript
+44940,HTML/CSS;JavaScript;PHP;Ruby;SQL
+44941,Bash/Shell/PowerShell;Clojure;Java;Python
+44942,Java;JavaScript
+44944,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44945,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+44946,HTML/CSS;JavaScript;TypeScript
+44947,Bash/Shell/PowerShell;C++;Go;Ruby;SQL
+44948,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+44949,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+44950,Java;SQL
+44951,C;C++;Go;HTML/CSS;JavaScript;Python
+44952,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+44953,C;C#
+44954,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+44955,HTML/CSS;Java;JavaScript;Ruby;SQL
+44956,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+44957,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+44958,HTML/CSS;JavaScript;Ruby;TypeScript
+44959,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+44960,C#;Dart;F#;Java;Kotlin;Objective-C;Python;Swift
+44961,C++;SQL
+44962,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+44963,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+44964,C#;JavaScript;Python;SQL
+44965,HTML/CSS;Java;Objective-C;SQL;Swift
+44966,C#
+44967,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44968,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift;TypeScript
+44969,HTML/CSS;JavaScript;PHP;SQL
+44970,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+44971,C#;HTML/CSS;JavaScript;Python;SQL
+44972,C#;HTML/CSS;JavaScript;SQL
+44973,C#;JavaScript;SQL;TypeScript
+44974,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+44975,Java;SQL
+44976,C++;Java;JavaScript;Scala
+44977,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+44978,C;C++;Java;JavaScript;Kotlin
+44979,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+44980,C;C++;C#;Python;SQL
+44981,C#;HTML/CSS;JavaScript
+44982,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+44983,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python;R;SQL;Other(s):
+44984,C#;HTML/CSS;JavaScript;SQL;TypeScript
+44985,C;C++;Java
+44986,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+44987,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+44988,C#;HTML/CSS;JavaScript;TypeScript
+44989,HTML/CSS;Java;JavaScript;SQL
+44990,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;WebAssembly
+44991,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL
+44992,HTML/CSS;Java;JavaScript;SQL
+44993,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+44994,HTML/CSS;Java;Python
+44995,C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+44996,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+44997,C++;Go;HTML/CSS;JavaScript;Python
+44998,C;C++;Java;Kotlin
+44999,Dart;HTML/CSS;JavaScript;Python
+45000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+45001,Bash/Shell/PowerShell;Java;SQL
+45002,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45003,Java;JavaScript;Python;SQL
+45004,C#;Python
+45005,HTML/CSS;JavaScript;SQL
+45006,C++;HTML/CSS;Python;SQL
+45007,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+45008,C#;HTML/CSS;JavaScript;SQL
+45009,Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+45010,C#;HTML/CSS;JavaScript;TypeScript
+45011,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+45013,HTML/CSS;Java;JavaScript;SQL
+45014,C;C++;Go;HTML/CSS;JavaScript;Python
+45015,Bash/Shell/PowerShell;Python;SQL
+45016,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+45017,HTML/CSS;JavaScript;TypeScript
+45018,HTML/CSS;Java;JavaScript;Python;Ruby
+45019,Go;Scala
+45020,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;WebAssembly
+45021,C#;JavaScript
+45022,Java;JavaScript;PHP;SQL
+45023,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+45024,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+45025,Go;Java
+45026,HTML/CSS;JavaScript
+45027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+45028,HTML/CSS;JavaScript;SQL
+45029,C#;HTML/CSS;JavaScript;SQL
+45030,HTML/CSS;JavaScript
+45031,Python;R
+45032,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+45033,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;TypeScript
+45034,Assembly;JavaScript;Swift
+45035,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+45036,Java;Python
+45038,HTML/CSS;Java;JavaScript;TypeScript
+45039,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+45040,C#;JavaScript
+45041,C++;Python;SQL
+45042,Bash/Shell/PowerShell;C;Python;Other(s):
+45043,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+45044,HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+45045,HTML/CSS;Java;JavaScript;SQL
+45046,C#;HTML/CSS;JavaScript;Python
+45047,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Rust;Swift
+45048,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+45049,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+45050,C#;Python
+45051,R;SQL
+45052,C++;Other(s):
+45053,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+45054,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+45055,HTML/CSS;Java;SQL
+45056,Java;Kotlin;Python;SQL
+45057,Bash/Shell/PowerShell;HTML/CSS;Python
+45058,Bash/Shell/PowerShell;C#;JavaScript
+45059,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Swift
+45060,Bash/Shell/PowerShell;C#;Java;JavaScript;Python
+45061,HTML/CSS;JavaScript;TypeScript
+45062,Assembly;C;C++;C#;Python
+45063,HTML/CSS;JavaScript
+45064,HTML/CSS;Java;JavaScript
+45065,Assembly;Bash/Shell/PowerShell;C++;Go;JavaScript;PHP;TypeScript;Other(s):
+45066,HTML/CSS;JavaScript;TypeScript
+45067,C++;Python
+45068,Bash/Shell/PowerShell;C#
+45069,Bash/Shell/PowerShell;C++;C#
+45070,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+45071,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Other(s):
+45072,C#;Java;JavaScript;Other(s):
+45073,Java;Python
+45074,Bash/Shell/PowerShell;Java;Python;TypeScript
+45075,HTML/CSS;JavaScript;PHP;SQL
+45076,Java;SQL
+45077,Python;Ruby;SQL;TypeScript
+45078,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45079,C#;HTML/CSS;JavaScript;Python;SQL
+45080,HTML/CSS;Java;JavaScript;SQL
+45081,Objective-C;Swift
+45082,C;C++;C#;Java;SQL
+45083,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+45084,C++;SQL
+45085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+45086,HTML/CSS;JavaScript;Python;R
+45087,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+45088,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+45089,C++;JavaScript
+45090,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;R;Ruby;SQL
+45091,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45092,Java;Python
+45093,Java;PHP;Python
+45094,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL;VBA
+45095,HTML/CSS;JavaScript;Ruby
+45096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+45097,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+45098,Go;HTML/CSS;Java;JavaScript;SQL
+45099,Assembly;Bash/Shell/PowerShell;C;C#;Dart;Java;Kotlin;Python;Swift
+45100,HTML/CSS;JavaScript;Ruby;SQL
+45101,C;C++;C#;HTML/CSS;JavaScript;SQL
+45102,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+45103,C;C++;C#;HTML/CSS;Java;SQL
+45104,PHP;SQL
+45105,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+45106,C;HTML/CSS;Java
+45107,C++;Java;Other(s):
+45108,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+45109,C#;Go;JavaScript
+45110,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45112,Bash/Shell/PowerShell;Go;JavaScript;Objective-C;PHP;Swift
+45113,Bash/Shell/PowerShell;Python;Swift
+45114,C++;JavaScript;Python
+45115,F#;Python;Rust;TypeScript
+45116,HTML/CSS;Java;JavaScript
+45117,Java
+45118,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+45119,Java;SQL
+45120,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+45122,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+45123,Python;SQL
+45124,Java;Other(s):
+45125,C++;HTML/CSS;JavaScript;PHP
+45126,C++;C#
+45127,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+45128,Bash/Shell/PowerShell;C#;Python
+45129,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+45130,C#;Python
+45131,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+45132,C++;HTML/CSS;Java;PHP;SQL
+45133,HTML/CSS;Java;JavaScript;SQL
+45134,HTML/CSS;JavaScript;PHP;SQL
+45135,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;Scala;SQL;Other(s):
+45136,Bash/Shell/PowerShell;Python
+45137,Dart;Objective-C;Swift
+45138,C#;HTML/CSS;JavaScript;SQL
+45139,C#;HTML/CSS;JavaScript;Python;SQL
+45140,Go;JavaScript;Python;SQL
+45141,JavaScript;PHP;Python;TypeScript
+45142,C++;HTML/CSS;Java;Scala;SQL
+45143,HTML/CSS;Java;JavaScript;Python;SQL
+45144,SQL
+45145,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45146,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45147,C#;JavaScript;SQL
+45148,C#;JavaScript;SQL;TypeScript;VBA
+45149,C;HTML/CSS;JavaScript;Python
+45150,Java;JavaScript;Python;TypeScript
+45151,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+45152,C#;HTML/CSS;JavaScript;PHP;SQL
+45153,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL
+45154,C++;C#;HTML/CSS;Java;JavaScript;Python;Rust
+45155,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+45156,C#;HTML/CSS;JavaScript;Python;Other(s):
+45157,HTML/CSS;Java;JavaScript;SQL
+45158,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+45159,HTML/CSS;JavaScript;SQL;TypeScript
+45160,HTML/CSS;Java;JavaScript;TypeScript
+45161,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+45162,Bash/Shell/PowerShell
+45163,C++;JavaScript;Python
+45164,Java;SQL;Other(s):
+45165,HTML/CSS;JavaScript;PHP;Ruby
+45166,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+45167,C;C++;C#;HTML/CSS;Java;JavaScript
+45168,Bash/Shell/PowerShell;C++;PHP;Python
+45169,Bash/Shell/PowerShell;C++;Python;R;SQL
+45170,Elixir
+45171,HTML/CSS;JavaScript;TypeScript
+45172,Assembly;Bash/Shell/PowerShell;C++;C#;Python;R;Other(s):
+45173,C#;HTML/CSS;Java;JavaScript;SQL
+45174,C;HTML/CSS;JavaScript;Python
+45175,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+45177,Java;Python
+45178,C#;Java;Scala
+45179,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;Ruby;Other(s):
+45180,C#;Go;Java;TypeScript
+45181,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45182,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+45183,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+45184,HTML/CSS;Java;JavaScript;PHP;SQL
+45185,Go;HTML/CSS;JavaScript;PHP;Ruby
+45186,HTML/CSS;JavaScript;Ruby;SQL
+45187,HTML/CSS;JavaScript;PHP;Python
+45188,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+45189,Java;JavaScript;Python
+45190,C#;HTML/CSS;JavaScript;SQL
+45191,HTML/CSS;JavaScript
+45192,C;Java;Kotlin
+45193,Java
+45194,Bash/Shell/PowerShell;C;C++;Python
+45195,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45196,C++;Go;Java;Python;Scala
+45197,C#;HTML/CSS;JavaScript;SQL
+45198,C;Python
+45199,C#;Java;Kotlin;SQL
+45200,HTML/CSS;Java;JavaScript;PHP;SQL
+45201,C++
+45202,C++;Java;Python
+45203,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+45204,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Swift
+45205,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+45206,C;C++;C#;HTML/CSS;JavaScript;Rust;WebAssembly
+45207,HTML/CSS;JavaScript;Python
+45208,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin;Python
+45209,HTML/CSS;JavaScript;Python
+45210,C#;HTML/CSS;JavaScript;SQL;VBA
+45211,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+45212,HTML/CSS;Java;JavaScript
+45213,Java;Other(s):
+45214,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;VBA
+45215,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+45216,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45217,Bash/Shell/PowerShell;C++;Java;Python
+45218,HTML/CSS;PHP;SQL;VBA
+45219,Assembly;C#;HTML/CSS;JavaScript;SQL
+45220,Bash/Shell/PowerShell;C;C++;C#;JavaScript
+45221,Dart;HTML/CSS;JavaScript;Rust;SQL;TypeScript;WebAssembly
+45222,Assembly;HTML/CSS;Java;PHP;SQL
+45223,C#;Erlang;Go;HTML/CSS;Java;JavaScript;SQL;VBA
+45224,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+45225,C#;HTML/CSS;JavaScript;PHP;SQL
+45226,Bash/Shell/PowerShell;Python
+45227,C++
+45228,HTML/CSS;JavaScript;SQL;Other(s):
+45229,Swift
+45230,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45231,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python
+45232,HTML/CSS;Python;SQL;VBA
+45233,Bash/Shell/PowerShell;Python;R;SQL;VBA
+45234,HTML/CSS;Java;Kotlin;SQL;TypeScript
+45235,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+45236,Bash/Shell/PowerShell;Elixir;Python;Ruby;SQL
+45237,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Python;Other(s):
+45238,C#;HTML/CSS;SQL;TypeScript
+45239,C;C++;Other(s):
+45240,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45241,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+45242,HTML/CSS;JavaScript;PHP;SQL
+45243,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python
+45244,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+45245,C++;JavaScript
+45246,HTML/CSS;Java;JavaScript;Python;TypeScript
+45247,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+45248,Bash/Shell/PowerShell;Go;Python
+45249,Dart;Objective-C;Swift
+45250,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45251,C;C++;C#;Java;Python
+45252,Bash/Shell/PowerShell;C;C++;Java;Python;Ruby;SQL;Swift
+45253,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+45254,HTML/CSS;Java;JavaScript;SQL
+45255,HTML/CSS;Java;JavaScript;SQL;TypeScript
+45256,C++;C#;JavaScript;Python;Swift
+45257,Python;Ruby
+45258,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+45259,HTML/CSS;JavaScript;PHP
+45260,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+45261,C++;HTML/CSS;JavaScript;Python;SQL
+45262,HTML/CSS;Java;JavaScript;Python;SQL
+45263,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+45264,JavaScript;Ruby;TypeScript
+45265,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45266,Bash/Shell/PowerShell;C;C++;Python;SQL
+45267,HTML/CSS;JavaScript;Python
+45268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+45269,Java;JavaScript
+45270,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript
+45271,Bash/Shell/PowerShell;Java;JavaScript
+45272,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+45274,HTML/CSS;JavaScript;TypeScript
+45275,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+45276,HTML/CSS;JavaScript;TypeScript
+45277,HTML/CSS;VBA
+45278,C#;HTML/CSS;JavaScript;Python;SQL
+45279,C#;HTML/CSS;JavaScript
+45280,C;C++;C#
+45281,C#;HTML/CSS;JavaScript;SQL;WebAssembly
+45282,Bash/Shell/PowerShell;C;Java;Python;SQL
+45283,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+45284,C#;Java;Python;Rust
+45285,C;HTML/CSS;JavaScript;PHP
+45286,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45287,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+45288,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python
+45289,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;VBA
+45290,HTML/CSS;JavaScript;TypeScript;Other(s):
+45292,Java
+45293,JavaScript
+45294,HTML/CSS;Java;JavaScript;Objective-C;Scala;TypeScript
+45295,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+45296,Clojure;HTML/CSS;R
+45297,C#;HTML/CSS;JavaScript;SQL
+45298,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python
+45299,Assembly;Go;HTML/CSS;JavaScript;Python;SQL
+45300,JavaScript;Python;SQL
+45301,HTML/CSS;JavaScript;TypeScript
+45302,HTML/CSS;Java
+45303,C++;Python;Other(s):
+45304,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python
+45305,Bash/Shell/PowerShell;Ruby
+45306,C#
+45307,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+45308,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+45309,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+45310,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+45311,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+45312,Go;JavaScript;Python;Other(s):
+45313,PHP
+45314,JavaScript;PHP
+45315,HTML/CSS;Java;JavaScript;Scala;SQL
+45316,JavaScript;Python;TypeScript
+45317,HTML/CSS;JavaScript;PHP;SQL
+45318,Java;Python
+45319,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;WebAssembly
+45320,Java;JavaScript;SQL
+45321,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+45322,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+45323,Go;HTML/CSS;Java;JavaScript;Python;SQL
+45324,Dart
+45325,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+45326,C#;HTML/CSS;Java;JavaScript;Ruby;Scala;TypeScript
+45327,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+45328,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+45329,Python;SQL;Other(s):
+45330,Bash/Shell/PowerShell;C;C++;SQL
+45331,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+45332,Java;JavaScript;SQL
+45333,JavaScript;PHP;Python
+45334,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA
+45335,C#;HTML/CSS;JavaScript;SQL
+45336,Java
+45337,C#
+45338,Bash/Shell/PowerShell;C++;C#;Dart;Go;HTML/CSS;JavaScript;Kotlin;Python;R;SQL;TypeScript
+45339,C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+45340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+45341,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+45342,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+45343,Bash/Shell/PowerShell;C++;C#;Python;TypeScript
+45344,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+45345,Objective-C;Swift
+45346,C++;JavaScript;Python;TypeScript
+45347,C++;Python
+45348,Bash/Shell/PowerShell;C++;JavaScript;Python;R;SQL
+45349,Dart;HTML/CSS;Java;JavaScript
+45350,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+45351,Python;R;VBA
+45352,C#;HTML/CSS;JavaScript
+45353,Bash/Shell/PowerShell;Other(s):
+45354,Java;JavaScript;Python;SQL
+45355,C++;Java;R;SQL
+45356,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Other(s):
+45357,Bash/Shell/PowerShell;C#;F#
+45358,HTML/CSS;Java;JavaScript;PHP;SQL
+45359,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+45360,C;HTML/CSS;Java;JavaScript;Ruby
+45361,HTML/CSS;JavaScript
+45362,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;Swift
+45363,Bash/Shell/PowerShell;C;C++;Go;Java
+45364,HTML/CSS;Java;JavaScript;PHP;SQL
+45365,C#;Java
+45366,C;Clojure;JavaScript;Python;R;Ruby;TypeScript;Other(s):
+45367,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+45368,C++;C#
+45369,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+45370,C++;Python;Other(s):
+45371,C#;HTML/CSS;Python;SQL
+45372,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript
+45373,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+45374,JavaScript;Scala;TypeScript
+45375,Bash/Shell/PowerShell;Python;SQL
+45376,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+45377,C#;Dart;HTML/CSS;PHP;Swift
+45378,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript;VBA
+45379,C#;Clojure;Java;JavaScript;Ruby
+45380,C;C++;C#
+45381,C;HTML/CSS;JavaScript;PHP;Python;Ruby
+45382,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+45383,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+45384,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+45385,Go;Objective-C;Swift
+45386,Bash/Shell/PowerShell;Python;Rust
+45387,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+45388,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;Other(s):
+45389,JavaScript;SQL
+45390,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+45391,C#;HTML/CSS;JavaScript;Python;TypeScript
+45392,Bash/Shell/PowerShell;C;C++;Python
+45393,HTML/CSS;JavaScript;PHP;SQL
+45394,C;C++;C#;Erlang
+45395,HTML/CSS;JavaScript;PHP;Swift
+45396,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+45397,HTML/CSS;JavaScript
+45398,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;WebAssembly
+45399,C;HTML/CSS;JavaScript;Python
+45400,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+45401,C#;JavaScript;Python
+45402,HTML/CSS;Java;JavaScript
+45403,C++;HTML/CSS;Java;SQL
+45404,Assembly;Bash/Shell/PowerShell
+45405,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+45406,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+45407,Python
+45408,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+45409,HTML/CSS;JavaScript;PHP;SQL
+45410,C;Python;Rust
+45411,JavaScript
+45412,SQL;VBA
+45413,Go;HTML/CSS;Java;JavaScript;Python;Rust
+45414,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+45415,HTML/CSS;JavaScript;SQL
+45416,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+45417,Java;SQL
+45418,Java;Python;Scala;SQL;Swift
+45419,Go;Python;Other(s):
+45420,C;C++;C#;Go;Java;PHP;Python;SQL
+45421,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+45422,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+45423,HTML/CSS;Java;JavaScript;SQL
+45425,Bash/Shell/PowerShell;C++;Java;JavaScript
+45426,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+45427,Bash/Shell/PowerShell;C#;Python;SQL;WebAssembly
+45428,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+45429,HTML/CSS;Java;JavaScript;PHP;SQL
+45430,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+45431,C#;HTML/CSS;JavaScript;Python;SQL
+45432,Python;R;SQL
+45433,C#;HTML/CSS;JavaScript
+45434,C;HTML/CSS;Java;JavaScript;Python
+45435,Bash/Shell/PowerShell;C++;C#;HTML/CSS;PHP;SQL
+45436,Elixir;Python
+45437,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+45438,C#;HTML/CSS;JavaScript;SQL
+45439,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python
+45440,Bash/Shell/PowerShell;C++;Objective-C;Swift
+45441,C#;HTML/CSS;JavaScript
+45442,C#;Kotlin;Python
+45443,HTML/CSS
+45444,C;C++;Java;PHP
+45445,Bash/Shell/PowerShell;C;C++;Java;JavaScript;TypeScript
+45446,Python
+45447,C#;HTML/CSS;JavaScript;PHP;SQL
+45448,R
+45449,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+45450,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+45451,C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+45452,HTML/CSS;Java
+45453,Bash/Shell/PowerShell;Java
+45454,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+45455,JavaScript
+45456,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;WebAssembly
+45457,C;Python
+45458,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+45459,Assembly;C++;HTML/CSS;JavaScript;TypeScript
+45460,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;SQL
+45461,Bash/Shell/PowerShell;Elixir;PHP;Python;SQL
+45462,C#;SQL
+45463,Go;HTML/CSS;JavaScript;Ruby
+45464,HTML/CSS;JavaScript;PHP;Python;R;SQL
+45465,C++;Go;Java;Python
+45466,Bash/Shell/PowerShell;Clojure;Go
+45467,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Ruby
+45468,Python
+45469,Java;JavaScript;PHP;TypeScript
+45470,C;C++;Java;Python;Other(s):
+45471,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+45472,HTML/CSS;JavaScript;Python;SQL;TypeScript
+45473,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;Rust;Other(s):
+45474,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+45475,HTML/CSS;Java;JavaScript;TypeScript
+45476,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+45477,Bash/Shell/PowerShell;Python;R
+45478,C;HTML/CSS;Java;Kotlin
+45479,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+45480,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Kotlin;SQL
+45481,Go;Java;JavaScript;Rust;TypeScript
+45482,HTML/CSS;JavaScript;PHP;SQL
+45483,C#;HTML/CSS;Java;SQL
+45484,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+45485,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+45486,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+45487,C++;JavaScript;WebAssembly
+45488,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+45489,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+45490,C#;SQL
+45491,R
+45492,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+45493,C++;C#;Java
+45494,JavaScript;Python
+45495,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;Other(s):
+45496,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+45497,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45498,Java;SQL;Other(s):
+45499,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+45500,Java;Objective-C;Python;Ruby
+45501,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+45502,C;C++;Java;JavaScript
+45503,Bash/Shell/PowerShell;C++;Java;Python
+45504,HTML/CSS;Java;JavaScript;PHP;SQL
+45505,Bash/Shell/PowerShell;C++;C#;SQL
+45506,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+45507,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python
+45508,Bash/Shell/PowerShell;Dart;Elixir;HTML/CSS;Java;JavaScript;Python
+45509,C;C++;Elixir;Java;Ruby
+45510,C#;Elixir;HTML/CSS;JavaScript;Python;Ruby
+45511,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;Ruby;SQL
+45512,C++
+45513,HTML/CSS;Java
+45514,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+45515,HTML/CSS;JavaScript;PHP;Python;SQL
+45516,HTML/CSS;JavaScript;PHP;SQL
+45517,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45518,C++;C#;JavaScript
+45519,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45520,Java;JavaScript
+45521,HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+45522,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+45523,HTML/CSS;JavaScript;Ruby;SQL
+45524,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+45525,C#;HTML/CSS;Java;JavaScript;Python;SQL
+45526,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+45528,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+45529,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+45530,HTML/CSS;JavaScript
+45531,Assembly;C;C++;HTML/CSS;Java
+45532,Bash/Shell/PowerShell;Java;Scala
+45533,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+45534,Bash/Shell/PowerShell;C;C++;Java;Python
+45535,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+45536,Bash/Shell/PowerShell;C;C#;JavaScript
+45537,Assembly;C;C++;C#;Clojure;Dart;Java;Python
+45538,C#;SQL;VBA
+45539,Bash/Shell/PowerShell;C++;Python
+45540,Bash/Shell/PowerShell;Python;Other(s):
+45541,Bash/Shell/PowerShell;Go;Rust;Scala
+45542,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;Other(s):
+45543,JavaScript;Python;SQL
+45544,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+45545,C#;SQL
+45546,HTML/CSS;JavaScript;PHP
+45547,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+45548,JavaScript;Python
+45549,Java;Scala;SQL
+45550,Elixir;Go;JavaScript;Python;Ruby;Other(s):
+45551,Bash/Shell/PowerShell;C;C++;Python
+45552,HTML/CSS;JavaScript;PHP;Python;SQL
+45553,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+45554,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+45555,Python
+45556,C#;HTML/CSS;JavaScript;SQL
+45557,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+45558,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+45559,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+45560,Bash/Shell/PowerShell;Python
+45561,Java;JavaScript;R
+45562,Java
+45563,C++;C#;HTML/CSS;Java;JavaScript;PHP
+45564,HTML/CSS;JavaScript;PHP
+45565,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+45566,Bash/Shell/PowerShell;Python;R;SQL
+45567,Bash/Shell/PowerShell;Go
+45568,Assembly;C++;C#;HTML/CSS;Java;Python;SQL
+45569,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+45570,C#;JavaScript;SQL;VBA
+45571,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;Other(s):
+45573,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+45576,Bash/Shell/PowerShell;Java;Python;SQL
+45577,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45578,JavaScript;PHP;Python;Other(s):
+45579,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+45580,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+45581,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+45582,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+45583,C;C++;C#;HTML/CSS;Python;SQL
+45584,Dart;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+45585,Bash/Shell/PowerShell;C;C#;Objective-C;Swift
+45586,C#;Erlang;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+45587,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift
+45588,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+45589,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+45590,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+45591,Bash/Shell/PowerShell;Ruby;SQL
+45592,HTML/CSS;JavaScript;PHP;Python
+45593,Assembly;HTML/CSS;JavaScript;TypeScript
+45594,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+45595,Java;JavaScript;Python
+45596,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+45597,C;HTML/CSS;Java;JavaScript;TypeScript
+45598,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+45599,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+45600,C#;Go;JavaScript;SQL
+45601,HTML/CSS;JavaScript;PHP
+45602,Bash/Shell/PowerShell;C;Rust;SQL
+45603,HTML/CSS;Java;JavaScript;SQL;TypeScript
+45604,C;Java;JavaScript;PHP;TypeScript
+45605,JavaScript;PHP;SQL;Swift
+45606,Bash/Shell/PowerShell;C++;Java;Other(s):
+45607,Dart;HTML/CSS;JavaScript;TypeScript
+45608,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+45609,C;C++;Java
+45610,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;Python;TypeScript
+45611,C#;HTML/CSS;JavaScript;PHP;SQL
+45612,HTML/CSS;JavaScript;PHP;SQL
+45613,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+45614,Bash/Shell/PowerShell;C;Java;Python
+45615,HTML/CSS;JavaScript;PHP;SQL
+45616,Java;Kotlin;Python;R;SQL
+45617,C++;Java;Python
+45618,C++;C#;HTML/CSS;JavaScript
+45619,Bash/Shell/PowerShell;Java
+45620,Swift
+45621,Python;SQL
+45622,HTML/CSS;JavaScript;Ruby;TypeScript
+45623,Bash/Shell/PowerShell;Python
+45624,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45625,HTML/CSS;JavaScript;Kotlin;PHP;SQL
+45626,C++;Java
+45627,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Rust
+45628,Bash/Shell/PowerShell;Python
+45629,C++;C#;Java;JavaScript;Python
+45630,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45631,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby
+45632,Bash/Shell/PowerShell;HTML/CSS;PHP
+45633,HTML/CSS;JavaScript;PHP;SQL
+45634,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45635,Assembly;C;C++;C#;HTML/CSS;Java;PHP;SQL
+45636,HTML/CSS;JavaScript;PHP;SQL
+45637,Python
+45638,HTML/CSS;JavaScript;PHP;Python;Ruby;VBA
+45639,C;Python
+45640,JavaScript;PHP;Ruby;SQL
+45641,HTML/CSS;Java;JavaScript;PHP;TypeScript
+45642,C#;Elixir;HTML/CSS;Java;TypeScript
+45643,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL;TypeScript
+45644,C#;JavaScript
+45645,Python
+45646,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+45647,Assembly;Bash/Shell/PowerShell;HTML/CSS;Python
+45648,C#;SQL
+45649,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+45650,C#;HTML/CSS;Java;JavaScript;PHP
+45651,HTML/CSS;Java;JavaScript;SQL;TypeScript
+45652,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;Other(s):
+45653,Go;Scala
+45654,C++;HTML/CSS;JavaScript;Python;TypeScript
+45655,HTML/CSS;JavaScript;PHP;SQL
+45656,HTML/CSS;JavaScript
+45657,C#;HTML/CSS;JavaScript;PHP;TypeScript
+45658,Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;JavaScript;Python;R;Ruby;Rust;SQL
+45659,C#;HTML/CSS;JavaScript;SQL
+45660,Bash/Shell/PowerShell;Java;Python;Ruby;Other(s):
+45661,Bash/Shell/PowerShell;Python;SQL
+45662,Bash/Shell/PowerShell;Python
+45663,C#
+45664,Bash/Shell/PowerShell;Elixir;Erlang;Go;Python;R;Ruby;Rust;SQL;WebAssembly
+45665,Java;Kotlin
+45666,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+45667,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+45668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+45669,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;TypeScript
+45670,SQL
+45671,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+45672,Bash/Shell/PowerShell;C;C++;Python
+45673,C#;JavaScript
+45674,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45675,Bash/Shell/PowerShell;Java;SQL;TypeScript
+45676,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL;Other(s):
+45677,C++;C#;HTML/CSS;JavaScript;Objective-C;Swift
+45678,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+45679,C;JavaScript
+45680,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+45681,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+45682,Dart;HTML/CSS;Java;JavaScript;PHP
+45683,HTML/CSS;Java;SQL
+45684,Assembly;C++;Java;Python;R
+45685,Bash/Shell/PowerShell;HTML/CSS;Python
+45686,Java;Kotlin;Ruby
+45687,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;TypeScript
+45688,HTML/CSS;JavaScript;TypeScript
+45689,HTML/CSS;Python;SQL
+45690,Other(s):
+45691,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45692,Swift
+45693,HTML/CSS;JavaScript;PHP
+45694,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+45695,C++;Dart;Java;Kotlin;SQL
+45696,C++;C#;Java
+45697,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+45698,HTML/CSS;Java;JavaScript
+45699,HTML/CSS;Java;JavaScript;Kotlin;SQL
+45700,HTML/CSS;JavaScript;PHP;SQL
+45701,Bash/Shell/PowerShell;Go;JavaScript;Python;Rust;SQL;Other(s):
+45702,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+45703,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL
+45704,C#;SQL;Other(s):
+45705,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+45706,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+45707,HTML/CSS;JavaScript
+45708,JavaScript;PHP;SQL
+45709,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+45710,HTML/CSS;JavaScript;TypeScript
+45711,Java;JavaScript;Kotlin
+45712,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+45713,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;WebAssembly;Other(s):
+45714,HTML/CSS;Java;JavaScript;SQL;Other(s):
+45715,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+45716,Bash/Shell/PowerShell;JavaScript;Python;SQL
+45717,C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+45718,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+45719,Dart;HTML/CSS;JavaScript;PHP
+45720,C++;JavaScript;Python;TypeScript
+45721,HTML/CSS;JavaScript;Python;SQL;TypeScript
+45722,Assembly;Bash/Shell/PowerShell;C++;Python;Other(s):
+45724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+45725,C#;HTML/CSS;JavaScript;TypeScript
+45726,Assembly;C;C++;C#;Go;HTML/CSS;PHP;Python;SQL;VBA
+45727,Bash/Shell/PowerShell;JavaScript;Python;Ruby;Other(s):
+45728,Python
+45729,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45730,HTML/CSS;JavaScript;SQL;TypeScript
+45731,C#;HTML/CSS;JavaScript;SQL
+45733,HTML/CSS;JavaScript;Ruby;TypeScript
+45734,HTML/CSS;JavaScript
+45736,C;C++;C#;HTML/CSS;JavaScript;Python
+45737,Bash/Shell/PowerShell;Java;JavaScript
+45738,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+45739,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45740,Assembly;C;HTML/CSS;JavaScript;PHP;Python
+45741,Bash/Shell/PowerShell;C;C++
+45742,Bash/Shell/PowerShell;C;Java;Python
+45743,HTML/CSS;JavaScript;PHP
+45744,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+45745,C;C++;C#;HTML/CSS;Java;SQL;VBA
+45746,HTML/CSS;JavaScript;Python;SQL;Other(s):
+45748,HTML/CSS;JavaScript
+45749,HTML/CSS;PHP;Python;SQL
+45750,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+45751,C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;VBA
+45752,Assembly;HTML/CSS;JavaScript;PHP
+45753,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+45754,HTML/CSS;JavaScript;PHP
+45755,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Swift
+45756,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45757,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+45758,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+45759,Java;Scala;SQL
+45761,HTML/CSS;Java;JavaScript;TypeScript
+45762,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+45763,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+45764,HTML/CSS;Java;JavaScript;SQL
+45765,HTML/CSS;JavaScript
+45766,HTML/CSS;JavaScript;PHP;TypeScript
+45767,Elixir;Erlang;Go;Ruby
+45768,Assembly;C;C++;C#;Python;Rust
+45769,Assembly;C#;JavaScript
+45770,JavaScript
+45771,Swift
+45772,C#;HTML/CSS;Java;JavaScript;SQL
+45773,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45774,C;Java;SQL
+45775,Bash/Shell/PowerShell;C;C++;Java
+45776,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45777,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+45778,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+45779,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+45780,Assembly;C;C++;C#;HTML/CSS;Java;PHP
+45781,HTML/CSS;Java;JavaScript;Python;TypeScript
+45782,Java
+45783,C#;SQL
+45784,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R
+45785,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;Swift;TypeScript;WebAssembly
+45786,HTML/CSS;JavaScript;TypeScript
+45787,C;C++;C#;JavaScript;Other(s):
+45789,C++;Kotlin;Swift
+45790,C#;HTML/CSS;JavaScript
+45791,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+45792,Assembly;Bash/Shell/PowerShell;C;Java;Python;Other(s):
+45793,Assembly;HTML/CSS;JavaScript;PHP;SQL
+45794,C;C++;HTML/CSS;Python;Other(s):
+45795,HTML/CSS;JavaScript;PHP;TypeScript
+45796,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+45797,R;SQL;VBA
+45798,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+45799,Bash/Shell/PowerShell;C#;SQL;Other(s):
+45800,C;HTML/CSS;JavaScript
+45801,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript
+45802,JavaScript;PHP;SQL
+45803,C;C++;Java;JavaScript;PHP;SQL
+45804,Bash/Shell/PowerShell;Go;Java;Python
+45805,Dart;Go;HTML/CSS;TypeScript
+45806,Bash/Shell/PowerShell;C;JavaScript;Python;TypeScript;Other(s):
+45807,C++;Python;SQL
+45808,HTML/CSS;Java;JavaScript
+45809,C#;HTML/CSS;Java;Kotlin;SQL;Swift
+45810,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+45811,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL
+45812,HTML/CSS;Python
+45813,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+45814,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+45815,C++;C#;Java;Kotlin
+45816,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+45817,HTML/CSS;JavaScript;PHP;Swift
+45818,Bash/Shell/PowerShell;C#;JavaScript
+45819,HTML/CSS;JavaScript;SQL
+45820,Bash/Shell/PowerShell;C;C++;C#;Python
+45821,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+45822,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+45823,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+45824,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+45825,C;C++;Python
+45826,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45827,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript
+45828,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+45829,JavaScript;Objective-C;SQL;Swift
+45830,C#;HTML/CSS;Kotlin;Objective-C;PHP;SQL
+45831,C#;HTML/CSS;JavaScript;SQL;VBA
+45832,C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;Swift;TypeScript
+45833,C;C++;Python
+45834,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+45835,Assembly;Bash/Shell/PowerShell;C;C#;Go;Kotlin;Python;Ruby;SQL
+45837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+45838,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby
+45839,Python
+45840,Bash/Shell/PowerShell;C#;Go;SQL
+45841,Assembly;Bash/Shell/PowerShell;C;Go;Java;Python
+45842,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45843,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+45844,HTML/CSS;JavaScript;Python
+45845,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+45846,Java;JavaScript;Other(s):
+45847,Java;Kotlin
+45848,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+45849,HTML/CSS;JavaScript;PHP
+45850,C#;HTML/CSS;Java;JavaScript;SQL
+45851,C;C++;HTML/CSS;Java;JavaScript
+45852,Java;SQL
+45853,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+45854,JavaScript;PHP
+45855,HTML/CSS;JavaScript;PHP;SQL
+45856,C;C++;Python
+45857,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;TypeScript
+45858,Assembly;C;Elixir;Erlang;Python;SQL
+45859,C;C++;Objective-C
+45860,Objective-C;Swift
+45861,Bash/Shell/PowerShell;Java;JavaScript;SQL
+45862,HTML/CSS;JavaScript;Kotlin;Python
+45863,Java;Kotlin;Python;SQL
+45864,HTML/CSS;JavaScript;TypeScript
+45865,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+45866,Go;HTML/CSS;JavaScript;PHP;SQL
+45867,HTML/CSS;Java;JavaScript;PHP;TypeScript
+45868,Assembly;C;C++;HTML/CSS;JavaScript;Python
+45869,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45870,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45871,C#;Java;Kotlin
+45872,C#;HTML/CSS;JavaScript;SQL;TypeScript
+45873,C;HTML/CSS;Java;JavaScript;Python;SQL
+45874,Assembly;Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;Other(s):
+45875,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+45876,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+45877,C#;HTML/CSS;Java;PHP;Python;SQL
+45878,C;C++;C#;HTML/CSS;JavaScript;SQL
+45879,HTML/CSS;Java;JavaScript
+45880,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Kotlin
+45881,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+45882,HTML/CSS;JavaScript;PHP;SQL
+45883,C#;HTML/CSS;JavaScript;SQL;VBA
+45884,HTML/CSS;Java;JavaScript
+45885,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;WebAssembly
+45886,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+45887,C++;JavaScript;Python;SQL
+45888,HTML/CSS;JavaScript;PHP;Python;SQL
+45889,C#
+45890,C#
+45891,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;SQL;TypeScript
+45892,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+45893,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+45894,HTML/CSS;JavaScript;PHP
+45895,C;C++;C#;Java;PHP;SQL
+45897,HTML/CSS;Java;JavaScript;SQL;TypeScript
+45898,Java;Python
+45899,C++;R;SQL
+45900,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+45901,Swift
+45902,C;C++;Java;Kotlin
+45903,Java;Python;TypeScript
+45904,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;SQL;VBA
+45905,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+45906,C++;C#;HTML/CSS;Java
+45907,HTML/CSS;JavaScript;PHP;Python;SQL
+45908,Java;Kotlin
+45909,Bash/Shell/PowerShell;Java;Python
+45910,Bash/Shell/PowerShell;C++;Objective-C;Python;Swift
+45911,C#;JavaScript;SQL;TypeScript
+45912,HTML/CSS;JavaScript;PHP;SQL
+45913,Java
+45914,Java;Python;SQL;Other(s):
+45915,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+45916,C#
+45917,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java
+45918,HTML/CSS;JavaScript
+45919,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;Rust;SQL
+45920,HTML/CSS;Java
+45921,Java;JavaScript
+45922,Bash/Shell/PowerShell;Go;SQL
+45923,C;C++;JavaScript
+45924,C;C++;Python
+45925,C++;HTML/CSS;Java
+45926,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+45927,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+45928,C++;Dart;HTML/CSS;PHP;Python;Ruby
+45929,Go;HTML/CSS;Java;JavaScript;PHP;Python
+45930,C#;HTML/CSS;JavaScript;SQL
+45931,Java;SQL
+45932,HTML/CSS;Java;JavaScript;Python
+45933,Bash/Shell/PowerShell;Java;Kotlin;Python;Scala;Swift
+45934,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+45935,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+45936,HTML/CSS;PHP;Python;TypeScript
+45937,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;JavaScript;PHP;TypeScript
+45938,Bash/Shell/PowerShell
+45939,C#;Python;SQL
+45940,JavaScript;Python
+45941,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+45942,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python
+45943,C#;Java;Ruby;SQL
+45944,C#;SQL;VBA
+45945,C++;Java;JavaScript;PHP;Python
+45946,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+45947,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+45948,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45949,C;PHP
+45950,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+45951,Bash/Shell/PowerShell;Java;JavaScript
+45953,Python;R
+45954,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+45956,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+45957,C#;HTML/CSS;JavaScript;TypeScript
+45958,C#;HTML/CSS;JavaScript;Python;SQL
+45959,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+45960,HTML/CSS;Java;JavaScript;PHP;SQL
+45961,C#
+45962,C#;Elixir;Go;JavaScript;PHP;TypeScript
+45963,JavaScript;Other(s):
+45964,JavaScript;SQL;Other(s):
+45965,Swift
+45966,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+45967,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+45968,Bash/Shell/PowerShell;C;C++;Python;R;Swift;Other(s):
+45969,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+45970,Elixir;HTML/CSS;JavaScript;Ruby;Swift
+45971,C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+45972,HTML/CSS;JavaScript
+45973,HTML/CSS;Python;Rust
+45974,Bash/Shell/PowerShell;HTML/CSS;Python
+45975,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+45976,C#;HTML/CSS;Java;JavaScript;SQL
+45977,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+45978,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+45979,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+45980,R;SQL
+45981,C;C++;HTML/CSS;Java;JavaScript;PHP;Rust
+45982,C++;C#;HTML/CSS;Java;JavaScript;SQL
+45983,C#;HTML/CSS;JavaScript
+45984,C#;Java;JavaScript;Python;Other(s):
+45985,Java;JavaScript
+45986,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+45987,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Other(s):
+45988,Go;JavaScript
+45989,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+45990,HTML/CSS;PHP
+45991,C;C++;JavaScript;Rust
+45992,Elixir;Go;JavaScript;Ruby;SQL
+45993,C#;HTML/CSS;JavaScript;SQL
+45994,C#;HTML/CSS;JavaScript;TypeScript
+45995,C++;Java;Python
+45996,Bash/Shell/PowerShell;JavaScript;Python
+45997,Java;JavaScript;SQL;TypeScript
+45998,JavaScript;Other(s):
+45999,C#;HTML/CSS;JavaScript;SQL;VBA
+46000,JavaScript
+46001,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+46002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+46003,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+46004,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;SQL
+46005,C#;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+46006,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+46007,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+46008,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46009,Python;R
+46010,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+46011,C#;SQL
+46012,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Rust;WebAssembly
+46013,Bash/Shell/PowerShell;Dart;Java
+46014,Python;Ruby;SQL;Swift
+46015,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+46016,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+46017,HTML/CSS;Java;JavaScript;TypeScript
+46018,Bash/Shell/PowerShell;C;C++;Go
+46019,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+46020,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+46021,Python
+46022,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+46023,C;C#;Dart;HTML/CSS;JavaScript;PHP;SQL;Swift
+46024,Java;Scala;SQL;TypeScript
+46025,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+46026,Bash/Shell/PowerShell;C#;Ruby
+46027,Bash/Shell/PowerShell;C++;Go;Python
+46028,Bash/Shell/PowerShell;C++;Python
+46029,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+46030,C++;HTML/CSS;JavaScript;Python;SQL;Swift
+46031,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+46032,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+46033,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+46034,Java
+46035,Java;JavaScript;Python;Other(s):
+46036,C++;HTML/CSS;JavaScript;Other(s):
+46037,JavaScript;TypeScript
+46038,HTML/CSS;JavaScript;TypeScript
+46039,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP
+46040,Assembly;HTML/CSS;JavaScript;PHP;SQL
+46041,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46042,Bash/Shell/PowerShell;C;C++;C#;Python
+46043,Java;Scala
+46044,C#;HTML/CSS;JavaScript
+46045,HTML/CSS;PHP;Python;SQL
+46046,C;C++;HTML/CSS;JavaScript;Python;Other(s):
+46047,C;C#;HTML/CSS;Python;SQL;VBA
+46048,Java;Python;SQL
+46049,HTML/CSS;Java;PHP;SQL
+46050,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+46051,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46052,Assembly;Python
+46053,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+46054,Java;Python
+46055,C#;Java;SQL
+46056,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46057,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+46060,Assembly;HTML/CSS;JavaScript;PHP;TypeScript
+46061,Elixir;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+46062,HTML/CSS;JavaScript;Python
+46063,Bash/Shell/PowerShell;HTML/CSS;PHP;Other(s):
+46064,HTML/CSS;JavaScript;PHP;Ruby;SQL
+46065,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+46066,HTML/CSS;Java;TypeScript
+46067,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Scala
+46068,HTML/CSS;JavaScript;PHP;Python;SQL
+46069,Assembly;C;Python;Rust
+46070,C++;Elixir;HTML/CSS;Java;Python;SQL
+46071,C;Java;PHP
+46072,JavaScript;Python;SQL;TypeScript
+46073,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+46074,C++;Other(s):
+46075,C;HTML/CSS
+46076,HTML/CSS;PHP;Python;SQL
+46077,C#;HTML/CSS;JavaScript;TypeScript
+46078,HTML/CSS;JavaScript;TypeScript
+46079,C++;C#;JavaScript;Python
+46080,C#
+46081,HTML/CSS;Java;JavaScript;SQL
+46082,Bash/Shell/PowerShell;Go;Python
+46083,Bash/Shell/PowerShell;Go;Java;Python;SQL
+46084,HTML/CSS;JavaScript;PHP
+46085,Bash/Shell/PowerShell;Python;SQL
+46086,Bash/Shell/PowerShell;Go;Java;Python
+46087,HTML/CSS;JavaScript
+46088,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+46089,Assembly;Bash/Shell/PowerShell;C;Erlang;Go;HTML/CSS;JavaScript;Ruby;Rust;SQL;Other(s):
+46090,Bash/Shell/PowerShell;Elixir;Erlang;Go;Python;SQL
+46091,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Rust
+46092,C;HTML/CSS;Objective-C;PHP
+46093,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+46094,C;C++;C#;Dart;HTML/CSS;JavaScript;Kotlin;Objective-C;SQL;Swift
+46095,C;HTML/CSS;JavaScript;PHP;SQL
+46096,C#;HTML/CSS;JavaScript;SQL
+46097,HTML/CSS;PHP;Python;VBA
+46098,HTML/CSS;JavaScript;PHP;Python
+46099,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;JavaScript;PHP
+46100,Bash/Shell/PowerShell;C;C++;HTML/CSS;Kotlin;Python
+46101,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46102,Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+46103,JavaScript
+46104,HTML/CSS;JavaScript;PHP;Ruby;SQL
+46105,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+46106,Java;JavaScript;Kotlin
+46107,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+46108,HTML/CSS;Java;JavaScript;Python
+46109,Assembly;JavaScript;Ruby
+46110,HTML/CSS;JavaScript;PHP
+46111,HTML/CSS;Java;JavaScript;PHP;Python
+46112,Assembly;Bash/Shell/PowerShell;C;Other(s):
+46113,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;Rust
+46114,C;C++;Python;Other(s):
+46115,JavaScript;Python
+46116,SQL;VBA
+46117,Bash/Shell/PowerShell;Dart;Java;Python;SQL
+46118,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+46119,Bash/Shell/PowerShell;F#;HTML/CSS;Java;JavaScript;Python;Swift;VBA
+46120,HTML/CSS;JavaScript;PHP;SQL
+46121,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+46122,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;Python;R;Scala;SQL
+46123,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Python
+46124,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+46125,Go;HTML/CSS;JavaScript
+46126,Assembly;C;C++;Java;JavaScript;Kotlin;Python
+46127,HTML/CSS;Java;JavaScript;SQL
+46128,Java;JavaScript;R;SQL;TypeScript
+46129,Dart;Elixir;HTML/CSS;JavaScript;PHP;Python
+46130,Java
+46131,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+46132,Java;JavaScript;PHP
+46133,C;C++;C#;Go;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript;VBA
+46134,Java
+46135,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+46136,Bash/Shell/PowerShell
+46137,R
+46138,HTML/CSS;Java;JavaScript;TypeScript
+46139,Assembly;Bash/Shell/PowerShell;C;C++;C#
+46140,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+46141,C++;Python
+46142,HTML/CSS;JavaScript
+46143,HTML/CSS;JavaScript;Python
+46144,Bash/Shell/PowerShell;C;JavaScript;Python;SQL
+46145,C;HTML/CSS;JavaScript;PHP;Python
+46146,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+46147,Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+46148,C#;HTML/CSS;Java;JavaScript;PHP;Python
+46149,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;Swift
+46150,C;Python;SQL
+46151,HTML/CSS;Java;JavaScript;Kotlin;SQL
+46152,HTML/CSS;JavaScript;PHP;SQL
+46153,Bash/Shell/PowerShell;Python;SQL;VBA
+46154,HTML/CSS;JavaScript;PHP;Other(s):
+46155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+46156,Java;JavaScript;Python
+46157,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+46158,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+46159,Java;Python;TypeScript;VBA
+46160,HTML/CSS;JavaScript;Python;Other(s):
+46161,HTML/CSS;Java;JavaScript;PHP;Ruby
+46162,HTML/CSS;JavaScript;Ruby
+46163,C;C#;Java;JavaScript;Python;SQL;TypeScript
+46164,C#;Dart;HTML/CSS;JavaScript;Kotlin;PHP;TypeScript
+46165,Assembly;C;C++;C#;Java
+46166,SQL
+46167,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+46168,C#;SQL
+46169,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46170,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP
+46171,C#;HTML/CSS;SQL;TypeScript
+46172,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+46173,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+46174,HTML/CSS;JavaScript;PHP;SQL
+46175,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+46176,C#;HTML/CSS;JavaScript;TypeScript
+46177,Bash/Shell/PowerShell;HTML/CSS;PHP
+46178,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+46179,Assembly;C;HTML/CSS;Python;Other(s):
+46181,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+46182,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;PHP;Python;Ruby;Scala;SQL;VBA
+46183,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;SQL
+46184,C++;HTML/CSS;PHP;SQL
+46185,Dart;Java;JavaScript;Kotlin;Rust;TypeScript
+46186,Python
+46187,Bash/Shell/PowerShell;C;C++;C#
+46188,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala
+46189,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46190,C#;HTML/CSS;JavaScript;SQL
+46191,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+46192,C#;HTML/CSS;JavaScript;SQL
+46193,C#;F#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46194,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+46195,Java;JavaScript;Swift
+46196,C#;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+46197,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+46198,Java;JavaScript
+46199,HTML/CSS;JavaScript;PHP
+46200,Python;R;SQL
+46201,Python;R;SQL;Other(s):
+46202,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+46203,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+46204,Bash/Shell/PowerShell;C#;Java;Python
+46205,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+46206,Assembly;C;Java
+46208,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+46209,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46210,C#;HTML/CSS;Java;JavaScript
+46211,Java;Kotlin;Ruby;Rust;SQL
+46212,C#;Other(s):
+46213,C++
+46214,Bash/Shell/PowerShell;C;Python
+46215,C++;C#;SQL
+46217,C++;C#;HTML/CSS;Java;JavaScript;PHP
+46218,C;Java;JavaScript;PHP;SQL
+46219,Go;HTML/CSS;Java;JavaScript
+46220,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46221,C#;JavaScript;TypeScript
+46222,C#;HTML/CSS;JavaScript;R;SQL
+46223,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46224,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+46225,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+46226,C#;HTML/CSS;JavaScript;SQL
+46227,HTML/CSS;JavaScript;Python
+46228,C++
+46229,HTML/CSS;Java;JavaScript
+46230,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+46231,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+46232,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46233,Bash/Shell/PowerShell;Objective-C;Swift
+46234,C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Other(s):
+46235,Java;Kotlin;PHP;Swift;Other(s):
+46236,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+46237,Bash/Shell/PowerShell;C++
+46238,C#;HTML/CSS;JavaScript;SQL
+46239,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+46240,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+46241,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+46242,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+46243,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46244,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+46245,Objective-C;SQL;Swift
+46246,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+46247,JavaScript;PHP
+46248,C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+46249,Java;JavaScript;Python;SQL;Swift
+46250,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+46251,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+46252,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;R;Other(s):
+46253,Bash/Shell/PowerShell;C;Java;Python;Scala;SQL
+46254,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+46255,Python
+46256,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+46257,C#;HTML/CSS;JavaScript;PHP;SQL
+46258,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+46259,Dart;JavaScript
+46260,C#;Java;JavaScript
+46261,Python;R
+46262,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+46263,Bash/Shell/PowerShell;JavaScript;Python;R
+46264,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+46265,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;TypeScript
+46266,HTML/CSS;JavaScript;SQL;TypeScript
+46267,HTML/CSS;Java;JavaScript;SQL
+46269,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;TypeScript
+46270,C;C++;Other(s):
+46271,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+46272,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46273,HTML/CSS;JavaScript;TypeScript
+46275,Bash/Shell/PowerShell;HTML/CSS;Java;Scala;SQL;TypeScript
+46276,Python
+46277,C#;HTML/CSS;Java;PHP;Python;SQL
+46278,Assembly;SQL;TypeScript
+46279,HTML/CSS;JavaScript;PHP;SQL
+46280,Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+46281,Java;JavaScript;Kotlin
+46282,C#;HTML/CSS;Java;Kotlin
+46283,SQL;Other(s):
+46284,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+46285,HTML/CSS;JavaScript;PHP;Python;SQL
+46286,C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+46287,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+46288,Bash/Shell/PowerShell;Python
+46289,Python;SQL
+46290,Java;JavaScript;TypeScript
+46291,HTML/CSS;Java;JavaScript;Kotlin;Scala;TypeScript
+46292,Bash/Shell/PowerShell;Python;SQL
+46293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+46294,C#;HTML/CSS;JavaScript;Python
+46295,C;C++;SQL;Other(s):
+46297,Bash/Shell/PowerShell;C#;Java;Scala;Swift
+46298,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+46299,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+46300,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+46301,Bash/Shell/PowerShell;C++;Python
+46302,HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+46304,C++;C#;HTML/CSS;Java;Python;SQL
+46305,Python
+46306,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+46307,HTML/CSS;JavaScript
+46308,HTML/CSS;Java;JavaScript
+46309,C#;JavaScript;Python;Ruby
+46310,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46311,C++;C#;HTML/CSS;JavaScript;Python
+46312,Bash/Shell/PowerShell;Python;Scala;SQL
+46313,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;Python;Other(s):
+46314,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+46315,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R
+46316,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+46317,HTML/CSS;Python
+46318,C#
+46319,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46320,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+46321,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript
+46322,C;C++
+46323,HTML/CSS;JavaScript;Python;Ruby;SQL
+46324,HTML/CSS;Java;JavaScript;SQL
+46325,Bash/Shell/PowerShell;Java
+46326,Bash/Shell/PowerShell;Python;SQL
+46327,C++;HTML/CSS;JavaScript;Python;Rust;Other(s):
+46328,Python
+46329,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+46330,Bash/Shell/PowerShell;C;Python;VBA;Other(s):
+46331,HTML/CSS;JavaScript
+46332,C;Java;Python;SQL;Swift
+46333,C#;Java;Objective-C
+46334,Bash/Shell/PowerShell;Python
+46335,Kotlin;SQL
+46336,Bash/Shell/PowerShell;C;C++;C#;Dart;Java;JavaScript;Python;Swift;TypeScript
+46337,Bash/Shell/PowerShell;C++;C#
+46338,HTML/CSS;JavaScript;Python
+46339,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+46340,Assembly;Bash/Shell/PowerShell;C;C++;Python
+46341,Assembly;C#;HTML/CSS;JavaScript;PHP;Python;R;VBA
+46342,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+46343,C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+46344,HTML/CSS;JavaScript;PHP;SQL;Swift
+46345,Erlang;JavaScript;Python;Other(s):
+46346,C++;Go;JavaScript;Python;Rust;TypeScript;Other(s):
+46347,Assembly;Go;HTML/CSS;PHP;SQL
+46348,HTML/CSS;JavaScript;SQL
+46349,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+46350,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+46351,C;C++;HTML/CSS;Java;SQL
+46352,HTML/CSS;JavaScript;PHP;SQL
+46353,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46354,C#;Java;Python;SQL
+46355,Python
+46356,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+46357,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;Kotlin;Python;SQL;VBA
+46358,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+46359,Python;Scala
+46360,Bash/Shell/PowerShell;C#;HTML/CSS;Python;R;VBA
+46361,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;Rust;SQL;VBA
+46362,HTML/CSS;Java;Python;SQL
+46363,HTML/CSS;JavaScript;VBA
+46364,C#;Go
+46365,Java;Python;SQL
+46366,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+46367,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+46368,HTML/CSS;JavaScript;PHP
+46369,HTML/CSS;Java;JavaScript;SQL
+46370,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+46371,Bash/Shell/PowerShell;Erlang;Go;Java;Python;R;SQL
+46372,Java;JavaScript;SQL
+46373,JavaScript
+46374,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46375,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+46376,Java;Kotlin
+46377,HTML/CSS;Java;JavaScript;SQL;TypeScript
+46378,HTML/CSS;Java;Python
+46379,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+46380,C#;HTML/CSS;Java;JavaScript;Python;SQL
+46383,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+46384,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+46385,Bash/Shell/PowerShell;C++;Python
+46386,C#
+46387,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+46388,Bash/Shell/PowerShell;C#;Python;Ruby
+46389,Go;Java;JavaScript;Python;Rust;Scala;SQL
+46390,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+46392,Bash/Shell/PowerShell;Go;HTML/CSS;PHP;Python;SQL;Other(s):
+46393,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;Other(s):
+46394,HTML/CSS;JavaScript;PHP;SQL
+46395,Assembly;HTML/CSS;JavaScript;PHP;SQL
+46396,HTML/CSS;Java;JavaScript;SQL
+46397,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46398,C;C++;HTML/CSS;Java;JavaScript;PHP;Other(s):
+46399,C#;Java;JavaScript;TypeScript
+46400,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+46401,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+46402,C;C++;C#;Python
+46403,Assembly;Python
+46404,C;Java;SQL
+46405,HTML/CSS;Java;JavaScript
+46406,Bash/Shell/PowerShell;C;C++;JavaScript;SQL
+46407,C#;Java;Python;SQL;Other(s):
+46408,C++;C#;Python
+46409,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+46410,HTML/CSS;Java;PHP
+46411,C#;HTML/CSS;PHP;Python;Other(s):
+46412,Go;HTML/CSS;JavaScript
+46413,C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+46414,C;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL;Other(s):
+46415,Dart;Java;Kotlin;SQL
+46416,C#;HTML/CSS;JavaScript;SQL
+46417,Bash/Shell/PowerShell;Python;Other(s):
+46418,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+46419,Bash/Shell/PowerShell;C;C++;Python
+46420,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript
+46421,C#;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+46422,Bash/Shell/PowerShell;C++;Go;Java
+46423,HTML/CSS;JavaScript;TypeScript
+46424,Java;JavaScript;SQL
+46425,C++;Other(s):
+46426,HTML/CSS;JavaScript;R;SQL
+46427,C;C++;Java;Kotlin;Python;Other(s):
+46428,HTML/CSS;Java;JavaScript;PHP;SQL
+46429,C#
+46430,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;VBA
+46431,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+46432,HTML/CSS;JavaScript;PHP;SQL
+46433,Bash/Shell/PowerShell;C++;Go;Java;Python
+46434,VBA
+46435,C#
+46436,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+46437,C;C++;C#;Java
+46438,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+46439,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46440,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+46441,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Swift
+46442,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+46443,Elixir;HTML/CSS;JavaScript;PHP;TypeScript
+46444,C++;F#;Ruby;Rust;Scala;WebAssembly
+46445,HTML/CSS;JavaScript;PHP;SQL
+46446,C#
+46447,C;C++;JavaScript;Python;Scala
+46448,HTML/CSS;JavaScript;Python;SQL
+46449,Java
+46450,C;HTML/CSS;JavaScript;Python;SQL
+46451,Bash/Shell/PowerShell;C++;C#;Other(s):
+46452,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+46453,C++;C#;HTML/CSS;JavaScript;SQL;VBA
+46454,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+46455,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+46456,C#;HTML/CSS;JavaScript;Python;SQL
+46457,Bash/Shell/PowerShell;C#;JavaScript;Ruby;SQL
+46458,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+46459,HTML/CSS;JavaScript;PHP;TypeScript
+46460,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+46461,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+46462,C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+46463,HTML/CSS;Java;JavaScript
+46464,C++;JavaScript
+46465,Java;Python;R
+46466,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+46467,Assembly;C;C++;Dart;Elixir;Erlang;Java;JavaScript;Objective-C;Ruby;TypeScript;WebAssembly
+46468,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46469,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+46470,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+46471,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46472,Go;JavaScript;Swift;TypeScript
+46473,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+46474,HTML/CSS;JavaScript;PHP;Python
+46475,Bash/Shell/PowerShell;C;C++;C#;Dart;F#;HTML/CSS;JavaScript;Python;TypeScript;VBA
+46476,HTML/CSS;Java;JavaScript;Python;TypeScript
+46477,C++;C#;Go;HTML/CSS;JavaScript;Python
+46478,Go;Java;JavaScript;Kotlin
+46479,Bash/Shell/PowerShell;Python
+46480,C++;HTML/CSS;Python;SQL
+46481,Bash/Shell/PowerShell;C++;C#;Python;Ruby
+46482,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+46483,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46484,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+46485,Java
+46486,Java;SQL
+46487,C#;JavaScript
+46488,HTML/CSS;JavaScript;PHP;SQL
+46489,Bash/Shell/PowerShell;C++;Python
+46490,HTML/CSS;JavaScript;Ruby
+46491,HTML/CSS;JavaScript;Python
+46492,C++;Python
+46493,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+46494,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46495,C;C++;C#;SQL;VBA
+46496,C++;C#;SQL;TypeScript
+46497,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+46498,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46499,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+46500,Bash/Shell/PowerShell;C;C++;Python
+46501,C#;JavaScript;SQL
+46502,HTML/CSS;Java;JavaScript;SQL;TypeScript
+46503,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Scala;SQL
+46504,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;TypeScript
+46505,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+46506,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Objective-C;Swift
+46507,JavaScript;PHP;SQL;TypeScript;VBA
+46508,C#;HTML/CSS;JavaScript;SQL;Swift
+46509,JavaScript;Ruby;SQL;TypeScript
+46510,HTML/CSS;Java;JavaScript;PHP;Python;Swift;TypeScript
+46511,JavaScript
+46512,Python;R;SQL;VBA;Other(s):
+46514,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Swift
+46515,C;C++
+46516,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46517,C;C++;Java
+46518,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+46519,Other(s):
+46520,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+46521,C++;HTML/CSS;JavaScript;Python;TypeScript
+46522,C#;HTML/CSS;JavaScript;TypeScript
+46523,Assembly;Bash/Shell/PowerShell;C;C++;Python
+46524,C#;HTML/CSS;JavaScript;Python
+46525,C;Java
+46526,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+46527,HTML/CSS;JavaScript
+46528,HTML/CSS;Python;R;SQL;VBA
+46529,Bash/Shell/PowerShell;C;JavaScript;PHP;Python
+46530,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+46531,Python
+46532,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+46533,Java;Kotlin
+46534,C#;HTML/CSS;Python;Ruby
+46535,C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+46536,JavaScript;PHP
+46537,R
+46538,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46539,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+46540,C++;C#;HTML/CSS;JavaScript;Python
+46541,C#;JavaScript;SQL;TypeScript
+46542,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+46544,C#;HTML/CSS;JavaScript;SQL
+46545,C#;HTML/CSS;TypeScript
+46546,C++;Go;Java;SQL
+46547,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+46548,C#
+46549,Assembly;C++;Python;R
+46550,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+46551,C#
+46552,HTML/CSS;JavaScript;Python
+46553,Java
+46554,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+46555,Java;JavaScript;Objective-C;Swift;TypeScript
+46556,C++;C#;HTML/CSS;Java;Kotlin;PHP;SQL
+46557,HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+46558,C++;C#;HTML/CSS;JavaScript;Python
+46559,HTML/CSS;JavaScript;SQL;Other(s):
+46560,C#;HTML/CSS;JavaScript;PHP;TypeScript
+46561,Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+46562,HTML/CSS;JavaScript;PHP
+46564,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+46565,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+46566,C#;SQL
+46567,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;VBA
+46568,Java;Kotlin
+46569,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46570,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;WebAssembly
+46571,Go;Ruby
+46572,HTML/CSS;PHP;SQL;Other(s):
+46573,C;C++;Python
+46574,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+46575,Java;JavaScript;TypeScript
+46576,Python
+46577,HTML/CSS;JavaScript;PHP;TypeScript
+46578,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;PHP;Python;SQL;VBA
+46579,C#;HTML/CSS;JavaScript;SQL
+46580,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+46581,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+46582,HTML/CSS;Java;Python
+46583,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+46584,Bash/Shell/PowerShell;Java;SQL
+46585,Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+46586,Bash/Shell/PowerShell;Elixir;Erlang;JavaScript;R;Ruby
+46587,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+46588,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+46589,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Swift;TypeScript
+46590,HTML/CSS;JavaScript;PHP
+46591,HTML/CSS;JavaScript;PHP;SQL
+46592,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+46593,Dart;HTML/CSS;JavaScript;SQL;TypeScript
+46594,C#;Dart;Go;HTML/CSS;Java;Kotlin;PHP;SQL
+46595,HTML/CSS;PHP;SQL
+46596,C;HTML/CSS;JavaScript;PHP;SQL
+46597,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+46598,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+46599,Bash/Shell/PowerShell;Java;Python;SQL
+46600,C;C++
+46601,JavaScript;Objective-C;Swift
+46602,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46603,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+46604,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+46605,Bash/Shell/PowerShell;Dart;JavaScript;Rust;TypeScript
+46606,Java;JavaScript;Python
+46607,HTML/CSS
+46608,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+46609,Go;HTML/CSS;JavaScript
+46610,HTML/CSS;JavaScript;Python;SQL;TypeScript
+46611,JavaScript;Rust
+46612,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+46613,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+46614,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46615,HTML/CSS;JavaScript;TypeScript
+46616,C#;Java;Python;SQL
+46617,C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+46618,C;C++;C#;F#;Java
+46619,C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+46620,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+46621,HTML/CSS;Java;Python;SQL;Other(s):
+46622,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46623,Java;Python
+46624,C++;C#;HTML/CSS;JavaScript;SQL
+46625,Go;HTML/CSS;JavaScript;TypeScript
+46626,Java;Scala
+46627,C#;HTML/CSS;PHP;SQL
+46628,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+46629,Bash/Shell/PowerShell;Python;Scala
+46630,HTML/CSS;JavaScript;PHP
+46631,Assembly;Bash/Shell/PowerShell;Java;Python
+46632,Objective-C;Swift
+46633,HTML/CSS;Java;JavaScript;SQL
+46634,Bash/Shell/PowerShell;F#;Java;Kotlin;Swift
+46635,Ruby
+46636,C#;Java;JavaScript;Other(s):
+46637,C#;HTML/CSS;JavaScript;SQL
+46638,HTML/CSS;JavaScript;PHP;SQL
+46639,C++;C#
+46640,C#;SQL
+46641,Java
+46643,HTML/CSS;Ruby
+46644,HTML/CSS;JavaScript;Python;Ruby;Scala
+46645,C;HTML/CSS;Java;JavaScript;SQL
+46646,C#;HTML/CSS;JavaScript;Ruby
+46647,HTML/CSS;Java;JavaScript;PHP;SQL
+46648,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+46649,C++;C#;Java;JavaScript;Python
+46651,Bash/Shell/PowerShell;HTML/CSS;Python
+46652,C;C++;Java
+46653,C#;HTML/CSS;JavaScript;SQL
+46654,Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP;Python;SQL;Other(s):
+46655,C#;HTML/CSS;Java;SQL
+46656,C;C#;HTML/CSS;Java;PHP;Python
+46657,JavaScript;PHP;Python;SQL
+46658,Java;JavaScript;SQL;TypeScript
+46659,Go;Java;PHP;Python;Scala
+46660,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL
+46661,HTML/CSS;JavaScript;PHP
+46662,C#;SQL
+46663,Bash/Shell/PowerShell;C++;C#;Go;Python
+46664,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+46665,C#;Python;SQL
+46666,Bash/Shell/PowerShell;C;C++;Java;Python
+46667,C#;JavaScript;SQL;TypeScript
+46668,Java;Kotlin;Objective-C;SQL;Swift
+46669,C#;HTML/CSS;JavaScript;SQL
+46670,C#;HTML/CSS;JavaScript;SQL
+46671,C++
+46672,C#;HTML/CSS;JavaScript;Kotlin;Python;SQL
+46673,C++;HTML/CSS;Python;R
+46674,HTML/CSS;Other(s):
+46675,C#;Go;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly;Other(s):
+46676,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;Swift
+46677,Java
+46678,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript;WebAssembly
+46679,Bash/Shell/PowerShell;C;C++;Other(s):
+46680,C;C++;C#;Python;SQL
+46681,C;C++
+46682,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+46683,Bash/Shell/PowerShell;C;C++;Go;Java
+46684,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+46685,Bash/Shell/PowerShell;C++
+46686,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+46687,C#
+46688,JavaScript;PHP;Python;SQL
+46689,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+46690,HTML/CSS;JavaScript;Python;Ruby;SQL
+46691,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+46692,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+46693,JavaScript;Python
+46694,Java;JavaScript;Kotlin
+46695,HTML/CSS;Python
+46696,HTML/CSS;JavaScript;SQL
+46697,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+46698,C;C#;HTML/CSS;JavaScript;Python;SQL
+46699,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+46700,C#;F#;HTML/CSS;TypeScript
+46701,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+46702,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+46703,Swift
+46704,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+46705,C#;Objective-C;SQL;Swift
+46706,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46707,Dart;HTML/CSS;Java;JavaScript;Python
+46708,HTML/CSS;Java;JavaScript;SQL
+46709,C#;HTML/CSS;JavaScript;SQL
+46710,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript;Other(s):
+46711,HTML/CSS;JavaScript
+46712,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+46713,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala
+46714,C++;HTML/CSS;JavaScript;Python
+46715,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Scala;SQL
+46716,HTML/CSS;JavaScript;TypeScript
+46717,Java
+46718,HTML/CSS;Java;JavaScript;Objective-C;Ruby;TypeScript
+46719,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+46720,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+46721,C#
+46722,C;C++;HTML/CSS;Java;JavaScript;Python
+46723,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+46724,Bash/Shell/PowerShell;C#;Clojure;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript;WebAssembly;Other(s):
+46725,Bash/Shell/PowerShell;C;C++;Java;Python;Rust;Scala;SQL
+46726,HTML/CSS
+46727,C;C++;C#
+46728,HTML/CSS;Python;SQL;TypeScript
+46729,C#
+46730,JavaScript;Python
+46731,HTML/CSS;Java;PHP;SQL
+46732,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+46733,JavaScript;PHP;Python;SQL
+46734,HTML/CSS;Java;JavaScript;Python
+46735,Bash/Shell/PowerShell;C++;Clojure;Go;Java;Python;Rust;Scala;WebAssembly
+46736,C#;HTML/CSS;JavaScript;TypeScript
+46737,Python;SQL
+46738,C++;C#;Elixir;Python;SQL;VBA
+46739,HTML/CSS;Java;JavaScript;Python;SQL
+46740,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+46741,Bash/Shell/PowerShell;C++;Other(s):
+46742,HTML/CSS;Java
+46744,C++;R
+46745,HTML/CSS;JavaScript;PHP;Other(s):
+46746,HTML/CSS;JavaScript;Objective-C;PHP;Python;R;SQL
+46747,Assembly;C#;HTML/CSS;JavaScript;TypeScript
+46748,HTML/CSS;JavaScript;Other(s):
+46749,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46750,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL;VBA
+46751,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Rust;Swift
+46752,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+46753,C#;Java;SQL;VBA
+46754,Assembly;HTML/CSS
+46755,Bash/Shell/PowerShell;C;C++;Python
+46756,PHP
+46757,C#;Java;Kotlin;TypeScript
+46758,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+46760,Assembly;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+46761,C++;HTML/CSS;JavaScript;Ruby;TypeScript
+46762,Bash/Shell/PowerShell;C;Java;JavaScript;Ruby;SQL
+46763,Assembly;Bash/Shell/PowerShell;C++;C#;Python
+46764,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+46765,C#;HTML/CSS;JavaScript;SQL
+46766,HTML/CSS;JavaScript;Python;SQL
+46767,HTML/CSS;Objective-C;Swift
+46768,Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+46769,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+46770,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R
+46771,Objective-C;Swift
+46772,C#;HTML/CSS;JavaScript;TypeScript
+46773,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46774,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL
+46775,Java;JavaScript;SQL
+46776,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46777,C;C++;HTML/CSS;Java;JavaScript;Ruby
+46778,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46779,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Python;Ruby;Rust
+46780,Go;Java;JavaScript;PHP;Python;Ruby;SQL
+46781,Elixir;Ruby;Rust
+46782,HTML/CSS;SQL
+46783,HTML/CSS;JavaScript;PHP
+46784,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+46785,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Python;Ruby
+46786,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;TypeScript
+46787,HTML/CSS;Java;JavaScript;SQL
+46788,Bash/Shell/PowerShell;C;C++;C#
+46789,C#;HTML/CSS;JavaScript
+46790,Java;Python;R
+46791,C;C++;Python
+46792,HTML/CSS;JavaScript;Python;TypeScript
+46793,JavaScript;SQL
+46794,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL;Swift;TypeScript
+46795,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin
+46796,Bash/Shell/PowerShell;C;Erlang;Go;HTML/CSS;Java;JavaScript;Python;SQL
+46797,HTML/CSS;JavaScript;Python
+46798,C;C++;HTML/CSS;SQL
+46799,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46800,C;C++;Python
+46801,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;Ruby
+46802,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;VBA
+46803,Objective-C;Swift
+46805,Bash/Shell/PowerShell;C;C++;C#;F#;Python
+46806,Bash/Shell/PowerShell;Go;HTML/CSS;Kotlin;PHP;SQL
+46807,HTML/CSS;Java;JavaScript;SQL
+46808,HTML/CSS;Python;SQL;VBA;Other(s):
+46809,C++
+46810,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46811,HTML/CSS;Java;JavaScript;SQL;TypeScript
+46812,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+46813,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+46814,Python;Other(s):
+46815,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+46816,Go;Java;JavaScript;TypeScript
+46818,HTML/CSS;JavaScript;Python;TypeScript
+46819,C;C++;C#;Java
+46820,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+46821,C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+46822,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+46823,C#;HTML/CSS;Java;JavaScript;SQL
+46824,C#
+46825,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+46826,HTML/CSS;JavaScript;PHP;SQL
+46827,Assembly;Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+46828,HTML/CSS;JavaScript;PHP;Python;SQL
+46829,C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46830,HTML/CSS;Java;JavaScript;SQL
+46831,C;HTML/CSS;Java;JavaScript;SQL
+46832,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46833,Java;Python;SQL
+46834,HTML/CSS;JavaScript;PHP;SQL
+46835,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+46836,Java;Kotlin;SQL
+46837,HTML/CSS;Python
+46838,HTML/CSS;JavaScript;TypeScript;Other(s):
+46839,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Other(s):
+46840,HTML/CSS;JavaScript
+46841,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+46842,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+46843,Go;HTML/CSS;Java;JavaScript;Python;SQL
+46844,Java;Python;Ruby;Scala;SQL;TypeScript
+46845,Bash/Shell/PowerShell;HTML/CSS;Scala
+46846,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46847,C++;HTML/CSS;JavaScript
+46848,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46849,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+46850,C#;HTML/CSS;JavaScript;SQL
+46851,C++
+46852,Java;JavaScript;SQL
+46853,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+46854,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+46855,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+46856,JavaScript;PHP;SQL
+46857,C++;C#;Java;Kotlin
+46858,C#;HTML/CSS;JavaScript;Python;SQL
+46859,C#;HTML/CSS;JavaScript;PHP;Other(s):
+46860,Java;JavaScript;SQL
+46861,C#;HTML/CSS;JavaScript;TypeScript
+46862,Bash/Shell/PowerShell;C;Objective-C;Python;Swift
+46863,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+46864,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;VBA;Other(s):
+46865,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+46866,HTML/CSS;JavaScript;TypeScript
+46867,Dart;HTML/CSS;JavaScript;TypeScript
+46868,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46869,HTML/CSS;JavaScript;Python;Ruby;SQL
+46870,C;C++;JavaScript;R;Swift
+46871,C;C++;C#;Dart;Go;HTML/CSS;JavaScript;PHP;Rust;TypeScript;WebAssembly
+46872,C;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+46873,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+46874,Bash/Shell/PowerShell;Python;SQL
+46875,Python;SQL
+46876,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+46877,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+46878,Bash/Shell/PowerShell;C;C++;Java;Objective-C
+46879,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+46880,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46881,HTML/CSS;JavaScript;PHP;SQL
+46882,C;C++;HTML/CSS;Java;JavaScript
+46883,HTML/CSS;Java;JavaScript;SQL
+46884,HTML/CSS;JavaScript;TypeScript;Other(s):
+46885,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+46886,Go;Python;SQL
+46887,C;C++;C#
+46888,HTML/CSS;JavaScript;Python
+46889,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+46890,C#;HTML/CSS;JavaScript
+46891,C;C++;Other(s):
+46892,Bash/Shell/PowerShell;C;C++;Clojure;Dart;Go;JavaScript;Python;Rust;TypeScript;Other(s):
+46893,JavaScript
+46894,Python
+46895,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46896,C#;HTML/CSS;JavaScript;SQL;VBA
+46897,Bash/Shell/PowerShell;Rust;SQL;TypeScript
+46898,HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+46899,HTML/CSS;Java;JavaScript;Python;TypeScript
+46900,HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL
+46901,HTML/CSS;JavaScript;PHP;TypeScript
+46902,C;C#;HTML/CSS;JavaScript;PHP;SQL
+46903,C;C++;C#;Python
+46904,HTML/CSS;JavaScript;PHP
+46905,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+46906,Python;SQL
+46907,Python;R
+46908,JavaScript
+46909,Elixir;Erlang;HTML/CSS;JavaScript;SQL
+46910,C#;HTML/CSS;Java;JavaScript
+46911,Bash/Shell/PowerShell;Java;Scala
+46912,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Rust;SQL;WebAssembly
+46913,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+46914,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+46915,HTML/CSS;JavaScript;PHP
+46916,HTML/CSS;JavaScript;SQL
+46917,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;TypeScript
+46918,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+46919,HTML/CSS;Java;JavaScript;PHP;TypeScript
+46920,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46921,C++;Python
+46922,C#;SQL
+46923,HTML/CSS;JavaScript;Python;Ruby
+46924,C++;Ruby;Scala;Swift;TypeScript
+46925,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+46926,C#;HTML/CSS;JavaScript;SQL
+46927,Java;Python
+46928,HTML/CSS;PHP;SQL
+46929,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;Python
+46930,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+46931,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;Ruby;Swift;TypeScript
+46932,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+46933,HTML/CSS;Java;JavaScript;TypeScript
+46934,Java;SQL
+46935,Java;Python
+46936,HTML/CSS;JavaScript;PHP;SQL
+46937,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+46938,C++;Python;SQL
+46939,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+46940,Go;Objective-C;Ruby;Swift
+46941,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+46942,C#;HTML/CSS;JavaScript;PHP;SQL
+46943,C#
+46944,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+46945,C++;Java
+46946,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46947,Bash/Shell/PowerShell;Ruby
+46948,HTML/CSS;Java;JavaScript;PHP;SQL
+46949,Go;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript
+46950,Python;SQL
+46951,JavaScript
+46952,C++;Java;Python
+46953,HTML/CSS;Java;JavaScript
+46954,Java;Kotlin;Scala
+46955,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+46956,HTML/CSS;JavaScript;PHP;SQL
+46957,C++;Dart;Java
+46958,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+46959,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;Swift;TypeScript
+46960,C++;Java;Python
+46961,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46962,Go;HTML/CSS;Java;JavaScript;Python;SQL
+46963,HTML/CSS;JavaScript;PHP;SQL
+46964,Bash/Shell/PowerShell;Java;SQL
+46965,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46966,C#;HTML/CSS;JavaScript;SQL;TypeScript
+46967,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+46968,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+46969,Swift
+46970,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;VBA;Other(s):
+46971,C#;HTML/CSS;JavaScript;TypeScript
+46972,C;C++;HTML/CSS;Java
+46973,Assembly;Bash/Shell/PowerShell;C;Go;Java;Python
+46974,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;SQL
+46975,HTML/CSS;Java;JavaScript
+46976,C;Go;Java;SQL
+46977,Java;Python
+46978,Java;SQL
+46979,Bash/Shell/PowerShell;Java;SQL
+46980,Python;Ruby;SQL
+46981,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+46982,HTML/CSS;JavaScript;Python
+46983,HTML/CSS;JavaScript;TypeScript
+46984,C;C++;HTML/CSS;JavaScript
+46985,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;TypeScript
+46986,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;SQL
+46987,Assembly
+46988,Bash/Shell/PowerShell;C;PHP;Python
+46989,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+46990,Kotlin
+46991,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Kotlin;Python;Rust;Other(s):
+46992,Swift
+46993,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+46994,C#;HTML/CSS;JavaScript;PHP;SQL
+46995,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+46996,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+46997,HTML/CSS;Java;JavaScript;PHP;SQL
+46998,C;C++;HTML/CSS;JavaScript;PHP
+46999,HTML/CSS;JavaScript;Ruby;SQL
+47000,C#;HTML/CSS;JavaScript;SQL
+47001,HTML/CSS;JavaScript;Python;R;SQL
+47002,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+47003,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+47004,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;Rust;SQL
+47005,JavaScript;Kotlin
+47006,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+47007,Java;SQL
+47008,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;VBA
+47009,Java;Kotlin
+47010,Assembly;Bash/Shell/PowerShell;C;Python;Rust;SQL;Other(s):
+47011,HTML/CSS;JavaScript;SQL;Other(s):
+47012,HTML/CSS;JavaScript;TypeScript;Other(s):
+47013,Bash/Shell/PowerShell;C;C++;PHP;VBA
+47014,HTML/CSS;JavaScript;PHP;Python;SQL
+47015,Bash/Shell/PowerShell;C;Python
+47016,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+47017,HTML/CSS;JavaScript;PHP;Python;SQL
+47018,Go;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL
+47019,C#;Java
+47020,Bash/Shell/PowerShell;C;C++;C#;Go;Python
+47021,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+47022,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+47023,Bash/Shell/PowerShell;C;C++;Erlang;Java;Python;Scala;SQL;Other(s):
+47024,HTML/CSS;JavaScript;PHP
+47025,Go;JavaScript;Objective-C;Python;Swift
+47026,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+47027,C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+47028,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47029,PHP;SQL
+47030,HTML/CSS;Java;JavaScript;SQL
+47031,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47032,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+47033,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47034,C#
+47035,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+47036,HTML/CSS;JavaScript;PHP;Python;Rust;SQL;WebAssembly
+47037,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+47038,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+47039,Bash/Shell/PowerShell;C++;SQL
+47040,Bash/Shell/PowerShell;Python
+47041,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+47042,Elixir;JavaScript;Ruby;SQL;Swift
+47043,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+47044,Assembly;HTML/CSS;Java;SQL;Other(s):
+47045,C#;HTML/CSS;JavaScript;SQL
+47046,Java;JavaScript
+47047,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+47048,HTML/CSS;Java;JavaScript;PHP;SQL
+47049,C#;Other(s):
+47050,HTML/CSS;JavaScript;TypeScript
+47051,HTML/CSS;JavaScript;PHP
+47053,HTML/CSS;Java;JavaScript;Kotlin;SQL
+47054,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+47055,Bash/Shell/PowerShell;C#;Dart;Go;Java;JavaScript;Kotlin;Rust;SQL
+47056,C#;F#
+47057,HTML/CSS;Java;JavaScript
+47058,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+47059,Bash/Shell/PowerShell;C++;C#;SQL
+47060,Go;Java;SQL
+47061,C++;HTML/CSS;Java;PHP;SQL
+47062,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+47063,C++;C#;Java;Other(s):
+47064,C;C++;Swift
+47065,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+47066,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+47067,HTML/CSS;JavaScript
+47068,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift;TypeScript;Other(s):
+47069,HTML/CSS;JavaScript;Python;SQL
+47070,HTML/CSS;JavaScript;PHP
+47071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+47072,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+47073,C#;Go;Java;JavaScript;SQL
+47074,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47075,Python;SQL
+47076,C++;HTML/CSS;JavaScript;PHP
+47077,Other(s):
+47078,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+47079,Python;R;SQL;VBA
+47080,C++;HTML/CSS;Java
+47081,C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+47082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+47083,Bash/Shell/PowerShell;C;C++;Other(s):
+47084,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+47085,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python;SQL
+47086,JavaScript;Other(s):
+47087,HTML/CSS;Java;JavaScript;SQL
+47088,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47089,JavaScript;Other(s):
+47090,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+47091,Clojure
+47092,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47093,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+47094,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+47095,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47096,Bash/Shell/PowerShell;C#;Clojure;Java;VBA
+47097,Bash/Shell/PowerShell;C#;SQL
+47098,C++;Go;JavaScript;Ruby;Rust
+47099,HTML/CSS;JavaScript;PHP;TypeScript
+47100,SQL
+47101,Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;Swift
+47102,HTML/CSS;JavaScript;Ruby
+47103,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+47104,HTML/CSS;JavaScript;Python;SQL
+47105,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+47106,C#;SQL
+47107,HTML/CSS;JavaScript;PHP;SQL;VBA
+47108,C#;HTML/CSS;JavaScript;Python;R;SQL
+47109,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+47110,PHP
+47111,C++;C#;HTML/CSS;PHP;SQL;VBA
+47112,C;C++;Python
+47114,Java;JavaScript;Ruby
+47115,Go;HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+47116,C#;JavaScript;SQL
+47117,C;C#;HTML/CSS;PHP
+47118,Bash/Shell/PowerShell;C#;Go;Python;SQL
+47119,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+47120,Bash/Shell/PowerShell;JavaScript;PHP;Python;Ruby;SQL
+47121,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47123,Bash/Shell/PowerShell;C#;Java;Kotlin;SQL
+47124,C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+47125,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47126,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+47127,Java;PHP;SQL
+47128,C#;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+47129,Bash/Shell/PowerShell;C#;Dart;Java;SQL;TypeScript
+47130,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+47131,Bash/Shell/PowerShell;Python;R;Ruby;SQL
+47132,HTML/CSS;JavaScript;PHP
+47133,Java
+47134,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+47135,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+47136,Bash/Shell/PowerShell;C;C++;F#;HTML/CSS;JavaScript;Objective-C;Python;Scala;SQL;Other(s):
+47137,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+47138,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+47139,Bash/Shell/PowerShell;HTML/CSS;Java;Other(s):
+47140,Elixir;Erlang;Go;HTML/CSS;JavaScript;Ruby;Rust
+47141,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+47142,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+47143,HTML/CSS;JavaScript;Python;TypeScript
+47144,C;C++;Go;Java;Python;SQL
+47145,C#;HTML/CSS;Java;JavaScript;Python
+47146,Assembly;C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+47147,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+47148,C++;C#;SQL
+47149,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47150,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+47151,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+47152,C#;HTML/CSS;JavaScript;TypeScript
+47153,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+47154,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+47155,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala
+47156,C++;JavaScript;Python;TypeScript
+47157,C++;Python
+47158,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+47159,Java;JavaScript
+47160,HTML/CSS;Java;JavaScript;SQL
+47161,Assembly;C;Java;Python;SQL
+47162,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+47163,HTML/CSS;JavaScript;PHP;SQL
+47164,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+47165,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+47166,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+47167,Python;Scala
+47168,C#;SQL
+47169,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47170,JavaScript
+47171,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+47172,F#
+47173,Bash/Shell/PowerShell;SQL
+47174,Go;Java;Python
+47175,HTML/CSS
+47176,Bash/Shell/PowerShell;Python
+47177,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+47178,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+47179,Bash/Shell/PowerShell;Go;SQL;Other(s):
+47180,Bash/Shell/PowerShell;Java;Python;SQL
+47181,C++;C#;Dart;Java
+47182,Bash/Shell/PowerShell;PHP;SQL
+47183,C++;C#;HTML/CSS;Java;JavaScript;SQL
+47184,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+47185,C;C++;HTML/CSS;JavaScript;PHP;SQL
+47186,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+47187,C#;R;SQL
+47188,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+47189,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;WebAssembly
+47190,C#;Java;Other(s):
+47191,Bash/Shell/PowerShell;HTML/CSS;Ruby
+47192,C++;C#;Python
+47193,Bash/Shell/PowerShell;Dart;Java;JavaScript;Kotlin
+47194,Bash/Shell/PowerShell;C;C#;Dart;Go;Java;JavaScript;SQL;TypeScript
+47195,C#;HTML/CSS;JavaScript;SQL
+47196,C++;C#;HTML/CSS;Java;Rust;TypeScript
+47197,Bash/Shell/PowerShell;C;HTML/CSS;Python;R
+47198,C#;HTML/CSS;JavaScript;SQL
+47199,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+47200,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Scala;SQL
+47201,C#;HTML/CSS;JavaScript;Python;SQL
+47202,C;C++
+47203,HTML/CSS;JavaScript;TypeScript
+47204,HTML/CSS;Java;JavaScript
+47205,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+47206,C++;C#;HTML/CSS
+47207,HTML/CSS;JavaScript;PHP;SQL
+47208,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+47209,HTML/CSS;JavaScript;PHP;Python
+47210,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+47211,Bash/Shell/PowerShell;C#;SQL;TypeScript
+47212,R;Ruby;SQL;Swift
+47213,SQL;VBA
+47214,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+47215,C#;HTML/CSS;JavaScript;SQL
+47216,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+47217,Java;Kotlin
+47218,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+47219,HTML/CSS;JavaScript;Ruby;SQL
+47220,C;HTML/CSS;Java;JavaScript;PHP;SQL
+47221,Java
+47222,HTML/CSS;JavaScript;SQL;Other(s):
+47223,Java
+47224,Bash/Shell/PowerShell;C++;Java;Python;SQL
+47225,Bash/Shell/PowerShell;C++;Java
+47226,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Scala;SQL;TypeScript
+47227,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+47228,C;C++;Java;Python
+47229,C;C++;Python
+47230,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+47231,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+47232,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+47233,C#;HTML/CSS;JavaScript;Ruby;Scala;SQL;WebAssembly
+47234,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Swift
+47235,R
+47236,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+47237,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;SQL
+47238,HTML/CSS;JavaScript;TypeScript
+47239,HTML/CSS;JavaScript;TypeScript
+47240,C#;HTML/CSS;JavaScript;SQL;Other(s):
+47241,C++;C#;HTML/CSS;TypeScript
+47242,Bash/Shell/PowerShell;C;C++;Python
+47243,HTML/CSS;JavaScript
+47244,C++
+47245,C#;HTML/CSS;JavaScript;SQL;VBA
+47246,HTML/CSS;JavaScript;Objective-C;Other(s):
+47247,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+47248,C#;SQL
+47249,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL
+47250,HTML/CSS;JavaScript
+47251,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+47252,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+47253,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+47254,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+47255,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+47256,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+47257,C#;SQL
+47258,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;VBA
+47260,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+47261,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+47262,C++;C#;SQL
+47263,HTML/CSS;JavaScript
+47264,Java;SQL
+47265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+47266,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+47267,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+47268,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47269,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Swift
+47270,JavaScript
+47271,Java;Python
+47272,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+47273,HTML/CSS;JavaScript;SQL;Swift
+47274,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+47275,Assembly;C;C++;Java;Python;Swift
+47276,HTML/CSS;JavaScript;PHP;Python;VBA
+47277,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+47278,Bash/Shell/PowerShell;C;Go;JavaScript;SQL;TypeScript
+47279,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+47280,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47281,C#;HTML/CSS;JavaScript;SQL
+47282,C#;HTML/CSS;SQL
+47283,C;C++;C#;Java;Python;SQL
+47284,C#;Java;SQL;VBA
+47285,HTML/CSS;JavaScript;PHP;SQL
+47286,Dart;HTML/CSS;JavaScript;Ruby;TypeScript
+47287,C;C++;HTML/CSS;JavaScript;Python;SQL
+47288,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+47289,HTML/CSS;JavaScript;PHP;SQL
+47290,HTML/CSS;JavaScript;PHP;SQL;Swift
+47291,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Objective-C;PHP;Python;SQL;Swift
+47292,HTML/CSS;JavaScript
+47293,C;HTML/CSS;JavaScript;Python;TypeScript
+47294,C++;JavaScript
+47295,Swift;TypeScript
+47296,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+47297,HTML/CSS;JavaScript;Python
+47298,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+47299,HTML/CSS;Java;JavaScript;TypeScript
+47300,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+47301,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47302,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+47303,C#;Java;JavaScript;SQL
+47304,Bash/Shell/PowerShell;Java
+47305,HTML/CSS;JavaScript
+47306,HTML/CSS;JavaScript;Python
+47307,HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+47308,C;C++;JavaScript;SQL
+47309,HTML/CSS;JavaScript;Python;SQL
+47310,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;Ruby;Swift
+47311,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+47312,C;C++;Java;VBA
+47313,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+47314,Bash/Shell/PowerShell;Java
+47315,HTML/CSS;JavaScript;PHP
+47316,HTML/CSS;JavaScript;TypeScript
+47317,C#;HTML/CSS;JavaScript;SQL;VBA
+47318,C;C++;C#;Python
+47319,Java
+47320,C++;Go;Java;JavaScript;PHP;Python;TypeScript
+47321,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47322,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+47323,Java;JavaScript;SQL
+47324,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+47325,C++;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+47326,HTML/CSS;JavaScript;PHP
+47327,HTML/CSS;JavaScript;Ruby;SQL
+47328,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+47329,JavaScript;PHP;SQL
+47330,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+47331,C++;Python;R
+47332,HTML/CSS;JavaScript;PHP
+47333,JavaScript;PHP
+47334,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+47335,C++;C#
+47336,C#;Java;Kotlin;Python;SQL
+47337,JavaScript;Ruby
+47338,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47339,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47340,HTML/CSS;JavaScript;PHP;Ruby
+47341,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+47342,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+47343,Other(s):
+47344,Assembly;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+47345,Bash/Shell/PowerShell;Python
+47346,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Ruby;Rust;SQL
+47347,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+47348,C;Python
+47349,HTML/CSS;JavaScript;PHP;SQL
+47350,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47351,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+47352,C++;C#;Python;Scala
+47353,HTML/CSS;JavaScript;PHP;SQL
+47354,R;VBA
+47355,Assembly;C;C++;C#;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;Ruby;SQL;VBA
+47356,JavaScript
+47357,HTML/CSS;JavaScript;Python;Ruby;TypeScript
+47358,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47359,Java;JavaScript;Kotlin;TypeScript;Other(s):
+47360,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+47361,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;Kotlin;Python;Ruby;SQL;Swift
+47362,Python;SQL;VBA
+47363,Bash/Shell/PowerShell;C++;C#;F#;JavaScript;SQL;VBA
+47364,C;C++;HTML/CSS;Java;JavaScript;Python
+47365,HTML/CSS;Java;JavaScript
+47366,JavaScript
+47367,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+47368,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+47369,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Scala;SQL;Swift
+47370,Java;SQL;Other(s):
+47372,Bash/Shell/PowerShell;C;C++;Python;Swift;Other(s):
+47373,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+47374,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+47375,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+47376,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+47377,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+47378,C#;Elixir;JavaScript;PHP
+47379,HTML/CSS;Java;JavaScript;Python;Other(s):
+47380,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript
+47381,Bash/Shell/PowerShell;Go;Java
+47382,HTML/CSS;JavaScript;TypeScript
+47383,HTML/CSS;JavaScript
+47384,C#;R
+47385,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+47386,Java;Python;SQL
+47387,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+47388,C#;HTML/CSS;JavaScript;SQL
+47389,HTML/CSS;JavaScript;PHP;TypeScript
+47390,Assembly;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+47391,Assembly;C;Python
+47392,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+47393,C#;Java
+47394,C#;HTML/CSS;JavaScript;SQL;VBA
+47395,Assembly;HTML/CSS;JavaScript;TypeScript
+47396,Bash/Shell/PowerShell;C#
+47397,HTML/CSS;Java;JavaScript;Python
+47398,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+47399,Java;JavaScript;SQL;Swift
+47400,C#;HTML/CSS;R;SQL
+47401,C#;HTML/CSS;JavaScript;SQL;Swift
+47402,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+47403,C#;HTML/CSS;JavaScript;SQL
+47404,HTML/CSS;Java;JavaScript;Objective-C;Swift
+47405,C#;JavaScript;SQL
+47406,C#;HTML/CSS;Java;JavaScript;Swift
+47407,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+47408,C++;Go;Java;Python;SQL;VBA
+47409,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47410,HTML/CSS;JavaScript;PHP;TypeScript
+47411,Objective-C;Ruby;SQL;Swift
+47412,C#;HTML/CSS;JavaScript;PHP;SQL
+47413,C;C++;C#;HTML/CSS;Java;SQL;VBA
+47414,HTML/CSS;JavaScript;SQL
+47415,HTML/CSS;JavaScript;PHP;SQL
+47416,JavaScript;R;TypeScript
+47417,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+47418,HTML/CSS;JavaScript;PHP;SQL
+47419,Bash/Shell/PowerShell;Clojure;Java;Python;R;Scala;SQL
+47420,Java;VBA
+47421,Go;HTML/CSS;Java;JavaScript;R;SQL
+47422,HTML/CSS;JavaScript;PHP;Python
+47423,Other(s):
+47424,Python;R;SQL
+47425,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47426,C#;HTML/CSS;JavaScript;Python;SQL
+47427,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+47428,C;C++;C#
+47429,C;Go
+47430,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;SQL
+47431,Bash/Shell/PowerShell;C;C++;Java;Python
+47432,HTML/CSS;JavaScript;PHP
+47433,Go;HTML/CSS;JavaScript;Python;TypeScript
+47434,Java;JavaScript;Python
+47435,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+47436,C#;JavaScript;SQL
+47437,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+47438,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Other(s):
+47439,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+47440,Bash/Shell/PowerShell;Python
+47441,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+47442,HTML/CSS;PHP
+47443,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+47444,PHP;SQL;Other(s):
+47445,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust;SQL
+47446,Java;SQL
+47447,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+47449,HTML/CSS;JavaScript;TypeScript
+47450,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+47451,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Python;Rust;SQL;WebAssembly
+47452,C;C++;C#;HTML/CSS;Java;TypeScript
+47453,C#;HTML/CSS;TypeScript
+47454,JavaScript;Python;SQL;Other(s):
+47455,Bash/Shell/PowerShell;C;C++;Python
+47456,C#;HTML/CSS;JavaScript;SQL
+47457,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+47458,HTML/CSS;JavaScript;PHP;SQL
+47459,Bash/Shell/PowerShell;C;Python;Rust;Scala
+47460,JavaScript;PHP;SQL
+47461,Go;Python
+47462,Bash/Shell/PowerShell;C;Python
+47463,HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+47464,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+47465,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47466,Elixir;JavaScript;Ruby
+47467,C++;Go;Java;SQL
+47468,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+47469,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+47470,Bash/Shell/PowerShell;Python
+47471,Java;JavaScript;PHP
+47472,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+47473,HTML/CSS;JavaScript;SQL
+47474,JavaScript;SQL;Other(s):
+47475,PHP;Ruby;VBA
+47476,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+47477,Other(s):
+47478,HTML/CSS;JavaScript;SQL
+47479,C#;HTML/CSS;Java;JavaScript;SQL
+47480,C;C++
+47481,Bash/Shell/PowerShell;Java;Python;R;SQL
+47482,C++
+47483,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+47484,C#;R
+47486,HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+47487,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47488,C;C++;C#;JavaScript;Python;Rust
+47489,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;Swift
+47490,Bash/Shell/PowerShell;C#;TypeScript
+47491,HTML/CSS;JavaScript;PHP;Python
+47492,Bash/Shell/PowerShell;C;JavaScript;Objective-C;Ruby
+47493,C#;HTML/CSS;Java;JavaScript;Python;SQL
+47494,C;C++;JavaScript;PHP;Rust
+47495,C#;HTML/CSS;JavaScript;SQL
+47496,SQL;VBA;Other(s):
+47497,HTML/CSS;Java;JavaScript;SQL
+47498,C;C++;C#;HTML/CSS;JavaScript;SQL
+47499,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;VBA
+47500,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+47501,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+47502,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+47503,Bash/Shell/PowerShell;Erlang;JavaScript;Python
+47504,HTML/CSS;Java;JavaScript;SQL
+47505,C++;C#;Python
+47506,Java;JavaScript
+47507,C#;HTML/CSS;JavaScript;SQL
+47508,JavaScript;SQL;Other(s):
+47509,HTML/CSS;Java;JavaScript
+47510,Java;Scala
+47511,HTML/CSS;JavaScript;PHP;TypeScript
+47512,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47513,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+47514,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;Objective-C;Python;SQL;Swift
+47515,Go;HTML/CSS;JavaScript
+47516,HTML/CSS;JavaScript
+47517,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47518,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47519,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+47520,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python
+47522,Bash/Shell/PowerShell;C++;Java;Kotlin
+47523,Bash/Shell/PowerShell;C;Java;Python
+47524,C#
+47525,C;HTML/CSS;Java;Python;SQL
+47526,C#;HTML/CSS;Java;JavaScript;Python;SQL
+47527,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+47528,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+47529,HTML/CSS;JavaScript;Objective-C;Ruby;Swift;TypeScript
+47530,Java;JavaScript;Scala;SQL;TypeScript
+47531,C#;SQL;Swift
+47532,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Other(s):
+47533,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47534,Bash/Shell/PowerShell;Other(s):
+47535,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+47536,JavaScript;PHP
+47537,Bash/Shell/PowerShell;C#;Python;Swift
+47538,C++;C#;Java;Python;SQL;Other(s):
+47539,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+47540,Python
+47541,Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+47542,Clojure;JavaScript;Ruby;SQL
+47543,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+47544,C;C++;HTML/CSS;PHP
+47545,HTML/CSS;Java;JavaScript;PHP;SQL
+47546,C++;C#;Java;Python
+47547,Bash/Shell/PowerShell;Python;SQL
+47548,Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Swift;TypeScript
+47549,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;TypeScript
+47550,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+47551,Bash/Shell/PowerShell;Go;Python
+47552,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+47553,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+47554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+47555,VBA;Other(s):
+47556,Go;JavaScript;Python
+47557,C#
+47558,Bash/Shell/PowerShell;Java;Kotlin;Python;Scala;SQL
+47559,Bash/Shell/PowerShell;C++;Python
+47560,Bash/Shell/PowerShell;C;Python;SQL;Swift
+47561,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL
+47562,HTML/CSS;JavaScript;PHP
+47563,HTML/CSS;JavaScript;Python;SQL
+47564,SQL
+47565,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+47566,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+47567,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+47568,C++;C#;HTML/CSS;Java;SQL
+47569,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47570,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R
+47571,C;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+47572,HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL
+47573,C++
+47574,C++;C#;HTML/CSS;Java;JavaScript;SQL
+47575,Java;Kotlin;Python
+47576,Bash/Shell/PowerShell;JavaScript;Python
+47577,Bash/Shell/PowerShell;C#
+47578,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+47579,HTML/CSS;JavaScript;PHP
+47580,F#
+47581,Go;HTML/CSS;JavaScript;SQL
+47582,JavaScript;Other(s):
+47583,HTML/CSS;JavaScript;PHP
+47584,Bash/Shell/PowerShell;C;C++;Python;R
+47585,Bash/Shell/PowerShell;Go;Other(s):
+47586,C++;C#;HTML/CSS;Java;Objective-C;Python;Rust
+47587,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47588,HTML/CSS;JavaScript;PHP
+47589,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47590,C;C++;C#
+47591,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Other(s):
+47592,R;SQL;Other(s):
+47593,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+47594,HTML/CSS;JavaScript;Ruby
+47595,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47596,Bash/Shell/PowerShell;C;C++;Python
+47597,Bash/Shell/PowerShell;Python;R
+47598,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;Rust;SQL
+47599,C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+47600,HTML/CSS;JavaScript;PHP;Ruby;SQL
+47601,HTML/CSS;Java;JavaScript;PHP;SQL
+47602,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47603,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Rust
+47604,JavaScript;PHP;SQL
+47605,JavaScript;PHP;Ruby;TypeScript
+47606,C++;HTML/CSS;Python;SQL
+47607,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+47608,HTML/CSS;Java;JavaScript;SQL;TypeScript
+47609,Bash/Shell/PowerShell;HTML/CSS;VBA
+47610,C#;HTML/CSS;JavaScript;VBA
+47611,Java;JavaScript
+47612,Bash/Shell/PowerShell;Python
+47613,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47614,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47615,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+47616,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+47617,C#;HTML/CSS;PHP;SQL;WebAssembly
+47618,HTML/CSS;JavaScript;PHP;SQL
+47619,Bash/Shell/PowerShell;Go;PHP;Python;R;SQL
+47620,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+47621,HTML/CSS;JavaScript;Python
+47622,C++
+47623,HTML/CSS;JavaScript;TypeScript
+47624,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47625,Java;Objective-C;Swift
+47626,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+47627,Java;JavaScript;Kotlin;TypeScript
+47628,Bash/Shell/PowerShell;C;Python;R
+47629,JavaScript;TypeScript
+47630,HTML/CSS;Java;PHP;SQL
+47631,C#;HTML/CSS;JavaScript;Python
+47632,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+47633,JavaScript;PHP;SQL
+47634,C++
+47635,C++;C#
+47636,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;TypeScript
+47637,Java
+47638,HTML/CSS;JavaScript;SQL;TypeScript
+47639,HTML/CSS;PHP;SQL
+47640,C#;HTML/CSS;JavaScript;PHP;SQL
+47641,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+47642,C;C++;Java;JavaScript;Kotlin;Objective-C;PHP;Swift;TypeScript
+47643,Java;JavaScript;SQL
+47644,C#;HTML/CSS;SQL;TypeScript
+47645,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+47646,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Swift
+47647,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+47648,HTML/CSS;JavaScript;PHP;Python;Ruby
+47649,Bash/Shell/PowerShell;C++;Objective-C
+47650,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+47651,C++;C#;Clojure;Java;JavaScript;Python
+47652,HTML/CSS;JavaScript;Python;Other(s):
+47653,HTML/CSS;JavaScript;PHP;Other(s):
+47654,Bash/Shell/PowerShell;C;JavaScript;PHP;Python;SQL
+47655,HTML/CSS;Java;JavaScript;Python
+47656,C#;HTML/CSS;JavaScript;SQL
+47657,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+47658,C;Python
+47659,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+47660,Java;Kotlin
+47661,Bash/Shell/PowerShell;Clojure;Java;SQL
+47662,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+47663,Assembly;C;C++;Python;Other(s):
+47664,HTML/CSS;Python;TypeScript
+47665,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+47666,HTML/CSS;JavaScript
+47667,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+47668,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47669,C#;Go;Java;JavaScript
+47670,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+47671,C#;HTML/CSS;JavaScript;PHP;SQL
+47672,C;C++;Go;Python
+47673,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+47674,HTML/CSS;JavaScript
+47675,Bash/Shell/PowerShell;SQL;Other(s):
+47676,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+47677,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+47678,VBA
+47679,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+47680,C#;HTML/CSS;Java;JavaScript;PHP
+47681,Assembly;C;C++;C#;Dart;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+47682,C++;C#;SQL;VBA
+47683,HTML/CSS;JavaScript;PHP
+47684,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+47685,C;C++;C#;Java;SQL;Swift
+47686,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47687,C#;HTML/CSS;Java;SQL;Other(s):
+47688,C#;HTML/CSS;JavaScript;SQL
+47689,HTML/CSS;JavaScript;Python
+47690,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R
+47691,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+47692,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+47693,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+47694,Swift
+47695,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+47696,HTML/CSS;JavaScript;Python;Swift
+47697,C
+47698,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+47699,Dart;HTML/CSS;JavaScript;Python
+47700,Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;VBA;Other(s):
+47701,C#;Java;Python;SQL
+47702,C;C#;HTML/CSS;Java;Python;SQL
+47703,Objective-C;Swift
+47704,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47705,C++;HTML/CSS;Java;Python;Swift;TypeScript
+47706,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin
+47707,Java;JavaScript
+47708,HTML/CSS;Java;JavaScript
+47709,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47710,Bash/Shell/PowerShell;C#;F#;Java;JavaScript;TypeScript
+47711,C;C++;Python
+47712,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47713,C;C++;Java;JavaScript;PHP;SQL
+47714,C#;HTML/CSS;Rust
+47715,Bash/Shell/PowerShell;Java;Python;SQL
+47716,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+47717,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+47719,C#;HTML/CSS;JavaScript;SQL
+47720,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+47721,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+47722,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47723,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL
+47724,HTML/CSS;JavaScript;PHP;SQL
+47725,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+47726,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+47727,Java;Kotlin
+47728,HTML/CSS;Java;JavaScript;Python
+47729,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47730,Bash/Shell/PowerShell;C++;Python;Rust
+47731,HTML/CSS;JavaScript;PHP
+47732,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R
+47733,Kotlin;PHP;SQL;Swift
+47734,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47735,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;Python;SQL;VBA
+47736,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+47737,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+47738,JavaScript;Other(s):
+47739,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+47740,Java;Kotlin
+47741,C#;HTML/CSS
+47742,JavaScript;SQL
+47743,C#;Python;R;VBA
+47744,C#;JavaScript;PHP;SQL
+47745,Java;JavaScript;SQL
+47746,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+47747,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47748,HTML/CSS;Java;JavaScript;SQL
+47749,C#
+47750,C#;HTML/CSS;JavaScript
+47751,JavaScript;PHP;SQL
+47752,HTML/CSS;JavaScript;PHP
+47753,Scala
+47754,C;C++;Python;Other(s):
+47755,HTML/CSS;JavaScript;TypeScript
+47756,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;WebAssembly
+47757,Java;Python
+47758,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+47759,Java;Kotlin
+47760,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47761,C++;Java;JavaScript
+47762,SQL;VBA
+47763,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+47764,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+47765,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;R;SQL
+47766,C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R
+47767,SQL;Other(s):
+47768,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+47769,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47770,Java;Kotlin
+47771,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+47772,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL;TypeScript
+47773,Python;TypeScript
+47774,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL;Swift;TypeScript
+47776,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47778,C#;JavaScript;Ruby;SQL;TypeScript
+47779,C;HTML/CSS;Python
+47780,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47781,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Other(s):
+47782,HTML/CSS;JavaScript;TypeScript
+47783,Python;SQL
+47784,C;Python;SQL;Other(s):
+47785,HTML/CSS;Java;SQL;TypeScript
+47786,C#;JavaScript;TypeScript
+47787,C++;C#;Java;Python;R
+47788,C++;C#;Java;Python
+47789,PHP
+47790,JavaScript;SQL
+47791,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift;TypeScript
+47793,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+47794,HTML/CSS;JavaScript;Python;SQL
+47795,C;C++;Java;JavaScript;Python;R;SQL
+47797,Java;JavaScript;PHP
+47798,JavaScript;Python;R
+47799,Bash/Shell/PowerShell;C;Go;JavaScript;PHP;Python;Ruby;Rust;SQL
+47800,Assembly;C++;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+47802,C#;HTML/CSS;Java;SQL
+47803,Objective-C;Swift
+47804,Bash/Shell/PowerShell;Go;PHP;SQL
+47805,C;C++;HTML/CSS;Java;JavaScript
+47806,C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript
+47807,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+47808,HTML/CSS;JavaScript;PHP;SQL
+47809,C++;HTML/CSS;Other(s):
+47810,Bash/Shell/PowerShell;C;C++;C#;Java;Python;R;Scala;SQL;VBA
+47811,C#;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+47812,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;SQL
+47813,C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+47814,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+47815,Java;Kotlin
+47816,Java;PHP;Python
+47817,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+47818,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;SQL
+47819,Objective-C;PHP;Swift
+47820,C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+47821,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+47822,JavaScript;Python
+47823,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+47824,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47825,C;C#;HTML/CSS;JavaScript;SQL
+47827,C#;SQL;VBA
+47828,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+47829,Dart;Java;JavaScript;Kotlin;Python
+47830,HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+47831,HTML/CSS;Java;JavaScript;Kotlin;SQL
+47832,C#;HTML/CSS;JavaScript;SQL;VBA
+47833,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+47834,HTML/CSS;JavaScript;Python
+47835,C#;SQL
+47836,HTML/CSS;JavaScript;PHP;SQL
+47837,HTML/CSS;Java;JavaScript;SQL
+47838,Bash/Shell/PowerShell;C#;SQL;Other(s):
+47839,HTML/CSS;JavaScript;PHP
+47840,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47841,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;Swift
+47842,C#;HTML/CSS;Python
+47843,C#;Java;SQL
+47844,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+47845,C#;HTML/CSS;JavaScript;PHP;SQL
+47846,SQL;VBA
+47847,C;C++;HTML/CSS;Java;JavaScript;Python
+47849,C;HTML/CSS;Java;Objective-C;PHP;SQL;Swift
+47850,C#;HTML/CSS;JavaScript
+47851,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+47852,C++;C#;JavaScript;Python
+47853,C++;C#;HTML/CSS;JavaScript
+47854,C;Clojure;HTML/CSS;Objective-C;SQL;Swift
+47855,C;C++;HTML/CSS;JavaScript;Python;SQL;Swift
+47856,HTML/CSS;Java;Python;SQL
+47857,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+47858,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+47859,C#;HTML/CSS;Java;JavaScript;Python;SQL
+47860,Bash/Shell/PowerShell;C#;Java;Python
+47862,Bash/Shell/PowerShell;Python;Rust
+47863,C++;C#
+47864,Java;JavaScript;TypeScript
+47865,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47867,Java;Kotlin
+47868,Java;Kotlin
+47869,Bash/Shell/PowerShell;Python;SQL;VBA
+47870,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+47871,C#;JavaScript
+47872,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+47873,C#;HTML/CSS;Java;JavaScript;SQL
+47874,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47875,C++;C#;HTML/CSS;Java;PHP
+47876,C#;Python;SQL
+47877,C#;HTML/CSS;Java;JavaScript;SQL
+47878,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+47879,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47880,C;C++;HTML/CSS;JavaScript;TypeScript
+47881,HTML/CSS;Java;JavaScript
+47882,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift;VBA;WebAssembly
+47883,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL;TypeScript
+47884,C#;HTML/CSS;Java;JavaScript;SQL
+47885,Java;Kotlin;Ruby
+47886,C;C++;HTML/CSS;Java;JavaScript
+47887,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript
+47888,Java
+47889,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+47891,Java;JavaScript;Swift
+47892,HTML/CSS;Java;JavaScript;Python
+47893,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+47894,JavaScript;Python;Ruby;SQL;TypeScript
+47895,Java;Kotlin
+47896,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Kotlin;Python;R
+47897,C#;SQL
+47898,Bash/Shell/PowerShell;C++;C#;Python
+47899,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+47900,HTML/CSS;JavaScript;PHP;TypeScript
+47901,C#;HTML/CSS;JavaScript;SQL;TypeScript
+47903,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+47904,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+47905,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+47906,HTML/CSS;JavaScript;Python;SQL
+47907,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+47908,Python
+47909,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+47910,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL
+47911,C++;Python
+47912,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47913,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+47914,HTML/CSS;Java;JavaScript;SQL
+47915,C#;HTML/CSS;JavaScript;TypeScript
+47916,C#;Go;HTML/CSS;JavaScript;PHP;SQL
+47917,HTML/CSS;JavaScript
+47918,HTML/CSS;JavaScript;Python
+47919,HTML/CSS;JavaScript;Ruby;TypeScript
+47920,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+47921,HTML/CSS;JavaScript;PHP
+47922,Bash/Shell/PowerShell;Python;SQL
+47923,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+47924,Go;Java;JavaScript;SQL
+47925,Java;Objective-C
+47926,Python
+47927,HTML/CSS;Java;JavaScript;Ruby;SQL
+47928,Python
+47929,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47930,Bash/Shell/PowerShell;C;C++;SQL
+47931,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+47932,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+47933,Bash/Shell/PowerShell;C#;HTML/CSS;Java
+47934,C;C++;HTML/CSS;Java;JavaScript;PHP
+47935,HTML/CSS;JavaScript;Ruby;SQL
+47936,C#;HTML/CSS;Java;PHP
+47937,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Swift
+47938,Bash/Shell/PowerShell;C++;Python;Other(s):
+47939,Bash/Shell/PowerShell;C++;Java;R;SQL
+47940,Bash/Shell/PowerShell;Java;SQL
+47941,Bash/Shell/PowerShell;C++;Java;Python
+47942,HTML/CSS;JavaScript;Python
+47943,HTML/CSS;JavaScript;PHP;SQL
+47944,HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;Swift;TypeScript
+47945,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python
+47946,Bash/Shell/PowerShell;C#;SQL;TypeScript
+47947,C++;HTML/CSS;Java;JavaScript;Ruby
+47948,HTML/CSS;Other(s):
+47949,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+47950,HTML/CSS;JavaScript
+47951,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;SQL;Swift
+47952,C#;JavaScript;Python
+47953,C#;Java;Objective-C;Swift
+47954,Objective-C;Ruby;Swift
+47955,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+47956,C#;Java
+47957,Bash/Shell/PowerShell;Java;Python
+47958,Bash/Shell/PowerShell;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;Other(s):
+47959,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+47960,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+47961,Bash/Shell/PowerShell;C#
+47962,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47963,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+47964,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL;TypeScript
+47965,HTML/CSS;JavaScript;Python
+47966,Java;Python
+47967,HTML/CSS;JavaScript
+47968,Go;HTML/CSS;JavaScript;Python;SQL
+47969,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+47970,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+47971,Python
+47972,Assembly;Bash/Shell/PowerShell;C;C++;Python
+47973,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+47974,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Rust;WebAssembly
+47975,HTML/CSS;JavaScript
+47976,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+47977,C;C++;C#;HTML/CSS;JavaScript;PHP
+47978,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Other(s):
+47979,HTML/CSS;JavaScript;Python;SQL
+47980,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+47981,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+47982,JavaScript
+47983,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+47984,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+47985,Bash/Shell/PowerShell;Objective-C;SQL;Swift
+47986,JavaScript;Ruby
+47987,Assembly;Bash/Shell/PowerShell;C;C++;Python
+47988,Bash/Shell/PowerShell;C#;Go;Java;Kotlin;Python
+47989,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+47990,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+47991,JavaScript;PHP
+47992,C#;HTML/CSS;JavaScript;SQL
+47993,HTML/CSS;JavaScript;Ruby;TypeScript;Other(s):
+47994,Java;JavaScript;PHP;Swift
+47995,Python;Ruby;Swift
+47996,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+47997,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+47998,HTML/CSS;JavaScript;PHP
+47999,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48000,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+48001,Bash/Shell/PowerShell;JavaScript;Python;SQL;TypeScript
+48002,C;C++;HTML/CSS;Java;JavaScript;SQL
+48003,C;C++;C#;Elixir;JavaScript;Python
+48004,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+48005,HTML/CSS;JavaScript;TypeScript
+48006,Bash/Shell/PowerShell;C#;SQL
+48007,C++;HTML/CSS;JavaScript
+48008,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48009,C++;C#;HTML/CSS;Java;JavaScript;SQL
+48010,SQL
+48011,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48012,Bash/Shell/PowerShell;C++;C#;Elixir;Java;Python
+48013,C++;Java;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;TypeScript
+48014,C#;F#;R
+48015,C;C++;C#;HTML/CSS;JavaScript;SQL
+48016,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48017,C#;HTML/CSS;JavaScript;Python;SQL;Swift
+48019,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+48020,HTML/CSS;JavaScript;TypeScript
+48021,Assembly;C#;Python
+48022,Java;JavaScript
+48023,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+48024,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+48025,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+48026,C#;HTML/CSS;JavaScript;TypeScript
+48027,C#
+48028,HTML/CSS;Java;JavaScript;SQL;VBA
+48029,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+48030,Bash/Shell/PowerShell;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+48031,HTML/CSS;JavaScript;PHP
+48032,Java;SQL
+48033,Bash/Shell/PowerShell;C;Java;SQL
+48034,C++;C#;Python
+48035,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+48036,HTML/CSS;Java;JavaScript
+48037,HTML/CSS;JavaScript;PHP
+48038,Assembly;Bash/Shell/PowerShell;C++;Python
+48039,Elixir;HTML/CSS;JavaScript;Python
+48040,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;Python;Scala;SQL
+48041,HTML/CSS;JavaScript
+48043,C#;HTML/CSS;JavaScript;SQL
+48044,C#;HTML/CSS;Java
+48045,C#;HTML/CSS;JavaScript
+48046,JavaScript;Python;Ruby
+48047,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+48048,Swift
+48049,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby
+48050,C#;HTML/CSS;JavaScript;PHP;SQL
+48051,C#;Java;Objective-C;SQL;Swift
+48052,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;R;SQL
+48053,SQL
+48054,Java;JavaScript
+48055,Python;Other(s):
+48056,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+48057,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48058,C#;Java;Python
+48059,Elixir;Erlang;Python;Ruby
+48060,Python
+48061,Bash/Shell/PowerShell;Python;Other(s):
+48062,Java;JavaScript;Kotlin;PHP;SQL
+48063,Bash/Shell/PowerShell;Python
+48064,Objective-C;Swift
+48065,C#;Python;SQL
+48066,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+48067,HTML/CSS;Java;JavaScript;Kotlin;SQL
+48068,Bash/Shell/PowerShell;Go;Python;Scala
+48069,Java;JavaScript;Kotlin;Python
+48070,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+48071,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+48072,Java
+48073,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48074,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Other(s):
+48075,C++;Clojure;Go;Python;Other(s):
+48076,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+48077,C#;HTML/CSS;Java;JavaScript;Python
+48078,HTML/CSS;JavaScript;Python;Rust
+48079,C#;HTML/CSS;JavaScript;SQL;VBA
+48080,Bash/Shell/PowerShell;Python;SQL
+48081,HTML/CSS;Java;JavaScript
+48082,Python
+48083,HTML/CSS;JavaScript;Python
+48084,C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+48085,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Scala;SQL
+48086,HTML/CSS;JavaScript;PHP;SQL
+48087,C#;HTML/CSS;JavaScript;SQL
+48088,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+48089,HTML/CSS;Java;JavaScript;Python;R;TypeScript
+48090,Bash/Shell/PowerShell;C++;Python
+48091,HTML/CSS;JavaScript
+48092,HTML/CSS;JavaScript;Python;SQL
+48093,HTML/CSS;JavaScript;PHP
+48094,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48095,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48096,HTML/CSS;JavaScript;PHP
+48097,C;C++;HTML/CSS;Java;JavaScript;SQL
+48098,C#;HTML/CSS;JavaScript;SQL
+48099,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+48100,C;Java;Python;SQL
+48101,HTML/CSS;JavaScript;PHP;SQL
+48102,C++;C#;Python;SQL;VBA
+48103,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL;TypeScript;Other(s):
+48104,Assembly;Bash/Shell/PowerShell;C;C++;Java
+48105,Java;Kotlin
+48106,Bash/Shell/PowerShell;C;C++;Erlang
+48107,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+48108,Bash/Shell/PowerShell;Clojure;HTML/CSS
+48109,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+48110,C#;HTML/CSS;JavaScript;Other(s):
+48111,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Scala;SQL
+48112,C#
+48113,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+48115,Assembly;C;HTML/CSS;Java;Python;SQL
+48116,HTML/CSS;Java;JavaScript;TypeScript
+48117,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;VBA;Other(s):
+48118,C#;HTML/CSS;Python;Ruby;SQL
+48119,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48120,Assembly;C#;HTML/CSS;PHP;SQL
+48121,PHP;TypeScript
+48122,HTML/CSS;JavaScript;PHP;SQL
+48123,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+48124,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Scala
+48125,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48126,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+48127,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48128,Assembly;C;C++;C#
+48129,C++;Python
+48130,Java;JavaScript;Scala;SQL
+48131,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin
+48132,C#;HTML/CSS;JavaScript;PHP;SQL
+48133,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+48135,Java;PHP;Rust
+48136,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48137,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+48138,C#;HTML/CSS;Java;JavaScript;Python;Swift
+48139,Kotlin;Swift
+48140,Bash/Shell/PowerShell;C++;Clojure;Java;Python;Ruby;Scala
+48141,R;Ruby;Other(s):
+48142,HTML/CSS;Java;JavaScript;PHP;SQL
+48143,C#;HTML/CSS;Java;SQL
+48144,C#;HTML/CSS;JavaScript;SQL
+48145,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+48146,Java;Python
+48147,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+48148,C++;C#;Java;JavaScript;Python;TypeScript
+48149,Java;PHP;Scala;SQL
+48150,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+48151,C;C++;C#;Java;Python
+48152,C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+48153,Clojure;JavaScript;Rust
+48154,Java;SQL
+48155,C;HTML/CSS;Java;JavaScript;Kotlin;SQL
+48156,Clojure;HTML/CSS;Java;JavaScript;Python
+48157,HTML/CSS
+48158,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+48159,HTML/CSS;JavaScript;PHP;Python;SQL
+48160,C#;HTML/CSS;JavaScript
+48161,C#;Go;Other(s):
+48163,HTML/CSS;Python;R;SQL
+48164,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+48165,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;JavaScript;Python;Ruby;Rust;SQL;Swift;WebAssembly;Other(s):
+48166,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+48167,C#;Java;JavaScript;Objective-C;Swift
+48168,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+48169,Java
+48170,HTML/CSS;JavaScript;PHP;SQL
+48171,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+48172,Ruby
+48173,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+48174,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48175,JavaScript;Python;SQL
+48176,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+48177,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+48178,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+48179,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+48180,C#;Java
+48181,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+48182,Bash/Shell/PowerShell;C;Go;SQL
+48183,HTML/CSS;Java;JavaScript;Python
+48184,C#;HTML/CSS;Java;JavaScript;SQL
+48185,Java;Scala;SQL
+48186,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust
+48187,C#;JavaScript
+48188,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+48189,C++;TypeScript;Other(s):
+48190,Java;JavaScript;SQL;TypeScript
+48191,Bash/Shell/PowerShell;Java;Other(s):
+48192,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+48193,Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+48194,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+48195,HTML/CSS;Java;JavaScript;SQL
+48197,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+48198,Elixir;HTML/CSS;JavaScript;Python;SQL;TypeScript
+48199,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48200,C++;HTML/CSS;Java;JavaScript;PHP;Python
+48201,Go;JavaScript;TypeScript
+48202,C;C++;C#;HTML/CSS;Java;Python;R;SQL;VBA
+48203,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+48204,HTML/CSS;Java;JavaScript;TypeScript
+48205,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;Swift
+48206,C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48207,JavaScript;TypeScript;Other(s):
+48208,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+48209,C#;HTML/CSS;JavaScript;SQL
+48210,Bash/Shell/PowerShell;C++;C#;HTML/CSS;SQL
+48211,C#;F#;HTML/CSS;SQL
+48212,C#;Java;Swift
+48213,Java
+48214,HTML/CSS;JavaScript;PHP
+48215,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+48216,HTML/CSS;JavaScript;Ruby;SQL
+48217,Bash/Shell/PowerShell;Swift
+48218,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+48219,Java;JavaScript;Python;SQL;TypeScript
+48220,C#;HTML/CSS;Java;JavaScript;TypeScript
+48221,Bash/Shell/PowerShell;JavaScript;Python;SQL
+48222,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+48223,C#
+48224,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+48225,Bash/Shell/PowerShell;C++;Python;Other(s):
+48226,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+48227,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+48228,C#
+48229,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;Other(s):
+48230,C#;HTML/CSS;SQL;TypeScript
+48231,C#;HTML/CSS;JavaScript;TypeScript
+48232,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+48233,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;SQL;Other(s):
+48234,Elixir;Erlang;HTML/CSS;PHP;Ruby;TypeScript
+48235,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP
+48236,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL;Other(s):
+48237,C++;C#;JavaScript;SQL;TypeScript
+48238,C++;C#;Java;JavaScript;PHP;Python;SQL
+48239,Java;Kotlin;SQL
+48240,JavaScript
+48242,HTML/CSS;Java;JavaScript;SQL;TypeScript
+48243,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+48244,Assembly;C;C++;C#;HTML/CSS;Java;Objective-C;Swift
+48245,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;SQL;Swift;TypeScript;WebAssembly
+48246,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48247,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+48248,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;VBA
+48249,Bash/Shell/PowerShell;C#;Kotlin
+48250,Java;Python
+48251,Go;HTML/CSS;Java;Python;Scala
+48252,Java;Python;SQL
+48253,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+48254,PHP
+48255,C#;JavaScript;R;SQL
+48256,C#;Dart;HTML/CSS;JavaScript;SQL
+48257,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+48258,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48259,Python;SQL;VBA
+48260,Python
+48261,Bash/Shell/PowerShell;JavaScript;Python
+48262,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+48263,HTML/CSS;JavaScript;TypeScript
+48264,HTML/CSS;Java;JavaScript;Python;Rust;Scala
+48265,Assembly;C;C++;C#;F#;JavaScript;TypeScript
+48266,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48267,Bash/Shell/PowerShell;Swift
+48268,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;Rust
+48269,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+48271,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+48272,Python
+48273,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Other(s):
+48274,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+48275,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+48276,Python;SQL
+48277,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+48278,C++;HTML/CSS;JavaScript;Python
+48279,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+48280,C#;SQL
+48281,Python;R;VBA
+48282,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;R;SQL
+48283,C#;Go;HTML/CSS;Python;SQL
+48284,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+48285,Java;Kotlin;Swift
+48286,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+48287,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL
+48288,JavaScript;Ruby;Rust;SQL
+48289,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+48290,HTML/CSS;JavaScript
+48291,Go;HTML/CSS;JavaScript;Python;TypeScript
+48292,C++;Java;JavaScript;Objective-C;TypeScript
+48293,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48294,C;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48295,C;Other(s):
+48296,JavaScript;PHP
+48297,Bash/Shell/PowerShell;C;C++;JavaScript;Python;TypeScript;Other(s):
+48298,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+48299,JavaScript;TypeScript
+48300,HTML/CSS;JavaScript;PHP;SQL
+48301,C#;JavaScript;Python;SQL;TypeScript
+48302,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+48303,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly
+48304,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL;TypeScript
+48305,Java;Swift
+48306,Bash/Shell/PowerShell;C;C++
+48307,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+48308,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+48309,Assembly;Bash/Shell/PowerShell;C;C++;Python
+48310,Java;JavaScript;TypeScript
+48311,C++;Python
+48312,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+48313,Bash/Shell/PowerShell;C;C++;Other(s):
+48314,Bash/Shell/PowerShell;Python
+48315,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48316,HTML/CSS;JavaScript;TypeScript
+48317,HTML/CSS;Java;JavaScript;PHP
+48318,C;HTML/CSS;JavaScript;PHP;SQL
+48319,PHP
+48320,Bash/Shell/PowerShell;C++;Java;Scala
+48321,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;SQL;TypeScript
+48322,C;C++;Python
+48323,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+48324,C#;Java;Kotlin;Python;SQL
+48325,C++;HTML/CSS;JavaScript;TypeScript
+48326,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;VBA
+48327,C++;C#;HTML/CSS;Java;JavaScript;SQL
+48328,JavaScript;PHP
+48329,Assembly;Bash/Shell/PowerShell;C;C++;Python
+48330,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+48331,C;HTML/CSS;PHP;Other(s):
+48332,C#;HTML/CSS;Java;Kotlin;Python;Swift
+48333,Bash/Shell/PowerShell;C;C++
+48334,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48335,C#;HTML/CSS;JavaScript;SQL
+48336,C#;JavaScript;SQL
+48337,Bash/Shell/PowerShell;Java;Python;SQL;Swift;Other(s):
+48338,Java;JavaScript
+48339,Clojure;Other(s):
+48340,Bash/Shell/PowerShell;C#;JavaScript;SQL
+48341,JavaScript;Other(s):
+48342,Bash/Shell/PowerShell;C;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Rust;SQL;Swift;TypeScript;Other(s):
+48343,HTML/CSS;JavaScript;TypeScript;Other(s):
+48344,Java;JavaScript;SQL;TypeScript
+48345,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Swift;TypeScript
+48346,Bash/Shell/PowerShell;Python;R;SQL
+48347,Java
+48348,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+48349,HTML/CSS;JavaScript;SQL;TypeScript
+48350,Assembly;C#;Java;Python;SQL
+48351,C++;Java;Python
+48352,Bash/Shell/PowerShell;HTML/CSS;Kotlin;Python;Swift
+48353,C++;C#;Java
+48354,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+48355,Bash/Shell/PowerShell;JavaScript;Ruby;Rust
+48356,Bash/Shell/PowerShell;C++;C#;Python
+48357,Bash/Shell/PowerShell;C++
+48358,Assembly;Bash/Shell/PowerShell;PHP;R
+48359,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+48360,HTML/CSS;JavaScript;Python;Ruby
+48361,Bash/Shell/PowerShell;C#;Python;R
+48362,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48363,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+48364,C#;Java;JavaScript;Kotlin;PHP;SQL
+48365,Bash/Shell/PowerShell;Java;SQL
+48366,Python
+48367,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;VBA;Other(s):
+48368,Bash/Shell/PowerShell;Python;R;SQL
+48369,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+48370,C++;HTML/CSS;JavaScript
+48371,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48372,C;C++;C#;HTML/CSS;SQL
+48373,Bash/Shell/PowerShell;HTML/CSS;Python
+48374,Java;Kotlin;Objective-C;Ruby;Swift
+48375,C;C++;JavaScript;Other(s):
+48377,HTML/CSS;JavaScript;SQL;TypeScript
+48378,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+48379,Elixir;HTML/CSS;Java;JavaScript;TypeScript
+48380,C;C++;Python
+48381,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+48382,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+48383,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+48384,Bash/Shell/PowerShell;C;C++;Java;Python;Scala
+48385,Python;SQL
+48386,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+48387,Bash/Shell/PowerShell;Python
+48388,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+48389,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+48390,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+48391,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly;Other(s):
+48392,Bash/Shell/PowerShell;C++;Python
+48393,C++;Java;Python;TypeScript
+48394,HTML/CSS;JavaScript
+48395,C#;Java;Other(s):
+48396,Bash/Shell/PowerShell;C++;Java;Rust
+48397,Java;Kotlin
+48398,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+48399,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+48400,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+48401,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+48402,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+48403,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48404,PHP
+48405,C;C++;Go;Java;PHP;SQL
+48406,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+48407,Bash/Shell/PowerShell;SQL;Other(s):
+48408,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+48409,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;Rust;Other(s):
+48411,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+48412,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48413,C;C#;HTML/CSS;Objective-C;Python;SQL;Swift
+48414,C;C++;Python
+48415,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+48417,Bash/Shell/PowerShell;C++;JavaScript;Python
+48418,C;C++;HTML/CSS;JavaScript;PHP;SQL
+48419,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+48420,C#;HTML/CSS;JavaScript;SQL
+48422,HTML/CSS;JavaScript;PHP;Python;R;SQL
+48423,HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48424,Java;Kotlin
+48425,Bash/Shell/PowerShell;C#;HTML/CSS;Java;TypeScript;Other(s):
+48426,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python
+48427,HTML/CSS;JavaScript;Python;Ruby;SQL
+48428,HTML/CSS;JavaScript;Python
+48429,C#;Java;JavaScript;Kotlin
+48430,Objective-C;Swift;TypeScript
+48431,Bash/Shell/PowerShell;HTML/CSS;Python
+48432,C#;SQL
+48433,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+48434,C++;C#;HTML/CSS;Java;JavaScript
+48435,Go;Java;TypeScript
+48436,C#;HTML/CSS;JavaScript;PHP
+48437,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Scala;Swift
+48438,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+48439,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+48440,Java;JavaScript;Python
+48441,HTML/CSS;JavaScript;PHP;Scala;SQL;VBA
+48442,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+48444,C;Go;HTML/CSS;Java;JavaScript;Python
+48445,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+48446,C;C++;Python
+48447,C++;C#;Go;Java;JavaScript;Kotlin;Python;Ruby
+48448,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+48449,HTML/CSS;JavaScript;PHP;SQL
+48450,Go;HTML/CSS;JavaScript;Ruby
+48451,C#;Clojure;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+48452,C;C++;Dart;Python;Scala
+48453,HTML/CSS;Python
+48454,C#;HTML/CSS;JavaScript;SQL;Other(s):
+48455,Go;JavaScript;Ruby;Rust;TypeScript
+48456,HTML/CSS;JavaScript;Python;SQL;Other(s):
+48457,Bash/Shell/PowerShell;PHP;SQL
+48458,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+48459,Assembly;C;C++;Python
+48460,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift;TypeScript
+48461,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+48462,HTML/CSS;JavaScript;PHP
+48463,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+48464,HTML/CSS;Java;JavaScript
+48465,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+48466,Java;JavaScript;Python;SQL;TypeScript
+48467,C++;Java;JavaScript;Python
+48468,JavaScript;Python;R;SQL;VBA
+48469,Ruby;Scala
+48470,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+48471,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;Python;R;SQL;Swift;Other(s):
+48472,Go;Python
+48473,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+48474,Bash/Shell/PowerShell;C;Swift
+48475,C;C++;Python
+48476,JavaScript;Other(s):
+48477,Bash/Shell/PowerShell;JavaScript
+48478,Python
+48479,Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+48480,Bash/Shell/PowerShell;C;Java;SQL;VBA
+48481,HTML/CSS;JavaScript;Python
+48482,C++;HTML/CSS;JavaScript;SQL
+48483,Java;JavaScript;Python
+48484,C#;HTML/CSS;Java;SQL
+48485,C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+48486,C;C++;Java;Kotlin;PHP;SQL;Swift
+48487,HTML/CSS;JavaScript;TypeScript
+48488,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+48489,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+48490,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+48491,Python;Scala
+48492,Bash/Shell/PowerShell;Java;Python
+48493,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;R;TypeScript
+48494,Assembly;Bash/Shell/PowerShell;C;Python;SQL
+48495,HTML/CSS;Java;Ruby;SQL;Other(s):
+48496,Java;JavaScript;SQL
+48497,HTML/CSS;Java;JavaScript;PHP;SQL
+48498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48499,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+48500,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+48501,C#;HTML/CSS;JavaScript;Python;TypeScript
+48502,HTML/CSS;JavaScript;Python
+48503,C#;SQL
+48504,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48505,JavaScript;Swift;TypeScript
+48506,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+48507,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+48508,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+48509,C#;HTML/CSS;JavaScript;SQL
+48510,HTML/CSS;JavaScript;Ruby
+48511,C#;JavaScript;TypeScript
+48512,C++;C#;HTML/CSS;JavaScript;SQL
+48513,C#;HTML/CSS;JavaScript;SQL
+48514,Bash/Shell/PowerShell;C;Python
+48515,HTML/CSS;JavaScript;Kotlin;Python;R;TypeScript
+48516,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+48517,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+48518,C++;C#;Erlang;Go;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+48519,HTML/CSS;JavaScript
+48520,Assembly;C;C++;Python
+48521,C#;Java;Python;SQL;Other(s):
+48522,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+48523,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+48524,Bash/Shell/PowerShell;PHP;Python;SQL;Other(s):
+48525,C++;Clojure;JavaScript;TypeScript
+48526,HTML/CSS;JavaScript;PHP
+48527,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Ruby;Rust;TypeScript
+48528,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+48530,HTML/CSS;Java;JavaScript;Python;SQL
+48531,HTML/CSS;JavaScript;PHP;SQL
+48532,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;R;SQL
+48533,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+48534,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+48535,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+48536,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+48537,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+48538,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+48539,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+48540,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+48541,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+48542,Bash/Shell/PowerShell;Java
+48543,Bash/Shell/PowerShell;C++;Clojure;Java;Python;R
+48544,C;C++;C#;HTML/CSS;TypeScript
+48545,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48546,Bash/Shell/PowerShell;C++;SQL
+48547,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+48548,HTML/CSS;PHP
+48549,C++;Go;Python
+48550,Python;SQL;Other(s):
+48552,Java;Objective-C;Swift
+48553,Assembly;C;Python
+48554,Bash/Shell/PowerShell;Other(s):
+48555,C#;Dart;HTML/CSS;Python
+48556,HTML/CSS;Java;JavaScript;PHP;SQL
+48557,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+48558,HTML/CSS;JavaScript
+48559,HTML/CSS;Java;JavaScript
+48560,C#;Java;JavaScript;SQL
+48561,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+48562,Python;R
+48563,Bash/Shell/PowerShell;Clojure;JavaScript;Python;Ruby;Rust;SQL
+48564,C;C++;C#;Objective-C;Swift
+48565,C++;C#;JavaScript;Python
+48566,HTML/CSS;JavaScript;Other(s):
+48567,Python;R;SQL
+48568,Bash/Shell/PowerShell;PHP
+48569,C;C++
+48570,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+48571,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48572,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;Kotlin;Python;SQL
+48573,Python;Other(s):
+48574,C#;HTML/CSS;JavaScript;SQL
+48575,Assembly
+48576,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;F#;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;TypeScript;WebAssembly
+48577,C;C++
+48578,JavaScript;PHP;Python
+48579,Java;JavaScript;Kotlin;PHP
+48580,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+48581,HTML/CSS;Java;JavaScript;SQL
+48582,C#;SQL;Other(s):
+48584,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48585,C#;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+48586,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48587,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+48588,HTML/CSS;JavaScript;PHP;Python
+48589,Java;Python
+48590,Bash/Shell/PowerShell;C;C++;Python
+48591,HTML/CSS;JavaScript;PHP;SQL
+48592,Bash/Shell/PowerShell;C++;C#;Python;SQL
+48593,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+48594,Clojure;HTML/CSS;JavaScript;Python
+48596,C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+48597,Bash/Shell/PowerShell;JavaScript;Python;SQL
+48598,Bash/Shell/PowerShell;C;C++;C#;Python;Scala;SQL;TypeScript
+48599,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+48600,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+48601,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+48602,HTML/CSS;JavaScript;TypeScript
+48603,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+48604,Python
+48605,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+48606,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+48607,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48608,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript
+48609,HTML/CSS;JavaScript;Python;SQL
+48610,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48611,HTML/CSS;JavaScript;Ruby;SQL
+48613,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R
+48614,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+48615,C;C++;HTML/CSS;JavaScript
+48616,C#;SQL
+48617,Java;Python
+48618,Java;Python;SQL
+48620,C#;HTML/CSS;JavaScript;TypeScript
+48621,HTML/CSS;PHP
+48623,Bash/Shell/PowerShell;Java;Python;R;Ruby;SQL
+48624,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+48625,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+48626,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+48627,Bash/Shell/PowerShell;Java;SQL
+48628,HTML/CSS;Java;JavaScript;Python;SQL
+48629,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+48630,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Rust
+48631,HTML/CSS;JavaScript;PHP;Python;SQL
+48632,Go;JavaScript;Python;SQL
+48633,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48634,C;HTML/CSS;JavaScript
+48635,Bash/Shell/PowerShell;Java;JavaScript;Python;Rust;SQL
+48636,Bash/Shell/PowerShell;Python;R;Other(s):
+48637,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+48638,C++;C#;Java;JavaScript;PHP;SQL
+48639,Java;Objective-C;Swift
+48640,C#;HTML/CSS;Python
+48641,Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL
+48642,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+48643,C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+48644,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+48645,Python;R;SQL
+48646,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL
+48647,HTML/CSS;JavaScript;Ruby
+48649,C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+48650,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+48651,Bash/Shell/PowerShell;Python;SQL
+48652,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48653,Go;Java;SQL
+48654,C++;HTML/CSS;JavaScript;Python
+48655,C;C++;HTML/CSS;Java;JavaScript;SQL
+48656,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48657,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+48658,Bash/Shell/PowerShell;PHP;Python;VBA
+48659,HTML/CSS;Java;PHP;Python;SQL;TypeScript
+48660,Bash/Shell/PowerShell;Java;JavaScript;SQL
+48661,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48663,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+48664,Bash/Shell/PowerShell;C#;Erlang;Java;JavaScript;Objective-C;Swift;TypeScript
+48665,HTML/CSS
+48666,C#;HTML/CSS;JavaScript;SQL;VBA
+48667,Bash/Shell/PowerShell;Java;Python;SQL
+48668,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48669,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48670,HTML/CSS;Java;Python
+48671,C#;JavaScript;PHP;SQL
+48672,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+48673,C++;Java;JavaScript
+48674,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48675,Bash/Shell/PowerShell;C;Java;Python;SQL
+48676,Bash/Shell/PowerShell;Java
+48677,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+48678,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+48679,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+48680,C++;C#;Java;SQL;Other(s):
+48681,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+48682,C++;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+48683,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+48684,R;SQL
+48685,C++;C#;HTML/CSS;JavaScript;SQL
+48686,HTML/CSS;JavaScript;TypeScript
+48687,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48688,HTML/CSS;Java;JavaScript;PHP;SQL
+48689,Java;Python;SQL
+48690,JavaScript;PHP;Python;SQL;VBA
+48691,C#;HTML/CSS;SQL
+48692,Python
+48693,HTML/CSS;Java;JavaScript;Python;SQL
+48694,Bash/Shell/PowerShell;C;C++;Rust
+48695,HTML/CSS;Java;JavaScript;SQL
+48696,C++;HTML/CSS;JavaScript;PHP;TypeScript
+48697,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+48698,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48699,Java;JavaScript;Kotlin;TypeScript
+48700,Java;SQL
+48701,C#;Java
+48703,Go;HTML/CSS;Java;JavaScript;Python;SQL
+48704,C#;Other(s):
+48705,C;C++;Java;JavaScript;Python;SQL
+48706,Go;Java
+48707,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly
+48708,Elixir;HTML/CSS;Java;JavaScript;SQL
+48709,C;HTML/CSS;Java;JavaScript;Kotlin;PHP
+48710,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+48711,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Erlang;F#;Java;Kotlin;Python;Swift;Other(s):
+48712,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+48713,C++;C#;HTML/CSS;JavaScript;SQL
+48714,HTML/CSS;JavaScript;Other(s):
+48715,C#;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+48716,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+48717,HTML/CSS;JavaScript;Python
+48718,Bash/Shell/PowerShell;C#;Scala
+48719,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+48720,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+48721,Bash/Shell/PowerShell;C
+48722,C#;HTML/CSS;Java;JavaScript;SQL
+48723,C#;JavaScript;TypeScript
+48724,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+48725,Bash/Shell/PowerShell;C#;Go;SQL
+48726,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+48727,C++;Java;Kotlin;Python;Rust
+48728,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+48729,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+48730,Python;SQL;VBA
+48731,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+48732,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+48733,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+48735,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48736,HTML/CSS;JavaScript;Ruby;Rust
+48737,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48738,HTML/CSS;JavaScript;Python
+48739,HTML/CSS;Java;JavaScript;TypeScript
+48740,Java;Other(s):
+48741,HTML/CSS;Java;JavaScript;Python;TypeScript
+48742,Python
+48743,C#;HTML/CSS;JavaScript;SQL
+48744,Java;PHP
+48745,Bash/Shell/PowerShell;C
+48746,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+48747,Swift
+48748,HTML/CSS;JavaScript;PHP;SQL
+48749,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+48750,C;C#;HTML/CSS;JavaScript;PHP
+48751,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+48752,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;Swift
+48753,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+48754,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+48755,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+48756,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+48757,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+48758,Bash/Shell/PowerShell;C;C++;Go;Java;Python;SQL
+48759,HTML/CSS;JavaScript;PHP;Python
+48760,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;Ruby;SQL
+48761,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;VBA
+48762,HTML/CSS;Java;Other(s):
+48763,C;C++;HTML/CSS;JavaScript;Python;SQL
+48764,HTML/CSS;Java;Python;SQL;VBA
+48765,C;C++;Rust;Other(s):
+48766,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+48767,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+48768,Assembly;C;HTML/CSS;Ruby
+48769,C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+48770,C#;R;SQL
+48771,Clojure;HTML/CSS;Java;JavaScript;Python
+48773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+48774,Assembly;C;HTML/CSS;JavaScript;Python
+48775,HTML/CSS;JavaScript
+48776,HTML/CSS;Java;JavaScript
+48777,Assembly;C#;Java;Python;SQL;VBA
+48778,C;Java;Python
+48779,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+48780,HTML/CSS;Java;JavaScript;SQL
+48781,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+48782,Java
+48783,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+48784,JavaScript;PHP;Python;SQL
+48785,Java;SQL
+48786,Assembly;C;HTML/CSS;JavaScript;SQL;VBA
+48787,HTML/CSS;JavaScript
+48788,Bash/Shell/PowerShell;F#;Java;JavaScript;Kotlin;Python;Scala;SQL
+48789,HTML/CSS;Java;JavaScript;SQL;TypeScript
+48790,C;C++;JavaScript
+48791,HTML/CSS;Python;Swift
+48792,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+48793,C++;JavaScript;Python;TypeScript
+48794,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+48795,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+48796,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48797,HTML/CSS;Java;JavaScript;SQL;TypeScript
+48798,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;TypeScript
+48799,Bash/Shell/PowerShell;Go;SQL
+48800,Assembly;Bash/Shell/PowerShell;C;C++;C#;SQL;Other(s):
+48801,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Python
+48802,HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;Swift
+48803,Go;JavaScript;Python
+48804,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;Kotlin;Python;Rust;TypeScript
+48805,HTML/CSS;Java;JavaScript;Python
+48806,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+48807,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+48808,Python
+48809,Java;Scala;SQL
+48810,HTML/CSS;JavaScript;PHP;SQL
+48811,Java;Kotlin
+48812,C;C++;Python
+48813,HTML/CSS;Java;JavaScript
+48814,C++;Python
+48815,HTML/CSS;Java;PHP;SQL
+48816,Assembly;C;Python
+48817,Bash/Shell/PowerShell;C;C++;Python;VBA
+48818,C#;HTML/CSS;JavaScript;SQL
+48819,C;C++;HTML/CSS;Python
+48820,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+48821,Bash/Shell/PowerShell;C#
+48822,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Rust
+48823,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+48824,HTML/CSS;JavaScript;SQL;VBA;Other(s):
+48825,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Python;Ruby;SQL;Other(s):
+48826,JavaScript;Python;SQL
+48827,Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+48828,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+48829,C++;Python
+48830,Assembly;C;C++;HTML/CSS;Java;JavaScript
+48831,HTML/CSS;Python
+48832,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+48833,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48834,Bash/Shell/PowerShell;Python;R;SQL
+48835,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+48836,Bash/Shell/PowerShell;Python;R;SQL
+48837,C++;JavaScript;Python;R;Other(s):
+48838,Java;Python
+48839,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+48840,Clojure;Java;JavaScript;PHP;SQL
+48841,JavaScript;Python;R;SQL
+48842,C#;HTML/CSS;Java;JavaScript;SQL
+48843,Bash/Shell/PowerShell;C++;C#
+48844,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48845,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Ruby
+48846,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+48847,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+48848,C#;Java;JavaScript;TypeScript
+48849,HTML/CSS;JavaScript
+48850,C++;Java;JavaScript;Python;SQL
+48851,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+48852,Go;Java
+48853,HTML/CSS;Java;JavaScript;PHP;SQL
+48854,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+48855,Bash/Shell/PowerShell;Python;TypeScript
+48856,C;C#;Java;JavaScript;Kotlin;TypeScript
+48857,C#;F#
+48858,C#;HTML/CSS;JavaScript;TypeScript
+48859,Bash/Shell/PowerShell;C++;C#;Clojure;Dart;Go;HTML/CSS;JavaScript;Objective-C;Rust;Scala;SQL;TypeScript
+48860,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;Other(s):
+48861,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+48862,HTML/CSS;JavaScript;SQL
+48864,HTML/CSS;JavaScript;Ruby
+48865,C++;Java;Python
+48866,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+48867,C#;SQL
+48868,C;Java;JavaScript;Objective-C;Python;R;Ruby;Swift
+48869,C#;HTML/CSS;JavaScript;PHP
+48870,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+48871,C#;JavaScript;PHP;SQL
+48872,Bash/Shell/PowerShell;C;Java;Python;SQL
+48873,Clojure;JavaScript;Kotlin;TypeScript
+48874,HTML/CSS;Java;JavaScript;PHP;Python
+48875,JavaScript
+48876,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+48877,Assembly;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+48878,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+48879,HTML/CSS;JavaScript;Ruby
+48880,HTML/CSS;JavaScript;PHP;Python;SQL
+48881,Python;Other(s):
+48882,HTML/CSS;Java;JavaScript;SQL;TypeScript
+48883,Bash/Shell/PowerShell;C++;C#;Java;Python;SQL;VBA
+48884,Java;Kotlin
+48885,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48886,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+48887,C++;JavaScript;Objective-C;Python;SQL;Swift
+48888,HTML/CSS;Java;JavaScript;Swift;TypeScript
+48889,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+48890,C++;Go;HTML/CSS;JavaScript;Objective-C;PHP;Swift;TypeScript
+48891,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;SQL
+48892,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+48893,C#;Java;JavaScript;Kotlin;Objective-C
+48894,HTML/CSS;JavaScript;PHP;SQL
+48895,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48896,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+48897,HTML/CSS;JavaScript;PHP;SQL
+48898,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+48899,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+48900,C;C++;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+48901,Bash/Shell/PowerShell;C++;Python
+48902,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;VBA
+48903,Java
+48904,HTML/CSS;JavaScript
+48905,Assembly;C;C#;Python
+48906,C#;HTML/CSS;JavaScript;Other(s):
+48907,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;SQL
+48908,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+48909,HTML/CSS;JavaScript;PHP;TypeScript
+48910,Bash/Shell/PowerShell;Java;Swift
+48911,Swift
+48913,C;C++;C#;HTML/CSS;SQL;Other(s):
+48915,Bash/Shell/PowerShell;Java;PHP;Python;SQL
+48916,C;C#;JavaScript;SQL;Other(s):
+48917,C#;HTML/CSS;JavaScript;SQL
+48918,Bash/Shell/PowerShell;C++;C#;Erlang;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+48919,HTML/CSS;JavaScript;PHP;SQL
+48920,HTML/CSS;JavaScript;PHP
+48921,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin
+48923,C#;PHP;Python;SQL
+48924,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+48925,Python
+48926,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+48927,Bash/Shell/PowerShell;Python;Ruby
+48928,C#;HTML/CSS;JavaScript;PHP;SQL
+48929,Go;JavaScript;Python;SQL
+48930,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;TypeScript
+48931,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;Swift
+48932,HTML/CSS;JavaScript;PHP;SQL
+48933,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48934,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48935,HTML/CSS;JavaScript
+48936,HTML/CSS;PHP;SQL
+48937,C#;JavaScript;SQL;VBA;Other(s):
+48938,Bash/Shell/PowerShell;Other(s):
+48939,HTML/CSS;JavaScript;Python;SQL
+48940,Assembly;C;C++
+48941,Python
+48942,Java;Kotlin;Python
+48943,Objective-C;Swift
+48944,C;C++;C#;HTML/CSS;Java;SQL;VBA;Other(s):
+48945,C;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+48946,C#;HTML/CSS;JavaScript
+48947,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+48948,C++;Python
+48949,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+48950,HTML/CSS;Java;JavaScript;Python
+48951,Bash/Shell/PowerShell;Go;Java;Python;R;SQL
+48952,HTML/CSS;Java;JavaScript;SQL
+48953,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+48954,C++;C#;Java;JavaScript;Objective-C;Python;SQL;VBA
+48955,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+48956,C;C++;C#;Go;HTML/CSS;Java;JavaScript
+48957,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+48958,Java;JavaScript;SQL
+48959,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+48960,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+48961,C#;HTML/CSS;JavaScript;SQL
+48962,C++;HTML/CSS;Java;JavaScript;Python;SQL
+48963,HTML/CSS;Java;JavaScript
+48964,HTML/CSS;Java;JavaScript;Objective-C
+48965,Bash/Shell/PowerShell;C#;Python;TypeScript
+48966,HTML/CSS;JavaScript
+48967,Java;JavaScript;Kotlin
+48968,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+48969,HTML/CSS;JavaScript;TypeScript
+48970,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Scala;Swift
+48971,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;Python;SQL
+48972,Other(s):
+48973,C#;Dart;HTML/CSS;JavaScript;TypeScript
+48974,Bash/Shell/PowerShell;C;C++;Dart;Java
+48975,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+48976,Python;Scala;SQL
+48977,C#;HTML/CSS;JavaScript;SQL;TypeScript
+48978,HTML/CSS;Java;JavaScript;PHP;SQL
+48979,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+48980,HTML/CSS;Java;JavaScript;SQL
+48981,HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+48982,HTML/CSS;JavaScript
+48983,Bash/Shell/PowerShell;C++;Python
+48984,HTML/CSS;Java;JavaScript;Python
+48985,C++;C#;HTML/CSS;JavaScript
+48986,HTML/CSS;Python;Scala;SQL;Swift
+48987,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+48988,Bash/Shell/PowerShell;Java;Rust;Scala;SQL;TypeScript;WebAssembly
+48989,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Python
+48990,HTML/CSS;JavaScript;Python;Ruby
+48991,HTML/CSS;JavaScript;PHP;SQL
+48992,HTML/CSS;JavaScript;Python;TypeScript
+48993,Bash/Shell/PowerShell;Java;Python;SQL
+48994,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+48995,HTML/CSS;JavaScript
+48996,Clojure;Java;JavaScript
+48997,C#;JavaScript;TypeScript;VBA;Other(s):
+48998,Java;Kotlin;SQL
+48999,HTML/CSS;Java;JavaScript;SQL
+49000,Clojure;HTML/CSS;SQL
+49001,C#;HTML/CSS;JavaScript;Python;SQL
+49002,C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+49003,C#;HTML/CSS;JavaScript
+49004,JavaScript;Python;Rust;TypeScript
+49005,Assembly;Bash/Shell/PowerShell;C;Dart;HTML/CSS;JavaScript;Python
+49006,HTML/CSS;JavaScript
+49007,HTML/CSS;Java;JavaScript;SQL
+49008,C#;HTML/CSS;JavaScript;Python;TypeScript
+49009,HTML/CSS;JavaScript
+49010,Assembly;Bash/Shell/PowerShell;C#;JavaScript
+49011,C#;HTML/CSS;JavaScript;SQL;VBA
+49012,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+49013,HTML/CSS;JavaScript;PHP;SQL
+49014,HTML/CSS;Java;SQL
+49015,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python
+49016,Java;Kotlin
+49017,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+49018,C#;HTML/CSS;JavaScript;SQL
+49019,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python
+49020,C#;JavaScript;SQL
+49022,Assembly;C;Java;JavaScript;Kotlin;Objective-C;Scala;Swift
+49023,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+49024,HTML/CSS;JavaScript;PHP;SQL
+49025,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+49026,HTML/CSS;JavaScript;PHP;Python;R
+49027,HTML/CSS;JavaScript;PHP;SQL
+49028,HTML/CSS;JavaScript;PHP;SQL
+49029,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+49030,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+49031,Dart;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+49032,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+49033,HTML/CSS;JavaScript;PHP;Ruby
+49034,HTML/CSS;JavaScript;PHP;SQL
+49035,HTML/CSS;Java;JavaScript;PHP
+49036,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+49037,Ruby;Swift
+49038,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+49039,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49040,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL;Other(s):
+49041,Java
+49042,Assembly;Bash/Shell/PowerShell;C;Go;PHP;Python;Rust
+49043,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+49044,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+49045,C;C++;Go;Java;Python
+49046,C#;HTML/CSS;JavaScript;SQL
+49047,HTML/CSS;JavaScript
+49048,HTML/CSS;JavaScript;PHP
+49049,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+49050,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49051,Java;Swift;TypeScript
+49052,Bash/Shell/PowerShell;Kotlin
+49053,HTML/CSS;JavaScript;SQL;Other(s):
+49054,Bash/Shell/PowerShell;PHP;Python;SQL
+49055,C#;HTML/CSS;Java;JavaScript;Python;SQL
+49056,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;TypeScript
+49057,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49058,Java;SQL;Other(s):
+49059,C#;HTML/CSS;JavaScript;SQL
+49060,HTML/CSS;JavaScript
+49061,HTML/CSS;JavaScript;PHP
+49062,C;C++;C#;HTML/CSS;Java;JavaScript
+49063,R;Other(s):
+49064,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+49065,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+49066,C++;C#;HTML/CSS;Python
+49067,Java;JavaScript;PHP;Python;R;Scala
+49068,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+49069,Java
+49070,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49071,JavaScript;PHP;SQL
+49072,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+49073,Objective-C;SQL;Swift
+49074,C++;C#;JavaScript;Python;SQL
+49075,Python
+49076,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;VBA
+49077,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+49078,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+49079,C;C++;F#;Python
+49080,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+49081,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+49082,Objective-C;SQL;Swift
+49083,Bash/Shell/PowerShell;C#;JavaScript;Swift
+49084,Objective-C;Swift
+49085,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+49087,Bash/Shell/PowerShell;C#;Java;SQL
+49088,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+49089,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+49090,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+49091,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby
+49092,PHP
+49093,C#;JavaScript;Python;SQL
+49094,C;C++;C#;HTML/CSS;JavaScript;SQL
+49095,Bash/Shell/PowerShell;C#;Go;Rust
+49096,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+49097,Clojure;Java;Python;Ruby
+49098,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;Other(s):
+49099,C;HTML/CSS;Java;JavaScript;Python
+49100,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49101,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49102,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+49103,C;C++;Other(s):
+49104,C++;C#;Python;SQL;Other(s):
+49105,JavaScript
+49106,Bash/Shell/PowerShell;Go
+49107,C++;HTML/CSS;Java;PHP;Python;SQL
+49108,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+49109,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49110,Assembly;C;C#;HTML/CSS;JavaScript;PHP;Python;Other(s):
+49111,Java;Python;Ruby;SQL
+49112,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Other(s):
+49113,Bash/Shell/PowerShell;C;C++
+49114,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+49115,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;TypeScript
+49116,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+49117,C#;JavaScript
+49118,C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+49119,HTML/CSS;JavaScript;PHP;Python
+49120,C;C++;Java;Kotlin;Python;SQL;Other(s):
+49121,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+49122,C++;HTML/CSS;JavaScript;TypeScript
+49123,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+49124,HTML/CSS;JavaScript
+49125,HTML/CSS;JavaScript;TypeScript
+49126,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+49127,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+49128,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+49129,HTML/CSS;JavaScript;PHP
+49130,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+49131,C#;HTML/CSS;JavaScript;SQL
+49132,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R
+49133,HTML/CSS;JavaScript;TypeScript
+49134,HTML/CSS;JavaScript;PHP
+49135,Bash/Shell/PowerShell;C++;Python;SQL
+49136,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+49137,C#;HTML/CSS;SQL
+49138,C;C#;HTML/CSS;Java;Python
+49139,Java;JavaScript;Kotlin;SQL
+49140,C;Java;Kotlin;Python
+49141,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+49142,C#;HTML/CSS;JavaScript;PHP
+49143,C;C++;Go;HTML/CSS;JavaScript;PHP;SQL
+49144,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+49145,Elixir;HTML/CSS;JavaScript;Python;SQL
+49146,C++;HTML/CSS;JavaScript;PHP;Python
+49147,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL;Swift;TypeScript
+49148,C++;C#
+49149,HTML/CSS;JavaScript;SQL
+49150,C;Java;JavaScript;PHP
+49151,JavaScript;Ruby
+49152,Bash/Shell/PowerShell;C;C++;Python
+49153,Java;Kotlin
+49154,HTML/CSS;JavaScript
+49155,HTML/CSS;Java;JavaScript;SQL
+49156,JavaScript;PHP;SQL
+49157,JavaScript;TypeScript
+49158,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+49159,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Rust;Other(s):
+49160,HTML/CSS;Java;JavaScript;Objective-C;SQL
+49161,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+49163,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+49164,HTML/CSS;Java;JavaScript;SQL
+49165,C++;C#;HTML/CSS;JavaScript
+49166,C#;HTML/CSS;Java;JavaScript;TypeScript
+49167,Java;Python
+49168,C#;SQL
+49169,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+49170,Bash/Shell/PowerShell;Java;Python;Scala;SQL;Other(s):
+49171,C;C++;Java
+49172,HTML/CSS;Java;JavaScript;Objective-C;Swift
+49173,HTML/CSS;JavaScript;PHP;Python;SQL
+49174,Java;JavaScript;SQL;Other(s):
+49175,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+49176,HTML/CSS;JavaScript;SQL;TypeScript
+49177,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+49179,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+49180,HTML/CSS;JavaScript
+49181,C;Erlang;Rust
+49182,HTML/CSS;Other(s):
+49183,HTML/CSS;Java;JavaScript;PHP;SQL
+49184,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+49185,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;Kotlin;Rust;TypeScript
+49186,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala
+49187,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+49188,JavaScript
+49189,Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+49190,JavaScript;PHP;Python;SQL;Swift
+49191,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+49192,C#;HTML/CSS;Python;SQL
+49193,Bash/Shell/PowerShell;C#;JavaScript;Python;R
+49194,C++;TypeScript
+49195,HTML/CSS;Java;JavaScript;TypeScript
+49196,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+49197,C#;HTML/CSS;JavaScript;PHP;SQL
+49198,Bash/Shell/PowerShell;Go;Python;SQL;Other(s):
+49199,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49201,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+49202,C;C++;C#;HTML/CSS;PHP;SQL
+49203,HTML/CSS;JavaScript;PHP;SQL
+49204,C#;F#;HTML/CSS;Python
+49205,HTML/CSS;JavaScript;PHP;SQL
+49206,C#
+49207,HTML/CSS;JavaScript;PHP;Python
+49208,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Other(s):
+49209,HTML/CSS;Java;JavaScript;Python;SQL
+49210,HTML/CSS;JavaScript
+49211,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+49212,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+49213,Python;Scala;SQL
+49214,SQL;Other(s):
+49215,Bash/Shell/PowerShell;Python;SQL
+49216,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+49217,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+49218,C#;HTML/CSS;JavaScript;PHP;SQL
+49219,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+49220,Assembly;Bash/Shell/PowerShell;C;C++;Python
+49221,Java;JavaScript
+49222,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+49223,Bash/Shell/PowerShell;C#;SQL
+49224,C;C#
+49225,HTML/CSS;Java;JavaScript;VBA
+49226,Python
+49227,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Scala
+49228,Assembly;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+49229,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+49230,Java;JavaScript
+49231,Bash/Shell/PowerShell;C++
+49232,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+49233,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+49234,Java;Rust
+49235,HTML/CSS;JavaScript;PHP;SQL
+49236,C++;C#;Java
+49237,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+49238,Assembly;Bash/Shell/PowerShell;C;C++;C#;SQL
+49239,HTML/CSS;JavaScript
+49240,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+49241,Bash/Shell/PowerShell;C;C++;Python
+49242,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+49243,HTML/CSS;JavaScript;Python;TypeScript
+49244,C;C#;Java;JavaScript;Python
+49246,Bash/Shell/PowerShell;Elixir;JavaScript;Other(s):
+49248,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+49249,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+49250,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+49251,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+49252,Rust;SQL;Other(s):
+49253,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+49254,Go;PHP
+49255,HTML/CSS;Java;JavaScript;SQL;TypeScript
+49256,HTML/CSS;JavaScript
+49257,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+49258,C#;HTML/CSS;Java;JavaScript
+49259,C;C++;JavaScript;PHP;SQL
+49260,HTML/CSS;JavaScript
+49261,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+49262,C;C++;C#;HTML/CSS;Java;PHP;SQL
+49263,Bash/Shell/PowerShell;C;Objective-C;Ruby;Swift
+49264,C++;Java;Python
+49265,Assembly;Bash/Shell/PowerShell;C;Python
+49266,HTML/CSS;Java;JavaScript;PHP;SQL
+49267,Assembly;C++;C#;HTML/CSS;Python
+49269,C;Java;SQL
+49270,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+49271,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+49272,Bash/Shell/PowerShell;C#;Python;SQL
+49273,HTML/CSS;Swift;TypeScript
+49274,HTML/CSS;JavaScript;Python
+49275,C#;HTML/CSS;JavaScript;SQL
+49276,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+49277,C++;Java;Python
+49278,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+49279,HTML/CSS;JavaScript;PHP;SQL
+49280,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+49281,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+49282,C;HTML/CSS;Java;JavaScript;PHP;Other(s):
+49283,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+49284,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+49286,C;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;VBA
+49287,C#;Java;Kotlin
+49288,C#;Python;VBA
+49289,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49290,Bash/Shell/PowerShell;Elixir;Python;Ruby
+49291,Clojure;Elixir;F#;Kotlin;Rust;Scala;Swift;Other(s):
+49292,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+49293,Bash/Shell/PowerShell;C#;F#;JavaScript;SQL
+49294,JavaScript;Python
+49295,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+49296,C#;HTML/CSS;JavaScript;SQL;Other(s):
+49297,C#;HTML/CSS;JavaScript;Ruby;SQL
+49298,HTML/CSS;JavaScript;PHP
+49299,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+49300,TypeScript
+49301,JavaScript;Python
+49302,Assembly;C;HTML/CSS;JavaScript;PHP;Python
+49303,Bash/Shell/PowerShell;Java;SQL
+49304,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+49305,C;C++;C#;HTML/CSS;Python
+49306,Dart;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;WebAssembly
+49307,Objective-C;Ruby
+49308,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+49309,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+49310,HTML/CSS;Java;JavaScript;SQL;TypeScript
+49311,Java;JavaScript
+49312,Bash/Shell/PowerShell;Python
+49313,Python;Rust
+49314,C;C++;HTML/CSS;Java;Python
+49315,HTML/CSS;Java;JavaScript;PHP;Other(s):
+49316,JavaScript;PHP;Python
+49317,Java;Other(s):
+49318,JavaScript;Other(s):
+49319,Go
+49320,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+49321,Bash/Shell/PowerShell;Python;R;SQL
+49322,HTML/CSS;JavaScript;TypeScript
+49323,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+49324,C++;C#;HTML/CSS;JavaScript;Ruby;SQL
+49325,C;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Other(s):
+49326,HTML/CSS;JavaScript;PHP;Python;Swift
+49327,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+49328,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL;Other(s):
+49329,C;C++;VBA
+49330,Bash/Shell/PowerShell;C#;Go;Python
+49331,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+49332,HTML/CSS;JavaScript;Ruby;SQL
+49333,Bash/Shell/PowerShell;JavaScript;Python
+49334,HTML/CSS;JavaScript;PHP
+49335,Java;PHP;SQL
+49336,Java;JavaScript;SQL;TypeScript
+49337,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+49338,Bash/Shell/PowerShell;C++;Python;SQL
+49339,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+49340,Java;JavaScript;Scala;TypeScript
+49341,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;VBA
+49342,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+49343,Bash/Shell/PowerShell;C++;Java
+49344,Java;Python;SQL;Swift
+49345,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49346,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+49347,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+49348,C#
+49349,HTML/CSS;Java;JavaScript
+49350,Go;HTML/CSS;Java;JavaScript;Python;SQL
+49351,Objective-C;Swift
+49352,HTML/CSS;JavaScript;PHP
+49353,Clojure;HTML/CSS;Java;JavaScript;TypeScript
+49354,HTML/CSS;JavaScript;SQL;TypeScript
+49355,R;SQL
+49356,Objective-C;Swift
+49357,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+49358,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+49359,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+49360,Bash/Shell/PowerShell
+49361,Java;Kotlin;Python
+49362,HTML/CSS;Java
+49363,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL
+49364,HTML/CSS;JavaScript;SQL;Swift;TypeScript
+49365,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+49366,C;HTML/CSS;JavaScript;Python
+49367,Java
+49368,C;C++;HTML/CSS;Java;JavaScript;PHP
+49369,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+49370,C;Java;JavaScript;TypeScript
+49371,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+49372,HTML/CSS;Java;JavaScript;PHP;SQL
+49373,Java;JavaScript;Kotlin;TypeScript
+49374,HTML/CSS;Java;JavaScript;PHP;SQL
+49375,C;Clojure;Python;R;Other(s):
+49376,C#;F#;HTML/CSS;JavaScript;SQL;Other(s):
+49377,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+49378,C#;HTML/CSS;JavaScript;Python
+49379,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+49380,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+49381,HTML/CSS;JavaScript
+49382,HTML/CSS;Java;JavaScript
+49383,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+49384,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;Objective-C;Rust;TypeScript;WebAssembly
+49385,HTML/CSS;JavaScript;Python;SQL
+49386,C;Python
+49387,HTML/CSS;Python
+49388,C#;JavaScript
+49389,Python
+49390,Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+49391,HTML/CSS;TypeScript;Other(s):
+49392,Clojure
+49393,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+49394,HTML/CSS;JavaScript;PHP;Python;SQL
+49395,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+49396,HTML/CSS;JavaScript;TypeScript
+49397,C;C++;HTML/CSS;JavaScript;PHP
+49398,HTML/CSS;JavaScript
+49399,Assembly;C;C++;HTML/CSS;Java;Kotlin;PHP;Python;SQL
+49400,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+49402,C#;HTML/CSS;SQL
+49403,Assembly;C;C++;C#;JavaScript;Python
+49404,C#;Python;Ruby;SQL
+49405,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+49406,C;C++;Go;HTML/CSS;Java;JavaScript;Python
+49407,HTML/CSS;Java;JavaScript;PHP;SQL
+49408,C#;Elixir;Go;HTML/CSS;JavaScript;PHP;TypeScript
+49409,C++;C#
+49410,HTML/CSS;JavaScript;PHP;SQL
+49411,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+49412,Bash/Shell/PowerShell;JavaScript;Ruby;Rust
+49413,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+49414,C#;HTML/CSS;JavaScript;SQL
+49415,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+49416,Python
+49417,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+49418,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL
+49419,C#;SQL
+49420,C;C++;HTML/CSS;Java;JavaScript
+49421,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+49422,C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+49423,Assembly;Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;SQL
+49424,C#;HTML/CSS;JavaScript;PHP;SQL
+49425,HTML/CSS;JavaScript;Python;SQL
+49426,HTML/CSS;PHP;SQL
+49427,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+49428,C#;Go;JavaScript;Python;SQL;TypeScript
+49429,C#;JavaScript;Python;SQL;VBA;Other(s):
+49430,C++;C#;HTML/CSS;JavaScript;SQL
+49431,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+49432,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+49433,JavaScript;PHP;TypeScript
+49434,HTML/CSS;JavaScript;Python;TypeScript
+49435,Go;Java;JavaScript;Python
+49436,Bash/Shell/PowerShell;Java;JavaScript;Python
+49437,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+49438,C#;HTML/CSS;JavaScript;SQL
+49439,C#;JavaScript;Python;SQL;TypeScript
+49440,Python;Other(s):
+49441,Java;JavaScript;SQL
+49442,C#;JavaScript;SQL;TypeScript;VBA
+49443,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Other(s):
+49444,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;R;SQL;Other(s):
+49445,C#;HTML/CSS;Java;JavaScript;Python
+49446,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+49447,HTML/CSS;JavaScript;TypeScript
+49448,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+49449,Dart;Java;JavaScript;Kotlin;SQL
+49450,HTML/CSS;Java;JavaScript;SQL
+49451,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+49453,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL
+49454,C#;HTML/CSS;JavaScript;PHP
+49455,Bash/Shell/PowerShell;C#;Java;SQL
+49456,JavaScript;Kotlin;Objective-C;Swift
+49457,C#;Java
+49458,HTML/CSS;JavaScript
+49459,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;SQL
+49460,C++;C#
+49461,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+49462,HTML/CSS;Java;JavaScript;PHP;SQL
+49463,HTML/CSS;JavaScript;PHP
+49464,Java;PHP;SQL
+49465,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Rust
+49466,Bash/Shell/PowerShell;C;JavaScript;Python
+49467,C++;HTML/CSS
+49468,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49470,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript
+49471,Bash/Shell/PowerShell;Go;JavaScript;Other(s):
+49472,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+49473,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+49474,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+49475,HTML/CSS;JavaScript;Other(s):
+49476,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL;TypeScript
+49477,Bash/Shell/PowerShell;Go;Ruby
+49478,Java;Python
+49479,Bash/Shell/PowerShell;Java;JavaScript;Python
+49480,HTML/CSS;Java;JavaScript;PHP
+49481,Go;Java;SQL
+49482,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+49483,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+49484,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python
+49485,HTML/CSS;JavaScript;SQL;TypeScript
+49486,C++;HTML/CSS;JavaScript
+49488,C#;HTML/CSS;Python;SQL
+49489,JavaScript
+49490,Assembly;HTML/CSS;Java;JavaScript;Objective-C;Ruby
+49491,HTML/CSS;JavaScript;Ruby
+49492,HTML/CSS;JavaScript;Other(s):
+49493,HTML/CSS;JavaScript;PHP;Other(s):
+49494,Python;SQL
+49495,C#;HTML/CSS;JavaScript;Python;SQL
+49496,C#;Dart;Java;JavaScript;Python;SQL;Swift
+49497,C++;C#;HTML/CSS;JavaScript;SQL
+49498,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49499,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+49500,HTML/CSS;Java;JavaScript;Python;SQL
+49501,C#;HTML/CSS;JavaScript;SQL
+49502,C;C++;HTML/CSS;Java;Python
+49503,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+49504,HTML/CSS;JavaScript;Python;SQL
+49505,JavaScript;Other(s):
+49506,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Rust
+49507,C;C++;C#;JavaScript;Python;Other(s):
+49508,C++;HTML/CSS;SQL
+49509,Bash/Shell/PowerShell;C#;SQL;Other(s):
+49510,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;SQL;Other(s):
+49511,Python
+49512,Java;JavaScript;TypeScript
+49513,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+49514,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49515,Bash/Shell/PowerShell;Java;Python;Scala;SQL;Other(s):
+49516,Go;JavaScript;TypeScript
+49517,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL;Other(s):
+49518,HTML/CSS;Python
+49519,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49520,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;SQL
+49521,Assembly;Bash/Shell/PowerShell;C++;Erlang
+49522,HTML/CSS;JavaScript;Other(s):
+49523,HTML/CSS;JavaScript
+49524,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+49525,Go;JavaScript;PHP
+49526,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin
+49527,C;C++;C#;HTML/CSS;Java;Python;SQL
+49528,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Rust;SQL;VBA
+49529,Bash/Shell/PowerShell;Java
+49530,C++;Python
+49531,HTML/CSS;JavaScript;Python
+49532,Bash/Shell/PowerShell;Elixir;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+49533,HTML/CSS;JavaScript;PHP;TypeScript
+49534,C++;Java;SQL
+49535,Java;Kotlin
+49536,C#;Dart;HTML/CSS;Java;JavaScript;Swift
+49537,C;Java;JavaScript;PHP;SQL
+49538,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49539,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+49540,C++;C#
+49541,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+49542,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49543,Assembly;C++;C#;Python
+49544,Java;SQL;VBA
+49545,C#;Kotlin
+49546,Java;JavaScript;PHP;SQL
+49547,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+49548,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;SQL;TypeScript
+49549,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+49550,Bash/Shell/PowerShell;C;C++;C#
+49551,C#;JavaScript;SQL
+49552,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+49553,HTML/CSS;JavaScript;PHP;Python
+49554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+49555,C++;F#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+49556,Python;R;SQL
+49557,HTML/CSS;JavaScript;Python;SQL
+49558,C#;JavaScript;PHP
+49559,HTML/CSS;Java;JavaScript;PHP;SQL
+49560,HTML/CSS;JavaScript;PHP;Other(s):
+49561,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49562,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49563,Bash/Shell/PowerShell;C#;SQL;TypeScript
+49564,HTML/CSS;JavaScript;PHP;Python;SQL
+49565,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+49566,Bash/Shell/PowerShell;JavaScript;Python;SQL
+49567,HTML/CSS;Java;JavaScript;TypeScript
+49568,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49569,Java;JavaScript;Other(s):
+49570,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+49571,C;C++;HTML/CSS;JavaScript;Objective-C;PHP
+49572,Bash/Shell/PowerShell;C;C++;Java;Python;WebAssembly
+49573,C#;HTML/CSS;Java;JavaScript;SQL
+49574,Python
+49575,Python;R;SQL
+49576,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+49577,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+49578,Java;JavaScript
+49579,C++
+49580,HTML/CSS;JavaScript;Swift
+49581,HTML/CSS;JavaScript;PHP;SQL
+49582,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+49583,HTML/CSS;JavaScript;Python;R;Ruby;SQL
+49584,C#;Objective-C;Python;SQL;Swift
+49585,Clojure;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Scala;SQL;Swift
+49586,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+49587,C#;HTML/CSS;JavaScript;SQL
+49588,HTML/CSS;JavaScript;Ruby;VBA
+49589,Bash/Shell/PowerShell;Java;Python
+49590,C++;C#;HTML/CSS;JavaScript
+49591,Bash/Shell/PowerShell;C++;Java;Python
+49592,Objective-C;Swift
+49593,HTML/CSS;JavaScript;Ruby;SQL
+49595,HTML/CSS;Java;JavaScript;Kotlin;Ruby;Swift;TypeScript;Other(s):
+49596,JavaScript
+49597,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL
+49598,C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+49599,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL
+49600,Java;JavaScript;SQL
+49601,Clojure;HTML/CSS;SQL
+49602,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+49603,Python;Other(s):
+49604,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+49605,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+49606,HTML/CSS;JavaScript;Ruby
+49607,Bash/Shell/PowerShell;Java
+49608,C#;HTML/CSS;JavaScript;PHP;SQL
+49609,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+49610,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+49611,HTML/CSS
+49612,C;C++
+49613,HTML/CSS;JavaScript;TypeScript
+49614,Java;Python;Ruby;SQL
+49615,Assembly;C;C++;C#;HTML/CSS
+49616,HTML/CSS;JavaScript;Python;SQL
+49617,C#;JavaScript;SQL
+49618,C#;HTML/CSS;JavaScript
+49619,HTML/CSS;Java;JavaScript;Python;R;SQL
+49620,C#;HTML/CSS;JavaScript
+49621,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+49622,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49623,Bash/Shell/PowerShell;C;Python
+49624,C#
+49625,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49626,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+49627,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+49628,C;C++;C#;JavaScript;PHP;Python
+49629,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+49630,C#;F#;HTML/CSS;Other(s):
+49631,C++;Java;JavaScript;Python;SQL
+49632,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Rust;Scala
+49633,JavaScript;Python;SQL
+49634,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+49635,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+49636,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+49637,HTML/CSS;Java;SQL
+49638,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49639,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+49640,Java
+49641,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49642,HTML/CSS;Python;R;SQL;Other(s):
+49643,Java;Kotlin;Python
+49644,Assembly;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;VBA
+49645,HTML/CSS;JavaScript;PHP
+49646,C;HTML/CSS;Java;Other(s):
+49647,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;WebAssembly
+49648,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;TypeScript
+49649,Kotlin
+49650,HTML/CSS;Kotlin;TypeScript
+49651,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Python
+49652,HTML/CSS;JavaScript
+49653,JavaScript
+49654,C#;HTML/CSS;JavaScript;SQL;VBA
+49655,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+49656,Python;SQL
+49657,C;C++;Python
+49658,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+49659,HTML/CSS;JavaScript
+49660,Java
+49661,Assembly;C;C++;C#;PHP;Python;SQL;Other(s):
+49662,Elixir;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;TypeScript
+49663,C#;HTML/CSS;JavaScript;SQL
+49664,C++;C#;Java;Kotlin;Python;SQL
+49665,C;C++;C#;JavaScript;PHP;Python;SQL
+49666,Assembly;Java
+49667,Assembly;C;C++;HTML/CSS;Java;PHP
+49668,C++;C#;HTML/CSS;Java;PHP;Python;SQL
+49669,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;VBA
+49670,HTML/CSS;JavaScript;PHP;SQL
+49671,C#;HTML/CSS;JavaScript;SQL;VBA
+49672,Bash/Shell/PowerShell;C;C++;C#;Java;Python
+49673,C#;Go;SQL
+49674,C#;HTML/CSS;Java;Python;SQL
+49675,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+49676,Bash/Shell/PowerShell;JavaScript
+49677,Go;HTML/CSS;JavaScript;Ruby;Rust
+49678,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49679,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+49681,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49682,HTML/CSS;JavaScript;Ruby
+49683,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+49684,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+49685,C#;HTML/CSS;JavaScript;SQL
+49686,Python;VBA
+49687,Bash/Shell/PowerShell;Python;SQL
+49688,C#;Java
+49689,HTML/CSS;JavaScript;PHP
+49690,Java;JavaScript;Python;SQL
+49691,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49692,Python;SQL
+49693,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift
+49694,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;VBA
+49695,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+49696,Elixir;HTML/CSS;Java;JavaScript;Python;TypeScript
+49697,JavaScript;TypeScript
+49698,C#;HTML/CSS;JavaScript;SQL;VBA
+49699,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+49700,C++;C#;Python;SQL
+49701,HTML/CSS;Java;JavaScript;PHP
+49703,HTML/CSS;JavaScript;Python;SQL
+49704,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;Other(s):
+49706,C;Java;Other(s):
+49707,HTML/CSS;JavaScript;TypeScript
+49708,JavaScript;TypeScript
+49709,Bash/Shell/PowerShell;SQL;Other(s):
+49710,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+49711,Python;SQL
+49712,PHP;SQL;Other(s):
+49713,HTML/CSS;Java;JavaScript;Objective-C;SQL
+49714,C++;Java;Python;SQL
+49716,C++;HTML/CSS;JavaScript;PHP;TypeScript
+49717,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+49718,Bash/Shell/PowerShell;Objective-C;Swift
+49719,C#;SQL
+49720,Assembly;C;C++;C#;Python
+49721,Elixir;Erlang;HTML/CSS;JavaScript;TypeScript
+49722,C++;HTML/CSS;Python;R;SQL;VBA
+49723,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+49724,C#;HTML/CSS;JavaScript;SQL;VBA
+49725,C#;Java;Python;Other(s):
+49726,Bash/Shell/PowerShell;C#;R;SQL
+49727,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49728,Java
+49729,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49730,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+49731,C;HTML/CSS;Java;JavaScript;Python;TypeScript
+49732,JavaScript;PHP;TypeScript
+49733,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL
+49734,HTML/CSS;JavaScript;Python;TypeScript
+49735,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby
+49736,Bash/Shell/PowerShell;Java;Kotlin;SQL
+49737,Kotlin
+49738,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+49739,R
+49741,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+49742,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+49743,C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+49744,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift;Other(s):
+49745,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+49746,HTML/CSS;JavaScript;PHP;SQL
+49747,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;WebAssembly
+49748,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;WebAssembly
+49749,Bash/Shell/PowerShell;Go;Java;Python
+49750,Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;Python;SQL;Swift
+49751,C;C++;Objective-C
+49752,Java;JavaScript;SQL;Other(s):
+49753,Swift
+49754,C#;HTML/CSS;JavaScript;SQL
+49755,HTML/CSS;JavaScript;PHP
+49756,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49757,Objective-C;Ruby;Swift
+49758,Java;JavaScript;PHP
+49759,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;SQL;Swift
+49760,Java;Kotlin
+49761,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+49762,HTML/CSS;JavaScript;PHP;SQL
+49763,Objective-C;Python;Swift
+49764,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+49765,C#;HTML/CSS;JavaScript;Python
+49766,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;SQL
+49767,Assembly;C#;Java;Python
+49768,C#;HTML/CSS;SQL
+49769,Bash/Shell/PowerShell;C;C++;Java;Kotlin;PHP;Python;SQL
+49770,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+49771,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+49772,JavaScript;Ruby;SQL
+49773,Bash/Shell/PowerShell;C++;C#
+49774,JavaScript;SQL;Other(s):
+49775,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL;TypeScript
+49776,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+49777,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+49778,Python;SQL
+49779,C++;Swift
+49780,HTML/CSS;Java;JavaScript;Python;SQL
+49781,JavaScript;Python;Other(s):
+49782,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Other(s):
+49783,Elixir;Erlang;HTML/CSS;JavaScript;Ruby;Rust;TypeScript
+49784,Assembly;Bash/Shell/PowerShell;C;JavaScript;Rust
+49785,JavaScript;Python;Ruby;Scala
+49786,Assembly;HTML/CSS;Java;Kotlin;SQL
+49787,C#;SQL
+49788,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+49789,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+49790,C#;F#;JavaScript;SQL;TypeScript
+49791,C#;HTML/CSS;Java;JavaScript;TypeScript
+49792,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49793,C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+49794,HTML/CSS;JavaScript;PHP;SQL;Swift
+49795,Java
+49796,HTML/CSS;JavaScript;PHP
+49797,C++;Python
+49798,HTML/CSS;JavaScript;PHP;Python;Rust;TypeScript
+49799,Assembly;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Ruby
+49800,Bash/Shell/PowerShell;HTML/CSS;Java
+49801,C++;C#;HTML/CSS;Java;SQL;VBA
+49802,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+49803,C#;HTML/CSS;Java;JavaScript;Python
+49804,Java;Kotlin;Python;SQL
+49805,C;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+49806,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49807,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+49808,Bash/Shell/PowerShell;C;C++
+49809,C;C++;JavaScript
+49810,HTML/CSS;JavaScript;PHP;Python;R
+49811,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+49812,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+49813,HTML/CSS;Java;JavaScript;PHP
+49814,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+49815,HTML/CSS;JavaScript;PHP;SQL
+49816,C++;JavaScript
+49817,Clojure;HTML/CSS;Java;JavaScript;Python;TypeScript
+49818,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49819,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;R;SQL
+49820,Bash/Shell/PowerShell;C#;Java;Kotlin;Python;SQL
+49821,HTML/CSS;JavaScript
+49822,C#;Go;JavaScript;PHP;TypeScript
+49823,Bash/Shell/PowerShell;C#;SQL
+49824,Bash/Shell/PowerShell;Java;SQL
+49825,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Other(s):
+49826,HTML/CSS;JavaScript
+49827,C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+49828,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+49829,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+49830,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+49831,Bash/Shell/PowerShell;Go;HTML/CSS;Python;Ruby;SQL;Other(s):
+49832,HTML/CSS;JavaScript;SQL
+49833,Bash/Shell/PowerShell;Java;JavaScript;SQL
+49834,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+49835,JavaScript;PHP;SQL
+49836,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;Ruby;SQL
+49837,Java;Ruby
+49838,C;C++;HTML/CSS;Java;Python
+49839,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+49840,C#
+49841,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+49842,Java;JavaScript;Python;SQL
+49843,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+49844,C++;Clojure;HTML/CSS;JavaScript;Python
+49845,Assembly
+49846,HTML/CSS;JavaScript;Python;SQL
+49847,Bash/Shell/PowerShell;C
+49848,HTML/CSS;JavaScript
+49849,Bash/Shell/PowerShell;C;C++
+49850,HTML/CSS;JavaScript;TypeScript
+49851,Python
+49852,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+49853,Java;Python
+49854,Bash/Shell/PowerShell;Java;Python;SQL
+49855,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49856,Bash/Shell/PowerShell;C#;Java;Kotlin;Objective-C;Swift;TypeScript
+49857,Java;TypeScript
+49858,C;C++;HTML/CSS;Java;JavaScript;Ruby
+49859,Assembly;Bash/Shell/PowerShell;C;C++;Java
+49860,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+49861,Python;SQL
+49862,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+49863,C;C#
+49864,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+49865,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+49866,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript;WebAssembly;Other(s):
+49867,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+49868,HTML/CSS;JavaScript
+49869,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+49870,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;Scala;SQL
+49871,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+49872,Assembly;Bash/Shell/PowerShell;C;Go;Java;Kotlin;Python
+49873,Ruby
+49874,Assembly;HTML/CSS;Python
+49875,Assembly;Bash/Shell/PowerShell;C;Java;PHP
+49876,Assembly;Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust;SQL
+49877,HTML/CSS;Java;JavaScript;Python;TypeScript
+49878,C#;Python
+49879,C#;HTML/CSS;JavaScript;PHP;SQL
+49880,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+49881,HTML/CSS;JavaScript;Python;SQL
+49882,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+49883,C#;Other(s):
+49885,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript;VBA
+49886,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+49887,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+49888,C#;SQL;VBA
+49889,Bash/Shell/PowerShell;C#;Java;Python
+49890,HTML/CSS;JavaScript
+49891,HTML/CSS;JavaScript;Ruby
+49892,HTML/CSS;Java;JavaScript;Python;TypeScript
+49893,HTML/CSS;Java;JavaScript;SQL
+49894,C#;HTML/CSS;JavaScript;Objective-C;PHP
+49895,HTML/CSS;JavaScript
+49896,HTML/CSS;JavaScript;TypeScript
+49897,HTML/CSS;JavaScript;Python;R
+49898,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+49899,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+49900,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+49901,HTML/CSS;Java;JavaScript;SQL
+49902,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49903,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby
+49904,HTML/CSS;JavaScript;PHP;SQL
+49905,C#;Java;Python
+49906,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+49907,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+49908,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+49909,C#;HTML/CSS;Java;JavaScript
+49910,C;C++;Python
+49911,Java;Objective-C;Swift
+49912,HTML/CSS;Java;JavaScript;PHP;SQL
+49913,HTML/CSS;Java;JavaScript;PHP;SQL
+49914,C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+49915,HTML/CSS;JavaScript;TypeScript
+49916,HTML/CSS;JavaScript;PHP;SQL
+49917,R
+49918,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+49919,C;C#
+49920,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+49921,C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;Other(s):
+49922,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49923,HTML/CSS;JavaScript;TypeScript
+49924,HTML/CSS;JavaScript;Python
+49925,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+49926,Scala
+49927,Assembly;HTML/CSS;JavaScript;PHP;TypeScript
+49928,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+49929,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+49930,C#;Java;Python;SQL
+49931,C#;HTML/CSS;JavaScript;SQL;TypeScript
+49932,Bash/Shell/PowerShell;C;C++;Python;Rust;Other(s):
+49933,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+49934,Bash/Shell/PowerShell;Objective-C;Swift
+49935,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+49936,C#;HTML/CSS;Java;JavaScript
+49937,HTML/CSS;Java;JavaScript
+49938,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+49939,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+49940,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+49941,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+49942,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+49943,HTML/CSS;JavaScript
+49944,HTML/CSS;Java;JavaScript;PHP;SQL
+49945,Bash/Shell/PowerShell;Java;Python;SQL
+49946,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49947,Bash/Shell/PowerShell;C#;Java;Python;Scala;SQL
+49948,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+49949,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+49950,Assembly;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+49951,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+49952,Bash/Shell/PowerShell;C#;F#;SQL
+49953,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+49954,Java
+49955,Assembly
+49956,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+49957,Assembly;Go;HTML/CSS;JavaScript;Objective-C;TypeScript
+49958,C#;HTML/CSS;JavaScript;TypeScript
+49959,Python
+49960,C++;C#
+49961,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+49962,C#;Go;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+49963,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;SQL
+49964,HTML/CSS;Java;JavaScript;SQL
+49965,Java;JavaScript;PHP;TypeScript
+49966,C#;HTML/CSS;Python;SQL
+49967,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL
+49968,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+49969,HTML/CSS;Java;JavaScript;SQL;Other(s):
+49970,Assembly;C++;HTML/CSS;Python
+49971,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+49972,HTML/CSS;JavaScript;PHP;SQL
+49973,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+49974,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+49975,C;HTML/CSS;VBA
+49976,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Rust;Scala;SQL;Swift;TypeScript;WebAssembly
+49977,HTML/CSS;JavaScript;PHP
+49978,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+49979,Bash/Shell/PowerShell;C;SQL
+49980,Python;R;SQL
+49981,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL;Other(s):
+49982,Python;Other(s):
+49983,Java;JavaScript
+49984,C#;HTML/CSS;JavaScript;SQL
+49985,HTML/CSS
+49986,C;C++;JavaScript;Python
+49987,Bash/Shell/PowerShell;C;Go;Python;SQL
+49988,Bash/Shell/PowerShell;Python
+49989,C++;HTML/CSS;JavaScript;PHP;SQL
+49990,JavaScript;PHP
+49991,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+49992,Java
+49993,HTML/CSS;JavaScript;TypeScript
+49994,HTML/CSS;JavaScript;Python;SQL
+49995,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;TypeScript
+49996,Python;R;SQL
+49997,Assembly;C#;HTML/CSS;JavaScript;SQL;VBA
+49998,Assembly;C;C++
+49999,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL;TypeScript
+50000,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50001,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+50002,C;C++;Python;VBA
+50003,Java;Kotlin
+50004,Bash/Shell/PowerShell;C#;PHP;SQL
+50005,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+50006,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+50007,HTML/CSS;JavaScript;Ruby
+50008,Python;R
+50009,Dart;Java;JavaScript;Kotlin;Objective-C;Swift
+50010,C#;Go;HTML/CSS;Java;JavaScript;Scala;TypeScript
+50011,C;C++;Java;Kotlin;PHP;SQL
+50012,Bash/Shell/PowerShell;Python;Rust
+50013,C;C++;HTML/CSS;Java;Python;SQL
+50014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+50015,HTML/CSS;JavaScript;TypeScript
+50016,Java;PHP;SQL
+50017,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+50018,Java;Python;Scala;SQL
+50019,Java;SQL
+50020,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+50021,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Python;SQL
+50022,C#
+50023,R
+50024,SQL
+50025,C#
+50026,HTML/CSS;JavaScript;PHP;SQL
+50027,Bash/Shell/PowerShell;C++;Python
+50028,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+50029,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50030,C++;Python;Other(s):
+50031,Bash/Shell/PowerShell;C#;Scala
+50032,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50033,Go;Java;JavaScript;PHP;Python
+50034,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+50035,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+50036,HTML/CSS
+50037,HTML/CSS;JavaScript
+50038,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+50039,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+50040,Java;JavaScript;Python
+50041,C;C++;Java;JavaScript;Python;SQL
+50042,Dart;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+50043,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;F#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Rust;SQL;TypeScript;WebAssembly
+50044,Python
+50045,HTML/CSS;JavaScript
+50046,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+50047,Java
+50048,C++;Java;JavaScript;PHP;Python;SQL
+50049,Bash/Shell/PowerShell;Python;SQL;VBA
+50050,Bash/Shell/PowerShell;Python;SQL
+50051,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+50052,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+50053,HTML/CSS;Java;JavaScript;SQL;TypeScript
+50054,C;C#;HTML/CSS;JavaScript;SQL;Other(s):
+50055,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50056,C;C++;HTML/CSS;Java;PHP;SQL
+50057,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+50058,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+50059,C++;PHP
+50060,HTML/CSS;Java;JavaScript
+50061,C#;HTML/CSS;Java;SQL
+50063,Swift
+50064,Bash/Shell/PowerShell;C;JavaScript;Python;Other(s):
+50065,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+50066,HTML/CSS;JavaScript;Python;Ruby;TypeScript
+50067,HTML/CSS;JavaScript;Python
+50068,C#;Java;JavaScript;SQL
+50069,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+50070,HTML/CSS;Java;JavaScript;SQL
+50071,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50072,Dart;JavaScript;Swift
+50073,C#;HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript
+50074,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+50075,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+50076,C#;HTML/CSS;JavaScript;Python;SQL
+50077,HTML/CSS;JavaScript;PHP
+50078,Bash/Shell/PowerShell;JavaScript;Swift;TypeScript
+50079,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+50080,Python;R;SQL
+50081,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+50082,C#;HTML/CSS;Java;JavaScript;SQL
+50083,C;C++;HTML/CSS;Java;JavaScript;SQL
+50084,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;R;Ruby
+50085,Bash/Shell/PowerShell;C++;C#;Go;Java;PHP;Python;Scala;SQL
+50086,JavaScript;Ruby;SQL;TypeScript
+50087,Java;Python;Scala
+50088,HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+50089,C#;HTML/CSS;JavaScript;PHP;SQL
+50090,Java;Scala;SQL
+50091,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+50092,C++;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+50093,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+50094,Objective-C;Swift
+50095,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS
+50096,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+50097,JavaScript
+50098,C#;F#
+50099,C++;C#;Java
+50100,HTML/CSS;JavaScript;PHP;TypeScript
+50101,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+50102,Assembly;C;Kotlin;TypeScript
+50103,C;SQL;Other(s):
+50104,HTML/CSS;JavaScript;Ruby;SQL
+50105,C#;Java;Python;Ruby;SQL
+50106,HTML/CSS;Python
+50107,HTML/CSS;Ruby
+50108,Python
+50109,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+50110,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+50111,C#;HTML/CSS;JavaScript
+50112,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+50113,JavaScript;Rust;TypeScript
+50114,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Ruby
+50115,C#;Python
+50116,Python
+50117,HTML/CSS;Java;JavaScript
+50118,Bash/Shell/PowerShell;C#;Go;SQL
+50119,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50120,Bash/Shell/PowerShell;C;JavaScript;Objective-C;Python;Swift
+50121,HTML/CSS;Java;JavaScript
+50122,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+50123,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;SQL;Other(s):
+50124,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+50125,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+50126,Bash/Shell/PowerShell;C++;C#;Go;Java;Python;Rust;WebAssembly;Other(s):
+50127,HTML/CSS;Java;SQL;TypeScript
+50128,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+50129,Bash/Shell/PowerShell;C;Python;SQL
+50130,Assembly;Bash/Shell/PowerShell;VBA
+50131,Bash/Shell/PowerShell;Python
+50132,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;SQL
+50133,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+50134,C++;HTML/CSS;PHP
+50135,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+50136,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Swift
+50137,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+50138,C#;HTML/CSS;JavaScript;SQL
+50139,C;C++;Java
+50140,Java;JavaScript;Kotlin;Objective-C;Swift
+50141,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+50142,HTML/CSS;Java;JavaScript;SQL
+50143,HTML/CSS;JavaScript;SQL
+50144,Bash/Shell/PowerShell;C++;C#;TypeScript
+50145,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50147,Bash/Shell/PowerShell;C;Clojure;Elixir;Go;Java;JavaScript;Ruby;SQL
+50148,C++;C#;HTML/CSS;JavaScript;Swift;TypeScript
+50149,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Ruby
+50150,HTML/CSS;JavaScript;PHP;SQL
+50151,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+50152,C;C++;HTML/CSS;SQL
+50153,Bash/Shell/PowerShell;Java;Kotlin;Python
+50154,HTML/CSS;Java;JavaScript;Python;SQL
+50155,HTML/CSS;JavaScript;PHP;TypeScript
+50156,HTML/CSS;JavaScript;PHP
+50157,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+50158,C;C#
+50159,C#;HTML/CSS;JavaScript;PHP
+50160,Bash/Shell/PowerShell;C;Objective-C;Python
+50161,Bash/Shell/PowerShell;C#;Kotlin;Rust
+50162,Bash/Shell/PowerShell
+50163,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;R;SQL;Swift;TypeScript
+50164,Elixir;Erlang;HTML/CSS;Java;JavaScript;SQL
+50165,Dart;HTML/CSS;JavaScript;Python;SQL
+50166,C#;HTML/CSS;JavaScript
+50167,Ruby
+50168,HTML/CSS;JavaScript
+50169,C#;HTML/CSS;JavaScript;PHP
+50170,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+50171,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+50172,VBA
+50173,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+50174,JavaScript;PHP;TypeScript
+50175,Bash/Shell/PowerShell;Go;Java;Kotlin;Python
+50176,HTML/CSS;JavaScript;PHP
+50177,Bash/Shell/PowerShell;JavaScript;Python;Rust
+50178,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+50179,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+50180,C++;Python;SQL
+50181,Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+50182,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50183,C#;HTML/CSS;JavaScript;Python;SQL
+50184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+50185,HTML/CSS;JavaScript;PHP;Python;SQL
+50186,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+50187,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+50188,Bash/Shell/PowerShell;C++;Java;JavaScript;PHP;Ruby;SQL
+50189,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+50190,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+50191,C#;HTML/CSS;SQL;Other(s):
+50192,JavaScript;TypeScript
+50193,C;HTML/CSS;SQL
+50194,HTML/CSS;Java;JavaScript;Objective-C
+50195,HTML/CSS;Java;Python
+50196,Bash/Shell/PowerShell;Java;JavaScript;Python
+50197,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+50198,HTML/CSS;JavaScript;PHP
+50199,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+50200,C++;C#;HTML/CSS;JavaScript;Python
+50201,C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+50202,JavaScript;Other(s):
+50203,C#
+50204,Elixir
+50206,HTML/CSS;JavaScript;PHP
+50207,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50208,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+50209,HTML/CSS;JavaScript;Kotlin;Python
+50210,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+50211,C#;HTML/CSS;JavaScript;PHP;SQL
+50212,C#;HTML/CSS;Java;JavaScript;SQL
+50213,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+50214,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+50215,Go;HTML/CSS;Java;JavaScript;PHP
+50216,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+50217,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+50218,C#;HTML/CSS;JavaScript;SQL
+50219,HTML/CSS;JavaScript;TypeScript
+50220,C#;SQL
+50221,C;Java
+50222,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+50223,C#;HTML/CSS;JavaScript;SQL
+50224,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+50225,C;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+50226,Assembly;C
+50227,Python;R;Other(s):
+50228,Go;HTML/CSS;JavaScript;PHP;Swift
+50229,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;JavaScript;Python;SQL;WebAssembly
+50230,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50231,Java
+50232,HTML/CSS;Java;JavaScript;SQL;TypeScript
+50233,C#;HTML/CSS;JavaScript;PHP;TypeScript
+50234,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+50235,HTML/CSS;JavaScript;Ruby;SQL
+50236,C#;SQL
+50237,HTML/CSS;JavaScript;SQL;TypeScript
+50238,Bash/Shell/PowerShell;C#;JavaScript;SQL;VBA
+50239,C#;TypeScript;WebAssembly
+50240,Bash/Shell/PowerShell;C#;F#;SQL
+50241,Objective-C;Other(s):
+50242,HTML/CSS;JavaScript;TypeScript
+50243,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+50244,JavaScript;TypeScript
+50245,JavaScript;Other(s):
+50246,Bash/Shell/PowerShell;C;C++;Clojure;Java;JavaScript;Kotlin;Ruby
+50247,Bash/Shell/PowerShell;Go;Java;SQL
+50248,C;C++;HTML/CSS;PHP;Python;VBA
+50249,Java
+50250,Bash/Shell/PowerShell;C++;C#
+50251,Java;JavaScript;Python
+50252,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+50253,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+50254,Bash/Shell/PowerShell;Python;Rust
+50255,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+50256,C;C++;HTML/CSS;Java;PHP;Python;SQL;VBA
+50257,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+50258,R
+50259,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+50260,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50261,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;VBA
+50262,C++;C#;Python
+50263,Clojure;Java;Other(s):
+50264,C#;HTML/CSS;SQL;TypeScript
+50265,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50266,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+50267,C#;HTML/CSS;JavaScript;TypeScript
+50268,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Rust;SQL;TypeScript
+50269,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+50270,Bash/Shell/PowerShell;Go;JavaScript;Kotlin;SQL;TypeScript
+50271,C++;Dart;Java;Kotlin;PHP;SQL
+50272,HTML/CSS;Python
+50273,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+50274,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+50275,Bash/Shell/PowerShell;Java;Python
+50276,C#;HTML/CSS;JavaScript;PHP;SQL
+50277,HTML/CSS;JavaScript
+50278,C#;HTML/CSS;JavaScript;SQL;Other(s):
+50279,C++;HTML/CSS;JavaScript;PHP;SQL
+50280,HTML/CSS;JavaScript;PHP;TypeScript
+50281,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Swift
+50282,Bash/Shell/PowerShell;C;Python
+50283,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50284,C;C++;C#;HTML/CSS;Java;PHP;SQL;VBA
+50285,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript;Other(s):
+50286,HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+50287,C;C++;C#
+50288,Java;Python
+50289,C#;JavaScript;Ruby;SQL
+50290,Bash/Shell/PowerShell;Swift;Other(s):
+50291,C;C++;Java;Python
+50292,HTML/CSS;JavaScript;Python;TypeScript
+50293,C#;HTML/CSS;Java;JavaScript;SQL
+50294,Elixir;Java;JavaScript;Objective-C;VBA
+50295,Java;Python
+50296,C#;HTML/CSS;Java;JavaScript
+50297,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+50298,Java;Scala;SQL
+50299,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50300,JavaScript;PHP
+50301,HTML/CSS;Python;SQL
+50302,HTML/CSS;JavaScript;PHP;Python;R
+50303,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL;VBA
+50304,C++;HTML/CSS;Java;JavaScript;Python;SQL
+50305,C++;SQL;Other(s):
+50306,HTML/CSS;JavaScript;Objective-C
+50307,Java;Objective-C;Swift
+50308,C#;Go;HTML/CSS;Java;PHP;SQL;Swift;TypeScript
+50309,Java;PHP
+50310,Java
+50311,C++;HTML/CSS;SQL;VBA
+50312,HTML/CSS;Java;JavaScript
+50313,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+50314,Java;JavaScript;Kotlin
+50315,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+50316,C;Objective-C;Python;Swift
+50317,Java;JavaScript;Kotlin
+50318,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+50319,Java;SQL
+50320,Dart;Go;JavaScript;Python;SQL
+50321,Java;Objective-C;Swift
+50322,C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+50323,C#;HTML/CSS;JavaScript;SQL;Other(s):
+50324,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+50325,Assembly;C;Go;HTML/CSS;JavaScript;PHP;Rust;Swift;TypeScript;WebAssembly
+50326,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+50327,HTML/CSS;JavaScript
+50328,C#;Java;JavaScript;SQL;TypeScript
+50329,HTML/CSS;Java;JavaScript;Kotlin;Python
+50330,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50331,Go;HTML/CSS;Java;JavaScript;Python;SQL
+50332,Elixir;Go;Java;JavaScript;TypeScript
+50333,HTML/CSS;Java;SQL
+50334,Java
+50335,Bash/Shell/PowerShell;Go;Python;Rust;SQL
+50336,C#;HTML/CSS;JavaScript;TypeScript
+50337,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Objective-C;Python
+50338,Java;JavaScript
+50339,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50340,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50341,Objective-C;Swift
+50342,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+50345,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+50346,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+50347,Kotlin;Other(s):
+50348,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+50349,C;HTML/CSS;Java;JavaScript;PHP
+50350,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;R;SQL
+50351,Assembly;C++;Other(s):
+50352,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+50353,Kotlin
+50354,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+50355,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+50356,HTML/CSS;Java;JavaScript;TypeScript
+50357,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+50358,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;Scala;SQL;TypeScript;VBA
+50359,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50360,Java;JavaScript;Python
+50361,C;C++;C#;Java;JavaScript;Python
+50362,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+50363,C;C++;C#;Kotlin;Python;Other(s):
+50364,HTML/CSS;JavaScript;PHP;Python;SQL
+50365,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL
+50366,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+50367,HTML/CSS;JavaScript;Python
+50368,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50369,Java;JavaScript;Kotlin;Rust
+50370,C;C#;HTML/CSS;Java;JavaScript;Python
+50371,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+50372,HTML/CSS;Java;JavaScript;PHP;SQL
+50373,Bash/Shell/PowerShell;C;C++;Go;Java;Python;SQL
+50374,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+50375,HTML/CSS;JavaScript;Python;SQL
+50376,HTML/CSS;Java;JavaScript;SQL
+50377,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+50378,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+50379,C#;HTML/CSS;JavaScript;PHP;SQL
+50380,HTML/CSS;JavaScript;SQL;TypeScript
+50381,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS
+50382,Bash/Shell/PowerShell;C#;Go;JavaScript;Rust
+50383,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+50384,Assembly;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+50385,Bash/Shell/PowerShell;C;C++;Python
+50386,C#;Clojure;Scala
+50387,Java;Python
+50388,HTML/CSS;JavaScript;SQL
+50389,C;HTML/CSS;JavaScript;PHP;Python;SQL
+50390,Bash/Shell/PowerShell;HTML/CSS;PHP;Rust
+50391,C++;C#;HTML/CSS;Python;TypeScript
+50392,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Python
+50393,JavaScript;Python
+50394,HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+50395,Bash/Shell/PowerShell;Ruby;Scala
+50396,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+50397,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+50398,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+50399,Bash/Shell/PowerShell;C;C++;Python;Scala;Other(s):
+50400,HTML/CSS;JavaScript;SQL;TypeScript
+50401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50402,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+50403,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;TypeScript
+50404,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+50405,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+50406,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50407,Go;Rust
+50408,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+50409,C#;HTML/CSS;JavaScript;SQL;Other(s):
+50410,C#;Java;JavaScript;Python
+50411,C#;JavaScript;Objective-C;Python;TypeScript
+50412,Go;TypeScript
+50413,C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+50414,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+50415,Python;Ruby;SQL
+50416,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+50417,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+50418,Assembly;C;Python
+50419,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+50420,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+50421,C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+50422,C;C++;Java;JavaScript;Python;R;Scala;SQL
+50423,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+50424,C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+50425,HTML/CSS;Java;Objective-C;Other(s):
+50426,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+50427,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+50428,C#;HTML/CSS;JavaScript;SQL
+50429,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+50430,C#;HTML/CSS;JavaScript;SQL;Other(s):
+50431,Bash/Shell/PowerShell;Python;SQL;VBA
+50432,Bash/Shell/PowerShell;Python;SQL
+50433,Java;Kotlin
+50434,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+50435,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+50436,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50437,C++;HTML/CSS;Java;JavaScript;Python
+50438,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+50439,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin;SQL
+50440,HTML/CSS;Java;Python
+50441,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL;VBA;Other(s):
+50442,Bash/Shell/PowerShell;C;Python;Rust
+50443,Bash/Shell/PowerShell;C
+50444,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Swift
+50445,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+50446,C#;HTML/CSS;Java;JavaScript;SQL
+50447,C#;SQL
+50448,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;SQL
+50449,C#;HTML/CSS;Python;SQL
+50450,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+50451,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50452,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+50453,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+50454,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50455,HTML/CSS;JavaScript;Objective-C;Swift
+50456,C;C++;Kotlin;R;SQL
+50457,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+50458,Assembly;Bash/Shell/PowerShell;WebAssembly
+50459,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python
+50460,Java;SQL
+50461,C#;JavaScript;SQL;TypeScript
+50462,Bash/Shell/PowerShell;HTML/CSS;PHP;TypeScript;Other(s):
+50463,Python
+50464,HTML/CSS;JavaScript;TypeScript
+50465,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+50466,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+50467,HTML/CSS;Java;JavaScript;Python
+50468,HTML/CSS;JavaScript;PHP;SQL
+50469,HTML/CSS;Java;JavaScript;SQL
+50470,C;HTML/CSS
+50471,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+50472,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+50473,Assembly;C;C++;C#;HTML/CSS;Ruby
+50474,Bash/Shell/PowerShell;C++;C#;Go;Python;Rust;Other(s):
+50475,C#;HTML/CSS;JavaScript;SQL
+50476,Go;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+50477,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50478,Go;Java;Kotlin;Python;SQL
+50479,HTML/CSS;JavaScript;PHP;Python;SQL
+50480,HTML/CSS;Java;JavaScript;R;SQL
+50481,Bash/Shell/PowerShell;Go;Java;Kotlin;Rust
+50482,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Other(s):
+50483,C;C++;JavaScript;PHP;Python;Ruby;TypeScript
+50484,Bash/Shell/PowerShell;Java;Kotlin;Python
+50485,Bash/Shell/PowerShell;Go;Java;PHP;Python;Scala;SQL
+50486,Bash/Shell/PowerShell;Java;Python
+50487,Java;Kotlin;Objective-C
+50488,C++;HTML/CSS;Java;JavaScript;Python
+50489,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+50491,Assembly;C;Java;JavaScript;Kotlin;Python;TypeScript
+50492,Bash/Shell/PowerShell;C;C#;Python;SQL;WebAssembly
+50493,Java;Python
+50494,C;C++;SQL
+50495,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+50496,HTML/CSS;JavaScript;PHP;SQL
+50497,Bash/Shell/PowerShell;C#;Python;SQL
+50498,C++;Python
+50499,C#;HTML/CSS;JavaScript;SQL;VBA
+50500,HTML/CSS;JavaScript
+50501,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+50502,C#;HTML/CSS;JavaScript;SQL
+50503,C#;HTML/CSS;Java;JavaScript;Python;SQL
+50504,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50505,C#;HTML/CSS;JavaScript;Python;SQL
+50506,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+50507,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+50508,Bash/Shell/PowerShell;C++;Python;Other(s):
+50509,C#;TypeScript;Other(s):
+50510,C;C++;HTML/CSS;Java;SQL
+50511,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50512,Bash/Shell/PowerShell;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+50513,Clojure;Java
+50514,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL;VBA
+50515,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+50516,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50517,HTML/CSS;JavaScript;PHP;Python;Ruby;Scala;SQL
+50518,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;TypeScript
+50519,C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+50520,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript
+50521,Java;Scala;SQL
+50522,C#
+50523,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+50524,C;C++;Rust;SQL;VBA
+50525,HTML/CSS;JavaScript;PHP
+50526,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+50527,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+50528,Python
+50529,Bash/Shell/PowerShell;JavaScript;Kotlin;Python;SQL
+50530,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+50531,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+50532,Swift
+50533,C;HTML/CSS;JavaScript
+50534,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50535,Bash/Shell/PowerShell;Java;JavaScript;SQL;Other(s):
+50536,HTML/CSS;JavaScript;TypeScript
+50537,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R
+50538,HTML/CSS;JavaScript;PHP;SQL
+50539,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Other(s):
+50540,Java
+50541,Bash/Shell/PowerShell;Java;Kotlin;SQL
+50542,C#;HTML/CSS;JavaScript;TypeScript
+50543,Go;HTML/CSS;JavaScript;Python;Swift
+50544,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Swift
+50545,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+50546,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+50547,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+50548,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+50549,HTML/CSS;JavaScript
+50551,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Rust
+50552,Bash/Shell/PowerShell;HTML/CSS;Ruby;Rust;SQL
+50553,C;C++;Java;Kotlin;Scala
+50554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+50555,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA
+50556,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python;Other(s):
+50557,C;C++;Clojure;Python
+50558,C#;JavaScript;SQL;VBA
+50559,HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+50560,C++;C#;SQL
+50561,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50562,Java;Python;SQL
+50564,Java;JavaScript;Kotlin;Python
+50565,Bash/Shell/PowerShell;JavaScript;Python
+50566,HTML/CSS;JavaScript;Ruby
+50567,HTML/CSS;JavaScript;PHP;SQL
+50568,HTML/CSS;Java;JavaScript;PHP;SQL
+50569,Assembly;C;Java;PHP;Swift
+50570,Ruby
+50571,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL;Swift
+50572,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;TypeScript
+50573,Java
+50574,Bash/Shell/PowerShell;C#;Python;SQL
+50575,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+50576,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+50577,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+50578,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+50579,Java;Kotlin;SQL
+50580,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+50581,C;C#;HTML/CSS;JavaScript;SQL;Swift
+50582,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+50583,C#;HTML/CSS;JavaScript;PHP;SQL
+50584,Bash/Shell/PowerShell;C;HTML/CSS;PHP
+50585,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+50586,Java;SQL
+50587,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL
+50588,Clojure
+50589,Bash/Shell/PowerShell;Clojure;Go;JavaScript;Ruby
+50590,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+50591,HTML/CSS;JavaScript;Ruby
+50592,HTML/CSS;JavaScript;PHP
+50593,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+50594,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+50595,C#;VBA
+50596,Java;JavaScript
+50597,Python
+50598,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+50599,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+50600,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+50601,Bash/Shell/PowerShell;C++;C#;F#;Java;Python;Ruby;VBA;Other(s):
+50602,HTML/CSS;PHP
+50603,C#;Objective-C;Python;Swift
+50604,Java;JavaScript;PHP;SQL
+50605,Java
+50606,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50607,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+50608,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+50609,Assembly;Bash/Shell/PowerShell;C;C++
+50610,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python;Rust;Scala;SQL;TypeScript
+50611,C#;HTML/CSS;JavaScript;PHP;SQL
+50612,Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript;Other(s):
+50613,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+50614,HTML/CSS;Java;JavaScript;SQL
+50615,C#;Java;JavaScript;TypeScript
+50616,JavaScript;TypeScript
+50617,C;HTML/CSS
+50618,Java;VBA;Other(s):
+50619,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50620,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+50621,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50622,C++;C#
+50623,Java;Python;SQL
+50624,Java;Objective-C;Swift
+50625,JavaScript;Python
+50626,HTML/CSS;Java
+50627,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+50628,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50629,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50630,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python
+50631,Python;R;VBA
+50632,Java;Python;R;SQL
+50633,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R
+50635,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+50636,C#;HTML/CSS;JavaScript;PHP;SQL
+50637,HTML/CSS;R;SQL
+50638,Bash/Shell/PowerShell;Python;SQL
+50639,Clojure;Go;JavaScript;Python;Rust
+50640,HTML/CSS;JavaScript;Python;SQL;VBA
+50641,HTML/CSS;Java
+50642,Java;SQL
+50643,PHP
+50644,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+50645,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP;SQL
+50646,HTML/CSS;JavaScript;PHP;Python
+50647,HTML/CSS;JavaScript;TypeScript
+50648,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50649,HTML/CSS;JavaScript;Ruby;SQL
+50650,C++;Other(s):
+50651,HTML/CSS;Java;JavaScript;SQL;TypeScript
+50652,C;C#;HTML/CSS;JavaScript;SQL
+50653,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;WebAssembly
+50654,C#;HTML/CSS;Java
+50655,HTML/CSS;JavaScript;Python
+50656,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Scala;SQL;Swift;TypeScript
+50657,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+50658,C;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50659,Assembly;C;C++;Java;Kotlin;Python
+50660,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+50661,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50662,HTML/CSS;Java;JavaScript
+50663,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+50664,C;C++;C#;Java;PHP;SQL
+50666,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50667,HTML/CSS;Java;JavaScript
+50668,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50669,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+50670,Dart;HTML/CSS;Java;JavaScript;Python
+50671,Bash/Shell/PowerShell;C++;JavaScript;Python
+50672,Assembly;C;C++;HTML/CSS;JavaScript;PHP
+50673,Java;JavaScript;Python
+50674,C#;SQL;Other(s):
+50675,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50676,Objective-C;Swift
+50677,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+50678,C;HTML/CSS;Java;Kotlin;SQL;Other(s):
+50679,C#;HTML/CSS;JavaScript;Python;SQL
+50680,Java;Kotlin
+50681,C#;HTML/CSS;JavaScript;PHP;SQL
+50682,C#;HTML/CSS;Java;JavaScript;Scala;SQL
+50683,Elixir;HTML/CSS;JavaScript;Other(s):
+50684,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+50686,HTML/CSS;JavaScript;PHP
+50687,C;Java
+50688,C++;HTML/CSS;JavaScript;Python
+50689,C#;HTML/CSS;JavaScript;PHP;SQL
+50690,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;Other(s):
+50691,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+50692,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+50693,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+50694,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL;TypeScript
+50696,HTML/CSS;JavaScript
+50697,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50698,C;C++;C#;Clojure;F#;Java;Rust
+50700,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+50701,Java;JavaScript;PHP;SQL
+50702,C;C++;C#;HTML/CSS;Java;Python;SQL
+50703,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+50704,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+50705,Java;SQL
+50706,Bash/Shell/PowerShell;C;C++;JavaScript;PHP
+50707,C;HTML/CSS;Java;Python
+50708,C#;JavaScript;Python;SQL;TypeScript
+50709,Objective-C;Swift
+50710,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Python;SQL;VBA
+50711,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+50712,Swift
+50713,HTML/CSS;JavaScript;PHP;SQL
+50714,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+50715,C;HTML/CSS;Java;JavaScript;Python
+50716,Python;SQL;VBA
+50717,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+50718,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;WebAssembly
+50719,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+50720,C#;JavaScript;SQL;Other(s):
+50721,VBA
+50722,C++;JavaScript;WebAssembly
+50723,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+50724,HTML/CSS;Java;JavaScript;PHP
+50725,Bash/Shell/PowerShell;C;Objective-C;Swift
+50727,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+50728,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+50729,HTML/CSS;Java;JavaScript;SQL;TypeScript
+50730,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Rust;SQL
+50731,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+50732,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+50733,Java;Kotlin
+50734,Java;JavaScript;PHP;SQL
+50735,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;VBA
+50736,HTML/CSS;JavaScript;PHP;Other(s):
+50737,C++;HTML/CSS;Java;JavaScript;PHP
+50738,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;SQL;VBA;Other(s):
+50739,HTML/CSS;JavaScript;Python;SQL
+50740,Java;Scala
+50741,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+50742,C;HTML/CSS;Java;JavaScript;R
+50743,C#;HTML/CSS;SQL
+50744,C#;SQL
+50745,Bash/Shell/PowerShell;C#;Other(s):
+50746,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+50747,C#;HTML/CSS;JavaScript;PHP;SQL
+50748,HTML/CSS;JavaScript;PHP;SQL
+50749,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+50750,Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+50751,Dart;Java;Swift
+50752,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;VBA
+50753,Bash/Shell/PowerShell;Java;Kotlin;SQL;Swift
+50754,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+50755,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50756,Bash/Shell/PowerShell;C++;C#;Python
+50757,Java;Kotlin;PHP
+50758,C#;JavaScript;SQL
+50759,Java;Python;R;Other(s):
+50760,Bash/Shell/PowerShell;Python
+50761,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+50762,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+50763,Java;Python
+50764,Elixir;F#;Python;Scala;Other(s):
+50765,HTML/CSS;Ruby;Scala;SQL
+50766,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50768,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50769,Elixir;HTML/CSS;Java;JavaScript;TypeScript
+50770,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50771,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+50772,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Rust;Other(s):
+50773,HTML/CSS;JavaScript;Python;SQL
+50774,Python
+50775,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+50776,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+50777,C;C++;C#;Java;Python;SQL
+50779,C;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+50780,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+50781,HTML/CSS;JavaScript;PHP;SQL
+50782,C;C++;HTML/CSS;JavaScript;WebAssembly
+50783,C#;Java;JavaScript;SQL
+50784,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+50785,HTML/CSS;JavaScript;SQL;TypeScript
+50786,HTML/CSS;JavaScript;SQL
+50787,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+50788,HTML/CSS;JavaScript;PHP;SQL
+50789,C#;HTML/CSS;Java;JavaScript;SQL
+50790,HTML/CSS;JavaScript;PHP;SQL
+50791,JavaScript;Python;R;TypeScript
+50792,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+50793,Bash/Shell/PowerShell;C#;JavaScript;TypeScript;Other(s):
+50794,HTML/CSS;JavaScript;PHP;TypeScript
+50796,C#;Java;Python;Other(s):
+50797,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+50798,C#;JavaScript;SQL;Other(s):
+50799,C;JavaScript;PHP
+50800,C++;Java
+50801,JavaScript;Swift
+50802,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+50803,C#;Java;Python;Other(s):
+50804,C;C#;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;VBA
+50805,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+50806,Java;SQL
+50807,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+50808,C++;C#;SQL
+50809,Java;Python
+50810,PHP;Ruby
+50811,Bash/Shell/PowerShell;C++;C#;Python;R;SQL
+50812,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Swift
+50813,Java
+50814,Assembly;C;HTML/CSS;SQL
+50815,C#;JavaScript;SQL
+50816,C#;HTML/CSS;JavaScript;TypeScript
+50817,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+50818,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50819,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50820,Java;JavaScript;Kotlin;Scala;TypeScript
+50821,Bash/Shell/PowerShell;Python;R
+50822,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50823,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+50824,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;SQL;TypeScript
+50825,Assembly;C;C++;HTML/CSS
+50826,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+50827,JavaScript;Python;Rust;WebAssembly
+50828,C#;Java;Other(s):
+50829,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+50830,HTML/CSS;JavaScript;Python
+50831,C;C++
+50832,Java
+50833,Bash/Shell/PowerShell;C
+50834,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+50835,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;Ruby
+50836,C#;Java;JavaScript;Ruby
+50837,C#;HTML/CSS;JavaScript;SQL
+50838,HTML/CSS;JavaScript;Python
+50839,HTML/CSS;JavaScript;PHP;SQL
+50840,HTML/CSS;JavaScript
+50841,C;C++;C#;Python;R;SQL;VBA;Other(s):
+50842,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50843,Java;Kotlin;Python
+50844,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+50845,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+50846,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+50847,C#;HTML/CSS;JavaScript;SQL
+50848,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+50849,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+50850,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50851,Python;R
+50852,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+50853,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+50854,HTML/CSS;Java;JavaScript;SQL
+50855,C++;Python;Other(s):
+50856,JavaScript;Python
+50857,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+50858,Go;HTML/CSS;JavaScript;PHP;Ruby
+50859,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+50860,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+50861,C;C++;Java;PHP;Python;SQL
+50862,JavaScript;PHP;SQL
+50863,Assembly;Java;Python
+50864,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+50865,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+50866,C;Python;Ruby
+50867,Bash/Shell/PowerShell;Go;JavaScript;PHP;Rust;SQL
+50868,Java;JavaScript
+50869,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50870,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+50871,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+50872,HTML/CSS;JavaScript;Other(s):
+50873,JavaScript
+50874,Bash/Shell/PowerShell;Java;R;SQL;VBA;Other(s):
+50875,C#;HTML/CSS
+50876,Bash/Shell/PowerShell;Java;Python;Scala
+50877,C++
+50878,Bash/Shell/PowerShell;C;C++;C#;SQL
+50879,C
+50880,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+50882,Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;SQL;WebAssembly
+50883,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+50884,C#;JavaScript;Python
+50885,JavaScript;Python;Ruby
+50886,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+50887,C#;Python;SQL;VBA;Other(s):
+50888,Elixir;JavaScript;TypeScript;Other(s):
+50889,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+50890,Other(s):
+50891,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+50892,Assembly;Bash/Shell/PowerShell;C;Python
+50893,Python
+50894,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+50895,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+50896,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+50897,C++
+50898,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+50899,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50900,HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+50901,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50902,Kotlin
+50903,Assembly;C;C++;Java;Python;SQL
+50904,C;C++;HTML/CSS;Java;JavaScript;PHP
+50905,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+50906,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+50907,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Ruby;SQL
+50908,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+50909,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+50910,C;C++;C#;SQL
+50911,Bash/Shell/PowerShell;HTML/CSS;Python
+50912,HTML/CSS;JavaScript;Rust;TypeScript;Other(s):
+50913,TypeScript
+50914,Assembly;C;C++;Java;SQL
+50915,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+50916,Scala
+50917,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+50918,Bash/Shell/PowerShell;R;SQL
+50919,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+50920,C;C++;C#;Go;PHP;Python;SQL
+50921,Java;SQL;VBA;Other(s):
+50922,HTML/CSS;Java;JavaScript
+50923,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+50924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+50925,Java
+50926,HTML/CSS;JavaScript;PHP;Ruby;SQL
+50927,HTML/CSS;Java;JavaScript;PHP;SQL
+50928,JavaScript;R;SQL
+50929,C++;C#;HTML/CSS;JavaScript;PHP;TypeScript;VBA
+50930,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+50931,Dart;HTML/CSS;JavaScript;Python
+50932,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+50933,C#;JavaScript;TypeScript
+50934,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;PHP;Python;SQL
+50935,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+50936,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+50937,HTML/CSS;JavaScript;PHP;SQL
+50938,C#;Go;Java;JavaScript;PHP;Rust;SQL;TypeScript
+50939,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+50940,HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+50942,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+50943,C;C++;Python
+50944,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+50945,HTML/CSS;Java;JavaScript;PHP;SQL
+50946,Clojure;Scala
+50947,HTML/CSS;JavaScript;PHP;SQL;Swift
+50948,C#;HTML/CSS;JavaScript;Python
+50949,C;C++;Go;HTML/CSS;JavaScript;Python
+50950,Bash/Shell/PowerShell;Go;Python
+50951,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+50952,C;C++
+50953,C++;Python;SQL;Other(s):
+50954,R
+50955,C++;Python
+50956,HTML/CSS;Java;JavaScript;SQL;TypeScript
+50957,HTML/CSS;JavaScript;SQL
+50958,HTML/CSS;JavaScript;Python;SQL
+50959,Assembly;C++;Java;SQL
+50960,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+50961,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50962,C#;JavaScript;SQL
+50963,HTML/CSS;JavaScript;PHP;Python;SQL
+50964,SQL;VBA;Other(s):
+50965,Bash/Shell/PowerShell;C;Clojure;Dart;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+50966,C++;Java;JavaScript;PHP;SQL
+50967,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+50968,Bash/Shell/PowerShell;C++;Python;Ruby;SQL
+50969,C;C#;SQL
+50971,SQL;Other(s):
+50972,JavaScript;PHP;Python;SQL
+50973,Bash/Shell/PowerShell;C#;Java;Python
+50974,C;C++;Go;HTML/CSS;JavaScript;Python;Swift
+50975,HTML/CSS;JavaScript;TypeScript
+50976,C#;HTML/CSS;JavaScript;SQL
+50977,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+50978,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+50979,HTML/CSS;JavaScript;PHP;Python;SQL
+50980,HTML/CSS;JavaScript;PHP;Ruby;SQL
+50981,Java;JavaScript;Python;SQL
+50982,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;Python;Ruby;SQL
+50983,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Other(s):
+50984,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;Other(s):
+50985,Go;HTML/CSS;JavaScript;Python;Swift
+50986,Assembly;HTML/CSS;JavaScript;Rust;Swift;WebAssembly
+50987,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+50988,Bash/Shell/PowerShell;C++;Java;Python
+50989,HTML/CSS;JavaScript;Python
+50990,HTML/CSS;Java;PHP;Python;SQL
+50991,HTML/CSS;PHP
+50992,C#;HTML/CSS;JavaScript;PHP;TypeScript
+50993,HTML/CSS;Java;JavaScript;SQL;TypeScript
+50994,C;HTML/CSS;Java;JavaScript;Python;R;Swift
+50995,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+50996,Ruby
+50997,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+50998,C#;HTML/CSS;JavaScript;SQL;TypeScript
+50999,Java;SQL
+51000,C#;SQL;Other(s):
+51001,C#;JavaScript;SQL;TypeScript
+51002,HTML/CSS;JavaScript;Python;SQL;TypeScript
+51003,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51004,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+51005,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+51006,C++
+51007,HTML/CSS;JavaScript;PHP;SQL
+51008,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript;VBA
+51010,HTML/CSS;JavaScript;PHP
+51011,Python;Other(s):
+51012,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+51013,Assembly;C;C++;Java
+51014,Java;PHP;SQL
+51015,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+51016,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+51017,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51018,C;C++;C#;SQL
+51019,C;C++;C#;Python;VBA
+51020,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+51021,C++;C#;Java;SQL
+51022,C#
+51023,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Scala
+51024,C++;C#;Python;SQL
+51025,Dart;HTML/CSS;Java;JavaScript;PHP;TypeScript
+51026,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51027,HTML/CSS;Java;JavaScript;Python;Rust
+51028,C;C++;JavaScript;PHP;Python
+51029,Bash/Shell/PowerShell;HTML/CSS;Python;Rust
+51030,Python;Swift
+51031,C#;HTML/CSS;JavaScript;PHP
+51032,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA;Other(s):
+51033,Bash/Shell/PowerShell;JavaScript;Ruby;Swift
+51034,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+51035,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+51036,Go;HTML/CSS;JavaScript;PHP
+51037,C#;SQL
+51038,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL;TypeScript
+51039,HTML/CSS;PHP;SQL
+51040,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python
+51041,Assembly;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+51042,Assembly;Other(s):
+51043,C++;Python
+51044,HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+51045,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+51046,C;C#;HTML/CSS;JavaScript;SQL
+51047,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;Go;Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+51048,HTML/CSS;Java
+51049,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+51050,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+51051,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+51052,JavaScript
+51053,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA
+51054,Java;Objective-C;Python;SQL
+51055,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+51056,C;C#;HTML/CSS;JavaScript;SQL;VBA
+51057,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+51058,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+51059,Java;PHP;Python
+51060,HTML/CSS;JavaScript;PHP;Swift
+51061,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+51062,Java;Kotlin;Scala;VBA
+51063,Python;R;SQL
+51064,C;C++;JavaScript
+51065,HTML/CSS;JavaScript;PHP;SQL
+51066,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+51067,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+51068,C#;HTML/CSS;JavaScript;Python;WebAssembly
+51069,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+51070,HTML/CSS;JavaScript;PHP;SQL
+51071,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+51072,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;Ruby;Swift;TypeScript;VBA
+51073,C++;HTML/CSS;Java;Python;R;SQL
+51074,C++;Java;JavaScript;Objective-C;Python;Swift
+51075,Swift
+51076,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51077,Bash/Shell/PowerShell;C;C++;Python;Ruby
+51078,Java;Python
+51079,C;C++;JavaScript;Ruby;SQL
+51080,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51081,HTML/CSS;Java;JavaScript;PHP;SQL
+51082,Bash/Shell/PowerShell;C;C#;Erlang;F#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+51083,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+51084,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+51085,C;HTML/CSS;PHP
+51086,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+51087,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+51088,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+51089,Java;JavaScript
+51090,C#
+51091,SQL;VBA
+51092,HTML/CSS;JavaScript
+51093,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+51094,Assembly;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+51095,Assembly;C;C++;Java;Python;SQL;Other(s):
+51096,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+51097,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Swift;VBA;WebAssembly
+51098,Java;Python;Scala
+51099,Bash/Shell/PowerShell;HTML/CSS;Java;TypeScript
+51100,C++;C#;HTML/CSS;Java;JavaScript;Python
+51101,SQL
+51102,HTML/CSS;JavaScript;PHP;SQL
+51103,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala
+51104,HTML/CSS;Java;JavaScript;Python;R;SQL
+51105,JavaScript
+51106,JavaScript;PHP;TypeScript
+51107,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+51108,C;HTML/CSS;PHP;SQL
+51109,C#;JavaScript;SQL;TypeScript
+51110,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51111,Bash/Shell/PowerShell;JavaScript;Python;SQL
+51112,Java
+51113,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+51114,HTML/CSS;JavaScript;PHP;SQL
+51115,C#;Java;R;SQL
+51116,Go;Python
+51117,Bash/Shell/PowerShell;HTML/CSS;Python
+51118,C#;Elixir;JavaScript;VBA
+51119,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+51120,PHP;Python;Ruby
+51121,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+51122,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+51123,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;Python;SQL
+51124,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+51125,Go;HTML/CSS;JavaScript;Python
+51126,C#;TypeScript
+51127,HTML/CSS
+51128,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+51129,HTML/CSS;JavaScript;PHP;SQL
+51130,Bash/Shell/PowerShell;C;Ruby;Other(s):
+51131,Bash/Shell/PowerShell;Java;PHP;Python;Ruby;SQL
+51132,Assembly;Bash/Shell/PowerShell;C;Go;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+51133,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51134,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+51135,C#;Dart;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+51136,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+51137,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+51138,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;VBA;Other(s):
+51139,C#;HTML/CSS;Python;SQL;VBA
+51140,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+51141,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+51142,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+51143,C++;Python;Scala
+51144,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51145,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+51146,HTML/CSS;Java;JavaScript;Python;SQL
+51147,HTML/CSS;JavaScript;PHP;SQL
+51148,C;Java;Objective-C;Python;SQL;Swift
+51149,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51150,JavaScript;Python
+51151,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL;Other(s):
+51152,C;C++;HTML/CSS;JavaScript;PHP;SQL
+51153,Bash/Shell/PowerShell;Python;Scala;SQL
+51154,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51155,Bash/Shell/PowerShell;C#;SQL
+51156,HTML/CSS;JavaScript
+51157,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+51158,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL
+51159,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL;VBA
+51160,C++;Python;VBA;Other(s):
+51161,C;C++;Clojure;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+51162,Java;Kotlin
+51163,HTML/CSS;JavaScript;PHP
+51164,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+51165,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript;VBA
+51166,Python
+51167,Assembly;Bash/Shell/PowerShell;C;C++;PHP;Python;SQL
+51168,C#;Java;JavaScript;PHP;SQL
+51169,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Rust
+51170,HTML/CSS;JavaScript;Python;SQL
+51171,C#;SQL;VBA
+51172,Bash/Shell/PowerShell;Python;R;SQL
+51173,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+51174,C;C++
+51175,Python
+51176,Bash/Shell/PowerShell;C;C++;Python
+51177,Java;JavaScript;Python;SQL;TypeScript
+51178,Assembly;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;TypeScript
+51179,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+51180,C#;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;TypeScript
+51181,Bash/Shell/PowerShell;C#;Other(s):
+51182,PHP;SQL
+51183,Bash/Shell/PowerShell;C;C++;Erlang;Java;Ruby;Rust;Scala;SQL
+51184,Bash/Shell/PowerShell;C;C++;Go;Python
+51185,C#;JavaScript;Kotlin
+51186,HTML/CSS;Java;JavaScript;PHP;SQL
+51187,HTML/CSS;JavaScript;Objective-C;Python;Swift;Other(s):
+51188,HTML/CSS;JavaScript;TypeScript
+51189,HTML/CSS;JavaScript
+51190,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51191,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+51192,C#;Java;Kotlin
+51193,HTML/CSS;JavaScript;TypeScript
+51194,Java;SQL
+51195,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;TypeScript
+51196,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Rust;SQL;Swift;TypeScript
+51197,HTML/CSS;Java;JavaScript
+51198,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+51199,C#;HTML/CSS;JavaScript;PHP
+51200,HTML/CSS;JavaScript;PHP;R;Ruby;SQL;TypeScript
+51201,Bash/Shell/PowerShell;Java;Python;Rust;SQL;VBA
+51202,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+51203,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51204,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+51205,C#;Java;JavaScript;Python;R;SQL;TypeScript
+51207,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+51208,C#
+51209,HTML/CSS;JavaScript;PHP
+51210,Python;R;SQL
+51211,Objective-C;Python;Swift
+51212,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51213,C#;HTML/CSS;Java;SQL
+51214,R
+51215,HTML/CSS;JavaScript
+51216,C#;JavaScript;SQL;VBA;Other(s):
+51217,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+51218,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+51219,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+51220,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;SQL
+51221,Bash/Shell/PowerShell;Go;Java;Python
+51222,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+51223,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+51224,C++;C#
+51225,Bash/Shell/PowerShell;C;C++;Erlang;Go;Python;SQL
+51226,C#;HTML/CSS;JavaScript;PHP;SQL
+51227,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+51228,C;C++;C#;SQL
+51229,HTML/CSS;JavaScript;Ruby;SQL
+51230,JavaScript;PHP
+51231,Assembly;Bash/Shell/PowerShell;C;C++;Python
+51232,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;PHP;Other(s):
+51233,Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+51234,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51235,HTML/CSS;JavaScript;PHP
+51236,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python
+51237,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51238,C#
+51239,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51240,Bash/Shell/PowerShell;JavaScript
+51241,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+51242,Bash/Shell/PowerShell;Java
+51243,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+51244,Bash/Shell/PowerShell;Java;JavaScript;Python
+51245,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+51246,HTML/CSS;JavaScript;Ruby
+51247,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+51248,C#
+51249,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51250,C#;HTML/CSS;JavaScript;R;SQL
+51251,C;C++;C#;Java;SQL
+51252,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;TypeScript
+51253,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+51254,JavaScript;PHP;SQL
+51255,Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51256,Python;SQL
+51257,C#;HTML/CSS;JavaScript;SQL
+51258,C++;HTML/CSS;Java;VBA;Other(s):
+51259,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51260,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51261,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby
+51262,C#;SQL
+51263,Assembly;Bash/Shell/PowerShell;C;Other(s):
+51264,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+51265,C#;SQL;TypeScript
+51266,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+51267,Python
+51268,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51269,HTML/CSS;Java;JavaScript;PHP;SQL
+51270,Bash/Shell/PowerShell;Go;Java;PHP;Python;Rust
+51271,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;Rust;TypeScript
+51272,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+51273,HTML/CSS;Java;PHP;SQL
+51274,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;WebAssembly
+51275,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+51276,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL;Other(s):
+51277,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+51278,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+51279,Go;JavaScript;PHP;Python;SQL
+51280,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+51281,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+51282,Bash/Shell/PowerShell;Elixir;Erlang;Java;JavaScript;PHP;SQL
+51283,JavaScript;SQL
+51284,C#;PHP;SQL
+51285,Assembly;Bash/Shell/PowerShell;C;PHP;Python;SQL
+51286,Assembly;Objective-C;Swift
+51287,PHP;Python;SQL
+51288,Assembly;Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;VBA
+51289,C#;Java;Python;SQL
+51290,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+51291,Bash/Shell/PowerShell;C++;HTML/CSS;Java
+51292,Java;Kotlin;Python
+51293,C++;Python
+51294,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51295,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+51296,Go;HTML/CSS;JavaScript;PHP
+51297,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript
+51298,JavaScript;Python;R;SQL
+51299,Dart;HTML/CSS;JavaScript;Kotlin;TypeScript
+51300,C#;HTML/CSS;JavaScript;Python;SQL
+51301,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+51302,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+51303,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+51304,HTML/CSS;PHP;SQL
+51305,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51306,HTML/CSS;JavaScript;TypeScript
+51307,C++;HTML/CSS;Java;JavaScript;TypeScript
+51308,Bash/Shell/PowerShell;C++;C#
+51309,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+51310,HTML/CSS;JavaScript;PHP
+51311,Bash/Shell/PowerShell;C#;JavaScript
+51312,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+51313,Assembly;C;C++
+51314,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;SQL
+51316,HTML/CSS;Java;JavaScript;SQL;TypeScript
+51317,Assembly
+51318,Java;Python;SQL
+51319,C;C++;Java
+51320,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+51321,Dart;Java;Swift
+51322,Python
+51323,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Rust;SQL;WebAssembly
+51324,HTML/CSS;JavaScript;Ruby
+51325,JavaScript;Python
+51326,HTML/CSS;Java;JavaScript;SQL;TypeScript
+51327,C++;Python
+51328,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;TypeScript;Other(s):
+51329,Java;Python;R;SQL
+51330,JavaScript;Kotlin
+51331,C++;C#;HTML/CSS;Java;JavaScript;SQL
+51332,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;Python;Ruby
+51333,Bash/Shell/PowerShell;HTML/CSS;Java;Python;TypeScript
+51334,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51335,Bash/Shell/PowerShell;C;Java;PHP;Python
+51336,Bash/Shell/PowerShell;C;C#;SQL
+51337,Swift
+51338,HTML/CSS;JavaScript;PHP;TypeScript
+51339,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+51340,Bash/Shell/PowerShell;JavaScript;Ruby
+51341,Java;JavaScript;Scala
+51342,HTML/CSS;JavaScript
+51343,Bash/Shell/PowerShell;C;C++;Clojure;Erlang;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+51344,HTML/CSS;JavaScript
+51345,HTML/CSS;JavaScript;PHP;Ruby
+51346,HTML/CSS;JavaScript
+51347,Bash/Shell/PowerShell;C#;Go;Java;Python
+51348,C#;HTML/CSS;JavaScript;TypeScript
+51349,Elixir;Erlang;JavaScript;Python;Ruby
+51350,HTML/CSS;Java;JavaScript
+51351,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+51352,C#;HTML/CSS;JavaScript;SQL;Other(s):
+51353,Assembly;C;C++;C#;JavaScript;Objective-C;Swift
+51354,Objective-C;PHP;Swift
+51355,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+51356,HTML/CSS;PHP;VBA
+51357,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+51358,Java;JavaScript;PHP;Python;SQL;TypeScript
+51359,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+51360,Java;SQL
+51361,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+51362,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;Python;R;SQL;Swift;TypeScript
+51363,HTML/CSS;JavaScript;TypeScript
+51364,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+51365,HTML/CSS;JavaScript
+51366,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+51367,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript;Other(s):
+51368,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+51369,Bash/Shell/PowerShell;Go;Java;PHP;SQL;TypeScript
+51370,C++;HTML/CSS;JavaScript
+51371,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51372,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+51373,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+51374,HTML/CSS;Java;JavaScript;SQL
+51375,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+51376,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+51377,Go;SQL;Other(s):
+51378,C++;JavaScript;R
+51379,C;C++;JavaScript;TypeScript
+51380,Rust
+51381,C;C++;C#;Java;R;SQL;TypeScript
+51382,HTML/CSS;JavaScript;Ruby;SQL
+51383,C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51384,C#
+51385,HTML/CSS;JavaScript;PHP
+51386,JavaScript;PHP;SQL
+51387,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+51388,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+51389,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+51390,HTML/CSS;Java;Python;Scala;SQL;TypeScript
+51391,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+51392,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;SQL;VBA
+51393,JavaScript;TypeScript
+51394,Bash/Shell/PowerShell;Go;Python;SQL
+51395,C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+51396,C++;HTML/CSS;JavaScript;Python;SQL
+51397,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala;Swift;TypeScript
+51398,C;C++;Dart;HTML/CSS;Java;Kotlin;Python;SQL
+51399,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+51400,C;C++;HTML/CSS;Java;PHP;SQL
+51401,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51402,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+51403,Bash/Shell/PowerShell;C#;Java;Python;Other(s):
+51404,C;C#;HTML/CSS;JavaScript;SQL
+51405,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+51406,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51407,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+51408,HTML/CSS;JavaScript;PHP;SQL
+51409,C#;HTML/CSS;Java;JavaScript;Python
+51410,C;C++;C#;Java
+51411,C++;Java;Kotlin
+51412,C#;HTML/CSS;JavaScript;TypeScript
+51413,C++
+51414,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51415,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51416,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51417,Bash/Shell/PowerShell;SQL;Other(s):
+51418,Java
+51419,C#;HTML/CSS;JavaScript;SQL
+51420,C#;HTML/CSS;Java;PHP;SQL
+51421,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Ruby
+51422,C#;Clojure;F#;JavaScript;Python
+51423,Python
+51424,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51425,Bash/Shell/PowerShell;C++;Java;Python;SQL
+51426,Python
+51427,C#;HTML/CSS;JavaScript
+51428,Assembly;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python
+51429,SQL
+51430,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+51431,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51432,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+51433,C#;JavaScript;Python
+51434,C#;HTML/CSS;Java;Kotlin;Ruby
+51435,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+51436,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Swift
+51437,Bash/Shell/PowerShell;Python;SQL
+51438,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+51439,C++;C#;HTML/CSS;JavaScript;Python;SQL
+51440,Bash/Shell/PowerShell;Java;Python;Scala;SQL;Other(s):
+51441,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Swift
+51442,C++;Python;SQL
+51443,C#;Dart;Java;JavaScript;Kotlin;SQL;Swift
+51444,HTML/CSS;JavaScript;PHP
+51445,C;Go;HTML/CSS;Java;JavaScript;Python;Swift
+51446,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP
+51447,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Rust;SQL
+51448,C#;HTML/CSS;JavaScript;SQL
+51449,Python;SQL
+51450,C;C#
+51451,HTML/CSS;Java;JavaScript;PHP;SQL
+51452,HTML/CSS;Java;JavaScript;Python;SQL
+51453,HTML/CSS;JavaScript
+51454,Bash/Shell/PowerShell;C++;Other(s):
+51455,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Scala
+51456,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+51457,Java;Python
+51458,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51459,C#;JavaScript;Python;SQL;TypeScript
+51460,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51461,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51462,C;HTML/CSS;JavaScript;Ruby
+51463,HTML/CSS;JavaScript;Python;SQL
+51464,C++;C#;HTML/CSS;Java;PHP;SQL
+51465,Bash/Shell/PowerShell;Python;Rust;SQL
+51466,HTML/CSS;Java;JavaScript
+51467,Java;JavaScript;PHP;Python;SQL
+51468,Bash/Shell/PowerShell;Python
+51469,C;Python
+51470,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51471,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+51472,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+51473,C#;Java;SQL;Other(s):
+51474,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+51475,HTML/CSS;JavaScript;PHP;SQL
+51476,HTML/CSS;R;SQL
+51477,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+51478,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript
+51479,HTML/CSS;Java;JavaScript;Python;SQL
+51480,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+51481,Elixir;HTML/CSS;JavaScript;Ruby;Scala;TypeScript
+51483,HTML/CSS;JavaScript;PHP
+51484,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Python;R;Ruby;SQL
+51485,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+51486,C++;Java;Python
+51487,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51488,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51489,Bash/Shell/PowerShell;C;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL
+51490,Python
+51491,Assembly;Bash/Shell/PowerShell;C++;C#;Clojure;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript;WebAssembly
+51492,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+51493,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+51494,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+51495,C;C++;HTML/CSS;JavaScript;PHP;SQL
+51496,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+51497,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala
+51498,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;TypeScript
+51499,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+51500,JavaScript;PHP;SQL
+51501,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+51502,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+51503,HTML/CSS;JavaScript;Kotlin;Python;Other(s):
+51504,C;C++;Python;SQL;Other(s):
+51505,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+51506,Python;SQL;VBA
+51508,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Other(s):
+51509,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+51510,Python;SQL;VBA
+51511,Java;JavaScript
+51512,HTML/CSS;JavaScript;TypeScript
+51513,Elixir;Go;JavaScript;Kotlin;Ruby;Swift
+51514,Clojure;HTML/CSS;Ruby;SQL
+51515,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+51516,Python;SQL
+51517,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51518,HTML/CSS;JavaScript;PHP;SQL
+51521,C;C++;HTML/CSS;Java;PHP;SQL
+51522,HTML/CSS;Java;JavaScript
+51523,C;Python;VBA
+51524,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+51525,HTML/CSS;Java;JavaScript;PHP;SQL
+51526,HTML/CSS;SQL;Other(s):
+51527,HTML/CSS;JavaScript;PHP;SQL
+51528,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+51529,Java;JavaScript;SQL;TypeScript
+51530,Bash/Shell/PowerShell;C#;SQL
+51531,C#;HTML/CSS;JavaScript;PHP;SQL
+51532,HTML/CSS;Java;JavaScript;Kotlin;SQL
+51533,Assembly;HTML/CSS;JavaScript;PHP;Python;Other(s):
+51534,C;C++;HTML/CSS;JavaScript;PHP
+51535,C#;Java;JavaScript;Python;TypeScript;VBA
+51536,HTML/CSS;JavaScript;Python
+51537,Go;Java
+51538,Bash/Shell/PowerShell;Python;R;Scala;SQL;Other(s):
+51539,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51540,C#;HTML/CSS;JavaScript;Python;SQL;Swift
+51541,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;TypeScript
+51542,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+51543,C#;HTML/CSS;JavaScript;TypeScript
+51544,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+51545,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+51546,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+51547,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+51548,HTML/CSS;JavaScript;PHP;SQL
+51549,HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+51550,JavaScript;PHP;Ruby
+51551,Go
+51552,C#;HTML/CSS;JavaScript;SQL;VBA
+51553,HTML/CSS;Java;JavaScript;SQL
+51554,Dart;Java;Kotlin
+51555,Bash/Shell/PowerShell;HTML/CSS;Python
+51556,HTML/CSS;Java;JavaScript;SQL;TypeScript
+51557,Java;Python;TypeScript
+51558,HTML/CSS;Java;JavaScript
+51559,Bash/Shell/PowerShell;HTML/CSS;PHP
+51560,Python;R
+51561,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+51562,Bash/Shell/PowerShell;C;C++;Rust
+51563,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51564,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51565,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;VBA
+51566,Java;JavaScript;Scala
+51567,C++;C#;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+51568,C;C++
+51569,C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+51570,HTML/CSS;Java;JavaScript;SQL;TypeScript
+51571,JavaScript;Swift;TypeScript
+51572,Assembly;C;HTML/CSS;Java;Python;SQL
+51573,C++;Java
+51574,C;C++;PHP;Python;SQL
+51575,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+51576,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51577,Python;Ruby
+51578,Java;Python;SQL
+51579,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+51580,Java;SQL
+51581,Java;JavaScript;Python;SQL;TypeScript
+51582,HTML/CSS;Java;SQL
+51583,Bash/Shell/PowerShell;C;C++;Go;Java;Python;Other(s):
+51584,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51585,C;Java;JavaScript
+51586,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+51587,HTML/CSS;JavaScript;Python;SQL
+51588,C#;HTML/CSS;Java;JavaScript;SQL
+51589,C#
+51590,HTML/CSS;JavaScript;SQL;TypeScript
+51591,HTML/CSS;Java;JavaScript;SQL
+51592,Java;JavaScript;Python;Rust
+51593,HTML/CSS;JavaScript;Ruby;SQL
+51594,HTML/CSS;Java;JavaScript
+51595,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL;TypeScript
+51596,Bash/Shell/PowerShell;HTML/CSS;Python
+51597,HTML/CSS;JavaScript
+51598,C++
+51599,Bash/Shell/PowerShell;Python;R;SQL
+51601,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51602,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51603,HTML/CSS;JavaScript;PHP;SQL
+51604,C#;HTML/CSS;JavaScript;Python;Swift;TypeScript
+51605,HTML/CSS;JavaScript;Python
+51606,Java;SQL;Other(s):
+51607,C#;HTML/CSS;JavaScript;Python;SQL
+51608,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51609,Bash/Shell/PowerShell;C#;Scala;TypeScript
+51610,C;C++;HTML/CSS;JavaScript;Python;SQL
+51611,HTML/CSS;JavaScript;Ruby;SQL
+51612,Python;R;SQL
+51613,HTML/CSS;JavaScript
+51614,HTML/CSS;Java;JavaScript;SQL
+51615,HTML/CSS;JavaScript
+51616,C;C++
+51617,Bash/Shell/PowerShell;Python;Rust;Scala;SQL
+51618,HTML/CSS;JavaScript;TypeScript
+51619,HTML/CSS;JavaScript;PHP;TypeScript
+51620,C#;HTML/CSS;Objective-C
+51621,Bash/Shell/PowerShell;C;C++;Java;SQL
+51622,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+51623,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+51624,Python
+51625,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51626,Bash/Shell/PowerShell;Java;SQL;TypeScript
+51627,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+51628,C;Python
+51629,JavaScript;Ruby
+51630,Bash/Shell/PowerShell;Go;Scala
+51631,HTML/CSS;JavaScript;Python
+51632,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL;VBA
+51633,HTML/CSS;Java;JavaScript;PHP
+51634,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL;Swift;TypeScript
+51635,C#;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+51636,HTML/CSS;Java;JavaScript;SQL
+51637,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+51638,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+51639,C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+51640,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51641,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R
+51642,Java;SQL;Other(s):
+51643,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+51645,Assembly;Bash/Shell/PowerShell;C;Elixir;HTML/CSS;Java;JavaScript;Python;SQL
+51646,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+51647,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+51648,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+51649,Python;R
+51650,Bash/Shell/PowerShell;Go;PHP;Python
+51651,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+51652,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+51653,C#;VBA
+51654,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+51655,C++;Java;Python
+51656,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51657,Python;SQL
+51658,Assembly;Python;Rust;Scala;SQL
+51659,HTML/CSS;JavaScript
+51660,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+51661,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+51662,Java;Kotlin;Swift
+51663,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;VBA
+51664,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+51665,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Kotlin;Python;Rust;Scala;Other(s):
+51666,Python;Ruby;SQL
+51667,Python;R;Other(s):
+51668,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+51669,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+51670,Assembly;HTML/CSS;JavaScript;PHP;Python;SQL
+51671,C#;HTML/CSS;Java;JavaScript;Other(s):
+51672,Assembly;C;C++;Java;Kotlin;Python;Rust;TypeScript
+51673,C#;SQL;VBA;Other(s):
+51674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+51675,HTML/CSS;JavaScript;Ruby
+51676,HTML/CSS;JavaScript;PHP;Ruby;Other(s):
+51677,HTML/CSS;JavaScript;Python;SQL
+51678,C#;SQL
+51679,Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;VBA;Other(s):
+51680,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+51681,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+51682,SQL;Other(s):
+51683,HTML/CSS;Objective-C;Swift;Other(s):
+51684,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+51685,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+51686,JavaScript;TypeScript
+51687,HTML/CSS;Java;JavaScript
+51688,C#;HTML/CSS;Python;SQL
+51689,C#;Java;SQL
+51690,Python;R;SQL
+51691,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL
+51692,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+51693,Bash/Shell/PowerShell;Java;SQL
+51694,HTML/CSS;Java;JavaScript;PHP
+51695,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+51696,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+51697,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51698,C;C++;C#;HTML/CSS;Java;Python;SQL
+51699,C;C++;C#;HTML/CSS;Java;Objective-C;Ruby;SQL;Swift
+51700,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+51701,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51702,Bash/Shell/PowerShell;C;SQL;Other(s):
+51703,HTML/CSS;Java;JavaScript;Objective-C;Swift
+51704,Java;Kotlin;SQL
+51705,Java;Kotlin;SQL
+51706,C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51707,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;WebAssembly
+51708,Elixir;JavaScript
+51709,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+51710,Java;JavaScript;Python
+51711,C#;HTML/CSS;Python;SQL;TypeScript
+51712,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51713,Java
+51714,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;SQL
+51715,C#;HTML/CSS;SQL
+51716,Assembly;C;C++;C#;Java;Python;SQL
+51717,C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+51718,HTML/CSS;JavaScript;Python
+51719,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+51720,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+51721,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;TypeScript
+51722,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+51723,C#;SQL
+51724,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+51725,JavaScript;Python;TypeScript
+51726,Bash/Shell/PowerShell;C++;Java;Python
+51727,C;Python
+51728,Java;JavaScript;Python;Swift
+51729,C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;VBA
+51730,Bash/Shell/PowerShell;C#;JavaScript;Python;Ruby;SQL
+51731,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+51732,C#;HTML/CSS;JavaScript;PHP;SQL
+51733,HTML/CSS
+51734,Java;JavaScript;Python
+51735,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Rust
+51736,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51737,Assembly;Bash/Shell/PowerShell
+51738,C++;Java
+51739,JavaScript;Python
+51740,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL;TypeScript
+51741,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+51742,Java;Scala
+51743,C;R;Other(s):
+51744,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python;SQL
+51745,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+51746,HTML/CSS;JavaScript;TypeScript
+51747,C++;C#;HTML/CSS;JavaScript
+51748,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+51749,C;C++;C#;Java;Python;R;VBA;Other(s):
+51750,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;VBA
+51751,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51752,JavaScript;Other(s):
+51753,Bash/Shell/PowerShell;C;C++;C#;Python
+51754,Java;Python;SQL
+51755,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+51756,C++;C#;HTML/CSS;Java;JavaScript;SQL
+51757,Java;JavaScript
+51758,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;TypeScript
+51759,Bash/Shell/PowerShell;Python;Other(s):
+51760,C#;HTML/CSS;JavaScript;SQL
+51761,C++;HTML/CSS;JavaScript;Python;TypeScript
+51762,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL;VBA
+51763,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+51764,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift
+51765,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+51766,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+51767,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+51768,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+51769,HTML/CSS;Java;JavaScript
+51770,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+51771,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+51772,Java
+51773,C;C++;HTML/CSS;Java;Python
+51774,Assembly
+51775,Java;JavaScript;Objective-C;Ruby;Swift;TypeScript
+51776,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+51777,C#;Go;Python;SQL
+51778,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+51779,Bash/Shell/PowerShell;JavaScript;PHP;Python;Ruby;SQL
+51780,C#;F#;JavaScript;Python
+51781,HTML/CSS;JavaScript;Ruby;SQL
+51782,C#;HTML/CSS;JavaScript;PHP;SQL
+51783,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+51784,C#;HTML/CSS;JavaScript;Python
+51785,HTML/CSS;Java;JavaScript;SQL
+51786,C#;HTML/CSS;JavaScript
+51787,HTML/CSS;JavaScript;PHP;SQL
+51788,C#;HTML/CSS;JavaScript;Swift
+51789,C#;HTML/CSS;Java;SQL;TypeScript
+51790,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+51791,C;C++;C#;Java;SQL;Swift
+51792,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+51793,C#;HTML/CSS;JavaScript;PHP;SQL
+51794,Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL;WebAssembly
+51795,HTML/CSS;JavaScript;Python;SQL;TypeScript
+51796,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51797,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+51798,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+51799,C#;HTML/CSS;JavaScript;Other(s):
+51800,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+51802,HTML/CSS;JavaScript;PHP;Ruby
+51803,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;Java;JavaScript;Python;Rust;Scala;TypeScript
+51804,Python
+51805,C;Python;SQL
+51806,HTML/CSS;Java;JavaScript
+51807,Assembly;C;C++;Go;Java;JavaScript;PHP;SQL
+51808,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;SQL;Swift;TypeScript;VBA;WebAssembly
+51809,HTML/CSS;Java;JavaScript;PHP;SQL
+51810,Java
+51811,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51812,Python;Ruby;SQL;Other(s):
+51813,Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+51814,C;C++;Java;Python
+51815,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+51816,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51817,HTML/CSS;JavaScript;Python;R;SQL
+51818,HTML/CSS;JavaScript;Python;R
+51819,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+51820,Bash/Shell/PowerShell;Java
+51821,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+51822,C;C++;JavaScript;Python
+51823,HTML/CSS;SQL;VBA
+51824,Java;SQL;Other(s):
+51825,Bash/Shell/PowerShell;Go;Objective-C;PHP;Swift
+51826,C;Java;SQL
+51827,C;C++;C#
+51828,Java
+51829,C#;HTML/CSS;JavaScript;SQL;VBA
+51830,Python;Swift
+51831,Assembly;C;C++;C#;Dart;JavaScript;SQL
+51832,Python
+51833,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL;TypeScript;VBA
+51834,C;C#;HTML/CSS;JavaScript;SQL;VBA
+51835,JavaScript;Rust;TypeScript;WebAssembly
+51836,HTML/CSS;JavaScript;Python;Ruby
+51837,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+51839,Bash/Shell/PowerShell;Python;R;SQL
+51840,HTML/CSS;JavaScript;PHP;SQL
+51841,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+51842,C;C++;C#;Python
+51843,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+51844,Assembly;HTML/CSS;JavaScript;PHP;Python;SQL
+51845,Go;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+51846,Assembly;C;C++;Go;Java;Python;Rust
+51847,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+51848,C#;Java;JavaScript;Objective-C;Ruby;TypeScript
+51849,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;WebAssembly
+51850,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+51851,HTML/CSS;JavaScript;PHP;SQL
+51852,HTML/CSS;Java;JavaScript;TypeScript
+51853,HTML/CSS;JavaScript;Python;Other(s):
+51854,Python;Other(s):
+51855,R
+51856,C#;HTML/CSS;JavaScript;SQL
+51857,C;Java;Python
+51858,Bash/Shell/PowerShell;C;C++;C#;Java;Python
+51859,HTML/CSS;Java;SQL
+51860,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Other(s):
+51861,C#;HTML/CSS;JavaScript;PHP;SQL
+51862,C++;C#;Java;PHP;SQL;VBA
+51863,Go;HTML/CSS;JavaScript;PHP;SQL
+51864,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+51865,Bash/Shell/PowerShell;PHP
+51866,C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+51867,C#;Dart;Kotlin
+51868,Java;Kotlin;SQL
+51869,C;C++;Other(s):
+51870,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+51871,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+51872,JavaScript
+51873,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51874,C;Dart;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+51875,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51876,Python;Rust
+51877,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+51878,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+51879,C#;HTML/CSS;SQL;TypeScript
+51880,HTML/CSS;JavaScript;Kotlin;TypeScript
+51881,HTML/CSS;JavaScript;Python;R
+51882,C#;JavaScript;Python
+51883,Bash/Shell/PowerShell;C#;Python;SQL
+51884,Elixir;JavaScript;Ruby
+51885,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;SQL;Other(s):
+51886,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+51887,HTML/CSS;PHP
+51888,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Other(s):
+51889,HTML/CSS;Java;JavaScript;TypeScript
+51890,HTML/CSS;JavaScript;PHP;SQL
+51891,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+51892,Erlang;Java;JavaScript;Objective-C;Python;Swift
+51893,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+51894,Dart;HTML/CSS;JavaScript;Ruby
+51895,Bash/Shell/PowerShell;Python;SQL
+51896,Assembly;C;C++;Java;Python
+51897,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;TypeScript
+51898,Bash/Shell/PowerShell;Clojure;Java;JavaScript;SQL;Other(s):
+51899,C++;Dart;Go;Java
+51900,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+51901,C#;HTML/CSS;JavaScript;SQL;TypeScript
+51902,C#
+51903,HTML/CSS;Java;JavaScript;SQL
+51904,C++;Erlang;JavaScript;WebAssembly
+51905,JavaScript;PHP;TypeScript
+51906,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+51907,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+51908,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+51909,C#;Dart;Elixir;HTML/CSS;JavaScript;SQL
+51910,Bash/Shell/PowerShell;Java;Python
+51911,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+51912,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;TypeScript
+51913,C#;HTML/CSS;JavaScript;SQL;VBA
+51914,HTML/CSS;Java;JavaScript;SQL
+51915,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+51916,Bash/Shell/PowerShell;C++;Java;Kotlin;Python;Ruby;Other(s):
+51917,HTML/CSS;JavaScript;Python
+51918,C++;C#;Java;JavaScript;Python;SQL
+51919,Java;JavaScript;SQL;TypeScript;Other(s):
+51920,HTML/CSS;JavaScript
+51921,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL
+51922,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+51923,HTML/CSS;JavaScript;PHP
+51924,Java;SQL
+51925,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+51926,Bash/Shell/PowerShell;Java;SQL
+51927,C++;Java
+51928,C;C++;C#;HTML/CSS;Java;Kotlin;Objective-C;PHP
+51929,Bash/Shell/PowerShell;Java;Python;SQL
+51930,HTML/CSS;JavaScript;PHP;SQL
+51931,Python
+51932,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+51933,Go;HTML/CSS;Java;Python;Scala;SQL
+51934,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+51935,HTML/CSS;JavaScript
+51936,C;HTML/CSS;Java;JavaScript;TypeScript
+51937,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+51938,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+51939,C#;SQL
+51940,HTML/CSS;JavaScript;TypeScript
+51941,HTML/CSS;JavaScript;PHP;Python;SQL
+51942,Java
+51943,HTML/CSS
+51944,JavaScript;Python;Scala
+51946,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+51947,HTML/CSS;JavaScript;PHP;SQL
+51949,C;C++;Python;VBA
+51950,C#;HTML/CSS;Java;JavaScript;SQL
+51951,Bash/Shell/PowerShell;Python
+51952,Elixir;HTML/CSS;JavaScript;Ruby;TypeScript
+51953,Bash/Shell/PowerShell;Java;Scala;SQL
+51954,Assembly;C;C++;C#
+51955,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+51956,C++;HTML/CSS;Java;PHP;SQL
+51957,JavaScript;Objective-C;Python;Swift
+51958,C#;JavaScript;Python;SQL
+51959,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA;Other(s):
+51960,Bash/Shell/PowerShell;Go;Java
+51961,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+51962,C#;VBA
+51963,Bash/Shell/PowerShell;JavaScript;TypeScript
+51964,R;SQL
+51965,Bash/Shell/PowerShell;C;C++
+51966,C#;Other(s):
+51967,JavaScript;Python
+51968,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+51969,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+51970,Java;PHP;Python;SQL
+51971,Objective-C;PHP;Swift
+51972,Java;JavaScript;Python;R;SQL
+51973,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+51974,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+51975,HTML/CSS;Java;Objective-C;Python;Swift
+51976,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+51977,C++;C#;HTML/CSS;JavaScript;Kotlin;Python;R;SQL
+51978,Bash/Shell/PowerShell;C;Java;Python
+51979,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+51980,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;R;Rust;SQL;Swift;WebAssembly
+51981,C;C++;Python
+51982,C#;HTML/CSS;JavaScript;Python;SQL;Swift;VBA
+51983,Python;Scala;SQL
+51984,Bash/Shell/PowerShell;C++;C#;Dart;Go;Java;JavaScript;Python;Rust;SQL;Swift
+51985,Assembly;C;C++;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+51986,C#;HTML/CSS;JavaScript;PHP;SQL
+51987,HTML/CSS;SQL;Other(s):
+51988,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+51989,JavaScript;SQL;WebAssembly
+51990,HTML/CSS;JavaScript;PHP;Ruby
+51991,HTML/CSS;Java;JavaScript;PHP;SQL
+51992,Java;Kotlin;PHP;SQL
+51993,C++;Java;JavaScript;Other(s):
+51994,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C
+51995,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+51996,C#;HTML/CSS;JavaScript;PHP;SQL
+51997,C;C++;HTML/CSS;JavaScript;Python;SQL
+51998,C#;HTML/CSS;JavaScript;SQL
+51999,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+52000,C;C++;C#;HTML/CSS;PHP;SQL
+52001,HTML/CSS;JavaScript;PHP;SQL
+52002,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Scala;SQL;TypeScript
+52003,C++
+52004,C#;HTML/CSS;Java;JavaScript;SQL
+52005,C#;HTML/CSS;JavaScript;TypeScript
+52006,C++;C#;HTML/CSS;Java;PHP;SQL;Swift
+52007,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52008,HTML/CSS;Java;JavaScript;PHP;SQL
+52009,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;R;SQL
+52010,HTML/CSS;JavaScript
+52011,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+52012,C#;Go;JavaScript;PHP;SQL;TypeScript;VBA
+52013,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+52014,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+52015,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+52016,HTML/CSS;JavaScript
+52017,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+52018,C;C++;Java;Python;SQL
+52019,C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala
+52020,C;HTML/CSS;JavaScript;PHP;SQL
+52021,Python;Rust;SQL
+52022,HTML/CSS;Java;JavaScript;PHP;SQL
+52023,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+52024,Assembly;HTML/CSS;JavaScript;PHP;SQL
+52025,C#;HTML/CSS;JavaScript
+52026,C++;HTML/CSS;JavaScript;Ruby;TypeScript;Other(s):
+52027,C;C++;HTML/CSS;JavaScript;PHP;SQL
+52028,C++;PHP;Python
+52029,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+52030,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+52031,HTML/CSS;JavaScript;Python;SQL;TypeScript
+52032,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+52033,Java;Python;SQL
+52034,Java;Kotlin;Python
+52035,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52036,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+52037,C++
+52038,Java;SQL
+52039,C++;HTML/CSS;JavaScript;TypeScript
+52040,Bash/Shell/PowerShell;Go;HTML/CSS;Java;PHP;Python
+52041,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52042,HTML/CSS;JavaScript;TypeScript
+52043,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+52044,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+52045,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+52046,Assembly;SQL
+52047,Bash/Shell/PowerShell;Java;Kotlin;SQL;Other(s):
+52048,C;Java;SQL
+52049,Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+52050,C#;HTML/CSS;TypeScript
+52051,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+52052,Java;Other(s):
+52053,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+52054,HTML/CSS;JavaScript
+52055,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52056,Bash/Shell/PowerShell;Java;Kotlin
+52057,HTML/CSS;JavaScript;SQL;TypeScript
+52058,C#;HTML/CSS;JavaScript;PHP
+52059,JavaScript
+52060,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;JavaScript;PHP;Python
+52061,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+52062,HTML/CSS;Java;JavaScript
+52063,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+52064,Python;SQL
+52065,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+52066,C#;SQL;TypeScript
+52067,C#;Java
+52068,Go;Java;SQL
+52069,SQL;VBA
+52070,Python
+52071,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R
+52072,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;R;Ruby;SQL;Other(s):
+52073,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+52074,Java
+52075,Bash/Shell/PowerShell;C#;Java;Python;Rust
+52076,HTML/CSS;JavaScript;Ruby;Swift
+52077,Python
+52078,C;HTML/CSS;JavaScript;Python;SQL
+52079,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python
+52080,Bash/Shell/PowerShell;Python
+52081,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+52082,C#;JavaScript;Python;SQL
+52083,Bash/Shell/PowerShell;C;C++
+52084,C#;F#;HTML/CSS;JavaScript;SQL;VBA
+52085,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52086,HTML/CSS;Java;JavaScript;SQL
+52087,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+52088,HTML/CSS;Java;JavaScript;Swift
+52089,Bash/Shell/PowerShell;C++;C#;Java;Python;R;SQL
+52090,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Swift
+52091,C;C#;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+52092,HTML/CSS;JavaScript;Python;Ruby;SQL
+52093,Assembly;Python
+52094,HTML/CSS;JavaScript;PHP;Python;SQL
+52095,HTML/CSS;JavaScript;PHP;SQL
+52096,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+52097,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL;Swift
+52098,HTML/CSS;Java;PHP;Python;SQL
+52099,Bash/Shell/PowerShell;Python;SQL
+52100,Bash/Shell/PowerShell;Python;SQL;Other(s):
+52101,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+52102,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+52103,C++;Go;Java;Python
+52104,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52105,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+52106,C;HTML/CSS;Java;JavaScript;PHP;SQL
+52107,C++;Go;Kotlin;Python
+52108,Assembly;C;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52109,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+52110,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+52111,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+52112,Elixir;HTML/CSS;Ruby;SQL;TypeScript
+52113,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+52114,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+52115,C#
+52116,HTML/CSS;Java;JavaScript;PHP;Scala
+52117,C#;JavaScript;SQL
+52118,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+52119,C#;HTML/CSS;Java;JavaScript;SQL
+52120,Bash/Shell/PowerShell;C#;SQL;Other(s):
+52121,HTML/CSS;JavaScript;Other(s):
+52122,C#;HTML/CSS;Other(s):
+52123,HTML/CSS;JavaScript;PHP;Python;Other(s):
+52124,Assembly;C;Python
+52125,Python
+52126,HTML/CSS;Java;Kotlin;Rust;TypeScript
+52127,HTML/CSS;JavaScript;PHP;Python;SQL
+52128,Dart;HTML/CSS;Java;JavaScript;TypeScript
+52129,C#;SQL
+52130,Bash/Shell/PowerShell;C;C++;Other(s):
+52131,HTML/CSS;JavaScript;PHP;SQL
+52132,C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52133,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+52134,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+52135,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52136,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+52137,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+52138,C++;Java;JavaScript;PHP;Python;SQL
+52139,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+52140,Java
+52141,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Python
+52143,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52144,HTML/CSS;JavaScript;PHP;Python;Ruby
+52145,HTML/CSS;Java;JavaScript;TypeScript
+52146,HTML/CSS;Ruby
+52147,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+52148,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52149,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+52150,Python
+52151,HTML/CSS;JavaScript;TypeScript
+52152,Python;R
+52153,C;C++;HTML/CSS;Python;SQL
+52154,Java;Objective-C;TypeScript
+52155,Clojure;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+52156,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+52157,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52158,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+52159,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+52160,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52161,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+52162,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52163,C#;SQL
+52164,C;C++;HTML/CSS;Java;JavaScript
+52165,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python
+52166,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+52167,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+52168,Java;JavaScript;PHP
+52169,HTML/CSS;JavaScript;PHP;TypeScript
+52170,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+52171,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+52172,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+52173,Dart;Rust;TypeScript;Other(s):
+52174,HTML/CSS;JavaScript
+52175,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+52176,HTML/CSS;Java;JavaScript;PHP;SQL
+52177,C#;HTML/CSS;Java;SQL
+52178,Bash/Shell/PowerShell;Ruby;SQL;Other(s):
+52179,Go;Java;JavaScript;Python;R;Scala
+52180,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;Swift;Other(s):
+52181,C#;JavaScript;TypeScript
+52182,C#;HTML/CSS;JavaScript;SQL
+52183,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52184,C#;SQL
+52185,C#;Kotlin;Python
+52186,HTML/CSS;JavaScript;PHP
+52187,C;C++;Go;HTML/CSS;JavaScript
+52188,Bash/Shell/PowerShell;Python;Ruby
+52189,C#;HTML/CSS;JavaScript;PHP;SQL
+52190,Go;HTML/CSS;JavaScript;Python;TypeScript
+52191,C;C++;HTML/CSS;PHP;SQL
+52192,Java;PHP;SQL
+52193,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+52194,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Ruby;SQL;Swift
+52195,C#;HTML/CSS;JavaScript;SQL
+52196,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+52197,HTML/CSS;JavaScript;PHP;R;SQL
+52198,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL
+52199,JavaScript
+52200,HTML/CSS;Java;SQL
+52201,HTML/CSS;JavaScript;PHP;SQL;Swift
+52202,Go;HTML/CSS;JavaScript;SQL
+52203,Bash/Shell/PowerShell;C#;SQL
+52204,C#;Go;HTML/CSS;Python
+52205,Bash/Shell/PowerShell;C#;JavaScript;Kotlin;SQL;VBA
+52206,C;C++;C#;Java;SQL
+52207,Java
+52208,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52209,HTML/CSS;JavaScript;PHP
+52210,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C
+52211,C#;HTML/CSS;Java;Python;SQL
+52212,C#;HTML/CSS;JavaScript;SQL
+52213,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+52214,C#;HTML/CSS;JavaScript;SQL
+52215,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;SQL
+52216,F#;PHP;Python
+52217,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+52218,HTML/CSS;Java;JavaScript;SQL
+52219,C#;HTML/CSS;Java;Kotlin;Objective-C;Swift
+52221,C#;Java
+52222,HTML/CSS;Java;JavaScript;SQL
+52223,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52224,C#;HTML/CSS;JavaScript;SQL
+52225,Bash/Shell/PowerShell;HTML/CSS
+52226,C;PHP
+52227,Java
+52228,Assembly;HTML/CSS;Java;JavaScript;Rust;Swift;TypeScript;Other(s):
+52229,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+52230,C++;Go;Java;Python;Rust
+52231,Bash/Shell/PowerShell;C++;C#;Python
+52232,Java;JavaScript;SQL
+52233,C#;HTML/CSS;JavaScript;PHP;SQL
+52234,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+52235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+52236,Java;JavaScript;PHP;Python;SQL;VBA
+52237,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+52238,HTML/CSS;Objective-C;Swift
+52239,HTML/CSS;JavaScript;PHP;SQL
+52240,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52241,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+52242,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+52243,HTML/CSS;Java;JavaScript;SQL;VBA
+52244,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python
+52245,C#;HTML/CSS;JavaScript;SQL
+52246,C#;HTML/CSS;Java;PHP
+52247,Bash/Shell/PowerShell;Go;SQL;WebAssembly
+52248,C++;Java;PHP;Python;R;SQL
+52249,C#;HTML/CSS;PHP;Python;SQL
+52250,Assembly;Java;JavaScript;SQL;TypeScript
+52251,Bash/Shell/PowerShell;Java;Python;Ruby;Scala
+52252,HTML/CSS;JavaScript;PHP;Python;TypeScript
+52253,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+52254,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;R;SQL
+52255,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+52256,Python
+52257,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52258,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+52259,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+52260,Go;Java
+52261,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+52262,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52263,C#;Swift
+52264,Bash/Shell/PowerShell;Objective-C;Swift
+52265,HTML/CSS;Java;JavaScript;SQL
+52266,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+52267,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+52268,HTML/CSS;JavaScript;Python;Other(s):
+52269,Java;JavaScript;SQL;TypeScript
+52271,Objective-C;Swift
+52272,Bash/Shell/PowerShell;C;C++;Python;R
+52273,Bash/Shell/PowerShell;C++;Java;SQL
+52274,SQL;Swift
+52275,Java
+52276,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+52277,HTML/CSS;Java;JavaScript;Kotlin
+52278,Java;JavaScript;SQL
+52279,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+52280,Elixir;Erlang;Go;HTML/CSS;JavaScript
+52281,C#;HTML/CSS;JavaScript;SQL
+52282,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+52283,Objective-C;Swift
+52284,Python;SQL
+52285,C++;Python
+52286,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;SQL
+52287,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+52288,C#;Java
+52289,Python;SQL
+52290,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52291,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+52292,C++;Python
+52293,C++;HTML/CSS;JavaScript;SQL
+52294,Bash/Shell/PowerShell;Go;JavaScript
+52295,Go;JavaScript;PHP
+52297,Bash/Shell/PowerShell;Java;JavaScript
+52298,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+52299,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python
+52300,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+52301,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+52302,Bash/Shell/PowerShell;Clojure;JavaScript;Python;SQL
+52303,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+52304,Bash/Shell/PowerShell;C;C++;Python
+52305,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+52306,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52307,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+52308,C#;Go;Java;JavaScript;SQL;VBA
+52309,Dart;Java;JavaScript;SQL
+52310,HTML/CSS;JavaScript;PHP;SQL
+52311,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52312,Python
+52313,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+52314,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52315,Bash/Shell/PowerShell;PHP;Python;R
+52316,C;C++;C#
+52317,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+52318,Python;R
+52319,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+52320,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+52321,HTML/CSS;JavaScript;PHP;SQL
+52322,Bash/Shell/PowerShell;C++;JavaScript;Python;R;SQL
+52323,Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+52324,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+52325,C#;Swift
+52326,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52327,Bash/Shell/PowerShell;C;C++;Go;Java;SQL
+52328,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;R;SQL
+52329,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+52330,Bash/Shell/PowerShell;C#;JavaScript;SQL
+52331,Bash/Shell/PowerShell;C;C++;Go;Python
+52332,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+52333,C;HTML/CSS;JavaScript
+52334,C++;C#;Python
+52335,C#;HTML/CSS;JavaScript;TypeScript
+52336,Java;Scala;SQL
+52338,HTML/CSS;JavaScript;Python;VBA
+52339,C;C++;C#;HTML/CSS;JavaScript
+52340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52341,Assembly;Bash/Shell/PowerShell;C;C++;C#
+52342,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Other(s):
+52343,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+52344,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+52345,HTML/CSS;Java;JavaScript;PHP;SQL
+52346,C#;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+52347,Java
+52348,HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+52349,C;C++;C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL
+52350,HTML/CSS;Java;JavaScript;SQL
+52351,HTML/CSS;JavaScript;Python;SQL;Other(s):
+52352,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+52353,JavaScript;PHP;TypeScript
+52354,C#;JavaScript;Objective-C
+52355,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+52356,C++;C#;HTML/CSS;JavaScript;Python;SQL
+52357,C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+52358,C++;Python;R
+52359,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+52360,C#;JavaScript
+52361,Bash/Shell/PowerShell;Go;Python;Ruby
+52362,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+52363,C;C++;Python
+52364,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+52365,Python;SQL
+52366,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+52367,Java;Other(s):
+52369,Bash/Shell/PowerShell;Python
+52370,Python
+52371,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+52372,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+52373,Go;JavaScript;PHP
+52374,HTML/CSS;Java;PHP;SQL
+52375,HTML/CSS;JavaScript;PHP;Python;SQL
+52376,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+52377,Bash/Shell/PowerShell;Go;Ruby
+52378,C;JavaScript;Python;SQL;Other(s):
+52379,Assembly;C;C++;C#;Java;JavaScript;Swift
+52380,HTML/CSS;JavaScript;TypeScript
+52381,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+52382,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+52383,C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52384,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52385,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52386,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+52387,Assembly;HTML/CSS;Java;JavaScript;Python
+52388,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+52389,JavaScript
+52390,HTML/CSS;JavaScript;Python;SQL
+52391,JavaScript;PHP;Python;SQL
+52392,HTML/CSS;JavaScript;TypeScript
+52393,JavaScript;Objective-C;Swift
+52394,Bash/Shell/PowerShell;C#;Python;R;SQL;VBA
+52395,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+52396,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+52397,C++;Go;Python
+52398,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+52399,HTML/CSS;Java;JavaScript;PHP;SQL
+52400,Bash/Shell/PowerShell;Python
+52401,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+52402,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+52403,C;C++;C#;HTML/CSS;JavaScript;SQL
+52404,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+52405,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;Other(s):
+52406,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+52407,Bash/Shell/PowerShell;Python;Rust;SQL
+52408,HTML/CSS;JavaScript;Ruby;TypeScript;Other(s):
+52409,C#;Go;Python
+52410,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL
+52412,Bash/Shell/PowerShell;C++;Python
+52413,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52414,JavaScript;Ruby;TypeScript
+52415,Bash/Shell/PowerShell;C;C++;PHP;Python;SQL
+52416,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+52417,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+52418,HTML/CSS;Java;JavaScript;SQL;TypeScript
+52419,C#
+52420,C;C++;JavaScript;Objective-C;Swift
+52421,Java;JavaScript
+52422,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+52423,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+52424,C;HTML/CSS;Java;JavaScript;Python;SQL
+52425,HTML/CSS;Java;JavaScript
+52426,Java;SQL
+52427,C;HTML/CSS;JavaScript;PHP;SQL;VBA
+52428,HTML/CSS;JavaScript;Python;SQL
+52429,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL
+52430,C#;HTML/CSS;JavaScript;Python;SQL
+52431,C++;HTML/CSS;Java;Python;SQL
+52432,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+52433,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;VBA;WebAssembly;Other(s):
+52434,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;R;SQL;Swift;TypeScript
+52435,Assembly;Bash/Shell/PowerShell;C;Java;Python;Swift;TypeScript
+52436,Bash/Shell/PowerShell;Java;JavaScript;Scala
+52437,Java;SQL
+52438,JavaScript;TypeScript
+52439,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+52440,JavaScript;Objective-C;PHP;Python;Swift
+52441,Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+52442,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+52443,Bash/Shell/PowerShell;C;C++;Python
+52444,HTML/CSS;JavaScript;PHP;SQL
+52445,HTML/CSS;Java;JavaScript;SQL;TypeScript
+52446,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52447,C#;HTML/CSS;SQL;TypeScript
+52448,HTML/CSS;JavaScript;PHP;SQL
+52449,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+52450,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52451,Java;Scala
+52452,Dart;HTML/CSS;JavaScript;TypeScript
+52453,HTML/CSS;Java;JavaScript;PHP;SQL
+52454,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52455,C;C++;C#;Python
+52456,Java;PHP;Python;SQL
+52457,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+52458,C++
+52459,Bash/Shell/PowerShell;Java;Python;R;SQL
+52460,C++;Python;Other(s):
+52461,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+52462,HTML/CSS;Java;JavaScript;SQL
+52463,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+52464,Java;Python;Ruby;SQL
+52465,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52466,C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift;VBA
+52467,Java;JavaScript;Kotlin;Python;SQL;TypeScript
+52468,Other(s):
+52469,C++;Python
+52470,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+52471,C#;F#;HTML/CSS;Java;JavaScript
+52472,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;SQL
+52473,C;C++;HTML/CSS;Java;JavaScript;SQL
+52474,HTML/CSS;JavaScript
+52475,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+52477,HTML/CSS;JavaScript;PHP;SQL
+52478,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+52479,C#;Java
+52480,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+52481,Java
+52482,C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+52483,HTML/CSS;JavaScript;PHP;Python;SQL
+52484,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+52485,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52486,C#;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+52487,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+52488,HTML/CSS;Java;JavaScript;Kotlin
+52489,C++;HTML/CSS;JavaScript
+52490,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+52491,Bash/Shell/PowerShell;Java;Python;Scala
+52492,HTML/CSS;Java;Kotlin;Python;TypeScript
+52493,Bash/Shell/PowerShell;C#;Dart;Java;JavaScript;Ruby;SQL
+52494,Bash/Shell/PowerShell;HTML/CSS;Python
+52495,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+52496,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+52497,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+52498,C
+52499,Assembly;C;C++;HTML/CSS;Java;JavaScript
+52500,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52501,C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+52502,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+52503,C#;HTML/CSS;Python;VBA
+52504,Bash/Shell/PowerShell;PHP;Swift
+52505,Python
+52506,Python
+52507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+52508,C#;JavaScript;Python
+52509,Java;JavaScript
+52510,Erlang;Go;HTML/CSS;JavaScript;Python
+52511,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52512,Java;Objective-C;Swift
+52513,HTML/CSS;Java;Other(s):
+52514,C#;JavaScript;SQL;TypeScript
+52515,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+52516,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Rust
+52517,Assembly;Bash/Shell/PowerShell;C
+52518,HTML/CSS;JavaScript;PHP;SQL
+52519,Assembly;C;C++;JavaScript;Python;SQL;Other(s):
+52520,HTML/CSS;JavaScript
+52521,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+52522,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+52523,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+52524,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+52525,JavaScript;Python;R;SQL;TypeScript
+52527,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+52528,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+52529,Go;HTML/CSS;JavaScript;TypeScript
+52530,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+52531,Bash/Shell/PowerShell;C++;Go;Java;Python
+52532,HTML/CSS;TypeScript
+52533,HTML/CSS;JavaScript;PHP
+52534,Bash/Shell/PowerShell;Python;Other(s):
+52535,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52536,HTML/CSS;Java;JavaScript;Python
+52537,HTML/CSS;JavaScript;Ruby
+52538,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+52539,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+52540,C#;HTML/CSS;JavaScript;SQL
+52541,Java
+52542,HTML/CSS;Java;JavaScript;PHP;Python;Swift
+52543,C++;HTML/CSS;JavaScript;PHP;SQL
+52544,C;C++;C#;Erlang;HTML/CSS;JavaScript;PHP;SQL
+52545,C++;JavaScript;Python
+52546,HTML/CSS;JavaScript;Python
+52547,C#;HTML/CSS;JavaScript;Python;SQL
+52548,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+52549,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+52550,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;Ruby;Rust;Swift;TypeScript
+52551,HTML/CSS;JavaScript;Python;TypeScript
+52552,Bash/Shell/PowerShell;C;Elixir;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;Rust;Other(s):
+52553,Java;JavaScript;PHP;Python;SQL;TypeScript
+52554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+52555,HTML/CSS;JavaScript;PHP;SQL
+52556,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52557,R
+52558,HTML/CSS;Java;JavaScript;PHP;SQL
+52559,C++;Objective-C;Swift
+52560,HTML/CSS;JavaScript;PHP;TypeScript
+52561,C#;JavaScript
+52562,Bash/Shell/PowerShell;C;C++;Java;Python
+52563,C++;Python;R;SQL;VBA
+52564,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+52565,HTML/CSS;JavaScript;Python;SQL;TypeScript
+52566,HTML/CSS;Java;JavaScript;Scala;SQL
+52567,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;JavaScript;PHP;Python;Other(s):
+52568,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+52569,HTML/CSS;Java;JavaScript
+52570,Assembly;Bash/Shell/PowerShell;C;C++;Rust
+52571,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52572,JavaScript;Ruby;TypeScript
+52573,Assembly;C#;HTML/CSS;JavaScript
+52574,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+52575,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+52576,JavaScript;Python
+52577,Assembly;C;C++
+52578,Go;JavaScript;Ruby;Rust;TypeScript
+52579,JavaScript;PHP
+52580,C#;HTML/CSS;Java;PHP
+52581,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+52582,C#;Go;Java;JavaScript
+52583,Go;Java;Kotlin;SQL
+52584,C#;SQL;VBA
+52585,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+52586,HTML/CSS;JavaScript;PHP;SQL
+52587,Go;Python
+52588,HTML/CSS;JavaScript;PHP;Python;SQL
+52589,C#;F#;JavaScript
+52590,Python;Scala
+52591,C#;JavaScript;Ruby;SQL
+52592,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52593,Java;JavaScript;SQL;TypeScript
+52594,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP
+52595,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52596,HTML/CSS;Java;JavaScript;TypeScript
+52597,Java
+52598,Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+52599,HTML/CSS;JavaScript;Python;SQL;TypeScript
+52600,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+52601,C++;HTML/CSS;JavaScript;Python;Rust
+52602,HTML/CSS;JavaScript;Swift
+52603,Bash/Shell/PowerShell;C;C++;Go;Python;Rust;Scala;SQL;Other(s):
+52604,Bash/Shell/PowerShell;C;C++;Other(s):
+52605,C#;HTML/CSS;JavaScript;PHP;TypeScript
+52606,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+52607,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+52608,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52609,Bash/Shell/PowerShell;C;Swift
+52610,HTML/CSS;Java;JavaScript;SQL;TypeScript
+52611,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;Python;Ruby;Scala;SQL
+52612,Bash/Shell/PowerShell;C;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+52613,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Scala;TypeScript
+52614,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+52615,C;C++;HTML/CSS;JavaScript;PHP;Python
+52616,Bash/Shell/PowerShell;Python;R;Ruby;SQL
+52617,HTML/CSS;PHP;Python;SQL
+52618,Python;R;SQL
+52619,C++;C#;HTML/CSS;JavaScript;SQL
+52620,HTML/CSS;Java;JavaScript;PHP;Python
+52621,Java;JavaScript;Python
+52622,HTML/CSS;JavaScript;TypeScript
+52623,C++;C#;HTML/CSS;Java;JavaScript;PHP
+52624,Elixir;Erlang;Java;JavaScript;Python;Scala;SQL
+52625,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+52626,Assembly;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+52627,Swift
+52628,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+52629,C#;JavaScript;PHP
+52630,Java
+52631,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+52632,C++;HTML/CSS;Java;JavaScript;Kotlin;Swift
+52633,C;C++;R;Other(s):
+52634,Java
+52635,Bash/Shell/PowerShell;Java;Python;Swift
+52636,C++
+52637,Java;Kotlin;Python
+52638,Bash/Shell/PowerShell;Java;Python
+52639,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+52640,Java;SQL
+52641,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Swift
+52642,Bash/Shell/PowerShell;C;C++;Java;TypeScript
+52643,Bash/Shell/PowerShell;C#
+52644,Java;SQL
+52645,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52646,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Python;SQL
+52647,Python;SQL
+52648,C#;HTML/CSS;JavaScript
+52649,C#;HTML/CSS;JavaScript;SQL
+52650,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+52651,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+52652,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+52653,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript;WebAssembly
+52654,HTML/CSS;JavaScript;PHP;SQL
+52655,Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+52656,C#;HTML/CSS;Java;JavaScript;SQL
+52657,HTML/CSS;JavaScript;PHP;SQL
+52658,HTML/CSS;JavaScript;PHP;SQL
+52659,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52660,Java
+52661,Go;Python
+52662,C#;HTML/CSS;PHP;SQL;VBA
+52663,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+52664,C#;HTML/CSS;JavaScript;SQL
+52665,C;PHP;SQL
+52666,PHP
+52667,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+52668,C;HTML/CSS;Java;JavaScript;PHP;Python;R
+52669,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+52670,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+52671,C#;HTML/CSS;JavaScript;TypeScript
+52672,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52673,Go;HTML/CSS;Java
+52674,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python
+52675,C;C#;SQL
+52676,HTML/CSS;JavaScript;PHP;SQL
+52677,R
+52678,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+52679,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+52680,C;C#;Java;Kotlin;Python;SQL
+52681,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+52682,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP;SQL;Swift
+52683,C#;JavaScript;Python;Ruby;Rust;SQL;Swift
+52684,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+52685,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+52686,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+52687,PHP;Python;SQL
+52688,HTML/CSS;JavaScript;PHP;Python;SQL
+52689,C;Python
+52690,Python
+52691,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;VBA
+52692,Python;R
+52693,HTML/CSS;JavaScript;PHP;SQL
+52694,Java;Rust
+52695,Java;Swift
+52696,C;C++;Go;HTML/CSS;JavaScript;Python;Other(s):
+52697,Objective-C;Swift
+52698,JavaScript;TypeScript
+52699,Bash/Shell/PowerShell;HTML/CSS;Ruby;Scala;SQL;Other(s):
+52700,C#;HTML/CSS;JavaScript;SQL
+52701,Assembly;Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+52702,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+52703,C#;HTML/CSS;Java;JavaScript;SQL
+52704,Java;Kotlin
+52705,Elixir;JavaScript
+52706,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+52708,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python;Scala;SQL
+52709,R
+52710,Kotlin;Python;Rust;SQL
+52711,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python
+52712,Java;Kotlin;Objective-C;SQL;Swift
+52713,C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+52714,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+52715,C++;C#;JavaScript;SQL
+52716,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52717,HTML/CSS;JavaScript;PHP
+52718,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+52719,JavaScript;TypeScript
+52720,C;HTML/CSS;Python
+52721,HTML/CSS;JavaScript
+52722,C#;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+52723,JavaScript;PHP;SQL
+52724,HTML/CSS;JavaScript;Python
+52725,Java
+52726,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+52727,Bash/Shell/PowerShell;C#;Java;SQL
+52728,C#;HTML/CSS;Java;Scala
+52729,C#;HTML/CSS;JavaScript;PHP
+52730,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+52731,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+52732,Bash/Shell/PowerShell;Java;Swift
+52733,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+52734,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+52735,Go
+52736,Java;Kotlin;Python;Scala;Other(s):
+52737,Java
+52738,C;Java;JavaScript;Python;SQL
+52739,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+52740,HTML/CSS;Python;SQL
+52741,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+52742,C;C++;Java;JavaScript;Python
+52743,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+52744,Go
+52745,C#;HTML/CSS;JavaScript;TypeScript
+52746,Assembly;Bash/Shell/PowerShell;C;Objective-C;Python;Rust;Other(s):
+52747,Bash/Shell/PowerShell;C;HTML/CSS;Java;Kotlin
+52748,HTML/CSS;Java;JavaScript;PHP;Python
+52749,C#;HTML/CSS;JavaScript;SQL;TypeScript
+52750,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+52751,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+52752,Bash/Shell/PowerShell;C++;Python
+52753,C;Go;HTML/CSS;JavaScript;Python
+52754,Clojure;JavaScript;Python;SQL;Other(s):
+52755,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+52756,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52757,C;C++;Java;JavaScript
+52758,Dart;JavaScript;Swift
+52759,C#;HTML/CSS;JavaScript;TypeScript
+52760,HTML/CSS;JavaScript
+52761,Dart;Java;JavaScript;Kotlin;Python
+52762,HTML/CSS;JavaScript;PHP;SQL
+52763,HTML/CSS;JavaScript;Python
+52764,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL
+52765,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+52766,Bash/Shell/PowerShell;Swift
+52767,C;C++;Python
+52768,HTML/CSS;JavaScript;TypeScript
+52769,C#;HTML/CSS;JavaScript;Python;SQL
+52770,SQL
+52771,Go;HTML/CSS;Java;PHP;Python;SQL
+52772,Bash/Shell/PowerShell;C#;Erlang;SQL
+52773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+52774,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+52775,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+52776,SQL;VBA;Other(s):
+52777,C++;C#;HTML/CSS;JavaScript;Rust;Other(s):
+52778,Java;JavaScript;Scala
+52779,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+52780,HTML/CSS;Java;JavaScript;Swift
+52781,Bash/Shell/PowerShell;PHP;SQL
+52782,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+52783,HTML/CSS;JavaScript;PHP
+52785,Go;HTML/CSS;JavaScript;Python
+52786,Java;SQL
+52787,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+52788,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+52789,Bash/Shell/PowerShell;Go;SQL
+52790,SQL
+52791,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Swift;TypeScript
+52792,C#;HTML/CSS;Java;JavaScript;SQL
+52793,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+52794,C;Java;JavaScript;PHP;Python;SQL
+52795,HTML/CSS;Java;Python;R;Ruby;SQL
+52796,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+52797,C#;HTML/CSS;SQL;TypeScript
+52798,Erlang;HTML/CSS;Java;JavaScript;Python;R;SQL
+52799,C#;Elixir;JavaScript;SQL
+52800,Clojure;HTML/CSS;JavaScript;TypeScript
+52801,Kotlin
+52802,C#;HTML/CSS;JavaScript
+52803,HTML/CSS;Java;SQL
+52804,C++;Java;JavaScript
+52805,C++;HTML/CSS;PHP;Other(s):
+52806,JavaScript;Python
+52807,C++;C#
+52808,C++;C#;HTML/CSS;JavaScript;Python;SQL
+52809,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+52810,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+52811,Bash/Shell/PowerShell;Python;SQL;Other(s):
+52812,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+52813,C#;Java;JavaScript;SQL
+52814,C#;SQL;TypeScript
+52815,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52816,C#;HTML/CSS;JavaScript;SQL;VBA
+52817,HTML/CSS;Java;JavaScript;PHP;Scala;Swift
+52818,C++;C#;Java;Kotlin;Objective-C;Scala
+52819,C++;C#;HTML/CSS;JavaScript
+52820,C;Java;Python
+52821,HTML/CSS;JavaScript;TypeScript
+52822,SQL
+52823,C#;HTML/CSS;Java;PHP;SQL;VBA
+52824,C#;HTML/CSS;JavaScript;SQL
+52825,HTML/CSS;JavaScript;PHP;SQL
+52826,C#;HTML/CSS;JavaScript
+52827,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+52828,Bash/Shell/PowerShell;Go;HTML/CSS;Python
+52829,Bash/Shell/PowerShell;C#;JavaScript;R;SQL
+52830,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+52831,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+52832,C++;Python
+52833,Bash/Shell/PowerShell;Java;Python
+52834,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+52835,HTML/CSS;Java;JavaScript;Python;TypeScript
+52836,Bash/Shell/PowerShell;Other(s):
+52837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+52838,Assembly;C;C++;C#;HTML/CSS;Ruby;Rust;SQL;Other(s):
+52839,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52840,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+52841,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+52842,HTML/CSS;Java;JavaScript;PHP
+52843,Assembly;C;C++;C#;HTML/CSS;JavaScript
+52844,Bash/Shell/PowerShell;JavaScript;TypeScript
+52845,Java
+52846,HTML/CSS;JavaScript;TypeScript
+52847,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+52848,Python;R;Other(s):
+52849,C;C++;HTML/CSS;JavaScript;PHP;SQL
+52850,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52851,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+52852,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52853,HTML/CSS;JavaScript;Python;SQL;VBA
+52854,Assembly;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+52855,C#;PHP;Python;SQL
+52856,C#;HTML/CSS;JavaScript;PHP;SQL
+52857,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+52858,C#;HTML/CSS;JavaScript;PHP
+52859,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python;TypeScript
+52860,C++;JavaScript
+52861,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52862,C;JavaScript;Objective-C;PHP
+52863,HTML/CSS;Java;JavaScript;TypeScript
+52864,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+52865,HTML/CSS;JavaScript
+52866,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+52867,Ruby;SQL
+52868,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+52869,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;SQL
+52870,Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+52871,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52872,Bash/Shell/PowerShell;C++;C#;Go;JavaScript;TypeScript
+52873,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+52874,Go;Java;Python;Ruby
+52875,Bash/Shell/PowerShell;C++;Java;Python;SQL
+52876,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+52877,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;TypeScript;Other(s):
+52878,C#;HTML/CSS;JavaScript;SQL
+52879,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+52880,Java;JavaScript;SQL
+52881,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+52882,C#
+52883,Python;Rust;SQL
+52884,C;C#;HTML/CSS
+52885,C;C++;HTML/CSS;Java;JavaScript;PHP
+52886,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+52887,C#;Java;PHP
+52888,C#;HTML/CSS;JavaScript;TypeScript
+52889,HTML/CSS;JavaScript;Ruby
+52890,HTML/CSS;JavaScript;PHP;SQL
+52891,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52892,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Rust;SQL;Other(s):
+52893,C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52894,PHP
+52895,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+52896,Clojure;Java;JavaScript;SQL;TypeScript
+52897,Assembly;C;HTML/CSS;Java;JavaScript;PHP;R;SQL
+52898,C#;Go;JavaScript
+52899,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+52900,Bash/Shell/PowerShell;Other(s):
+52901,Bash/Shell/PowerShell;C#;SQL;VBA
+52903,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+52905,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+52906,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+52907,HTML/CSS;Java;JavaScript;SQL
+52908,Java;SQL
+52909,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Other(s):
+52910,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+52911,C;Java;SQL
+52912,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+52913,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+52914,C#;HTML/CSS;JavaScript;SQL
+52915,Dart;Java;Python
+52916,HTML/CSS;JavaScript;PHP;Python;SQL
+52917,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52918,C;C++;Go;Java
+52919,HTML/CSS;JavaScript;PHP;SQL
+52920,Java;JavaScript
+52921,Bash/Shell/PowerShell;C++;Elixir;Erlang;Python
+52922,HTML/CSS;JavaScript;PHP
+52923,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+52924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+52925,Bash/Shell/PowerShell;Java
+52926,HTML/CSS;JavaScript;PHP;SQL
+52927,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Python;SQL
+52928,JavaScript;PHP;SQL;TypeScript
+52929,C#;Dart;Java;Kotlin;SQL
+52930,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;JavaScript;Objective-C;Rust;SQL;TypeScript
+52931,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52932,Bash/Shell/PowerShell;R;SQL;Other(s):
+52933,HTML/CSS;JavaScript
+52934,Python;SQL
+52935,HTML/CSS;Java;JavaScript
+52936,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+52937,HTML/CSS;JavaScript;TypeScript
+52938,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+52939,HTML/CSS;Java;JavaScript;Python;SQL
+52940,C#;HTML/CSS;JavaScript;Python
+52941,Bash/Shell/PowerShell;Python
+52942,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+52943,C;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+52944,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+52945,C#;JavaScript;SQL;TypeScript
+52947,HTML/CSS;JavaScript;Ruby;SQL
+52948,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+52949,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52950,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+52951,C;Java;Python;Rust
+52952,Go;HTML/CSS;JavaScript;PHP;SQL
+52953,C++
+52954,C;C++;Java;Python;SQL
+52955,HTML/CSS;Java;JavaScript;SQL
+52956,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+52957,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+52958,Bash/Shell/PowerShell;C#;Java;PHP;VBA
+52959,Other(s):
+52960,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;VBA
+52961,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL;WebAssembly
+52962,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Swift
+52963,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+52964,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+52965,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Swift
+52966,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+52967,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;Kotlin;Python;R;SQL
+52968,R
+52969,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+52970,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+52971,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+52972,HTML/CSS;JavaScript;Ruby;TypeScript
+52973,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL
+52974,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+52975,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript;Other(s):
+52976,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;Swift
+52977,Java
+52978,C#;Go;HTML/CSS;Java;Kotlin;PHP;Ruby;SQL
+52979,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+52980,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+52981,HTML/CSS;JavaScript;PHP;SQL
+52982,Elixir;HTML/CSS;JavaScript
+52983,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;Rust;SQL;Swift
+52984,C++;C#;Go;JavaScript;Rust
+52985,C++;C#;HTML/CSS;JavaScript
+52986,HTML/CSS;JavaScript
+52987,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+52988,JavaScript;TypeScript
+52989,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+52990,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+52991,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;R;SQL
+52992,JavaScript;Python;SQL;TypeScript
+52993,C#;HTML/CSS;Python;TypeScript
+52994,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+52995,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+52996,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Objective-C
+52997,Assembly;JavaScript;PHP;Python;Ruby
+52998,C;C++;JavaScript;Objective-C;PHP;Python;SQL;Other(s):
+52999,Go;HTML/CSS;Java;JavaScript
+53000,Assembly;HTML/CSS;JavaScript;PHP
+53001,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python;SQL;VBA;Other(s):
+53002,Assembly;Bash/Shell/PowerShell;C;C++;Python;R;Ruby;Other(s):
+53003,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;SQL
+53004,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+53005,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+53006,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+53007,C#;HTML/CSS;JavaScript;Other(s):
+53008,Assembly;HTML/CSS;Python
+53009,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53010,Clojure;JavaScript;SQL
+53012,Bash/Shell/PowerShell;C;C++;Python
+53013,Bash/Shell/PowerShell;Erlang;Python;Scala;SQL
+53014,Bash/Shell/PowerShell;C;C++;C#;PHP;R;SQL
+53015,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+53016,Python
+53017,Bash/Shell/PowerShell;C;C#;Elixir;Java;Python
+53018,Bash/Shell/PowerShell;JavaScript;Python;SQL
+53019,Bash/Shell/PowerShell;C#;JavaScript
+53020,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+53021,Clojure;HTML/CSS;JavaScript;SQL
+53022,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+53023,Java;JavaScript;Kotlin
+53024,C++;HTML/CSS;JavaScript;Python;TypeScript
+53025,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+53026,C;C#;HTML/CSS;Java;Kotlin;Objective-C;Swift
+53027,HTML/CSS;Java;JavaScript
+53028,Bash/Shell/PowerShell;C++;Python
+53029,HTML/CSS;JavaScript;PHP
+53030,C;C#;Java
+53031,Go;HTML/CSS;JavaScript;SQL
+53032,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby
+53033,C++;C#;Java
+53034,HTML/CSS;JavaScript;PHP;TypeScript;WebAssembly
+53035,HTML/CSS;JavaScript;TypeScript
+53036,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+53037,Bash/Shell/PowerShell;Go;HTML/CSS;Python;R
+53038,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL;Other(s):
+53039,C#;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+53040,C;C#;HTML/CSS;PHP;Python;SQL
+53041,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Other(s):
+53042,Python;R;SQL;VBA
+53043,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+53044,HTML/CSS;Java;JavaScript;SQL;TypeScript
+53045,Bash/Shell/PowerShell;C;Elixir;Go;JavaScript;Python;Scala
+53046,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL;Other(s):
+53047,Objective-C
+53048,Go;HTML/CSS;JavaScript;Python;SQL
+53049,HTML/CSS;JavaScript;PHP;SQL
+53051,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;Swift;TypeScript
+53052,Bash/Shell/PowerShell;Python;SQL;Other(s):
+53053,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53054,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;SQL
+53055,Java;SQL
+53056,Java;Kotlin;PHP
+53057,R;SQL;VBA
+53058,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+53059,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+53060,Bash/Shell/PowerShell;JavaScript;Python
+53061,Assembly;C;C++;C#;Python
+53062,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;WebAssembly
+53063,Bash/Shell/PowerShell;C#;Python;SQL
+53064,C;JavaScript;Objective-C;Swift
+53065,Dart;Python
+53066,C++;C#;TypeScript
+53067,C#;VBA;Other(s):
+53068,HTML/CSS;JavaScript;PHP
+53069,Bash/Shell/PowerShell;JavaScript;PHP;Python
+53070,C#;JavaScript
+53071,C;C++;Java;JavaScript;PHP;Python
+53072,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+53073,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;TypeScript
+53074,C#;HTML/CSS;JavaScript;SQL
+53075,C;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+53076,Bash/Shell/PowerShell;C#;SQL
+53077,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+53078,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Rust;SQL
+53079,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53080,Bash/Shell/PowerShell;Python
+53081,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+53082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+53083,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+53084,Go;HTML/CSS;JavaScript;PHP;SQL
+53085,Bash/Shell/PowerShell;HTML/CSS;Ruby
+53086,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+53087,Java;SQL;Other(s):
+53088,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+53089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+53090,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+53091,C;C++;C#;HTML/CSS;JavaScript;Python
+53092,HTML/CSS;JavaScript;Python
+53093,JavaScript;Python
+53094,C#;Swift
+53095,Bash/Shell/PowerShell;C++;C#;F#;SQL
+53096,C++;C#;JavaScript;SQL
+53097,HTML/CSS;Java;JavaScript;Kotlin
+53098,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python
+53099,C;C++;HTML/CSS;Java;JavaScript;Python
+53100,HTML/CSS;JavaScript;PHP;Python;SQL
+53101,C;C++;HTML/CSS;PHP
+53102,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+53103,Objective-C;Swift
+53104,C#;HTML/CSS;JavaScript;Python;SQL
+53105,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+53106,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+53107,HTML/CSS;Objective-C;Ruby;Swift
+53108,HTML/CSS;Java;JavaScript;SQL;Other(s):
+53109,Assembly;C++;HTML/CSS;Java;Python
+53110,HTML/CSS;JavaScript;PHP;SQL
+53111,Swift
+53112,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+53113,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+53114,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53115,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53116,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+53117,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53118,HTML/CSS;JavaScript;PHP;SQL
+53119,C++;HTML/CSS
+53120,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+53121,Java;JavaScript;Kotlin;SQL
+53122,HTML/CSS;JavaScript;Python;SQL
+53123,C;C++;C#
+53124,Bash/Shell/PowerShell;C;R;Rust
+53125,HTML/CSS;Java;JavaScript;PHP;SQL
+53126,Bash/Shell/PowerShell;C;C++;Python
+53127,C#;HTML/CSS;JavaScript;Other(s):
+53128,Assembly;C;C++;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+53129,Assembly;Bash/Shell/PowerShell;C++;C#;Java;Python;SQL
+53130,Java
+53131,HTML/CSS;JavaScript;PHP;SQL
+53132,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+53133,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+53134,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+53135,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+53136,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53137,Python
+53138,JavaScript;TypeScript
+53139,Bash/Shell/PowerShell;C;Clojure;Go;Java;Python
+53140,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+53141,Assembly;C;C#;HTML/CSS;JavaScript;PHP;SQL
+53142,Assembly;C#;SQL
+53143,Java;Python
+53144,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+53145,HTML/CSS;JavaScript;PHP;Python;SQL
+53146,C;C++;HTML/CSS;Java;PHP;Python;R;SQL
+53147,JavaScript;Python;TypeScript
+53148,HTML/CSS;Java;SQL
+53149,HTML/CSS;Java;JavaScript;Python;Rust
+53150,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+53151,HTML/CSS;JavaScript
+53152,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+53153,C;C++;Python
+53154,C;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+53155,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+53156,Java;Kotlin
+53157,Bash/Shell/PowerShell;Java;R;Scala;SQL
+53158,C#;Java;JavaScript;Python;SQL
+53159,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+53160,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;Other(s):
+53161,C#;HTML/CSS;JavaScript;SQL;VBA
+53162,HTML/CSS;Java;JavaScript;Ruby;TypeScript;Other(s):
+53163,HTML/CSS;JavaScript;PHP
+53164,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+53165,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+53166,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53167,Java;JavaScript;PHP;Ruby;SQL
+53168,Bash/Shell/PowerShell;Python
+53169,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+53170,C#;Python;SQL;VBA
+53171,C#;SQL
+53172,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+53173,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53174,Java;Kotlin;Ruby
+53175,C#;Java;Kotlin
+53176,Swift
+53177,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+53178,HTML/CSS;JavaScript;SQL;TypeScript
+53179,R
+53180,Bash/Shell/PowerShell;C#;JavaScript;SQL
+53181,HTML/CSS;Java;JavaScript;SQL
+53182,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53183,HTML/CSS;Java;JavaScript
+53184,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+53185,HTML/CSS;Java;JavaScript
+53186,HTML/CSS;JavaScript;Python;SQL
+53187,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+53188,Python;VBA
+53189,C#;JavaScript;SQL;TypeScript
+53190,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+53191,HTML/CSS;JavaScript;PHP;SQL
+53192,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53193,Bash/Shell/PowerShell;C#;F#;Java
+53194,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+53195,C#;HTML/CSS;JavaScript;SQL
+53196,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;TypeScript
+53197,Python;SQL
+53198,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+53199,C;HTML/CSS;JavaScript
+53200,Bash/Shell/PowerShell;Go;Python
+53201,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+53202,C++;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Scala;TypeScript
+53203,PHP;Python;R;Ruby;SQL
+53204,HTML/CSS;JavaScript;PHP;TypeScript
+53205,Other(s):
+53206,Bash/Shell/PowerShell;Python
+53207,Bash/Shell/PowerShell;Python
+53208,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+53209,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+53210,C#;HTML/CSS;SQL
+53211,HTML/CSS;Java;JavaScript;Objective-C;R;Ruby;Swift;TypeScript
+53212,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;JavaScript;Python
+53213,C#;HTML/CSS;JavaScript;SQL;VBA
+53214,Bash/Shell/PowerShell;C++;Java
+53215,C;HTML/CSS;JavaScript;PHP
+53217,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53218,C;C++;C#;Python
+53219,JavaScript;Python;SQL
+53220,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+53221,Java;JavaScript
+53222,C#;JavaScript;SQL
+53223,Bash/Shell/PowerShell;C#;JavaScript
+53224,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53225,C;Python
+53226,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53227,C++;HTML/CSS;Java;JavaScript
+53228,HTML/CSS;Java;TypeScript
+53229,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+53230,C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+53231,Java
+53232,C#;PHP
+53233,HTML/CSS;Java;JavaScript;SQL;TypeScript
+53234,HTML/CSS;Java;JavaScript;TypeScript
+53235,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+53236,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+53237,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+53238,Go;PHP;Ruby;SQL
+53239,Assembly;Bash/Shell/PowerShell;C++;Python
+53240,C#;Java;JavaScript;PHP;SQL;Other(s):
+53241,C++;C#;PHP
+53242,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+53243,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+53244,C++;C#;Java;Objective-C;Swift
+53245,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+53246,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+53247,Java;Kotlin
+53248,Java;JavaScript;Python;TypeScript
+53249,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+53250,Assembly;C;Java
+53251,Go;HTML/CSS;JavaScript;Python
+53252,C++;HTML/CSS;Java
+53253,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53254,HTML/CSS;Java;JavaScript;PHP;SQL
+53255,HTML/CSS;Java;JavaScript;PHP;SQL
+53256,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+53257,Python;SQL
+53258,JavaScript;PHP;Python
+53259,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53260,Bash/Shell/PowerShell;Java;SQL
+53261,Java;SQL
+53262,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+53263,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+53264,Go;HTML/CSS;JavaScript;Python;Scala
+53265,C++;Kotlin
+53266,Assembly;C;C++;C#;Java;JavaScript;Swift
+53267,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+53268,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;SQL;TypeScript
+53269,C#;HTML/CSS;JavaScript;SQL
+53270,HTML/CSS;JavaScript;Swift
+53271,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53272,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;Other(s):
+53273,Java;Python
+53275,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Swift
+53276,Clojure;Java;JavaScript
+53277,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+53278,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+53279,Bash/Shell/PowerShell;C;C++;C#
+53280,HTML/CSS;JavaScript;PHP;TypeScript
+53281,Assembly
+53282,HTML/CSS;JavaScript;PHP;SQL
+53283,HTML/CSS;JavaScript;Python;SQL
+53284,HTML/CSS;JavaScript;Kotlin;Python;SQL
+53285,Bash/Shell/PowerShell;Go;Java;Scala
+53286,Dart;JavaScript;Objective-C;Ruby;Swift;TypeScript
+53287,C
+53288,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+53289,HTML/CSS;JavaScript;PHP;SQL
+53290,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+53291,C;Java;JavaScript;PHP;SQL
+53292,C;C++;HTML/CSS;JavaScript;Python;SQL
+53293,Bash/Shell/PowerShell;C;C++;Python;TypeScript;Other(s):
+53294,HTML/CSS;JavaScript;PHP;SQL
+53295,C#;JavaScript;R;SQL
+53296,C;C#;SQL;VBA;Other(s):
+53297,JavaScript;Python
+53298,HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+53299,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+53300,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+53301,HTML/CSS;Java;JavaScript
+53302,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;Swift;TypeScript
+53303,C;HTML/CSS;Java;JavaScript;PHP;Python
+53304,C#;HTML/CSS;JavaScript;SQL
+53305,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+53306,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+53307,HTML/CSS;Java;JavaScript;PHP;TypeScript
+53308,C++;C#;HTML/CSS;JavaScript;Python
+53309,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+53310,Bash/Shell/PowerShell;Clojure;JavaScript;PHP;SQL
+53311,C#;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript;Other(s):
+53312,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+53313,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+53314,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+53315,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;Swift;TypeScript
+53316,Clojure;Go;Python;SQL
+53317,Go;Java
+53318,HTML/CSS;Java;JavaScript;Python;SQL
+53320,HTML/CSS;R;SQL;VBA
+53321,Go;HTML/CSS;JavaScript;Python
+53322,Bash/Shell/PowerShell;C++;Java;Python;Ruby
+53323,Bash/Shell/PowerShell;C;C++;Python;VBA
+53324,Bash/Shell/PowerShell
+53325,C#
+53326,HTML/CSS;JavaScript;Python;SQL;TypeScript
+53327,C#;Go;HTML/CSS;Java;JavaScript
+53328,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+53329,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53330,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+53331,C;Go
+53332,Python;R
+53333,Java;Kotlin
+53334,C#;JavaScript;TypeScript;Other(s):
+53335,C++;HTML/CSS;JavaScript;Python;TypeScript
+53336,Python
+53337,C;HTML/CSS;JavaScript;Kotlin;PHP;R;SQL
+53338,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53339,C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+53340,C#
+53341,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+53343,Java;SQL
+53344,JavaScript
+53346,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+53347,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+53348,JavaScript;PHP;Python
+53349,Objective-C;Python;Swift
+53350,Bash/Shell/PowerShell;C#;JavaScript;PHP;Python;SQL
+53351,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+53352,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Python;Other(s):
+53353,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53354,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+53355,Dart;HTML/CSS;JavaScript;TypeScript
+53356,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+53357,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;R;SQL
+53358,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+53359,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+53360,C#;VBA
+53361,Java
+53362,Bash/Shell/PowerShell;Java;JavaScript;PHP;VBA;Other(s):
+53363,HTML/CSS;Java;JavaScript;Python
+53364,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+53365,Python;R;Other(s):
+53366,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+53367,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+53368,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java
+53369,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53370,C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+53371,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+53372,HTML/CSS;JavaScript;SQL
+53373,C#;F#;HTML/CSS;Python;SQL;TypeScript
+53374,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+53375,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;SQL;VBA
+53376,Java;Kotlin
+53377,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+53378,HTML/CSS;JavaScript;PHP;TypeScript
+53379,Java;Kotlin;Scala;TypeScript
+53380,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+53381,C#;Python;Rust
+53382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+53383,HTML/CSS;JavaScript;PHP;Python;SQL
+53384,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+53385,C#;JavaScript
+53386,C#;Elixir;Erlang;Go;Java;PHP;Python
+53387,C#
+53388,HTML/CSS;JavaScript
+53389,Bash/Shell/PowerShell;C++;C#;Erlang;Java;Python;SQL
+53390,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+53391,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53392,C++;HTML/CSS;Java;JavaScript;Python
+53393,C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;Swift
+53394,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+53395,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+53396,Java
+53397,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53398,Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+53399,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53400,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53401,C;Kotlin;Objective-C;Ruby;Swift
+53402,C;Objective-C;Ruby;Swift
+53403,C#;HTML/CSS;SQL;VBA
+53404,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+53405,JavaScript;Other(s):
+53406,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+53407,C;C++;Java;Kotlin;PHP
+53408,Other(s):
+53409,Go;HTML/CSS;JavaScript;Python;TypeScript
+53410,C#;HTML/CSS;JavaScript;SQL
+53411,C#;Go;Python;TypeScript
+53412,Java;Python;Scala
+53413,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;Rust;Scala;WebAssembly
+53414,C++;Python
+53415,C#;HTML/CSS;JavaScript;PHP;TypeScript
+53416,Bash/Shell/PowerShell;C#;F#;Go;JavaScript;Ruby;Other(s):
+53417,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+53418,JavaScript;Other(s):
+53419,Bash/Shell/PowerShell;Java
+53420,C;HTML/CSS;Java;JavaScript;PHP;SQL
+53421,C;C++;Go;JavaScript;Python
+53422,Bash/Shell/PowerShell;Java;Kotlin;Python
+53423,C#;HTML/CSS;JavaScript;SQL;VBA
+53424,HTML/CSS;JavaScript;Ruby
+53425,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+53426,HTML/CSS;Java;JavaScript;PHP;SQL
+53427,Bash/Shell/PowerShell;C;C++;Python
+53428,HTML/CSS;Java;JavaScript;SQL;TypeScript
+53429,C;Java
+53430,Java
+53431,Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+53432,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53433,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;Rust;Scala;SQL
+53434,HTML/CSS;Java;JavaScript;SQL
+53435,C#;Go;HTML/CSS;JavaScript;R;SQL;TypeScript;WebAssembly
+53436,Bash/Shell/PowerShell;Python
+53437,HTML/CSS;JavaScript;PHP
+53438,Bash/Shell/PowerShell;C;Clojure;Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;Rust;SQL
+53439,C#;HTML/CSS;JavaScript;SQL
+53440,Bash/Shell/PowerShell;C;Python;SQL
+53441,Java;Kotlin
+53442,JavaScript;PHP
+53443,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53444,HTML/CSS;Java;JavaScript
+53445,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+53446,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;Other(s):
+53447,Scala
+53448,Python;SQL
+53449,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;Ruby
+53450,Java;JavaScript;Scala;SQL;TypeScript
+53451,Elixir;Go;JavaScript;Ruby
+53452,HTML/CSS;JavaScript;PHP;Python
+53453,C++;JavaScript;Python
+53454,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL;WebAssembly;Other(s):
+53455,HTML/CSS;Java;JavaScript;Python;R;SQL
+53456,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+53457,Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL
+53458,Dart;Python
+53459,Java;JavaScript;Kotlin;SQL;TypeScript
+53460,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+53461,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+53462,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript;VBA
+53463,Objective-C;PHP;Python;R
+53464,C;C++;C#;Java;Python;Other(s):
+53465,HTML/CSS;JavaScript
+53466,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+53467,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;Scala;SQL;VBA
+53468,C;C#;JavaScript;PHP;SQL
+53469,Python;R;SQL
+53470,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+53471,C#;HTML/CSS;JavaScript;SQL
+53472,JavaScript;Python;Swift
+53473,Python;SQL
+53474,HTML/CSS;JavaScript;TypeScript
+53475,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+53476,HTML/CSS;JavaScript;R
+53477,C;HTML/CSS;Java;PHP
+53478,HTML/CSS;JavaScript;PHP;SQL
+53479,HTML/CSS;Java;JavaScript;PHP
+53480,Java;SQL
+53481,Java;Objective-C;Python
+53482,Python
+53483,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+53484,HTML/CSS;JavaScript;PHP
+53485,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+53486,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;Other(s):
+53487,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+53488,JavaScript;PHP;Other(s):
+53489,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;Ruby
+53490,Python;SQL
+53491,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+53492,JavaScript;Python;Ruby;SQL
+53493,Assembly;Bash/Shell/PowerShell;C;C++;Python
+53494,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL
+53495,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+53496,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;WebAssembly
+53497,HTML/CSS;SQL;VBA
+53498,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53499,C;C++;HTML/CSS;Swift
+53500,Bash/Shell/PowerShell;Java;SQL
+53501,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+53502,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+53503,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+53504,C;C++;C#;Java
+53505,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+53506,C#;HTML/CSS;SQL
+53507,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+53508,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+53509,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53510,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+53511,C;C++;HTML/CSS;Java;Kotlin
+53512,Java;JavaScript;Python
+53513,Python
+53514,Java;JavaScript;Python;SQL
+53515,C;C++
+53516,Bash/Shell/PowerShell;Go;HTML/CSS;Ruby
+53517,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript
+53518,HTML/CSS;JavaScript
+53519,HTML/CSS;Java;JavaScript
+53520,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+53521,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+53522,Bash/Shell/PowerShell;Java;SQL
+53523,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+53524,Assembly;C;C++;Erlang;VBA
+53525,Dart;HTML/CSS;Python;TypeScript
+53526,HTML/CSS;Python;R
+53527,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;VBA
+53528,HTML/CSS;JavaScript
+53529,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53530,Bash/Shell/PowerShell;C++
+53531,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53532,C;Python;R
+53533,HTML/CSS;JavaScript
+53534,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+53535,C#;HTML/CSS;Java;JavaScript;SQL
+53536,HTML/CSS;Java;JavaScript;Scala
+53537,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+53538,Objective-C;Swift
+53539,C;Objective-C;Swift
+53540,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+53541,HTML/CSS;Java;JavaScript
+53542,Java
+53543,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+53544,HTML/CSS;JavaScript
+53545,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+53546,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+53547,HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript;Other(s):
+53548,TypeScript
+53549,HTML/CSS;Java;JavaScript;Ruby;TypeScript
+53550,Java;SQL;VBA
+53551,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+53552,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+53553,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+53554,C#;Other(s):
+53555,C#
+53556,C#;HTML/CSS;JavaScript;PHP;SQL
+53557,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+53558,C#;HTML/CSS;Java;JavaScript;SQL
+53559,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53560,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;Ruby
+53561,C;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+53562,HTML/CSS;Java;JavaScript;SQL
+53563,Assembly;Java
+53564,HTML/CSS;JavaScript;PHP
+53565,Java;Kotlin
+53566,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+53567,HTML/CSS;Java;Python;SQL
+53568,HTML/CSS;JavaScript;Python;SQL
+53569,C#;Python
+53570,Assembly;C;Java;Python
+53571,HTML/CSS;Java;JavaScript;Kotlin;SQL
+53572,C#;JavaScript;PHP
+53573,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+53574,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+53575,Java;JavaScript
+53576,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala
+53577,C#;SQL
+53578,Erlang;Go
+53579,C#;HTML/CSS;Java;Kotlin;Python;Scala;SQL;TypeScript
+53580,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+53581,Java;Python;Scala;SQL
+53582,HTML/CSS;JavaScript;Python;Ruby
+53583,PHP;Python;SQL
+53584,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+53585,Java
+53586,HTML/CSS;JavaScript;Ruby;SQL;Swift
+53587,JavaScript;PHP;SQL
+53588,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+53589,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+53590,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53591,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+53592,C#;Rust;TypeScript;Other(s):
+53593,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53594,Kotlin;Python;Swift
+53595,C++;C#;Java;PHP
+53596,C++;C#;SQL
+53597,C;C#;Java;JavaScript;SQL
+53598,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+53599,Bash/Shell/PowerShell;Python;SQL
+53600,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+53601,HTML/CSS;JavaScript;Ruby;SQL
+53602,HTML/CSS;JavaScript;TypeScript
+53603,HTML/CSS;Java;JavaScript;PHP;SQL
+53604,C#;JavaScript;Rust;SQL;TypeScript
+53605,HTML/CSS;Java;JavaScript
+53606,JavaScript;Python;Ruby;SQL
+53607,C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+53608,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+53609,Java;JavaScript;Python;Ruby
+53610,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+53611,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python
+53612,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+53613,HTML/CSS;JavaScript;PHP;Python;SQL
+53614,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+53615,Java;JavaScript;Python;Scala;TypeScript
+53616,HTML/CSS;JavaScript;PHP;Python;Other(s):
+53617,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Scala;SQL
+53618,C#;F#;SQL
+53619,HTML/CSS;Java;JavaScript;Python;SQL
+53620,C++;HTML/CSS
+53621,C#;SQL
+53622,Bash/Shell/PowerShell;Python
+53623,HTML/CSS;JavaScript;PHP;SQL
+53624,C;HTML/CSS;JavaScript
+53625,JavaScript;Objective-C;Other(s):
+53626,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby
+53627,C++;C#
+53628,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+53629,C++;HTML/CSS;JavaScript;PHP;TypeScript
+53630,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+53631,C#;HTML/CSS;Java;JavaScript
+53632,HTML/CSS;JavaScript;PHP;SQL
+53633,C#;HTML/CSS;PHP;Python;SQL
+53634,Elixir;Erlang;HTML/CSS;Java;JavaScript;Ruby;SQL
+53635,C#;JavaScript;Objective-C
+53636,SQL
+53637,C#;JavaScript
+53638,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+53639,HTML/CSS;PHP
+53640,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53641,Bash/Shell/PowerShell;Java;JavaScript;Ruby;SQL;TypeScript;VBA
+53642,Bash/Shell/PowerShell;PHP;Python;SQL
+53643,C#;HTML/CSS;JavaScript;SQL;Other(s):
+53644,C#;HTML/CSS;VBA;Other(s):
+53645,C#;HTML/CSS;JavaScript;SQL;VBA
+53646,Java;JavaScript;Kotlin;Python
+53647,Bash/Shell/PowerShell;Python;TypeScript
+53648,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+53649,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+53651,Assembly;C#;Java;JavaScript;PHP;Python;SQL
+53652,Java;JavaScript;Python;SQL
+53653,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+53654,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+53655,Bash/Shell/PowerShell;Go;JavaScript;Ruby;Scala;TypeScript;Other(s):
+53656,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+53657,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+53658,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+53659,HTML/CSS;JavaScript;PHP;SQL
+53660,Assembly
+53661,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+53662,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+53663,HTML/CSS;JavaScript;PHP;SQL
+53664,HTML/CSS;Java;JavaScript;PHP;SQL
+53665,HTML/CSS;Python;SQL
+53666,Java;JavaScript;Kotlin;SQL;TypeScript
+53667,C#;JavaScript;Python;SQL;TypeScript
+53668,Java;JavaScript;Kotlin
+53669,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+53670,C#;Ruby;Scala;SQL
+53671,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+53672,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+53673,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+53674,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+53675,C#;HTML/CSS
+53676,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;Python;R;Other(s):
+53677,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53678,HTML/CSS;JavaScript;TypeScript
+53679,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+53680,HTML/CSS;JavaScript;TypeScript
+53681,HTML/CSS;JavaScript;Objective-C;PHP;Swift;TypeScript;VBA
+53682,C#;HTML/CSS;JavaScript;TypeScript
+53683,C#;HTML/CSS;JavaScript;TypeScript
+53684,C;HTML/CSS;JavaScript;Python;Ruby
+53685,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+53686,C#;HTML/CSS;Java;JavaScript;Python;SQL
+53687,C++;HTML/CSS;Java;JavaScript;Python;SQL
+53688,Java
+53689,Bash/Shell/PowerShell;C++;Elixir;Erlang;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+53690,Bash/Shell/PowerShell;C;C++
+53691,Clojure;Java;JavaScript;Python;SQL
+53692,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+53693,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+53694,Java;Kotlin
+53695,HTML/CSS;Java;JavaScript
+53696,C++;HTML/CSS;JavaScript;Python;R
+53697,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+53698,HTML/CSS;JavaScript;PHP
+53699,C#;Clojure;HTML/CSS;JavaScript;PHP;SQL
+53700,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Scala;Other(s):
+53701,C;Java
+53702,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+53703,Assembly;C;C++
+53704,C#;HTML/CSS;JavaScript;PHP;Python;R
+53705,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+53706,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+53707,Java;Python;SQL
+53708,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53709,C#;HTML/CSS;Python;SQL
+53710,C++;Python
+53711,HTML/CSS;JavaScript;TypeScript
+53712,C;HTML/CSS;JavaScript;PHP;SQL
+53713,Java;JavaScript;PHP;TypeScript
+53714,Bash/Shell/PowerShell;Python
+53715,Java;JavaScript;PHP;SQL
+53716,Java;JavaScript
+53717,C#;HTML/CSS;JavaScript;SQL;Other(s):
+53718,Elixir;HTML/CSS;JavaScript;Ruby;Other(s):
+53719,Java;JavaScript;Kotlin;Objective-C;Swift
+53720,Bash/Shell/PowerShell;Java;JavaScript;Python;Other(s):
+53721,Assembly;C#
+53722,HTML/CSS;Java;JavaScript;PHP;SQL
+53723,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;Swift
+53724,Java
+53725,C++;Java;Python
+53726,HTML/CSS;Java;JavaScript;SQL;TypeScript
+53727,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+53728,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+53730,Java;JavaScript;Kotlin
+53731,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+53732,Assembly;C;C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+53733,JavaScript;Python
+53734,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+53735,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+53736,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+53737,C;HTML/CSS;Java;SQL
+53738,Bash/Shell/PowerShell;Python;SQL
+53739,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;R;SQL;TypeScript
+53740,Other(s):
+53741,HTML/CSS;JavaScript;Python;Scala;SQL
+53742,HTML/CSS;JavaScript;Ruby
+53743,C#
+53744,C#;HTML/CSS;JavaScript;SQL
+53745,C#;SQL
+53746,C#;SQL;Other(s):
+53747,Kotlin
+53748,C#;JavaScript;Python;SQL;TypeScript
+53749,PHP;Python;SQL;VBA;Other(s):
+53750,Bash/Shell/PowerShell;Java;Python;Scala;Other(s):
+53751,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+53752,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+53753,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+53754,HTML/CSS;JavaScript;Scala;TypeScript
+53755,JavaScript;Python;SQL
+53756,HTML/CSS;JavaScript;PHP;TypeScript
+53757,C#;F#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+53758,Bash/Shell/PowerShell;HTML/CSS;Python
+53759,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+53760,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;Scala;SQL;Other(s):
+53761,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53763,HTML/CSS;Java;JavaScript;SQL
+53764,C#;Java;PHP;SQL
+53765,C++;Kotlin;Python;SQL
+53766,C++;Java;JavaScript;Python;SQL;TypeScript
+53767,Bash/Shell/PowerShell;C;C++;C#;Go;Java;Kotlin;Python;Rust;SQL;Other(s):
+53768,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+53769,Java;Python
+53770,HTML/CSS;PHP;SQL;Other(s):
+53771,Other(s):
+53772,PHP;SQL
+53773,Go;HTML/CSS;PHP;SQL
+53774,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+53775,C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+53776,JavaScript;Python
+53777,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+53778,HTML/CSS;JavaScript;PHP;Python
+53779,C#;VBA
+53780,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+53781,C#;HTML/CSS;JavaScript;SQL
+53782,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+53783,C++;C#;HTML/CSS;JavaScript
+53784,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+53785,HTML/CSS;JavaScript;Ruby;SQL
+53786,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+53787,HTML/CSS;JavaScript;PHP
+53788,HTML/CSS;JavaScript
+53789,C#;HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript
+53790,Elixir
+53791,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+53792,HTML/CSS;Java;JavaScript;SQL
+53793,C#;TypeScript
+53794,C#;HTML/CSS;Java;JavaScript;SQL
+53795,Bash/Shell/PowerShell;PHP;Python;TypeScript
+53796,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python
+53797,JavaScript
+53798,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+53799,C#;TypeScript
+53800,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+53801,Dart;Java;Kotlin
+53802,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+53803,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53804,HTML/CSS;JavaScript;PHP;TypeScript
+53805,Assembly;Bash/Shell/PowerShell;C;C++;SQL
+53806,Java;PHP;SQL
+53807,C#;HTML/CSS;JavaScript;PHP;TypeScript
+53808,C#;HTML/CSS;SQL;TypeScript
+53809,C;C++;C#;HTML/CSS;Java;SQL
+53810,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+53811,C;Erlang;HTML/CSS;JavaScript;Python;SQL;Other(s):
+53812,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+53813,Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53814,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+53815,Bash/Shell/PowerShell;Java
+53816,Clojure;Java;Scala
+53817,C;HTML/CSS;JavaScript;Python
+53818,Java;JavaScript;PHP
+53819,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53820,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+53821,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53822,HTML/CSS;JavaScript;PHP
+53823,HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+53824,HTML/CSS;JavaScript;PHP;Ruby;SQL
+53825,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+53826,C#;HTML/CSS;SQL
+53827,JavaScript;Python
+53828,Dart;HTML/CSS;Java
+53829,JavaScript;Other(s):
+53830,Java
+53831,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+53832,C#;F#;JavaScript
+53833,C;C++;C#;Java;Python
+53835,C;C++;JavaScript;Python
+53836,HTML/CSS;Java;JavaScript;SQL
+53837,JavaScript;Python;R;SQL
+53838,C;Python
+53839,HTML/CSS;JavaScript;SQL;TypeScript
+53840,Java
+53841,HTML/CSS;JavaScript;TypeScript
+53842,C;HTML/CSS;Java;JavaScript;Python;SQL
+53843,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+53844,C#;HTML/CSS;Java;JavaScript;TypeScript
+53845,C#;Java
+53846,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+53847,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Ruby;SQL
+53848,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+53849,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+53850,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53851,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+53852,Bash/Shell/PowerShell;JavaScript;Swift;TypeScript
+53853,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+53854,Python;SQL
+53855,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;VBA
+53856,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+53857,C#;HTML/CSS;Java;JavaScript;SQL
+53858,Java;JavaScript;SQL;TypeScript;Other(s):
+53859,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+53860,Assembly;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+53861,HTML/CSS;Java;JavaScript;Python;SQL
+53862,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Dart;Erlang;Go;Java;Kotlin;Objective-C;Python;R;Ruby;Rust;SQL;Swift;Other(s):
+53863,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+53864,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+53865,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+53866,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+53867,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+53868,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+53869,HTML/CSS;Java;SQL
+53870,C;C++;C#;Dart;Python
+53871,HTML/CSS;JavaScript;Python;SQL
+53872,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+53873,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+53874,HTML/CSS;JavaScript;PHP
+53875,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+53876,Bash/Shell/PowerShell;Ruby;Other(s):
+53877,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+53878,Kotlin;Python;Rust;Other(s):
+53879,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53880,C;HTML/CSS;Java;PHP;Python;SQL
+53881,HTML/CSS;Java
+53882,Elixir;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Swift
+53883,Go;HTML/CSS;JavaScript;Python;TypeScript
+53884,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+53885,C;Python
+53886,Other(s):
+53887,C++;HTML/CSS;Java;JavaScript;Kotlin;Swift
+53888,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+53889,Bash/Shell/PowerShell;Elixir;Ruby
+53890,HTML/CSS;JavaScript;PHP;SQL
+53891,Objective-C;Swift
+53892,Clojure;Dart;HTML/CSS;JavaScript;Python;SQL;TypeScript
+53893,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+53894,Bash/Shell/PowerShell;C#;JavaScript
+53895,Bash/Shell/PowerShell;C;C++;C#
+53896,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+53897,HTML/CSS;JavaScript;PHP;SQL
+53898,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+53899,Java
+53900,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+53901,HTML/CSS;JavaScript;Python;SQL
+53903,C#;Java;R;Ruby;SQL;VBA
+53904,Assembly;HTML/CSS;JavaScript;Python
+53906,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+53907,C#;PHP;SQL;VBA;Other(s):
+53908,Bash/Shell/PowerShell;C#;Python
+53909,Assembly;C;C++;Go;Python;SQL
+53910,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+53911,Java;JavaScript;TypeScript
+53912,Other(s):
+53913,C;C++;HTML/CSS;PHP;SQL
+53914,C++;Python
+53915,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+53916,C#;Java;PHP;SQL
+53917,Python
+53918,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+53919,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+53920,C#;HTML/CSS;JavaScript;TypeScript
+53921,C++;HTML/CSS;JavaScript;Rust;TypeScript
+53922,C++;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+53923,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+53924,Assembly;C;C++;C#;Dart;F#;HTML/CSS;Java;JavaScript;Python;SQL
+53925,C#;JavaScript;SQL;TypeScript
+53926,C;C++;C#;Dart;HTML/CSS;JavaScript;SQL;Swift
+53927,HTML/CSS;JavaScript;Ruby;SQL
+53928,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+53929,Java;Python;SQL
+53930,HTML/CSS;JavaScript
+53931,Bash/Shell/PowerShell;C;SQL
+53932,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+53933,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+53934,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+53935,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+53936,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53937,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+53938,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+53939,Bash/Shell/PowerShell;C++;JavaScript;Python
+53940,C#;R;VBA
+53941,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+53942,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+53943,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+53944,C++;Dart;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+53945,C++;C#;Python
+53946,C;HTML/CSS;Java;Python;SQL
+53947,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+53948,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+53949,Java;JavaScript
+53950,HTML/CSS;JavaScript;Python;SQL;Swift
+53951,Java;JavaScript;Python;SQL
+53952,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+53953,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+53954,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+53955,C#
+53956,Bash/Shell/PowerShell;C;C++;Python
+53957,HTML/CSS;Python
+53958,Clojure;Python;Ruby;Other(s):
+53959,Swift
+53960,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+53961,C;C++;HTML/CSS;Java;JavaScript;SQL
+53962,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53963,C#;JavaScript
+53964,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+53965,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;Python;R;Ruby;Scala;SQL;TypeScript;Other(s):
+53966,HTML/CSS;Java;JavaScript
+53967,C;C++;C#;Java
+53968,C#;HTML/CSS;JavaScript;SQL;TypeScript
+53969,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+53970,Java;JavaScript;Python;SQL
+53971,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+53972,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+53973,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+53974,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python
+53975,HTML/CSS;JavaScript;PHP;SQL
+53976,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+53977,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+53978,PHP;SQL
+53979,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+53980,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+53981,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+53982,HTML/CSS;Java;JavaScript;PHP;Swift
+53983,Java;Kotlin
+53985,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+53986,C;C#;Python
+53987,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+53988,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+53989,Dart;Java;JavaScript;Python;Other(s):
+53990,HTML/CSS;JavaScript
+53991,C++;C#;Java
+53992,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+53993,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+53994,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+53995,HTML/CSS;Java;JavaScript;Python
+53996,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Scala;SQL;TypeScript
+53997,HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+53998,C++;Java;Kotlin
+53999,Bash/Shell/PowerShell;SQL;VBA
+54000,JavaScript;PHP;Python;SQL
+54001,HTML/CSS;Java;Python
+54002,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+54003,Java;JavaScript
+54004,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+54005,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54006,Python;R;SQL
+54007,HTML/CSS;Java;JavaScript;SQL
+54008,C++;HTML/CSS;Java;JavaScript;WebAssembly
+54009,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+54010,HTML/CSS;Java;JavaScript;PHP;Other(s):
+54011,C#;Go;HTML/CSS;JavaScript;Python;Ruby
+54012,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript;VBA
+54013,C;Python
+54014,Bash/Shell/PowerShell;C#;JavaScript;SQL
+54015,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+54016,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+54017,HTML/CSS;JavaScript;Python
+54018,Java;JavaScript;SQL
+54019,Bash/Shell/PowerShell;Objective-C;Swift
+54020,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+54021,Java;JavaScript;Ruby
+54022,C;C++
+54023,Assembly;Bash/Shell/PowerShell;C;C++;C#
+54024,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+54025,Go;HTML/CSS;JavaScript;Ruby;Rust;SQL;TypeScript
+54026,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+54027,Bash/Shell/PowerShell;C;C++;Clojure;F#;Go;JavaScript;Python;Ruby;SQL
+54028,C#;Java;SQL
+54029,C;HTML/CSS;Java;SQL;TypeScript
+54030,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+54031,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL;TypeScript
+54032,HTML/CSS;JavaScript;Ruby;SQL
+54033,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+54034,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+54035,Bash/Shell/PowerShell;Java;SQL
+54036,Java;JavaScript
+54037,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54038,Bash/Shell/PowerShell;C#;HTML/CSS
+54039,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+54040,C#;HTML/CSS
+54041,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+54042,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+54043,Java
+54044,Python
+54045,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+54046,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+54047,C#;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+54048,Assembly;Bash/Shell/PowerShell;C;C#;Java;Kotlin;Python;Rust
+54049,JavaScript;Objective-C;TypeScript
+54050,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+54051,Python
+54052,C#
+54053,C#;Java;Kotlin
+54054,HTML/CSS;Java;JavaScript
+54055,C#;HTML/CSS;JavaScript;SQL
+54056,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+54057,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;Other(s):
+54058,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+54059,Assembly;C;C++;Java
+54060,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+54061,Java
+54062,C;C#;HTML/CSS;SQL
+54063,Java;Kotlin
+54064,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;R;SQL
+54065,HTML/CSS;JavaScript;Python;TypeScript
+54066,Bash/Shell/PowerShell;C#;Java;SQL;Swift
+54067,Bash/Shell/PowerShell;Python
+54068,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+54069,Bash/Shell/PowerShell;C#;Python
+54070,Bash/Shell/PowerShell;C++;Java
+54071,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+54072,Java;Ruby;SQL
+54073,Assembly;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+54074,C#;HTML/CSS;Java;PHP;SQL
+54075,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+54076,Java
+54077,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+54078,HTML/CSS;Java;JavaScript;PHP;SQL
+54079,C#;HTML/CSS;JavaScript;SQL;VBA
+54080,Bash/Shell/PowerShell;C#;SQL
+54081,HTML/CSS;JavaScript;PHP;Python
+54082,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+54083,C;Other(s):
+54084,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+54085,Assembly;C;C++;Objective-C;WebAssembly;Other(s):
+54086,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54087,HTML/CSS;Java;JavaScript;Python;SQL
+54088,JavaScript;Python;R
+54089,HTML/CSS;JavaScript;VBA
+54090,Swift
+54091,Assembly;Bash/Shell/PowerShell;C;C++;Python
+54092,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Python;SQL
+54093,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+54094,Bash/Shell/PowerShell;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+54095,C;C++;C#;HTML/CSS;JavaScript;Objective-C;Swift
+54096,C#;Java;JavaScript;Python
+54097,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+54098,PHP;SQL
+54099,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+54100,HTML/CSS;JavaScript;Python;TypeScript
+54101,C#;JavaScript;SQL
+54102,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust
+54103,HTML/CSS
+54104,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+54105,HTML/CSS;JavaScript
+54106,Bash/Shell/PowerShell;C;Java;PHP;Python;Ruby;SQL
+54107,HTML/CSS;Java;Kotlin
+54108,C#;HTML/CSS;JavaScript;PHP;SQL
+54109,HTML/CSS;JavaScript;Ruby
+54110,Assembly;Bash/Shell/PowerShell;C;C++;C#;Other(s):
+54111,C#
+54112,Bash/Shell/PowerShell;HTML/CSS;Python
+54113,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP
+54114,C#;HTML/CSS;Java;Kotlin;SQL
+54115,C#;HTML/CSS;Java;JavaScript;PHP
+54116,HTML/CSS;JavaScript;Python;SQL
+54117,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;Scala;SQL;VBA
+54118,C;C++
+54119,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala;SQL
+54120,Java;SQL
+54121,HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+54122,PHP
+54123,Bash/Shell/PowerShell;C;C++;Go;Python;SQL;Other(s):
+54124,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL;VBA
+54125,HTML/CSS;JavaScript;PHP;TypeScript
+54126,C#;Java
+54127,C;Java;Python
+54128,Bash/Shell/PowerShell;JavaScript;Ruby
+54129,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+54130,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL;Swift
+54131,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+54132,HTML/CSS;JavaScript;PHP;SQL
+54133,C;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+54134,HTML/CSS;Java;JavaScript;Python;SQL
+54135,JavaScript;Python;R;VBA
+54136,Clojure;Go;Rust;TypeScript
+54137,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift;TypeScript
+54138,C#;SQL
+54139,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+54140,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+54141,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+54142,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+54143,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+54144,Objective-C
+54145,JavaScript;PHP;TypeScript
+54146,Java;PHP;SQL
+54147,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54148,C;C++;Java;Python
+54149,HTML/CSS;JavaScript;Python;SQL
+54150,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+54151,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+54152,HTML/CSS;JavaScript;TypeScript
+54153,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+54154,C#;HTML/CSS;JavaScript;SQL;VBA
+54155,HTML/CSS;JavaScript;PHP;SQL
+54156,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+54157,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+54158,C#;HTML/CSS;SQL
+54159,HTML/CSS;JavaScript;Ruby;SQL
+54160,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+54161,Other(s):
+54162,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54163,Python;Scala
+54164,Assembly;C;C#;Python
+54165,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+54166,Bash/Shell/PowerShell;C++;JavaScript;Python;R;Scala;SQL
+54167,R;SQL
+54168,Assembly;C#;HTML/CSS;Java;JavaScript;Python
+54169,HTML/CSS;JavaScript;PHP
+54170,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+54171,Assembly;C;C++;HTML/CSS;Python
+54172,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+54173,Bash/Shell/PowerShell;Ruby;Scala;Other(s):
+54174,HTML/CSS;JavaScript;PHP;SQL
+54175,Bash/Shell/PowerShell;C#;Python;SQL
+54176,C#;HTML/CSS;JavaScript;R;SQL
+54177,C#;SQL
+54178,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+54179,C;HTML/CSS;JavaScript;Objective-C;Ruby;VBA
+54180,Python;Swift
+54181,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+54182,Bash/Shell/PowerShell;C;C++;Go;Java;Python
+54183,Bash/Shell/PowerShell;Java;Python
+54184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+54185,C;C++;Java
+54186,HTML/CSS;Java;JavaScript;Kotlin;Scala
+54187,HTML/CSS;JavaScript;PHP;Python
+54188,C#;HTML/CSS;JavaScript;Ruby;VBA
+54189,HTML/CSS;SQL;Other(s):
+54190,SQL;Other(s):
+54191,Bash/Shell/PowerShell;C#;Java;JavaScript;Ruby;SQL
+54192,C;HTML/CSS;Java;Kotlin;Python;Other(s):
+54193,Assembly;Bash/Shell/PowerShell;C++;C#;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;R;Rust;SQL;TypeScript;WebAssembly
+54194,Bash/Shell/PowerShell;JavaScript;Python
+54195,JavaScript;Python
+54196,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+54197,C++;C#;HTML/CSS;JavaScript;SQL
+54198,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+54199,HTML/CSS;Java;Python
+54200,HTML/CSS;JavaScript
+54201,C;C++;C#;Python
+54202,Bash/Shell/PowerShell;C;C++;Java;JavaScript
+54203,Other(s):
+54204,HTML/CSS;JavaScript;PHP;SQL
+54205,C#;F#;HTML/CSS;Java;JavaScript;PHP;Python
+54206,Bash/Shell/PowerShell;C;C++;Python;SQL
+54207,Bash/Shell/PowerShell;JavaScript;Other(s):
+54208,C;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+54209,C++;Python
+54210,HTML/CSS;JavaScript;Swift
+54211,HTML/CSS;Java;JavaScript;Python;SQL
+54212,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript
+54213,C++;C#;HTML/CSS;JavaScript
+54214,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Other(s):
+54215,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL
+54216,HTML/CSS;JavaScript;TypeScript
+54217,HTML/CSS;Java;JavaScript
+54218,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+54219,Bash/Shell/PowerShell;JavaScript;PHP
+54220,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Swift;VBA
+54221,HTML/CSS;JavaScript;PHP
+54222,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Ruby;SQL
+54223,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54224,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54225,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+54226,Assembly;C;C++;C#;Elixir;F#;Go;JavaScript;Python;Ruby;Rust;VBA;Other(s):
+54227,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;TypeScript
+54228,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+54229,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+54230,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+54231,Bash/Shell/PowerShell;JavaScript;Python;SQL
+54232,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54233,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+54234,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby
+54235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+54236,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+54237,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+54238,C#;HTML/CSS;Java;JavaScript;Python;SQL
+54239,HTML/CSS;JavaScript;PHP;Ruby
+54240,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54241,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+54242,Elixir;Java;JavaScript;Python;Other(s):
+54243,C++;HTML/CSS;JavaScript
+54244,C;C++;C#;Objective-C;Python
+54245,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA;Other(s):
+54246,Assembly;Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Python
+54247,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+54248,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+54249,Java;JavaScript;Ruby
+54250,JavaScript;PHP
+54251,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+54252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+54253,Bash/Shell/PowerShell;Go;JavaScript;TypeScript;Other(s):
+54254,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+54255,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL;VBA
+54256,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;SQL
+54257,C#;Rust;SQL;WebAssembly;Other(s):
+54258,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54260,C#;HTML/CSS;JavaScript;SQL
+54261,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54262,HTML/CSS;JavaScript;PHP;Python;SQL
+54263,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+54264,Java;SQL
+54265,C;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript;Other(s):
+54266,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R
+54267,Java;JavaScript;SQL
+54268,Swift
+54269,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python;Other(s):
+54270,HTML/CSS;Java;JavaScript;SQL
+54271,Bash/Shell/PowerShell;C#;JavaScript
+54272,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+54273,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54274,R;SQL
+54275,Bash/Shell/PowerShell;Java;JavaScript;Swift
+54276,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54278,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+54279,HTML/CSS;Java;JavaScript;SQL
+54280,Java
+54281,C;C++;Java;JavaScript;SQL
+54282,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+54283,HTML/CSS;JavaScript;Ruby
+54284,C#;HTML/CSS;JavaScript;PHP
+54285,VBA
+54286,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+54287,Java;Python
+54288,Java
+54289,C;C#;Go;Python;TypeScript
+54290,Bash/Shell/PowerShell;Python
+54291,C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54292,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+54293,Bash/Shell/PowerShell;Dart;Java;JavaScript;Kotlin;PHP;Python;Ruby;Swift;TypeScript
+54294,C#
+54295,C#;JavaScript;SQL;TypeScript
+54296,Bash/Shell/PowerShell;Java;JavaScript;Python
+54297,C;C++;Java
+54298,C++
+54299,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+54300,HTML/CSS;Java;TypeScript
+54301,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54302,JavaScript;Python
+54303,C#;SQL;Other(s):
+54304,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+54305,HTML/CSS;JavaScript;PHP;Python;TypeScript
+54306,C++;Go;Python;SQL
+54307,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;Rust
+54308,HTML/CSS;JavaScript
+54309,C;C#;Java
+54310,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+54311,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+54312,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL
+54313,C;C++;Python
+54314,HTML/CSS;JavaScript;SQL
+54315,C++;HTML/CSS;JavaScript
+54316,Java;JavaScript;Kotlin
+54317,Elixir;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+54318,Assembly;C;C#;Python
+54319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+54320,C#;HTML/CSS;JavaScript;TypeScript
+54321,Bash/Shell/PowerShell;Python;R;Other(s):
+54322,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+54323,HTML/CSS;JavaScript
+54325,C++;Python
+54326,Bash/Shell/PowerShell;C;C++;Go;Java;Python;R
+54327,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+54328,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+54329,C#;HTML/CSS;TypeScript
+54330,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript
+54331,JavaScript;Python
+54332,C++;Python
+54333,C++;Clojure;F#;Go;Kotlin;Python
+54334,Java;Scala
+54335,HTML/CSS;Java;JavaScript;Python
+54336,C;Go;Java;Python;SQL
+54337,HTML/CSS;JavaScript;Python
+54338,Assembly;Java;Python;SQL
+54339,Bash/Shell/PowerShell;C;C++;HTML/CSS;R;SQL
+54340,Java;Kotlin;Swift
+54341,HTML/CSS;JavaScript
+54342,Objective-C;Swift
+54343,C#;HTML/CSS;JavaScript;TypeScript
+54344,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+54345,HTML/CSS;JavaScript
+54346,C;C++;JavaScript;Python
+54347,HTML/CSS;JavaScript;PHP
+54348,C;C++;C#;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL
+54349,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+54350,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;Ruby;SQL;Other(s):
+54351,HTML/CSS;Java;JavaScript;TypeScript
+54352,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;R;Rust;Scala;Other(s):
+54353,C;C#;JavaScript;Python;Rust;SQL
+54354,Assembly;Bash/Shell/PowerShell;C;C++;C#;Objective-C
+54355,Java;JavaScript;SQL
+54356,Bash/Shell/PowerShell;Java;Objective-C;Python
+54357,Java
+54358,Assembly;C++;Go
+54359,Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+54360,C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL
+54361,HTML/CSS;JavaScript;PHP
+54362,JavaScript;PHP
+54363,HTML/CSS;JavaScript;PHP;Python
+54364,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+54365,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54366,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+54367,C++
+54368,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+54369,HTML/CSS;JavaScript
+54370,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+54371,Java
+54372,Java;JavaScript
+54373,Java
+54374,Python;Scala;SQL
+54375,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+54376,C#;HTML/CSS;JavaScript;Python;SQL
+54377,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+54378,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;WebAssembly
+54379,C;Java;Python;SQL
+54380,Java;JavaScript
+54381,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+54382,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+54383,C#;Clojure;Go;JavaScript;Python;SQL;Swift;TypeScript
+54384,JavaScript;SQL
+54385,HTML/CSS;JavaScript;PHP;SQL
+54386,HTML/CSS;JavaScript;Other(s):
+54387,HTML/CSS;Python
+54388,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+54389,C;C++;Python
+54390,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;SQL
+54392,C
+54393,Go;Java;JavaScript;Python;SQL
+54394,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+54395,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+54396,HTML/CSS;JavaScript;R;Ruby
+54397,C++;C#
+54398,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54399,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54400,Go;HTML/CSS;JavaScript;R;SQL
+54401,HTML/CSS;JavaScript
+54402,C#;Python;SQL;VBA
+54403,Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL
+54404,Assembly;C;C++;Java
+54405,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+54406,Java;SQL
+54407,JavaScript;TypeScript
+54408,C#;HTML/CSS;JavaScript
+54409,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+54410,Bash/Shell/PowerShell;Python;Ruby
+54411,Clojure;Go;Python;R;Swift
+54412,Bash/Shell/PowerShell;Java;Kotlin;Scala;SQL
+54413,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+54414,HTML/CSS;JavaScript
+54415,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+54416,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54417,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+54418,HTML/CSS;Java;JavaScript;Python
+54419,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+54420,Bash/Shell/PowerShell;C;C++;Python
+54421,Objective-C;Swift
+54422,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+54423,C#;HTML/CSS;Java;JavaScript;SQL
+54424,Go;Java
+54425,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+54426,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54427,Kotlin;Objective-C;Swift;TypeScript
+54428,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+54429,C;C++;Rust;TypeScript
+54430,C#;HTML/CSS;SQL;TypeScript
+54431,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54432,C;Python;R;SQL
+54433,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54434,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+54435,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54436,Assembly;Bash/Shell/PowerShell;C;C++;C#
+54437,Bash/Shell/PowerShell;Clojure;Python;Ruby
+54438,Assembly;C;C#;Python
+54439,C++;Python;SQL
+54440,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+54441,C;C++;HTML/CSS;Java;SQL
+54442,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+54443,HTML/CSS;JavaScript;Python;TypeScript
+54444,HTML/CSS;JavaScript;Other(s):
+54445,C++;Java;Rust
+54446,C#;HTML/CSS;JavaScript;SQL
+54447,Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+54448,C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript;Other(s):
+54449,C#;HTML/CSS;JavaScript;Ruby;TypeScript
+54450,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+54451,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54452,C++;Java;JavaScript;TypeScript
+54453,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+54454,C#;Python;SQL
+54455,C#;HTML/CSS;JavaScript
+54456,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+54457,C;C++;Java;Python;SQL
+54458,C#;Go;Java
+54459,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+54460,Bash/Shell/PowerShell;Python;Scala;SQL
+54461,C++;Python
+54462,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+54463,Swift
+54464,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+54465,C++;C#;Java;JavaScript;PHP;SQL
+54466,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+54467,Bash/Shell/PowerShell;Java;JavaScript;PHP
+54468,Go;HTML/CSS;JavaScript;Python;TypeScript
+54469,Java
+54470,HTML/CSS;PHP;Ruby;Swift
+54471,C;C++;Python
+54472,Assembly;C;C++
+54473,C++;HTML/CSS;Java;JavaScript;Scala
+54474,Java;TypeScript
+54475,C#;HTML/CSS;JavaScript;Python;SQL
+54476,Java;Scala
+54477,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL;TypeScript;VBA
+54478,C++;Python
+54479,C;HTML/CSS;JavaScript;Other(s):
+54480,Bash/Shell/PowerShell;Go;HTML/CSS;Python;Ruby
+54481,HTML/CSS;Java;JavaScript;Objective-C;Swift
+54482,HTML/CSS;JavaScript
+54483,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+54484,C;C++;Go;HTML/CSS;JavaScript;Python;SQL
+54485,Bash/Shell/PowerShell;Python
+54486,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+54487,HTML/CSS;JavaScript;Python;TypeScript
+54488,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+54489,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;VBA
+54490,C;C++;HTML/CSS;Java
+54491,HTML/CSS;Java;JavaScript;PHP
+54492,Python
+54493,HTML/CSS;JavaScript;PHP;SQL
+54494,JavaScript;PHP;SQL;TypeScript
+54495,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54496,C#;HTML/CSS;Java;Python;Other(s):
+54497,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54498,C#;HTML/CSS;JavaScript;PHP;SQL
+54499,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+54500,Assembly;C#;HTML/CSS;JavaScript;PHP;SQL
+54501,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;JavaScript;Python;R;SQL
+54502,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+54503,Java;JavaScript
+54504,C++;Python
+54505,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+54506,C++;Python
+54507,Bash/Shell/PowerShell;Java;Python
+54508,C#;HTML/CSS;JavaScript;PHP;SQL
+54509,Go;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+54510,R
+54511,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java
+54512,SQL
+54513,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54514,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+54515,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+54516,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;TypeScript;VBA
+54518,Java;JavaScript;Python
+54519,Bash/Shell/PowerShell;C;C++;Dart;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+54520,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+54521,C++;Go;JavaScript;Python
+54522,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby
+54523,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+54524,JavaScript
+54525,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+54526,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+54527,Assembly;C++;HTML/CSS;Java;PHP;SQL
+54528,HTML/CSS;Java;SQL
+54529,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54530,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;VBA
+54531,Assembly;Bash/Shell/PowerShell;C;C++;C#
+54532,C;C++;C#;Go;HTML/CSS;JavaScript;PHP;TypeScript
+54533,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+54534,Java;JavaScript;Kotlin
+54535,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+54536,JavaScript
+54537,Bash/Shell/PowerShell;Python;R;SQL
+54538,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54539,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54540,C#;HTML/CSS;JavaScript;SQL;Other(s):
+54541,Java;JavaScript;SQL
+54542,C++;Java;SQL
+54543,C;HTML/CSS;Java;JavaScript;Python;SQL
+54544,Java;Python;Ruby
+54545,Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Scala;SQL
+54546,Java;JavaScript;Python;Scala
+54547,C++;HTML/CSS;JavaScript;R;TypeScript;WebAssembly;Other(s):
+54548,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54549,C#;HTML/CSS;JavaScript;SQL
+54550,C#;F#;HTML/CSS;JavaScript
+54552,C#;SQL
+54553,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python
+54554,C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;VBA
+54555,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+54556,Assembly;Bash/Shell/PowerShell;C;C++
+54557,Python;Other(s):
+54558,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+54559,JavaScript
+54560,Bash/Shell/PowerShell;C;C++;Python
+54561,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+54562,Java;JavaScript;TypeScript
+54563,Bash/Shell/PowerShell;C;Go;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+54564,C++;HTML/CSS;JavaScript;Python;SQL
+54565,C;C++;Python;SQL
+54566,C;HTML/CSS;JavaScript;PHP;SQL;Swift
+54567,Java;Kotlin
+54568,C;C++;HTML/CSS;Java;JavaScript;Python;Swift
+54569,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+54570,Clojure;Go;HTML/CSS;JavaScript;Python
+54571,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+54572,HTML/CSS;Java;JavaScript;PHP;TypeScript
+54573,Java;TypeScript
+54574,C#;Dart;Java
+54575,C;C#;HTML/CSS;Java
+54576,Java;Scala;SQL
+54577,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Other(s):
+54578,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+54579,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+54580,HTML/CSS;JavaScript;Ruby;TypeScript
+54581,Python;Other(s):
+54582,Bash/Shell/PowerShell;Python;Other(s):
+54583,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+54584,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+54585,HTML/CSS;JavaScript;PHP
+54586,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+54587,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+54588,Bash/Shell/PowerShell;C;C++;C#;Java
+54589,HTML/CSS;Java;JavaScript;SQL
+54590,Swift
+54591,Assembly;Bash/Shell/PowerShell;C;Objective-C;Python;R
+54592,HTML/CSS;JavaScript;SQL
+54593,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+54594,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+54595,C;Java;Python
+54596,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+54597,Java;JavaScript;Kotlin
+54598,JavaScript;Other(s):
+54599,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript;Other(s):
+54600,Bash/Shell/PowerShell;C;C++;Python;R
+54601,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+54603,C#;HTML/CSS;JavaScript;Ruby;SQL
+54604,Java;JavaScript;R;Scala;SQL
+54605,HTML/CSS;Java;JavaScript;SQL
+54606,Scala
+54607,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+54608,Java
+54609,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+54610,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+54611,C#;HTML/CSS;JavaScript;SQL
+54612,Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+54613,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+54614,C;C#;HTML/CSS;JavaScript;Python
+54615,C#;Swift;VBA;Other(s):
+54616,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+54617,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+54618,HTML/CSS;JavaScript;Rust;TypeScript
+54619,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+54620,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+54621,C++
+54622,C#;HTML/CSS;JavaScript;SQL
+54623,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54624,HTML/CSS;JavaScript;Ruby
+54625,Java;JavaScript;Kotlin;Python
+54626,Objective-C
+54627,Bash/Shell/PowerShell;Java;Python
+54628,C#;JavaScript;SQL
+54629,C++;Other(s):
+54630,Bash/Shell/PowerShell;Python;R;SQL
+54631,HTML/CSS;JavaScript;PHP;SQL
+54632,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+54633,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+54634,HTML/CSS;Java;Python
+54635,C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;VBA
+54636,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+54637,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+54638,HTML/CSS;JavaScript;SQL
+54640,C#;HTML/CSS;Java;JavaScript;SQL
+54641,HTML/CSS;Java;JavaScript;Python
+54642,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+54643,Bash/Shell/PowerShell;Java;Kotlin
+54644,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+54645,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python
+54646,HTML/CSS;JavaScript;PHP;SQL
+54647,Java
+54648,HTML/CSS;JavaScript;Swift;TypeScript;VBA
+54649,C#;HTML/CSS;JavaScript;Kotlin;PHP;TypeScript
+54650,Bash/Shell/PowerShell;C++;Python
+54651,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+54652,HTML/CSS;JavaScript;PHP;SQL
+54653,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+54654,Bash/Shell/PowerShell;C;C++
+54655,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;SQL;Other(s):
+54656,C;C++;Clojure;Java;Python;Rust;Scala;SQL
+54657,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+54658,C#;SQL
+54659,C++;Python
+54660,SQL
+54661,HTML/CSS;Java;JavaScript
+54662,C;C++;Rust
+54663,HTML/CSS;JavaScript;PHP;SQL;Swift
+54664,HTML/CSS;JavaScript;Other(s):
+54665,Bash/Shell/PowerShell;C;Java
+54666,Dart;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+54667,C#;HTML/CSS;JavaScript;SQL;Other(s):
+54668,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54669,C#;HTML/CSS;JavaScript;Python;TypeScript
+54670,C#;HTML/CSS;JavaScript;SQL
+54671,C#;HTML/CSS;JavaScript;SQL
+54672,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+54673,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54674,HTML/CSS;Java;JavaScript;R
+54675,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+54676,C;HTML/CSS;Java;JavaScript
+54677,Kotlin
+54678,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+54679,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+54680,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Rust;SQL
+54681,Java;Kotlin;Python
+54682,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+54683,C#;Java;JavaScript;Objective-C;Python;Swift
+54684,C;C++;C#;Clojure;Java;Python;Scala
+54685,C#;Clojure;HTML/CSS;JavaScript;SQL;TypeScript
+54686,C#;Python;Scala
+54687,C;C#;Python
+54688,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54689,Objective-C;Swift
+54690,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+54691,C#;HTML/CSS;Java;JavaScript;Python;SQL
+54692,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+54693,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+54694,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54695,Assembly;Other(s):
+54696,C++;SQL
+54697,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+54698,HTML/CSS;Java;JavaScript;Ruby
+54699,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54700,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+54701,C#;HTML/CSS;JavaScript;SQL
+54702,Java;SQL;Other(s):
+54703,Assembly;Bash/Shell/PowerShell;Java;JavaScript;Python
+54704,Java;JavaScript;Kotlin;Python
+54705,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54706,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+54707,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54708,HTML/CSS;JavaScript;TypeScript
+54709,HTML/CSS;JavaScript;Python
+54710,Java;Kotlin
+54711,C;Other(s):
+54712,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+54713,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+54714,HTML/CSS;JavaScript;Python
+54715,Bash/Shell/PowerShell;C++;C#;HTML/CSS
+54716,Bash/Shell/PowerShell;C++;C#;Python;R;Rust
+54717,Bash/Shell/PowerShell;C++;Clojure;Go;HTML/CSS;Java;JavaScript;WebAssembly
+54718,Clojure;HTML/CSS;JavaScript;Python
+54719,Java;JavaScript;Kotlin;Python
+54720,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+54721,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+54722,Bash/Shell/PowerShell;C#;SQL
+54723,Java;JavaScript;Kotlin
+54724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Other(s):
+54725,C++;C#
+54726,Assembly;Bash/Shell/PowerShell;Go;JavaScript;WebAssembly
+54727,HTML/CSS;JavaScript;Ruby;SQL
+54728,JavaScript;TypeScript
+54729,C#;Dart;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift
+54730,HTML/CSS;JavaScript;Python;SQL
+54731,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+54732,Java;Python
+54733,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+54734,R;SQL;Swift
+54735,HTML/CSS;JavaScript;Python;SQL
+54736,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift;VBA
+54737,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+54738,C++;Java;JavaScript;Kotlin;Python;TypeScript
+54739,Python
+54740,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA
+54741,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;SQL
+54742,Go;Java;JavaScript;SQL;TypeScript
+54743,C;C++;C#;Python;SQL
+54744,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+54745,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54746,Java;Python;SQL
+54747,C#;JavaScript;Other(s):
+54748,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+54749,HTML/CSS;Python;R;SQL
+54750,Python
+54751,HTML/CSS;JavaScript;Ruby
+54752,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+54753,Scala;Other(s):
+54754,HTML/CSS;Java;JavaScript;Python;TypeScript
+54755,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift
+54756,HTML/CSS;JavaScript;Python
+54757,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54758,Java;JavaScript;PHP;SQL
+54759,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+54760,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;Python;SQL
+54761,HTML/CSS;Python
+54762,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+54763,Assembly;Java;JavaScript;Kotlin;PHP
+54764,HTML/CSS;Java;JavaScript;SQL;TypeScript
+54765,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+54766,C++;HTML/CSS;Java;Python;SQL
+54767,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+54768,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+54769,Bash/Shell/PowerShell;Java;JavaScript;SQL
+54770,C;C++;Java
+54771,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript;VBA
+54772,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;TypeScript
+54773,C++
+54774,HTML/CSS;JavaScript;PHP
+54775,Java;Scala
+54776,HTML/CSS;JavaScript;SQL;TypeScript
+54778,Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript;Python;SQL;Other(s):
+54779,Python;SQL
+54780,Bash/Shell/PowerShell;SQL
+54781,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+54782,HTML/CSS;JavaScript;PHP
+54783,C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;VBA
+54784,HTML/CSS;JavaScript;Python;TypeScript
+54785,HTML/CSS;JavaScript;PHP;Python
+54787,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+54788,HTML/CSS;Java;JavaScript;Python;SQL
+54789,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+54790,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54791,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP
+54792,HTML/CSS;JavaScript;TypeScript
+54793,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL
+54794,HTML/CSS;Java;Other(s):
+54795,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+54796,HTML/CSS;Java;JavaScript;SQL
+54797,C;C++;Java;JavaScript;SQL;TypeScript
+54798,C++;C#;Python
+54799,Java;Kotlin
+54800,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+54801,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby
+54802,HTML/CSS;Java;JavaScript;Python;Other(s):
+54803,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+54804,C#;HTML/CSS;JavaScript;PHP
+54805,Bash/Shell/PowerShell;C++;C#;Java;SQL
+54806,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript;WebAssembly
+54807,Bash/Shell/PowerShell;Python
+54808,Swift
+54809,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+54810,JavaScript;Ruby;SQL
+54811,Bash/Shell/PowerShell;Java;Kotlin;Scala;SQL
+54812,C++;HTML/CSS;JavaScript;TypeScript
+54813,C#;HTML/CSS;JavaScript;SQL
+54814,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+54815,Bash/Shell/PowerShell;Python
+54816,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;Swift
+54817,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;JavaScript;Kotlin
+54818,HTML/CSS;Java;JavaScript;Python;Ruby;Swift
+54819,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+54820,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+54821,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+54822,C;C#;Java;JavaScript;PHP;Python;SQL
+54823,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+54824,C#;Python
+54825,Assembly;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+54826,Java;JavaScript;SQL
+54827,C#;Other(s):
+54828,HTML/CSS;JavaScript;Python
+54829,JavaScript;Python;Ruby;Swift
+54830,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+54832,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL;Other(s):
+54833,C#;HTML/CSS;JavaScript;Python;Other(s):
+54834,C#;JavaScript;SQL
+54835,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;Swift;TypeScript
+54836,C#;Java;Kotlin;Ruby
+54837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+54838,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS
+54839,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;TypeScript
+54840,C#;HTML/CSS;JavaScript;SQL
+54841,JavaScript;Python
+54842,HTML/CSS;Java;SQL
+54843,HTML/CSS;Python
+54844,Java
+54845,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+54846,Bash/Shell/PowerShell;C;Java;Swift
+54847,C#;HTML/CSS;JavaScript;TypeScript
+54848,C#;Java;JavaScript;Kotlin
+54849,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54850,Bash/Shell/PowerShell;C;C++;Java;Python
+54851,C#;Java;JavaScript;Python;Ruby
+54852,Bash/Shell/PowerShell;C++;Python
+54853,Java;JavaScript;PHP
+54854,Java;JavaScript;PHP
+54855,Other(s):
+54856,Bash/Shell/PowerShell;JavaScript;PHP;Python
+54857,HTML/CSS;JavaScript
+54858,Elixir;HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript
+54859,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby
+54860,HTML/CSS;Java;JavaScript;Python
+54861,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+54862,Python
+54863,HTML/CSS;JavaScript;PHP;Python
+54864,Java;JavaScript
+54865,C#;Python;SQL
+54866,C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+54867,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+54868,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+54869,Python;Other(s):
+54870,C#;HTML/CSS;Java;Python;SQL
+54871,C;C++;HTML/CSS;Java;JavaScript;Python
+54872,JavaScript;Kotlin;Swift
+54873,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python
+54874,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+54875,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+54876,Bash/Shell/PowerShell;Java;SQL;Other(s):
+54877,C#;HTML/CSS;JavaScript;SQL
+54878,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;R;Ruby;Rust
+54879,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+54880,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Swift;TypeScript
+54881,C;C++;Python;SQL
+54882,JavaScript;Swift
+54883,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+54884,C#;Python
+54885,C++;Rust
+54886,HTML/CSS;JavaScript;Kotlin;PHP;TypeScript
+54887,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;Rust;TypeScript
+54888,Java;JavaScript;SQL
+54889,PHP;SQL;Other(s):
+54890,HTML/CSS;Java;PHP;SQL
+54891,Assembly;C;C++;Java
+54892,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+54893,HTML/CSS;JavaScript
+54894,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54895,C#;HTML/CSS;JavaScript;TypeScript
+54896,Java
+54897,HTML/CSS;JavaScript;Python;SQL
+54898,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+54899,Go;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+54900,C#;Python;SQL
+54901,Dart;HTML/CSS;Java;JavaScript;Python;SQL
+54902,C;Go;PHP
+54903,C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+54904,Ruby
+54905,C#;HTML/CSS;JavaScript
+54906,JavaScript;Objective-C;Swift
+54907,Bash/Shell/PowerShell;Java;R
+54909,C++;C#;HTML/CSS;Java;JavaScript
+54910,C;PHP;Python
+54911,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift
+54912,Bash/Shell/PowerShell;Java;Python
+54913,HTML/CSS;JavaScript;Python
+54914,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+54915,C++;C#;JavaScript;Python
+54916,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+54917,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+54918,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+54919,C#;HTML/CSS;JavaScript;SQL
+54920,C++;C#;F#;Python;Ruby;TypeScript
+54921,Bash/Shell/PowerShell;R;SQL
+54922,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+54923,HTML/CSS;Java;JavaScript;Python;SQL
+54924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+54925,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+54926,Bash/Shell/PowerShell;Java;Python;SQL
+54927,Python;R;VBA
+54928,Bash/Shell/PowerShell;Go;HTML/CSS;Ruby
+54929,Bash/Shell/PowerShell;C++;Java
+54930,C;C++;C#
+54931,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+54932,C#;JavaScript
+54933,HTML/CSS;PHP
+54934,HTML/CSS;JavaScript;PHP;Ruby;SQL
+54935,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+54936,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+54937,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+54938,C;C++;Python;R;SQL;VBA;Other(s):
+54939,C;Java;PHP;Python
+54940,HTML/CSS;Java;JavaScript;Python;Swift
+54941,C;C++;HTML/CSS;Java;JavaScript
+54943,HTML/CSS;PHP;SQL
+54944,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+54945,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+54946,Assembly;Clojure;Dart;Elixir;Go;PHP;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+54947,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+54948,PHP
+54949,C#;HTML/CSS;JavaScript;TypeScript
+54950,Java;JavaScript;SQL
+54951,C#;HTML/CSS;JavaScript;SQL;Other(s):
+54952,Bash/Shell/PowerShell;Python
+54953,HTML/CSS;PHP;SQL;Other(s):
+54954,HTML/CSS;JavaScript;PHP;Python;SQL
+54955,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+54956,Assembly;C;Python;Other(s):
+54957,Bash/Shell/PowerShell;Go;Java;JavaScript
+54958,C;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+54959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+54960,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+54961,HTML/CSS;JavaScript;PHP;SQL
+54962,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+54963,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+54964,Ruby
+54965,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+54966,C;C#;HTML/CSS;JavaScript;SQL;Other(s):
+54967,Bash/Shell/PowerShell;C;C++;R;SQL
+54968,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+54969,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+54970,JavaScript;Python;SQL;Other(s):
+54971,Assembly;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+54972,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+54973,C;C++;C#;Dart;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;VBA;Other(s):
+54974,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+54975,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+54976,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54977,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+54978,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;Rust;Swift;TypeScript
+54979,C;C++
+54980,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54981,HTML/CSS;JavaScript;SQL;Other(s):
+54982,C;C++;C#;Java;JavaScript;Objective-C;PHP
+54983,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+54984,HTML/CSS;JavaScript;PHP;SQL
+54985,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+54986,C++;C#;Python;SQL;Swift;TypeScript
+54987,Bash/Shell/PowerShell;C;C#
+54988,HTML/CSS;JavaScript;PHP;SQL
+54989,HTML/CSS;PHP;Python
+54990,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;Swift;VBA
+54991,C++;Java
+54992,C#;SQL
+54993,Java;JavaScript;SQL
+54994,C#;HTML/CSS;JavaScript;SQL
+54995,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+54996,Bash/Shell/PowerShell;C;JavaScript;Ruby
+54997,C++;C#
+54998,C#;HTML/CSS;JavaScript;SQL;TypeScript
+54999,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+55000,Swift
+55001,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55002,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+55004,Python;Other(s):
+55005,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+55006,C#;HTML/CSS;JavaScript
+55007,Java;JavaScript;Python;TypeScript
+55008,HTML/CSS;JavaScript
+55009,C;C++;Python
+55010,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+55011,Java;SQL;Other(s):
+55012,Java
+55013,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55014,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL
+55015,Python;Rust
+55016,HTML/CSS;JavaScript;PHP;SQL
+55017,Assembly;Bash/Shell/PowerShell;C;C++;Go;Objective-C;Python
+55018,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55019,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55020,C#;HTML/CSS;Java;JavaScript;Python;SQL
+55021,C;Java;Python
+55022,F#
+55023,Bash/Shell/PowerShell;Java;JavaScript
+55024,Bash/Shell/PowerShell;C#;SQL
+55025,C;C#;HTML/CSS;Java;PHP;SQL
+55026,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+55027,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+55028,Bash/Shell/PowerShell;Java
+55029,C#;JavaScript;SQL;TypeScript
+55030,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+55031,Java;Kotlin;Swift
+55032,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55034,Assembly;Bash/Shell/PowerShell;C;C++;Go;JavaScript;Objective-C;Python;Swift
+55035,C;C++;C#;HTML/CSS;Java;Kotlin;PHP
+55036,Bash/Shell/PowerShell;Java;Kotlin;Python;TypeScript;WebAssembly
+55037,JavaScript
+55038,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55039,HTML/CSS;JavaScript
+55040,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+55041,HTML/CSS;Java;JavaScript;Python;SQL
+55042,HTML/CSS;PHP;R;SQL
+55043,Assembly;C++;Java
+55044,C++;Python;SQL
+55045,Python;Swift;Other(s):
+55046,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;TypeScript
+55047,C++;C#;Python
+55048,C;C++;HTML/CSS;Java;JavaScript;SQL
+55049,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+55050,JavaScript
+55051,C#;JavaScript;SQL
+55052,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+55053,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55054,Python
+55055,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+55056,Java;JavaScript;Python;SQL
+55057,HTML/CSS;JavaScript;SQL;Other(s):
+55058,C#;HTML/CSS;JavaScript;SQL
+55059,HTML/CSS;JavaScript;PHP;Python
+55060,C#;SQL
+55061,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+55062,HTML/CSS;JavaScript;Python;SQL
+55063,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python;SQL
+55064,C;C++;JavaScript;Python;Rust
+55065,C;C#;Java;Python
+55066,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+55067,HTML/CSS;JavaScript;Python
+55068,C++;C#;Go;HTML/CSS;JavaScript;PHP
+55069,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL
+55070,C#;JavaScript;SQL
+55071,Bash/Shell/PowerShell;C++;C#;Java;SQL
+55072,C++;C#;Python;SQL;VBA;Other(s):
+55073,Bash/Shell/PowerShell;C++;Python;Rust
+55074,JavaScript
+55075,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55076,Java;Kotlin;PHP;SQL
+55078,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55079,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55080,Objective-C;Swift
+55081,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+55082,Java;SQL;Other(s):
+55083,C++;Python;Other(s):
+55084,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+55085,C++;Go;HTML/CSS;JavaScript;Python;SQL
+55086,C#;SQL
+55087,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+55088,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Swift
+55089,C;C++;HTML/CSS;JavaScript;Other(s):
+55090,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+55091,HTML/CSS;JavaScript;PHP;Python;SQL
+55092,Python
+55093,Java;Kotlin;PHP;Swift
+55094,C;C++;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55095,Java;Kotlin;Python;Swift
+55096,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+55097,HTML/CSS;Java;JavaScript;SQL;TypeScript
+55099,C#;SQL
+55100,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Ruby;Scala
+55101,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+55102,C++;C#;Java;Rust
+55103,HTML/CSS;JavaScript;Python
+55104,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;Ruby;Swift
+55105,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55106,C#
+55107,HTML/CSS;Java;JavaScript;SQL;Swift
+55108,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Scala;SQL;TypeScript
+55109,PHP;SQL
+55110,HTML/CSS;Java;JavaScript
+55111,Objective-C;Swift
+55112,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55113,C;C++;Python;Other(s):
+55114,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala
+55115,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+55116,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Scala
+55117,HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+55118,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55119,Other(s):
+55120,C#;HTML/CSS;JavaScript;TypeScript
+55121,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+55122,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55123,HTML/CSS;JavaScript;PHP;Python
+55124,Java;Python;Ruby;SQL
+55125,HTML/CSS;Java;JavaScript;Python;SQL
+55126,Go;Python;SQL
+55127,Java;Kotlin;SQL
+55128,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55129,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55130,Python;R;SQL
+55131,C++;HTML/CSS;Java
+55132,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+55133,C++;C#;Java;JavaScript;PHP;SQL
+55134,Java;Kotlin
+55135,Bash/Shell/PowerShell;Python
+55136,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+55137,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55138,HTML/CSS;JavaScript
+55139,JavaScript
+55140,C++;Java;Scala;SQL
+55141,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+55142,C#;Scala;SQL;TypeScript
+55143,C#;JavaScript;SQL
+55144,Assembly;C;C++;Python;Other(s):
+55145,HTML/CSS;JavaScript;PHP
+55146,C#;JavaScript;SQL
+55147,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+55148,HTML/CSS;JavaScript;PHP;SQL
+55149,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55151,Bash/Shell/PowerShell;C#;JavaScript
+55152,Go;JavaScript;Python
+55153,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python
+55154,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55155,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+55156,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+55157,Assembly;C++;C#;Java;SQL
+55158,C#;HTML/CSS;JavaScript;SQL
+55159,Bash/Shell/PowerShell;C++;Java
+55160,Python
+55161,Assembly;C;C++;HTML/CSS;Java;Python;Ruby
+55162,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+55163,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Other(s):
+55164,HTML/CSS;JavaScript;SQL
+55165,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+55166,PHP;Python
+55167,Bash/Shell/PowerShell;Java;JavaScript;Python
+55168,Bash/Shell/PowerShell;HTML/CSS;Java;Scala;SQL
+55169,HTML/CSS;JavaScript;TypeScript
+55170,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+55171,C#;HTML/CSS;JavaScript;SQL
+55172,C;C++;R;Other(s):
+55173,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;R
+55174,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55175,Bash/Shell/PowerShell;Python;R;VBA
+55176,Bash/Shell/PowerShell;Elixir;HTML/CSS;PHP;SQL
+55177,C++;Python;Rust
+55178,Assembly;C++;C#;Java;JavaScript;Python;SQL
+55179,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+55180,HTML/CSS;Java;JavaScript;SQL;TypeScript
+55181,C#;Java;Other(s):
+55182,Bash/Shell/PowerShell;Java;SQL
+55183,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55184,C++;HTML/CSS;JavaScript;PHP
+55185,HTML/CSS;Java;JavaScript;Python;R;Scala;TypeScript
+55186,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55187,C;Python
+55188,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;Ruby;Rust;Scala;SQL;TypeScript;WebAssembly
+55189,Dart;Java;Kotlin;Objective-C;SQL;Swift
+55191,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+55192,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+55193,C#;SQL
+55194,HTML/CSS;Java;TypeScript
+55195,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+55196,Bash/Shell/PowerShell;Go;Python;Ruby
+55197,Bash/Shell/PowerShell;Java;Kotlin;Python;R;Scala;SQL
+55198,Java
+55199,C#;Java;SQL
+55200,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+55201,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55202,Go;Ruby
+55203,C++;HTML/CSS;SQL;Other(s):
+55204,Dart;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55205,Bash/Shell/PowerShell;C++;JavaScript;Python;Scala;SQL
+55206,C#;JavaScript;SQL;TypeScript
+55207,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust;Scala;TypeScript
+55208,HTML/CSS;Python;R;SQL;VBA
+55209,C;C++;Python;R
+55210,Bash/Shell/PowerShell;Other(s):
+55211,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+55212,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+55213,JavaScript;Python
+55214,HTML/CSS;JavaScript;Ruby
+55215,C++;C#;Java;SQL;Other(s):
+55216,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+55217,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55218,C#;HTML/CSS;JavaScript;SQL
+55219,C#;Java;JavaScript;Objective-C;Swift
+55220,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+55221,HTML/CSS;Java;JavaScript;TypeScript
+55222,Bash/Shell/PowerShell;Go;HTML/CSS;Python;Ruby;SQL
+55223,HTML/CSS;JavaScript;Ruby;SQL
+55224,HTML/CSS;Java;JavaScript;SQL
+55225,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55226,Bash/Shell/PowerShell;Go;Java;JavaScript
+55227,C#;HTML/CSS;JavaScript
+55228,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+55229,HTML/CSS;Java;JavaScript
+55230,C#;HTML/CSS;JavaScript;SQL
+55231,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+55232,Dart;Kotlin;Swift
+55233,C;C++;Java;Python
+55234,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+55235,Go;Java;JavaScript
+55236,C#;SQL
+55237,Bash/Shell/PowerShell;C++;JavaScript;Python;Scala;SQL;TypeScript;Other(s):
+55238,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+55239,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55240,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+55241,Swift
+55242,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+55243,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+55244,Java;JavaScript;Python
+55245,Bash/Shell/PowerShell;SQL
+55246,Java;SQL
+55247,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+55248,HTML/CSS;Java;JavaScript;Kotlin;Python
+55249,C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55250,C;C++;HTML/CSS;Java
+55251,Java;Kotlin;PHP;Swift
+55252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+55253,Bash/Shell/PowerShell;Elixir;Go
+55254,Assembly;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL;TypeScript
+55255,HTML/CSS;JavaScript;PHP;Ruby;SQL
+55256,Bash/Shell/PowerShell;C++;Elixir;Erlang;HTML/CSS;JavaScript;Ruby
+55257,Java;SQL
+55258,C;C++;Python;Other(s):
+55259,HTML/CSS;JavaScript;Python;SQL
+55260,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+55261,C#;JavaScript
+55262,C#;HTML/CSS;JavaScript;SQL
+55263,HTML/CSS;JavaScript;Ruby
+55264,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+55265,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+55266,HTML/CSS;JavaScript;PHP;SQL
+55267,HTML/CSS;JavaScript;Python
+55268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+55269,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+55270,C;C++;Java;Kotlin;SQL
+55271,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+55272,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Swift
+55273,C++;HTML/CSS;JavaScript;Ruby
+55274,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55275,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55276,C#;HTML/CSS;Python;SQL;VBA
+55277,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+55278,C;C#;HTML/CSS;Java;Kotlin
+55279,C#;Clojure;Go;Java;JavaScript;SQL
+55280,Go;HTML/CSS;JavaScript;PHP
+55281,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+55282,Bash/Shell/PowerShell;C#;Python;TypeScript
+55283,Bash/Shell/PowerShell;Scala
+55284,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+55285,Bash/Shell/PowerShell;Java;Python;SQL
+55286,PHP;SQL
+55287,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+55288,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+55289,Java;Scala
+55290,HTML/CSS;Java;SQL
+55291,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+55292,C#;HTML/CSS;JavaScript
+55293,HTML/CSS;JavaScript;PHP;SQL
+55294,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+55295,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+55296,HTML/CSS;JavaScript;PHP
+55297,Java;JavaScript;Objective-C;Python;SQL;TypeScript
+55298,Java;Scala
+55299,HTML/CSS;Python;SQL;VBA
+55300,C#;HTML/CSS;JavaScript;SQL
+55301,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+55302,HTML/CSS;PHP
+55303,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;VBA
+55304,C;HTML/CSS;Java;JavaScript;Python;Swift
+55306,C;C++;C#;Erlang;Java;Objective-C;Python;Swift
+55307,C#;JavaScript
+55308,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+55309,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+55310,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+55311,C#;HTML/CSS;JavaScript;PHP;TypeScript
+55312,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+55313,C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+55314,HTML/CSS;JavaScript;Python;Swift
+55315,Bash/Shell/PowerShell;C++;Python;Other(s):
+55316,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+55317,SQL;VBA
+55318,Bash/Shell/PowerShell;C#;JavaScript
+55319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+55320,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+55321,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55322,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+55323,HTML/CSS;JavaScript;Rust
+55324,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55325,C#;HTML/CSS;JavaScript;SQL
+55326,HTML/CSS;JavaScript;PHP;TypeScript
+55327,HTML/CSS;JavaScript;TypeScript
+55328,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+55329,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+55330,C#;HTML/CSS;JavaScript;Python;R;SQL
+55331,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;VBA
+55332,Java
+55333,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL
+55334,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+55335,HTML/CSS;JavaScript
+55336,C#;JavaScript;Python;SQL;TypeScript
+55337,HTML/CSS;Java;JavaScript
+55338,Bash/Shell/PowerShell;Go;JavaScript;Swift;TypeScript
+55339,Dart;Java;Kotlin;Swift
+55340,C#;HTML/CSS;JavaScript;PHP;SQL
+55341,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+55342,HTML/CSS;JavaScript;TypeScript
+55343,Elixir;Erlang;Java;JavaScript
+55344,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+55345,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55346,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+55347,C;C++;C#;Java;JavaScript;Python;VBA
+55348,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Other(s):
+55349,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+55350,C#;JavaScript;TypeScript
+55351,C;HTML/CSS;Java;PHP;Python;SQL;VBA;Other(s):
+55352,Assembly;C;C++;Go;Rust
+55353,Bash/Shell/PowerShell;Java;Python;SQL
+55354,HTML/CSS;Java;JavaScript
+55355,Assembly;HTML/CSS;JavaScript;PHP;SQL
+55356,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+55357,Bash/Shell/PowerShell;C++;Python;R;Scala;Swift
+55358,Bash/Shell/PowerShell;C;C++;Python
+55359,Bash/Shell/PowerShell;Go;JavaScript;R
+55360,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;TypeScript
+55361,Go;HTML/CSS;Java;JavaScript
+55362,C#;SQL
+55363,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55364,C++;Java;Python
+55365,F#
+55366,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+55367,C#;HTML/CSS;JavaScript
+55368,JavaScript
+55369,C#;Java
+55370,HTML/CSS;JavaScript;Python
+55371,C;HTML/CSS;R;SQL
+55372,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+55373,HTML/CSS;Java;JavaScript;SQL
+55374,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+55375,Bash/Shell/PowerShell;C;C#;Dart;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;Rust;SQL;Swift;TypeScript
+55376,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;WebAssembly
+55377,HTML/CSS;JavaScript;TypeScript
+55378,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+55379,Go;HTML/CSS;Python
+55380,Bash/Shell/PowerShell;Python
+55381,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+55382,JavaScript;PHP;TypeScript
+55383,C#;HTML/CSS;JavaScript;Python;SQL
+55384,JavaScript
+55385,HTML/CSS;JavaScript;Python;SQL
+55386,C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+55387,C#
+55388,C#;HTML/CSS;Java;Scala;SQL;TypeScript
+55389,HTML/CSS;Java;JavaScript
+55390,Bash/Shell/PowerShell;C#;Elixir;Python;Rust;Other(s):
+55391,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55392,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;SQL
+55393,Java;JavaScript
+55394,Java
+55395,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+55396,C++;HTML/CSS;Java;JavaScript;Python;SQL
+55397,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+55398,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;Ruby
+55399,Python;R;SQL
+55400,C;Go;HTML/CSS;JavaScript;Ruby;SQL
+55401,HTML/CSS;JavaScript;Ruby
+55402,Bash/Shell/PowerShell;Clojure;JavaScript;Python;SQL
+55403,C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift;TypeScript
+55404,C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+55405,Java;SQL
+55406,C#;HTML/CSS;JavaScript;TypeScript
+55407,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+55408,C#
+55409,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+55410,Bash/Shell/PowerShell;JavaScript;PHP;Ruby;SQL
+55411,C++
+55412,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;Kotlin;Python
+55413,C#;JavaScript;TypeScript;VBA;Other(s):
+55414,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL;Other(s):
+55415,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+55416,C#;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+55417,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55418,Python
+55419,C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+55420,HTML/CSS;Java;JavaScript;SQL
+55421,HTML/CSS;JavaScript
+55422,Bash/Shell/PowerShell;C++;Elixir;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL
+55423,Go;R;SQL;Other(s):
+55424,C#;HTML/CSS;JavaScript;PHP
+55425,C#;HTML/CSS;JavaScript;SQL
+55426,C#;HTML/CSS;JavaScript
+55427,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+55428,C++
+55429,C#;HTML/CSS;JavaScript;TypeScript
+55430,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;SQL
+55431,Bash/Shell/PowerShell;C;Go;Java;Objective-C;Python;Rust
+55432,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL;Swift
+55433,Bash/Shell/PowerShell;Java;Python
+55434,Bash/Shell/PowerShell;C#;Python
+55435,C;Java
+55436,Java;JavaScript;Python;R
+55437,HTML/CSS;Java;JavaScript;PHP
+55438,HTML/CSS;JavaScript
+55439,C;C++;SQL
+55440,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+55441,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+55442,C#;Java;JavaScript;PHP;SQL
+55443,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+55444,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+55445,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55446,C++;HTML/CSS;JavaScript;Python
+55447,Bash/Shell/PowerShell;C++;Java;Python;SQL;Other(s):
+55448,HTML/CSS;JavaScript;Python;Ruby;SQL
+55449,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+55450,HTML/CSS;Java;Python
+55451,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55453,Bash/Shell/PowerShell;Kotlin;SQL;TypeScript
+55454,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55455,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+55456,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+55457,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+55458,HTML/CSS;JavaScript;PHP;SQL
+55459,Bash/Shell/PowerShell;C;C++;C#;Python
+55460,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+55461,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+55462,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55463,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55464,Kotlin;Swift
+55465,HTML/CSS;JavaScript;PHP
+55466,Bash/Shell/PowerShell;C++
+55467,Java;JavaScript;Objective-C;SQL;Swift
+55468,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;Swift;TypeScript
+55469,Bash/Shell/PowerShell;C;C++;Python;Rust;Other(s):
+55470,Bash/Shell/PowerShell;C;C#;JavaScript;Python;SQL;VBA
+55471,C;C++;HTML/CSS;Java;JavaScript;Swift
+55472,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55473,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+55474,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+55475,C#;HTML/CSS;Java;PHP;Python;SQL
+55477,Bash/Shell/PowerShell;Java;Python;Scala;SQL;Other(s):
+55478,JavaScript;PHP
+55479,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55480,Java;Python;Other(s):
+55481,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+55482,C;C#;Elixir;F#;VBA
+55483,C#;Python
+55484,C;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55485,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+55486,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+55487,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+55488,C++;Objective-C;Swift
+55489,C#;HTML/CSS;PHP;Python;Swift
+55490,HTML/CSS;Java;JavaScript;Python
+55491,JavaScript;TypeScript
+55492,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+55493,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+55494,Bash/Shell/PowerShell;Java;SQL
+55495,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+55496,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+55497,R
+55498,HTML/CSS;JavaScript;Swift
+55499,C++;Objective-C;Swift
+55500,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+55501,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+55502,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+55503,F#;HTML/CSS;JavaScript;Rust;TypeScript
+55504,HTML/CSS;Java;SQL
+55505,Java
+55507,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+55508,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+55509,C#;HTML/CSS;JavaScript;TypeScript
+55510,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55511,C#;HTML/CSS;JavaScript;SQL
+55512,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+55514,Assembly;HTML/CSS;Java
+55515,Bash/Shell/PowerShell;Python;R;SQL
+55516,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+55517,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+55518,C#;JavaScript;Ruby;TypeScript
+55519,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+55520,Objective-C;Swift
+55521,Objective-C;Swift
+55522,C++;Python;Other(s):
+55523,HTML/CSS;JavaScript
+55524,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;R;SQL
+55525,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Python
+55526,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+55527,C++;HTML/CSS
+55528,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55529,HTML/CSS;JavaScript;PHP;SQL;VBA
+55530,Bash/Shell/PowerShell;Java;SQL
+55531,HTML/CSS;JavaScript;Ruby
+55532,HTML/CSS;JavaScript;PHP;SQL
+55533,Bash/Shell/PowerShell;C#;Dart;F#;HTML/CSS;JavaScript;PHP;Python;R;TypeScript
+55534,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+55535,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;SQL
+55536,C#;JavaScript;SQL
+55537,Bash/Shell/PowerShell;C++;HTML/CSS;Python;Other(s):
+55538,HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+55539,C++;C#;Dart;HTML/CSS;Java;Kotlin;Python
+55540,C++;C#
+55541,C#;Java;SQL
+55542,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL
+55543,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55544,Java;PHP
+55545,HTML/CSS;JavaScript;TypeScript
+55546,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+55547,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+55548,C++;C#;Dart;Java;Kotlin;Python;SQL
+55549,C;Dart;Java;Python;Swift
+55550,C#;SQL;Swift;TypeScript
+55551,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+55552,Bash/Shell/PowerShell;C;Python
+55553,Java
+55554,HTML/CSS;JavaScript;Python;R;SQL
+55555,Java;JavaScript;Ruby;SQL
+55556,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+55557,C++;HTML/CSS;Java;JavaScript;SQL
+55558,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+55559,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+55560,C++;C#
+55561,HTML/CSS;JavaScript;TypeScript
+55562,C++;Java;Python;R
+55563,Bash/Shell/PowerShell;C++;C#;Go;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+55564,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+55565,C#;HTML/CSS;Java;PHP;SQL
+55566,Java;Kotlin
+55567,Bash/Shell/PowerShell;PHP;Python;Other(s):
+55568,HTML/CSS;Java;JavaScript;Rust;SQL
+55569,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+55570,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55571,C++;C#;JavaScript;SQL;VBA
+55572,HTML/CSS;JavaScript;PHP;SQL
+55573,Java;SQL;VBA
+55574,C#;HTML/CSS;SQL
+55575,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+55576,Bash/Shell/PowerShell;Go;Python
+55577,Bash/Shell/PowerShell;Java
+55578,Java;JavaScript;Python;SQL
+55579,Bash/Shell/PowerShell;HTML/CSS;PHP
+55580,HTML/CSS;JavaScript;PHP;SQL
+55581,HTML/CSS;JavaScript
+55582,C;HTML/CSS;Java;SQL
+55583,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+55584,HTML/CSS;JavaScript;Objective-C;PHP;Ruby;Swift
+55585,HTML/CSS;Java;JavaScript;PHP;SQL
+55586,JavaScript;PHP
+55587,C++;Java;Python
+55588,Bash/Shell/PowerShell;Swift
+55589,HTML/CSS;JavaScript
+55590,Java;Scala;SQL
+55591,Go;Python;SQL;Other(s):
+55592,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55593,Clojure;Ruby
+55594,C#;HTML/CSS;JavaScript;SQL
+55595,Java;JavaScript;PHP;SQL
+55596,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+55597,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+55598,HTML/CSS;Java;Kotlin;R
+55599,HTML/CSS;JavaScript
+55600,PHP
+55601,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;JavaScript;Python
+55602,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP
+55603,C#;HTML/CSS;Java;JavaScript
+55604,HTML/CSS;JavaScript;PHP;SQL
+55605,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+55606,Go;Java
+55607,C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+55608,JavaScript;Other(s):
+55609,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55610,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+55611,C#;Java;JavaScript;SQL
+55612,HTML/CSS;JavaScript;PHP
+55613,Java;JavaScript;Python;SQL
+55614,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Python
+55615,Python;SQL
+55616,C#;HTML/CSS;JavaScript;VBA;Other(s):
+55617,Assembly;Bash/Shell/PowerShell;C;C++
+55618,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Ruby;SQL
+55619,C++;C#;HTML/CSS;JavaScript;Python;Swift;TypeScript
+55620,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55621,Python;SQL
+55622,VBA;Other(s):
+55623,HTML/CSS;JavaScript;Python
+55624,C#
+55625,JavaScript
+55626,Assembly;C;C++;C#;HTML/CSS;JavaScript
+55627,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+55628,C;C++;C#;JavaScript
+55629,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+55630,HTML/CSS;Java;JavaScript;PHP;SQL
+55631,Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55632,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+55633,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55634,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+55635,C;C++;C#;Java
+55636,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55637,C++;C#;Java;Python;R
+55638,HTML/CSS;JavaScript;Ruby
+55639,C#
+55640,JavaScript;PHP;TypeScript
+55641,Java;SQL
+55642,Java;Scala;SQL
+55643,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55644,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55645,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+55646,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+55647,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+55648,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R;SQL
+55649,HTML/CSS;Java;JavaScript;PHP;Python
+55650,C#;HTML/CSS;Java;SQL
+55651,Assembly;Java;PHP;SQL
+55652,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+55653,Bash/Shell/PowerShell;C#;F#;JavaScript;PHP;Python;Rust;Scala;SQL
+55654,C#;HTML/CSS;Java;Python;SQL;VBA
+55655,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+55656,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;R;Rust;SQL;TypeScript
+55657,Bash/Shell/PowerShell;JavaScript;Kotlin
+55658,C++;Python
+55659,Java;JavaScript;PHP;SQL
+55660,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;Kotlin;Python;TypeScript
+55661,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+55662,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+55663,C#;HTML/CSS;JavaScript;SQL
+55664,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+55665,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55666,HTML/CSS;Python;SQL
+55667,HTML/CSS;Python
+55668,JavaScript;TypeScript
+55669,SQL;VBA
+55670,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Other(s):
+55671,HTML/CSS;Java;JavaScript;SQL
+55672,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+55673,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Rust;TypeScript
+55674,Bash/Shell/PowerShell;C#;Java
+55675,Bash/Shell/PowerShell;C#
+55676,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55677,Bash/Shell/PowerShell;Go;Java
+55678,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+55679,HTML/CSS;JavaScript;PHP
+55680,HTML/CSS;JavaScript;Ruby;SQL
+55681,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55682,HTML/CSS;JavaScript;Kotlin;Ruby;SQL;Swift
+55683,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL;Swift;VBA
+55685,Assembly;Bash/Shell/PowerShell;C#;Clojure;Go;JavaScript;Rust;SQL;TypeScript;Other(s):
+55686,HTML/CSS;JavaScript;Ruby
+55687,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+55688,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+55689,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+55690,C#;HTML/CSS;JavaScript;SQL
+55691,C#;Dart
+55692,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+55693,HTML/CSS;Java;JavaScript;SQL;TypeScript
+55694,Bash/Shell/PowerShell;C;C++;C#;Go;Java;Python;SQL
+55695,C++;C#;HTML/CSS;Java;JavaScript
+55696,Bash/Shell/PowerShell;C;JavaScript;Python
+55697,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+55698,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+55699,C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+55700,Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+55701,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+55702,C#
+55703,HTML/CSS;JavaScript;PHP;Python
+55704,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55705,Assembly;C++;C#;Java;SQL
+55706,Python
+55707,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+55708,HTML/CSS;Java;JavaScript;Other(s):
+55709,Bash/Shell/PowerShell;Python;Other(s):
+55710,Assembly;Bash/Shell/PowerShell;C++;Python;Other(s):
+55711,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55712,C#;SQL
+55713,C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Swift
+55714,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55715,C#;HTML/CSS;Java;JavaScript;Python;SQL
+55716,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+55717,Bash/Shell/PowerShell;C++;Java
+55718,HTML/CSS;JavaScript
+55719,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+55720,Bash/Shell/PowerShell;Python;SQL
+55721,Bash/Shell/PowerShell;JavaScript
+55722,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+55723,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python
+55724,HTML/CSS;JavaScript;TypeScript
+55725,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55726,Go;PHP;Python;SQL
+55727,Bash/Shell/PowerShell;Python;SQL
+55728,C#;JavaScript;SQL
+55729,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+55730,HTML/CSS;JavaScript;PHP;SQL
+55731,Assembly;C;C++;Java;PHP;Python;R;Other(s):
+55732,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+55733,C;HTML/CSS
+55734,C#;Dart;JavaScript;SQL;TypeScript
+55735,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+55736,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55737,C++;Python
+55738,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;SQL;TypeScript
+55739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+55740,HTML/CSS;SQL;VBA
+55741,Python;Other(s):
+55742,Bash/Shell/PowerShell;C++;Java;Python;Scala;TypeScript
+55743,Bash/Shell/PowerShell;Elixir;Python;R;Rust;TypeScript
+55744,Bash/Shell/PowerShell;C
+55745,C++;HTML/CSS;Java;JavaScript;Objective-C;Other(s):
+55746,HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+55747,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+55748,Bash/Shell/PowerShell;C#;Java;SQL;TypeScript
+55749,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+55750,Java
+55751,HTML/CSS;Java;JavaScript;SQL;TypeScript
+55752,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55753,Java;JavaScript;Kotlin
+55754,C#;HTML/CSS;Java;SQL;VBA;Other(s):
+55755,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+55756,Go;Python;Rust
+55757,Scala
+55758,HTML/CSS;JavaScript
+55759,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+55760,C#;Other(s):
+55761,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+55762,Bash/Shell/PowerShell;C;C++
+55763,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55764,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Ruby;Scala;TypeScript
+55765,HTML/CSS;JavaScript;Python;SQL
+55766,Bash/Shell/PowerShell;C++;C#;Python;TypeScript
+55767,JavaScript;PHP
+55768,C#;Java;Kotlin
+55769,Python
+55770,C#;HTML/CSS;JavaScript;SQL;Other(s):
+55771,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+55772,Bash/Shell/PowerShell;JavaScript;R;SQL
+55773,C++;Java;Python;Other(s):
+55774,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+55775,Bash/Shell/PowerShell;C#;JavaScript;Python;Other(s):
+55776,HTML/CSS;Java;SQL
+55777,Go;Python
+55778,Bash/Shell/PowerShell;C;Go;JavaScript;Python;R;Other(s):
+55779,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+55780,C#;SQL
+55781,C#;HTML/CSS;JavaScript;SQL
+55782,HTML/CSS;JavaScript;SQL;Other(s):
+55783,HTML/CSS;JavaScript;Python;SQL
+55784,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+55785,Bash/Shell/PowerShell;C++;Python;Rust
+55786,HTML/CSS
+55787,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+55788,Bash/Shell/PowerShell;Java;JavaScript
+55789,HTML/CSS;JavaScript;PHP;SQL
+55790,HTML/CSS;JavaScript
+55791,Assembly;Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+55792,Python;R;Ruby
+55793,C#;HTML/CSS;JavaScript;Objective-C;Swift
+55794,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55795,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+55796,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+55797,Bash/Shell/PowerShell;SQL
+55798,C#;Java;SQL;VBA
+55799,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+55800,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+55801,Assembly;C;VBA;Other(s):
+55802,C;C++;Elixir;Erlang;HTML/CSS;JavaScript;PHP;TypeScript
+55803,C#;SQL;Other(s):
+55804,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+55806,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+55807,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55808,C#;Python;SQL
+55809,Go;HTML/CSS;JavaScript;Python
+55810,C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+55811,HTML/CSS;JavaScript;PHP;Python;SQL
+55812,HTML/CSS;JavaScript;SQL
+55813,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55814,C
+55815,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+55816,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+55817,HTML/CSS;JavaScript;PHP;Other(s):
+55818,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55819,Python
+55821,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55822,HTML/CSS;JavaScript
+55823,Go;HTML/CSS;Java
+55824,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+55825,Go;HTML/CSS;Java;JavaScript;Objective-C;SQL
+55826,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+55827,SQL;VBA
+55828,HTML/CSS;Java;JavaScript;Python
+55829,C++
+55830,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55831,JavaScript
+55832,HTML/CSS;JavaScript;PHP;Python;SQL
+55833,C#;HTML/CSS;JavaScript;SQL;Other(s):
+55834,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+55835,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55836,HTML/CSS;Java;PHP;Python;SQL
+55837,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Swift
+55838,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+55839,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+55840,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+55841,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55842,C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+55843,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+55844,JavaScript;Python
+55845,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55846,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+55847,HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+55848,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55849,Java;PHP;SQL
+55850,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+55852,HTML/CSS;JavaScript
+55853,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+55854,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+55855,C#;Dart;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+55856,Assembly;Python
+55857,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;TypeScript
+55858,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+55859,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+55860,C#;Python
+55861,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+55862,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL;VBA
+55863,JavaScript;Python
+55864,C++;C#;HTML/CSS;Java
+55865,Python
+55866,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;R;SQL
+55867,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+55868,Assembly;Go;JavaScript;Scala;SQL;TypeScript
+55869,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly
+55870,C++;Java
+55871,C++;Java;Python
+55872,HTML/CSS;JavaScript
+55873,C++;Java
+55874,Bash/Shell/PowerShell;C#;Java;SQL
+55875,Java;Python;SQL
+55876,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55877,Java;JavaScript;Python;Scala;SQL
+55878,C#;HTML/CSS;JavaScript;Python;TypeScript
+55879,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+55880,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+55881,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+55882,HTML/CSS;JavaScript;PHP;Python;SQL
+55883,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+55884,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+55886,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python
+55887,R
+55888,HTML/CSS;JavaScript;Ruby
+55889,C;C++;C#;Java;Kotlin;TypeScript
+55890,Bash/Shell/PowerShell;C;Java;Python;SQL;VBA
+55891,Bash/Shell/PowerShell;Python;R
+55892,C++;Objective-C;Swift
+55893,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+55894,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Other(s):
+55895,JavaScript;Other(s):
+55896,Java
+55897,C#;Dart;JavaScript;TypeScript
+55898,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;R;Ruby;SQL;TypeScript
+55899,Assembly;C;C++;Python;Other(s):
+55900,Java;SQL
+55902,JavaScript;SQL;VBA
+55903,Java;JavaScript
+55904,Java;SQL
+55905,C#;HTML/CSS;PHP;SQL
+55906,JavaScript;PHP;SQL
+55907,JavaScript;PHP;SQL
+55908,C#;HTML/CSS;JavaScript;SQL;Other(s):
+55909,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+55910,C#;HTML/CSS;JavaScript;SQL;TypeScript
+55911,C;C++;HTML/CSS;PHP;SQL
+55912,Java;Python;SQL
+55913,Python;SQL
+55914,C;C#;HTML/CSS;JavaScript;Python
+55915,C;C++
+55916,C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+55917,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+55918,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+55919,HTML/CSS;Python
+55920,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55921,Java
+55922,Bash/Shell/PowerShell;C;C#;Clojure;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+55923,HTML/CSS;JavaScript;Python;Ruby;SQL
+55924,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+55925,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55926,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;TypeScript;VBA;Other(s):
+55927,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL;Swift
+55928,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;Rust;SQL;TypeScript
+55929,C++;C#;JavaScript;Python;TypeScript
+55930,HTML/CSS;JavaScript
+55931,HTML/CSS;JavaScript
+55932,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+55933,C;C++;HTML/CSS;JavaScript;PHP;SQL
+55934,HTML/CSS;JavaScript;Python
+55935,C++;VBA;Other(s):
+55936,C++;C#;HTML/CSS;Java
+55937,Swift
+55938,HTML/CSS;Java;JavaScript;Python;TypeScript
+55939,HTML/CSS;JavaScript;Python;SQL
+55940,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+55941,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL;TypeScript
+55942,Assembly;Bash/Shell/PowerShell;C++;C#;Dart;Go;Objective-C;Swift
+55943,Bash/Shell/PowerShell;Python;SQL
+55944,Bash/Shell/PowerShell;C++;C#;Python
+55945,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+55946,Objective-C;Swift
+55948,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;Other(s):
+55949,Bash/Shell/PowerShell;C;C#;HTML/CSS
+55950,JavaScript
+55951,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+55952,Bash/Shell/PowerShell;Go;Python;SQL
+55953,HTML/CSS;JavaScript;TypeScript
+55954,Bash/Shell/PowerShell;Go;Python;Rust
+55955,C++;C#;HTML/CSS
+55956,C++;Java;Python;R;Scala;SQL;Other(s):
+55957,C#;HTML/CSS;JavaScript;SQL
+55958,HTML/CSS;Java;JavaScript;PHP;TypeScript
+55959,Bash/Shell/PowerShell;C++;Python;Other(s):
+55960,HTML/CSS;JavaScript;PHP;SQL
+55961,HTML/CSS;JavaScript;PHP
+55962,C#;HTML/CSS;SQL;TypeScript;Other(s):
+55963,Assembly;Bash/Shell/PowerShell;C;Ruby
+55964,HTML/CSS;JavaScript
+55965,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Scala;SQL
+55966,C;C++;Java;Python;Scala
+55967,Java
+55968,C;C++;C#;Java;Python;Rust
+55969,C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+55970,C
+55971,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+55972,HTML/CSS;JavaScript;PHP;SQL
+55973,HTML/CSS;Java;JavaScript;PHP
+55975,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+55976,C++;Python
+55977,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+55978,Assembly;Bash/Shell/PowerShell;C++;C#;F#;Go;HTML/CSS;JavaScript;TypeScript
+55979,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift;TypeScript
+55980,HTML/CSS;Java;JavaScript;Objective-C;Swift
+55981,C#;SQL
+55982,Java;JavaScript;SQL
+55983,HTML/CSS;JavaScript;PHP
+55984,C#;HTML/CSS;Java;JavaScript;SQL;Swift;VBA
+55985,Java;JavaScript
+55986,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+55987,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;JavaScript;Python;Swift
+55988,C#;HTML/CSS;JavaScript;SQL
+55990,Bash/Shell/PowerShell;JavaScript
+55991,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+55992,JavaScript;Python
+55993,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Swift
+55994,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+55995,Assembly;HTML/CSS;JavaScript;PHP;Python;SQL
+55996,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+55997,Java;JavaScript;SQL
+55998,C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+55999,C;Java
+56000,C#;HTML/CSS;JavaScript;SQL
+56001,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript;Other(s):
+56002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+56003,C;C++;HTML/CSS;Java;JavaScript
+56004,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+56005,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+56006,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+56007,HTML/CSS;JavaScript;PHP
+56008,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56009,Java;JavaScript
+56010,HTML/CSS;Java;SQL;TypeScript
+56011,Assembly;Bash/Shell/PowerShell;Clojure;Java;Kotlin;Other(s):
+56012,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+56013,SQL
+56014,C++;Java;SQL
+56015,HTML/CSS;JavaScript;PHP;Python;SQL
+56016,VBA
+56017,Bash/Shell/PowerShell;C;Java;Python;SQL
+56018,Bash/Shell/PowerShell;R;SQL
+56019,C#;HTML/CSS;JavaScript;PHP;SQL
+56020,Assembly;C;C++;Java;SQL
+56021,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+56022,Bash/Shell/PowerShell;Java;SQL
+56023,Bash/Shell/PowerShell;C#;Java;Python
+56024,Bash/Shell/PowerShell;C++;Python
+56025,JavaScript;Ruby;SQL;TypeScript
+56026,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+56027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R
+56028,C++;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;VBA
+56029,HTML/CSS;JavaScript;PHP;SQL
+56030,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+56031,HTML/CSS;JavaScript;PHP;Ruby
+56032,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56033,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+56034,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+56035,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+56036,C#;HTML/CSS;JavaScript;SQL;VBA
+56037,JavaScript;Python;SQL
+56038,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+56039,HTML/CSS;JavaScript;PHP;SQL
+56040,Assembly;Bash/Shell/PowerShell;C;C++;Java;PHP;Python;SQL
+56041,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56042,Bash/Shell/PowerShell;Python
+56043,JavaScript;Python;SQL
+56044,HTML/CSS;JavaScript;Python;TypeScript
+56045,C;C++;C#;VBA
+56046,Go;Java;JavaScript;Kotlin;Python;Scala;TypeScript
+56047,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;TypeScript
+56048,C;HTML/CSS;Java;JavaScript
+56049,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56050,C#;JavaScript;Python;SQL
+56051,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+56052,C#;SQL
+56053,JavaScript;Python
+56054,Dart;JavaScript;TypeScript
+56055,Bash/Shell/PowerShell;C++;JavaScript;Python;Scala
+56056,HTML/CSS;JavaScript;Python;SQL;Other(s):
+56057,HTML/CSS;Java;JavaScript;Kotlin;Scala;Swift;TypeScript
+56058,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+56059,Bash/Shell/PowerShell;C++
+56060,C#;HTML/CSS;JavaScript;Python;Swift
+56061,C;C++;Go;PHP;Python;Rust;WebAssembly
+56062,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56063,HTML/CSS;JavaScript
+56064,HTML/CSS;Java;TypeScript
+56065,Bash/Shell/PowerShell;C;JavaScript;Python;SQL
+56066,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Kotlin;Python;Ruby;SQL
+56067,C;C++;C#;Java;Kotlin;Objective-C;Swift
+56068,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+56069,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+56070,HTML/CSS;JavaScript;PHP
+56071,C#;HTML/CSS;SQL;Swift
+56072,Java;Kotlin;Swift
+56073,Java;Kotlin
+56074,C#;Dart;HTML/CSS;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+56075,C++;C#;HTML/CSS;Python
+56076,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56077,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+56078,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA
+56079,C++;Java;VBA
+56080,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56081,HTML/CSS;JavaScript;PHP
+56082,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+56083,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+56084,HTML/CSS;Java;JavaScript;Python
+56085,Go;Python;Rust;Other(s):
+56086,Java;Kotlin;Rust;Scala
+56087,Bash/Shell/PowerShell;C#;SQL
+56088,C#;Go;HTML/CSS;Java;PHP;SQL;TypeScript;WebAssembly
+56089,C++;Python
+56090,HTML/CSS;JavaScript;PHP;Python;SQL
+56091,C#;HTML/CSS;Objective-C;PHP;Python;Swift
+56092,C;HTML/CSS;Java;JavaScript;Python
+56093,Java
+56094,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+56095,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56096,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+56097,Bash/Shell/PowerShell;C++;C#;Go;JavaScript;Python;R;Ruby;Rust;SQL
+56098,HTML/CSS;JavaScript;Python;SQL
+56099,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56100,C++;Go;Java;SQL
+56101,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP
+56102,C#;HTML/CSS;JavaScript;PHP;SQL
+56103,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift;TypeScript
+56104,Bash/Shell/PowerShell;Python;R;SQL
+56105,C#;HTML/CSS;SQL
+56106,Java;Ruby;SQL
+56107,C;Other(s):
+56108,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;Python;SQL
+56109,HTML/CSS;Java;JavaScript;Kotlin;PHP
+56110,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+56111,Scala
+56112,HTML/CSS;JavaScript;PHP;SQL
+56113,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;Other(s):
+56114,C++;C#;HTML/CSS;SQL
+56115,Bash/Shell/PowerShell;C;C++
+56116,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Objective-C;SQL
+56117,C;Python;R;SQL
+56118,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56119,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+56120,Go
+56121,C++;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+56122,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+56123,Bash/Shell/PowerShell;C;C++
+56124,C#;JavaScript;TypeScript
+56125,Java;Objective-C;Swift
+56126,C;C++;C#;HTML/CSS;Java;Objective-C;Python;SQL
+56127,C;JavaScript;Objective-C;Python;Swift
+56128,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56129,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+56130,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+56131,HTML/CSS;Other(s):
+56132,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56133,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+56134,Go;Java;R;SQL
+56136,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+56137,Bash/Shell/PowerShell;Java;Python;Ruby;Scala
+56138,HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+56139,C;C++;HTML/CSS;JavaScript;PHP;R
+56140,C++;C#;JavaScript;SQL
+56141,HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+56142,HTML/CSS;JavaScript;Objective-C;Swift
+56143,Java;Python;R;SQL
+56144,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+56145,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+56146,Objective-C;Python;Ruby;Swift
+56147,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+56148,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+56150,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+56151,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+56152,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56153,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL
+56154,Bash/Shell/PowerShell;HTML/CSS;VBA
+56155,Java;JavaScript;SQL
+56156,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+56157,C#;HTML/CSS;Java;JavaScript;Python;Ruby;Scala
+56158,C#;Python;SQL;VBA
+56159,C#;HTML/CSS;JavaScript;PHP;SQL
+56160,C#;HTML/CSS;JavaScript;SQL
+56161,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56162,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56163,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+56164,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+56165,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R
+56166,Java;Python
+56167,C#;Java;JavaScript;Kotlin;Python
+56168,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+56169,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+56170,C#;HTML/CSS;SQL
+56171,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56172,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+56173,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+56174,PHP;SQL;Other(s):
+56175,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+56176,C#;SQL
+56177,Go;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+56178,HTML/CSS;Python;SQL
+56179,C#;HTML/CSS;JavaScript;PHP;SQL
+56180,Java;JavaScript
+56181,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python;Scala
+56182,C;C++;HTML/CSS
+56183,C;C++;HTML/CSS;PHP;SQL
+56184,Bash/Shell/PowerShell;C;Ruby
+56185,Python;Other(s):
+56186,HTML/CSS;Java;JavaScript;SQL
+56187,Java;Kotlin;TypeScript
+56188,Bash/Shell/PowerShell;C;HTML/CSS;Other(s):
+56189,Python;Other(s):
+56190,HTML/CSS;JavaScript;PHP;TypeScript
+56191,Java;Kotlin
+56192,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Ruby;SQL
+56194,HTML/CSS;Java;JavaScript
+56195,Python
+56196,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+56197,Bash/Shell/PowerShell;Java;Python;SQL
+56198,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+56199,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;SQL
+56200,HTML/CSS;Java;JavaScript;Python;SQL
+56201,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+56202,Java;JavaScript;SQL
+56203,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+56204,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+56205,Assembly;C#;JavaScript;Python;SQL;Other(s):
+56207,C;HTML/CSS;JavaScript;Python;SQL
+56208,C;C++;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+56209,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+56210,C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+56211,Assembly;C;JavaScript;PHP;Python;SQL
+56212,Go;HTML/CSS;Java;JavaScript;TypeScript
+56213,Python;Other(s):
+56214,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Rust
+56215,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+56216,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+56217,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+56218,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+56219,C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+56220,F#;Other(s):
+56221,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56222,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript
+56223,C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+56224,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+56225,Bash/Shell/PowerShell;C++;Java;Python;R;SQL
+56226,Java
+56227,Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;JavaScript;Python;TypeScript
+56228,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+56229,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+56230,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56231,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+56232,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+56233,HTML/CSS;JavaScript;Python;SQL
+56234,C;Python
+56235,C#;Java
+56236,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+56237,SQL
+56238,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+56239,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+56240,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+56241,Bash/Shell/PowerShell;C;C#;Java;Scala;Other(s):
+56242,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+56243,HTML/CSS;JavaScript;Python
+56244,Java;Python;SQL
+56245,C#;HTML/CSS;JavaScript;SQL
+56246,HTML/CSS;Java;JavaScript
+56247,HTML/CSS;JavaScript;PHP
+56248,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+56249,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+56250,Bash/Shell/PowerShell;C;Java;R;VBA
+56251,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56252,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL
+56253,Bash/Shell/PowerShell
+56254,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+56255,C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+56256,Bash/Shell/PowerShell;Java;Other(s):
+56257,Bash/Shell/PowerShell;Python;Ruby;SQL
+56258,C#;HTML/CSS;JavaScript;SQL
+56259,Bash/Shell/PowerShell;C;C++
+56260,Other(s):
+56261,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;Ruby
+56262,Java;JavaScript;Python;Scala
+56263,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+56264,Assembly;Bash/Shell/PowerShell;C;Java;Python;SQL;Other(s):
+56265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Scala;SQL;TypeScript
+56266,Elixir;Erlang;HTML/CSS;JavaScript;Ruby;TypeScript;WebAssembly
+56267,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56268,JavaScript;PHP;SQL
+56269,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56270,HTML/CSS;SQL
+56271,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+56272,C#;HTML/CSS;JavaScript;SQL
+56273,JavaScript;Scala
+56274,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Rust;SQL
+56275,C#;HTML/CSS;JavaScript;TypeScript
+56276,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+56277,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+56278,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56279,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56280,HTML/CSS;JavaScript;PHP
+56281,C++;Java;SQL
+56282,Python
+56283,HTML/CSS;Java
+56284,Elixir;HTML/CSS;Java;JavaScript;Python;SQL
+56285,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56286,Bash/Shell/PowerShell;C;C++;Go;Java;Python
+56287,C#;Java
+56288,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript;VBA
+56289,Bash/Shell/PowerShell;C;C++;Python
+56290,HTML/CSS;JavaScript;PHP;TypeScript
+56291,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+56292,Java
+56294,HTML/CSS
+56295,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;Swift
+56296,HTML/CSS;Java;JavaScript;TypeScript
+56297,HTML/CSS;JavaScript
+56298,HTML/CSS;JavaScript;PHP;SQL
+56299,Bash/Shell/PowerShell;Go;HTML/CSS;Java;SQL
+56300,C#;HTML/CSS;JavaScript
+56301,Python;SQL
+56302,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP
+56303,C#;Go;HTML/CSS;JavaScript;Rust;TypeScript
+56304,C#;JavaScript;SQL
+56305,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+56306,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+56307,Bash/Shell/PowerShell;C;C++;Go;Python;Ruby;Rust
+56308,Objective-C;Swift
+56309,HTML/CSS;JavaScript;Ruby
+56310,Bash/Shell/PowerShell;Java;Python;SQL
+56311,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Swift;TypeScript;WebAssembly
+56312,HTML/CSS;JavaScript;PHP;Python;SQL
+56313,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+56314,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;R;SQL;TypeScript
+56315,Bash/Shell/PowerShell;C#;Python
+56316,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Objective-C;PHP;Python;SQL
+56317,Bash/Shell/PowerShell;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;TypeScript;VBA;Other(s):
+56318,HTML/CSS;JavaScript;PHP;SQL
+56319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+56320,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+56321,C#;Java
+56322,C;C++;C#;SQL
+56323,Bash/Shell/PowerShell;JavaScript;Python;SQL
+56324,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56325,HTML/CSS;Python;SQL
+56326,Bash/Shell/PowerShell;JavaScript;Python;SQL
+56327,Bash/Shell/PowerShell;Java;JavaScript
+56328,Bash/Shell/PowerShell;C++;Python;R;SQL;Other(s):
+56329,C#;HTML/CSS;Java;PHP;SQL
+56330,C#
+56331,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+56332,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56333,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+56334,C++;Python
+56335,Java;Python;Scala
+56336,C#;HTML/CSS;JavaScript;TypeScript
+56337,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+56338,JavaScript;Python
+56339,C#;HTML/CSS;Java;Kotlin;Objective-C;PHP;Swift
+56340,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+56341,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+56342,Bash/Shell/PowerShell;Python;R
+56343,HTML/CSS;JavaScript;PHP
+56344,Bash/Shell/PowerShell;C++;C#;Dart;Python;R;SQL;TypeScript;VBA
+56345,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56346,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+56347,C#;VBA
+56348,HTML/CSS;JavaScript;PHP;TypeScript
+56349,C;C++;C#;Java;JavaScript;Objective-C;Python;TypeScript;VBA
+56350,Bash/Shell/PowerShell;Java;Python;SQL
+56351,C#;HTML/CSS;JavaScript;SQL
+56352,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+56353,C;C++;C#;PHP;Python;SQL
+56354,HTML/CSS;Java;JavaScript;TypeScript
+56355,HTML/CSS;JavaScript;SQL;TypeScript
+56356,Bash/Shell/PowerShell;C;JavaScript;Python;R;SQL
+56357,Bash/Shell/PowerShell;Java;Python;SQL;TypeScript
+56358,HTML/CSS;JavaScript;PHP;TypeScript
+56359,C;C++;Java
+56360,C#;HTML/CSS;Java;JavaScript
+56361,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56362,Java
+56363,Bash/Shell/PowerShell;C;Python;Other(s):
+56365,HTML/CSS;JavaScript;TypeScript
+56366,Java;JavaScript
+56368,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+56369,Java
+56370,HTML/CSS;JavaScript
+56371,C#;HTML/CSS;JavaScript;PHP;SQL
+56372,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+56373,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56374,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+56375,C;Python
+56376,C#;HTML/CSS;JavaScript;PHP;SQL
+56377,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+56378,C#
+56379,C++;C#
+56380,C#;JavaScript;SQL
+56381,HTML/CSS;Java;JavaScript;SQL
+56382,JavaScript;Python
+56383,HTML/CSS;JavaScript;PHP;Python;SQL
+56385,C#;HTML/CSS;JavaScript;SQL
+56386,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;Rust;SQL;TypeScript
+56387,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+56388,C
+56389,HTML/CSS;Java;JavaScript;Kotlin;Scala
+56390,HTML/CSS;JavaScript;PHP
+56391,C++;C#
+56392,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+56393,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56394,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+56395,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+56396,C#;HTML/CSS;JavaScript;TypeScript;VBA
+56397,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+56398,Kotlin
+56399,JavaScript;SQL;TypeScript;Other(s):
+56400,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+56401,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+56402,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+56403,C#;JavaScript;Python
+56404,C++;C#;Swift
+56405,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+56406,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;PHP;Python;Ruby;SQL
+56407,Clojure;HTML/CSS;JavaScript;Python;SQL
+56408,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+56409,HTML/CSS;JavaScript;TypeScript
+56410,C#;HTML/CSS;JavaScript;SQL
+56412,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+56413,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56414,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+56415,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+56416,Bash/Shell/PowerShell;C++;C#;JavaScript;TypeScript
+56417,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+56418,C#;HTML/CSS;JavaScript;SQL;Other(s):
+56419,Java;Kotlin;PHP;Swift
+56420,C++;JavaScript;Python
+56421,HTML/CSS;JavaScript;PHP;Python;SQL
+56422,Assembly;Bash/Shell/PowerShell;C;Python;Other(s):
+56423,HTML/CSS;JavaScript;Python
+56424,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+56425,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+56426,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Kotlin;Python;Ruby
+56427,C;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56428,HTML/CSS;Java;Python;SQL
+56429,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56430,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+56431,HTML/CSS;JavaScript;Python;R
+56432,HTML/CSS;Java;JavaScript;SQL
+56433,Assembly;Bash/Shell/PowerShell;C++;Other(s):
+56435,C#;Java;SQL
+56436,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Scala;SQL;Swift
+56437,Python;R
+56438,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+56439,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56440,HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL
+56441,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+56442,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+56443,HTML/CSS;JavaScript;Python;SQL;TypeScript
+56444,HTML/CSS;JavaScript;PHP;VBA
+56445,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+56446,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift;TypeScript
+56447,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+56448,Dart;Java;Kotlin;Python
+56449,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+56450,C++;HTML/CSS;JavaScript;PHP
+56451,Bash/Shell/PowerShell;C++;Python;Other(s):
+56452,Bash/Shell/PowerShell;C;C++;Java;Kotlin
+56453,C#;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+56454,JavaScript;PHP
+56455,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+56456,Bash/Shell/PowerShell;Clojure;Elixir;Go;JavaScript;Python;Ruby;Scala
+56457,Python;SQL
+56458,Bash/Shell/PowerShell;Java;Other(s):
+56459,C;C++;HTML/CSS;JavaScript;PHP;SQL
+56460,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+56461,Bash/Shell/PowerShell;Java;Python
+56462,C#;HTML/CSS;JavaScript;SQL
+56463,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+56464,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56465,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+56466,Bash/Shell/PowerShell;Java;SQL
+56467,HTML/CSS;Java;JavaScript;SQL
+56468,JavaScript;TypeScript
+56469,C;C++;Java;JavaScript
+56470,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+56471,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+56472,HTML/CSS;JavaScript;PHP;SQL
+56473,Assembly;HTML/CSS;JavaScript;PHP;SQL;Swift
+56474,C++;Java;JavaScript;Python
+56475,C#;SQL
+56476,HTML/CSS;JavaScript;TypeScript
+56477,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+56478,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+56479,C#;HTML/CSS;JavaScript;PHP;SQL
+56480,HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+56481,HTML/CSS;Java;JavaScript;SQL
+56482,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+56483,HTML/CSS;Java;JavaScript;PHP;SQL
+56484,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+56485,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+56486,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+56487,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+56488,HTML/CSS;JavaScript;TypeScript
+56489,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL
+56490,C;C++;HTML/CSS;Java;JavaScript;Python
+56491,C;C++;HTML/CSS;JavaScript
+56492,C#;Java;SQL;Other(s):
+56493,C;C++;HTML/CSS;JavaScript;PHP;Python
+56494,Bash/Shell/PowerShell;Java
+56495,C#;JavaScript;SQL;TypeScript
+56496,Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+56497,Python;SQL
+56498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+56499,HTML/CSS;JavaScript;Ruby
+56500,Bash/Shell/PowerShell;C#;SQL;VBA
+56501,JavaScript;Python;SQL;TypeScript
+56502,HTML/CSS;Java;JavaScript;PHP;SQL
+56503,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+56504,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56505,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+56506,HTML/CSS;Java;JavaScript;Kotlin
+56507,HTML/CSS;Java;JavaScript;PHP;SQL
+56508,C;C++;PHP;Python
+56509,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+56510,HTML/CSS;Java;JavaScript;PHP;SQL
+56511,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+56512,C;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+56513,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+56514,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL;VBA;Other(s):
+56515,C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+56516,Go;Java;Kotlin;Rust;TypeScript
+56517,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+56518,HTML/CSS;JavaScript;Ruby;SQL
+56519,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+56520,HTML/CSS;PHP;SQL
+56521,Bash/Shell/PowerShell;C#
+56522,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+56523,C++;HTML/CSS;JavaScript;Python;Ruby
+56524,Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+56525,HTML/CSS;Java;JavaScript;TypeScript
+56526,Objective-C;Swift
+56527,Bash/Shell/PowerShell;Python;R;SQL
+56528,Java;JavaScript;SQL
+56529,Python
+56530,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+56531,Dart;HTML/CSS;JavaScript;Python
+56532,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+56533,C++
+56534,HTML/CSS;JavaScript;PHP;TypeScript
+56535,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+56536,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;SQL
+56537,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+56538,Bash/Shell/PowerShell;HTML/CSS;SQL
+56539,C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+56540,C++;C#;HTML/CSS;Java;Python
+56541,Java;Kotlin
+56542,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+56543,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+56544,HTML/CSS;JavaScript;PHP;SQL
+56545,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+56546,Python;R;SQL;VBA
+56547,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+56548,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+56549,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+56550,C;C++;HTML/CSS;JavaScript
+56551,C#;HTML/CSS;PHP
+56552,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java
+56553,Bash/Shell/PowerShell;C;C++
+56554,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+56555,Clojure;Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;Scala
+56556,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;Ruby;Rust;SQL
+56557,C++
+56558,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;R
+56559,Assembly;C#;HTML/CSS;PHP;TypeScript
+56560,HTML/CSS;JavaScript;SQL;TypeScript
+56561,Bash/Shell/PowerShell;Java;Python;R;SQL
+56562,Assembly;C;C#;HTML/CSS;Java;Objective-C;PHP;Python;SQL
+56563,C#;SQL
+56564,C;C#;HTML/CSS;Python
+56565,HTML/CSS;Java;JavaScript
+56566,HTML/CSS;JavaScript
+56567,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+56568,Bash/Shell/PowerShell;Go
+56569,C++;HTML/CSS;JavaScript;Python;SQL
+56570,Objective-C;Swift
+56571,Elixir;JavaScript;Python;Ruby;TypeScript
+56572,Python
+56573,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+56574,HTML/CSS;JavaScript;Python;SQL;Other(s):
+56575,HTML/CSS;Java;SQL
+56576,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+56577,C#;F#;HTML/CSS;JavaScript;SQL
+56578,C#;HTML/CSS;JavaScript;TypeScript
+56579,SQL;VBA
+56580,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+56581,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python;Scala;SQL
+56582,Java;SQL
+56583,C;C++;Java;Objective-C;Swift
+56584,C;C#;HTML/CSS;JavaScript;PHP;SQL
+56585,Bash/Shell/PowerShell;Java;Python;SQL
+56586,Bash/Shell/PowerShell;Clojure;Kotlin;Python
+56587,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+56588,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+56589,Bash/Shell/PowerShell;Java;JavaScript;Python
+56590,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+56591,HTML/CSS;JavaScript;VBA
+56592,C#;SQL
+56593,C++;Java
+56594,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;R;VBA
+56595,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+56596,HTML/CSS;JavaScript;SQL;TypeScript
+56597,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+56598,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+56599,C;HTML/CSS;Java;JavaScript;PHP;Python
+56600,C++;Python
+56602,C++;C#;Python
+56603,Python;R
+56604,C;Go;HTML/CSS;Java;Python;SQL
+56605,Bash/Shell/PowerShell;C;C++;Java
+56606,HTML/CSS;Java;JavaScript;PHP;SQL
+56607,C#;HTML/CSS;JavaScript;SQL
+56608,Bash/Shell/PowerShell;C#
+56609,Bash/Shell/PowerShell;Go;Java;Python;SQL
+56610,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+56611,C++;Python;Other(s):
+56612,Go
+56613,C++;Java
+56614,HTML/CSS;JavaScript;PHP
+56615,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+56616,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+56617,HTML/CSS;JavaScript;Ruby
+56618,Java;Kotlin;Python
+56619,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+56620,Java;JavaScript
+56622,C++;HTML/CSS;Java;JavaScript;PHP
+56623,C;HTML/CSS;JavaScript;Ruby;SQL;Swift
+56624,Go;HTML/CSS;JavaScript;PHP;SQL
+56625,C++;Java;JavaScript
+56626,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56627,C#;JavaScript;SQL;TypeScript
+56628,HTML/CSS;Java
+56629,JavaScript;Ruby;SQL
+56630,C;C++;Java;Python;R;SQL;VBA
+56631,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+56632,C++;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+56633,C;C++;HTML/CSS;Other(s):
+56634,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+56635,C#;HTML/CSS;SQL;VBA
+56636,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+56637,HTML/CSS;Java;JavaScript;Ruby;SQL
+56638,HTML/CSS;Java;Python;R;SQL
+56639,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;VBA
+56640,C;C++;HTML/CSS;Java;JavaScript;SQL
+56641,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+56642,Java;Other(s):
+56643,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Kotlin;PHP;SQL
+56644,Java;JavaScript;Python
+56645,C#;HTML/CSS;JavaScript;SQL
+56646,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+56647,C#;HTML/CSS;JavaScript;Python;SQL
+56648,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+56649,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+56650,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56651,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+56652,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL;VBA
+56653,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+56654,Bash/Shell/PowerShell;C#;Java
+56655,C++;C#;HTML/CSS;Java;Kotlin;PHP;Ruby;SQL;Swift
+56656,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56657,Bash/Shell/PowerShell;C++;Python;SQL
+56658,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+56659,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+56660,Clojure;Elixir;JavaScript;Python;Ruby;VBA
+56661,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+56662,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+56663,Swift
+56664,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+56665,HTML/CSS;JavaScript;TypeScript
+56666,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+56667,Python
+56668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Scala;SQL;VBA
+56669,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+56670,Java;JavaScript;SQL
+56671,Bash/Shell/PowerShell;C;C++;Java;JavaScript
+56672,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+56673,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+56674,HTML/CSS;JavaScript;PHP;SQL
+56675,HTML/CSS;Java;JavaScript;Scala
+56676,C;Other(s):
+56677,Java;Python
+56678,C#;JavaScript;Objective-C;PHP;Python
+56679,HTML/CSS;JavaScript;PHP;SQL
+56680,HTML/CSS;JavaScript;PHP;SQL
+56681,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+56682,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+56683,Java;PHP;Swift
+56684,HTML/CSS;JavaScript;Python;TypeScript
+56685,C++;C#;HTML/CSS;Java;JavaScript;SQL
+56686,Java;JavaScript;Objective-C;SQL;Swift
+56687,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+56688,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+56689,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+56690,C++;C#
+56692,HTML/CSS;JavaScript;TypeScript;Other(s):
+56693,HTML/CSS;Java;JavaScript;Python
+56694,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+56695,JavaScript;TypeScript
+56696,HTML/CSS;JavaScript;Python;SQL
+56697,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;Python
+56698,C;C++;C#;HTML/CSS;SQL
+56699,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+56700,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56701,HTML/CSS;Java
+56702,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+56703,JavaScript;PHP;Python
+56704,C++;HTML/CSS;Java;JavaScript
+56705,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+56706,Bash/Shell/PowerShell;C++
+56707,HTML/CSS;JavaScript;PHP
+56708,HTML/CSS;JavaScript;Python
+56709,HTML/CSS;Ruby;SQL
+56710,JavaScript
+56711,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;SQL;VBA
+56712,C#;HTML/CSS;JavaScript
+56713,HTML/CSS;JavaScript;PHP
+56714,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+56715,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56716,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+56717,Assembly;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+56718,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript
+56719,Bash/Shell/PowerShell;C;Python;SQL
+56720,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python
+56721,C#;Java;Python
+56722,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+56723,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56724,C++;Python;Other(s):
+56725,HTML/CSS;Java;JavaScript;PHP;SQL
+56726,Assembly;C;Java;PHP;SQL
+56727,HTML/CSS;Java;JavaScript;Python;Swift
+56728,HTML/CSS;JavaScript;Python;TypeScript
+56729,Java;JavaScript
+56730,HTML/CSS;JavaScript;Python
+56731,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+56732,HTML/CSS;JavaScript;Ruby;Swift
+56733,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Rust
+56734,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+56735,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+56736,C#;SQL;Other(s):
+56737,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+56738,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+56739,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+56740,Assembly;Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+56741,C#;Go;HTML/CSS;Java;JavaScript;Python
+56742,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+56743,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+56744,C++;C#
+56745,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+56746,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python
+56747,HTML/CSS;JavaScript;SQL;Swift;TypeScript
+56748,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56749,Bash/Shell/PowerShell;C;C++;C#;Clojure;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56750,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift
+56751,Java;Kotlin;SQL
+56752,HTML/CSS;JavaScript;PHP;TypeScript
+56753,JavaScript;SQL;Other(s):
+56755,HTML/CSS;Java;Ruby;SQL;Other(s):
+56756,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+56757,Bash/Shell/PowerShell;C;C++;HTML/CSS;Objective-C;Python;Swift
+56758,C#;HTML/CSS;JavaScript;PHP
+56760,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+56761,Java;JavaScript
+56762,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+56763,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+56764,Objective-C;SQL;Swift
+56765,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+56767,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56768,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56769,C#;HTML/CSS;JavaScript;SQL;Other(s):
+56770,C++;C#;HTML/CSS;JavaScript;SQL
+56771,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56772,HTML/CSS;Java;JavaScript;TypeScript
+56773,Scala;Other(s):
+56774,Assembly;C;C++;Python
+56775,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+56776,C#;HTML/CSS;Java;JavaScript
+56777,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+56778,Java;Kotlin;Swift
+56779,SQL;TypeScript
+56780,C#;TypeScript
+56781,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56782,HTML/CSS;JavaScript;PHP
+56783,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+56784,Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;Java;JavaScript;Python;R;SQL
+56785,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Swift
+56786,C;C++;HTML/CSS;Java;JavaScript;Ruby;Swift;TypeScript
+56787,Bash/Shell/PowerShell;C++;Java;SQL
+56788,C#;JavaScript;Scala;SQL;TypeScript
+56789,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;R;SQL
+56790,C#
+56791,C#;HTML/CSS;SQL
+56792,C#;HTML/CSS;JavaScript;SQL
+56793,HTML/CSS;JavaScript;PHP
+56794,C++;HTML/CSS;JavaScript;PHP;SQL
+56795,HTML/CSS;Java;JavaScript;Swift;TypeScript
+56796,HTML/CSS;Java;JavaScript;TypeScript
+56797,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript
+56798,Bash/Shell/PowerShell;C++;Java;Python
+56799,HTML/CSS;Java;JavaScript;SQL
+56800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56801,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;Kotlin;Rust;WebAssembly
+56802,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+56803,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+56804,Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+56805,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;VBA
+56806,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust
+56807,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+56808,Bash/Shell/PowerShell;C++;C#;Python
+56809,C;C++;C#;JavaScript;SQL;VBA
+56810,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Objective-C;Python;Ruby;SQL
+56811,HTML/CSS;Java;PHP;SQL
+56812,HTML/CSS;JavaScript;PHP;TypeScript
+56813,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+56814,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly;Other(s):
+56815,HTML/CSS;JavaScript;PHP
+56816,Objective-C;PHP;Swift
+56817,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+56818,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+56819,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+56820,HTML/CSS;JavaScript;TypeScript
+56821,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+56822,HTML/CSS;JavaScript;Python
+56823,Go;JavaScript;PHP;SQL
+56824,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+56825,HTML/CSS;Java;JavaScript;Kotlin
+56826,HTML/CSS;Java;JavaScript
+56827,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+56828,C;C#;HTML/CSS;JavaScript;SQL
+56829,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+56830,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+56831,C#;HTML/CSS;JavaScript;SQL
+56832,PHP;SQL
+56833,C;C#;HTML/CSS;SQL;Other(s):
+56834,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust;SQL;TypeScript;WebAssembly
+56835,HTML/CSS;Java;JavaScript;SQL
+56836,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56837,C;Java;JavaScript;PHP;Python;Rust;TypeScript
+56838,Java;JavaScript
+56839,HTML/CSS;JavaScript;SQL
+56840,C#;HTML/CSS;Python;SQL
+56841,Go;HTML/CSS;JavaScript;PHP;SQL
+56842,Java;Kotlin;SQL;Swift
+56843,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;SQL;Other(s):
+56844,C;C++;HTML/CSS;JavaScript
+56845,Assembly;C;C++;C#;Java;JavaScript;Objective-C;Python;Swift
+56846,Assembly;R;SQL;VBA
+56847,JavaScript
+56848,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+56849,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+56850,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript;VBA
+56851,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+56852,C;Objective-C;Swift
+56853,C#;HTML/CSS;Java
+56854,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56855,C#;HTML/CSS;JavaScript
+56856,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+56857,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+56858,HTML/CSS;JavaScript;Ruby;SQL
+56859,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+56860,C;C++;HTML/CSS
+56861,Bash/Shell/PowerShell;PHP;Python;Ruby
+56862,Bash/Shell/PowerShell;C;C++;Python;SQL
+56863,Go;Ruby;SQL
+56864,Java;JavaScript;SQL
+56865,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+56866,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+56867,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+56868,Go;Java;JavaScript;TypeScript
+56869,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+56870,C++
+56871,Bash/Shell/PowerShell;C++;Python;Other(s):
+56872,Java;JavaScript;Other(s):
+56873,HTML/CSS;JavaScript;PHP
+56874,C;C++;Java;Objective-C;SQL;Swift
+56875,C#;HTML/CSS;Python
+56876,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+56877,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+56878,C#;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+56880,Bash/Shell/PowerShell;C;C++;Java;Python
+56881,HTML/CSS;JavaScript;PHP
+56882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+56883,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+56884,C#;HTML/CSS;Java;SQL;VBA
+56885,C;C++;C#;Java;Kotlin;Python
+56886,Bash/Shell/PowerShell;C;Python;SQL
+56887,HTML/CSS;Java;JavaScript;PHP;R;SQL;Other(s):
+56888,Java;JavaScript;Kotlin;SQL
+56889,C#;Go;Java;JavaScript;Python;R
+56890,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+56891,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+56892,Java;Python;SQL
+56893,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+56894,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Objective-C;Python;Scala;Swift;Other(s):
+56895,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56896,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+56897,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+56898,C#
+56899,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python
+56900,C#;SQL;VBA
+56901,Go;JavaScript;TypeScript
+56902,C;C++;Go;HTML/CSS;JavaScript;SQL
+56903,Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+56904,HTML/CSS;Java;JavaScript;SQL
+56905,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+56906,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+56907,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+56908,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+56909,C#;HTML/CSS;JavaScript;SQL
+56910,Java;JavaScript;Python;Rust
+56911,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+56912,C#;Python;R;SQL
+56913,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+56914,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56915,Bash/Shell/PowerShell;C;C++;Objective-C;Python;Rust;SQL;Swift
+56916,HTML/CSS;JavaScript;SQL;TypeScript
+56917,Bash/Shell/PowerShell;C;C++;Python
+56918,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56919,Go;JavaScript;Python;SQL
+56920,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+56921,Assembly;C;C++;Dart;HTML/CSS;Java;Python;R;SQL
+56922,C++;C#;HTML/CSS;SQL
+56923,HTML/CSS;JavaScript;Ruby;SQL
+56925,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;WebAssembly
+56926,C#;F#;Java;JavaScript;Objective-C;Python;R;SQL;Swift
+56927,Bash/Shell/PowerShell;C++;Java
+56928,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56929,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python
+56930,JavaScript;TypeScript
+56931,C#
+56932,C++;HTML/CSS;SQL
+56933,HTML/CSS;Java;JavaScript;Python
+56934,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+56935,C#;HTML/CSS;Java;JavaScript;Python
+56936,Bash/Shell/PowerShell;Go;JavaScript;Kotlin;Objective-C;Ruby;Swift;TypeScript;Other(s):
+56937,HTML/CSS;JavaScript;SQL;TypeScript
+56938,Assembly;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Rust;SQL;Other(s):
+56939,HTML/CSS;JavaScript
+56940,Bash/Shell/PowerShell;C++
+56941,C++;Java;Kotlin
+56942,Assembly;C;C++;Clojure;Elixir;F#;Go;Java;JavaScript;Objective-C;Python;Ruby;Scala;Swift;VBA
+56943,Java;Python
+56944,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL
+56945,Python;SQL
+56946,C;JavaScript;Kotlin;Objective-C;Swift
+56947,C++;Other(s):
+56948,C++;Python
+56949,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+56950,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+56951,Ruby
+56952,HTML/CSS;JavaScript;PHP;SQL
+56953,Bash/Shell/PowerShell;JavaScript;Python;SQL
+56954,Java;Python;SQL
+56955,SQL;VBA;Other(s):
+56956,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+56957,Java;JavaScript;SQL;TypeScript
+56958,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+56959,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+56960,C;C++;Python;Other(s):
+56961,HTML/CSS;Java;JavaScript;SQL;TypeScript
+56962,C#;HTML/CSS;Java;JavaScript;Python
+56963,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+56964,HTML/CSS;JavaScript;Python
+56965,C#;HTML/CSS;JavaScript;SQL;TypeScript
+56966,C#;HTML/CSS;Java;JavaScript;SQL
+56967,Bash/Shell/PowerShell;C#;JavaScript;Python;R;SQL
+56968,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+56969,C;C++;HTML/CSS;JavaScript
+56970,JavaScript;R;VBA
+56971,HTML/CSS;JavaScript;PHP;Python;SQL
+56972,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+56973,C;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+56974,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+56975,C#;Java;Python
+56976,Python;SQL
+56977,C;C++;Kotlin;Python;R
+56978,Bash/Shell/PowerShell;Java;JavaScript
+56979,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;Rust;TypeScript
+56980,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+56981,C#;Java;JavaScript;R
+56982,C;C++;Go;Java;SQL
+56983,HTML/CSS;JavaScript;SQL;TypeScript
+56984,HTML/CSS;JavaScript;PHP
+56985,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+56986,HTML/CSS;Java;TypeScript
+56987,C#;Other(s):
+56988,HTML/CSS;JavaScript;PHP;Python;TypeScript
+56989,C#;JavaScript;PHP;Python
+56990,Python;Other(s):
+56991,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+56992,Java;JavaScript
+56993,C++;Java;Swift
+56994,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+56995,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+56996,C++;C#;HTML/CSS;JavaScript;Python;Swift
+56997,Java;JavaScript
+56998,C;C++;C#;HTML/CSS;Java;Python;VBA
+56999,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+57000,C;HTML/CSS;JavaScript;Python
+57001,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+57002,C#;HTML/CSS;JavaScript;SQL;TypeScript
+57003,C#;JavaScript;SQL
+57004,C;HTML/CSS;Java;Python;SQL
+57005,HTML/CSS;JavaScript;PHP
+57006,HTML/CSS;JavaScript;PHP;SQL
+57007,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+57008,Assembly;C;Java;JavaScript;Objective-C;Swift;Other(s):
+57009,HTML/CSS;JavaScript;PHP
+57010,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+57011,C#;JavaScript;TypeScript
+57012,JavaScript;PHP;SQL
+57013,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+57014,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+57015,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+57016,HTML/CSS;JavaScript;PHP;SQL
+57017,Bash/Shell/PowerShell;Java;JavaScript
+57018,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+57019,Java;Kotlin
+57020,JavaScript
+57022,C;C++;Java;SQL
+57023,PHP;Python;R;SQL
+57024,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+57025,Bash/Shell/PowerShell;HTML/CSS;Python;Rust;SQL;TypeScript
+57026,C#;HTML/CSS;JavaScript;SQL;VBA
+57027,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+57028,HTML/CSS;JavaScript;PHP;TypeScript
+57029,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+57030,Bash/Shell/PowerShell;C++;Java;Scala;Other(s):
+57031,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+57032,C#;JavaScript;SQL
+57033,JavaScript;Python
+57034,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57035,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57036,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57037,C;HTML/CSS;JavaScript;PHP;Python;SQL
+57038,C#;Java;Python;SQL
+57039,HTML/CSS;JavaScript;PHP
+57040,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+57041,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+57042,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+57043,C#;Java
+57044,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+57045,Bash/Shell/PowerShell;Go;Python;SQL
+57046,HTML/CSS;Python;R
+57047,C#;HTML/CSS;JavaScript;SQL
+57048,Python
+57049,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+57050,HTML/CSS;JavaScript
+57051,HTML/CSS;JavaScript;SQL;TypeScript
+57052,Assembly;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;WebAssembly
+57053,HTML/CSS;JavaScript;Python;SQL
+57054,C;C++
+57055,C#;HTML/CSS;JavaScript;TypeScript
+57056,C++;Python
+57057,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57058,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+57059,C#;HTML/CSS;JavaScript;Python;Ruby
+57060,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby
+57061,HTML/CSS;JavaScript;PHP;Python;SQL
+57062,Bash/Shell/PowerShell;JavaScript;Python;SQL
+57063,Bash/Shell/PowerShell
+57064,C;C++;HTML/CSS;Python
+57065,C#;JavaScript;SQL
+57066,C;C++;HTML/CSS;JavaScript;Python
+57067,Java;JavaScript;Python;SQL
+57068,C;HTML/CSS;Java;Objective-C;Python;Swift
+57069,SQL;Other(s):
+57070,HTML/CSS;Java;JavaScript;VBA
+57072,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript
+57073,JavaScript;Ruby
+57074,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Python
+57075,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL;Swift;TypeScript
+57076,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+57077,C++;C#;Java;JavaScript;Objective-C;Swift
+57078,Assembly;C++;Clojure;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;WebAssembly
+57079,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+57080,Bash/Shell/PowerShell;C;Java;Python
+57081,Bash/Shell/PowerShell;Java
+57082,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+57083,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57084,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;R;Other(s):
+57085,Bash/Shell/PowerShell;Go;Python
+57086,HTML/CSS;Java;JavaScript;Python
+57087,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL
+57088,C;C++;HTML/CSS;JavaScript;PHP
+57089,Bash/Shell/PowerShell;Python;Scala;SQL
+57090,C;Go;JavaScript;Python
+57091,Objective-C;Swift
+57092,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Swift
+57093,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57094,Bash/Shell/PowerShell;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+57095,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+57096,Kotlin
+57097,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+57098,C#;HTML/CSS;JavaScript;SQL
+57099,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+57100,R;SQL
+57101,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+57102,Bash/Shell/PowerShell;C#;Python;Other(s):
+57103,JavaScript;Python
+57104,C#;HTML/CSS;JavaScript;Python;SQL
+57105,Assembly;C;C++;JavaScript;Python
+57106,C;C++;C#;Python
+57107,Clojure;JavaScript;Kotlin;PHP;Python;TypeScript
+57108,Java
+57109,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+57110,C;C++;Python
+57111,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+57112,C#;Dart;Go;HTML/CSS;Java;JavaScript;SQL;Other(s):
+57113,Bash/Shell/PowerShell;C;C++;Python
+57114,C++;Java;Objective-C;SQL;Swift
+57115,Bash/Shell/PowerShell;Java;Python
+57116,Bash/Shell/PowerShell;C;C++;C#;Objective-C;Python;Rust
+57117,C;C++;C#;HTML/CSS;PHP;SQL
+57118,C#;HTML/CSS;JavaScript;SQL;TypeScript
+57119,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;Other(s):
+57120,C#;Java;Kotlin
+57121,C;C++;C#;Java;Python;SQL
+57122,HTML/CSS;JavaScript;Python;SQL
+57123,Java;SQL
+57124,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+57125,HTML/CSS;Python;SQL;VBA
+57126,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+57127,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+57128,Java
+57129,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;Python;SQL;TypeScript
+57130,Bash/Shell/PowerShell;C++;Java;Python;SQL
+57131,Java;Python;VBA
+57132,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+57133,HTML/CSS;JavaScript;TypeScript;Other(s):
+57134,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57135,Bash/Shell/PowerShell;C;C++;C#;Python;Other(s):
+57136,C#;HTML/CSS;JavaScript;TypeScript
+57137,C;C++;Rust;Scala
+57138,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+57139,C#;VBA
+57140,Bash/Shell/PowerShell;C++;Go;HTML/CSS;PHP;Python;SQL
+57141,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+57142,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+57143,Bash/Shell/PowerShell;C;Other(s):
+57144,HTML/CSS;Java;JavaScript;Python;SQL
+57145,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+57146,Bash/Shell/PowerShell;C;C++;C#;Python
+57147,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+57148,Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+57149,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+57150,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R;SQL
+57152,C;C#;JavaScript;SQL;Other(s):
+57153,PHP;Python
+57154,Bash/Shell/PowerShell;Python;Other(s):
+57155,Bash/Shell/PowerShell;Java
+57156,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python
+57157,C++;Java
+57158,Bash/Shell/PowerShell;C#;JavaScript;PHP;Python;R;SQL
+57159,Bash/Shell/PowerShell;C++;Python
+57160,C++;HTML/CSS;JavaScript;PHP;SQL
+57161,HTML/CSS;JavaScript
+57162,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+57163,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;Scala;VBA
+57164,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+57165,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+57166,Assembly;C;C++;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+57167,Assembly;C;C#;HTML/CSS;Java;SQL
+57168,HTML/CSS;JavaScript;SQL;TypeScript
+57169,HTML/CSS;Java;JavaScript;Scala
+57170,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+57171,HTML/CSS;PHP;Python
+57172,C#;HTML/CSS;JavaScript;SQL
+57173,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+57174,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+57175,C;C#;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+57176,Bash/Shell/PowerShell;C#;SQL
+57177,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+57178,Bash/Shell/PowerShell;JavaScript;Python
+57179,HTML/CSS;Java;JavaScript;Python
+57180,C;HTML/CSS;Python;Other(s):
+57181,C#;Other(s):
+57182,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+57183,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+57184,Bash/Shell/PowerShell;Java;JavaScript;SQL
+57185,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+57186,C#;HTML/CSS;JavaScript;Python;SQL
+57187,C;HTML/CSS;Java;JavaScript;Python;R;SQL
+57188,JavaScript;Python;SQL;Other(s):
+57189,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+57190,C++;HTML/CSS;Java;JavaScript
+57191,HTML/CSS;JavaScript;PHP
+57192,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57193,C#;HTML/CSS;JavaScript;SQL
+57194,C#;Go;HTML/CSS;JavaScript;SQL
+57195,Java;Swift;TypeScript
+57196,Bash/Shell/PowerShell;C#;SQL
+57197,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+57198,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+57199,HTML/CSS;JavaScript
+57200,HTML/CSS;Java;JavaScript;PHP;R;SQL
+57201,C++;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+57202,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+57203,Swift
+57204,Java;JavaScript;TypeScript
+57205,Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+57206,C;Java;JavaScript;Python
+57207,Java;JavaScript;SQL;TypeScript
+57208,Bash/Shell/PowerShell;C;C++;Clojure;Java;PHP;Python;SQL
+57209,C#;Rust;SQL;TypeScript
+57210,C;C++;C#
+57211,HTML/CSS;Java;JavaScript;PHP;SQL
+57212,C#;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+57213,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+57214,Java
+57215,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+57216,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+57217,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+57218,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Kotlin;PHP;Python;SQL
+57219,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+57220,HTML/CSS;JavaScript
+57221,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+57222,HTML/CSS
+57223,HTML/CSS;Java;JavaScript;Other(s):
+57224,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57225,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+57226,C++;Go;HTML/CSS;JavaScript;Python;SQL
+57227,C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+57228,HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+57229,HTML/CSS;Java;JavaScript;PHP;SQL
+57230,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;TypeScript
+57231,C#;JavaScript;SQL
+57232,Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+57233,HTML/CSS;JavaScript;PHP;SQL
+57234,HTML/CSS;JavaScript
+57235,Bash/Shell/PowerShell;C;C++;Java
+57236,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+57238,HTML/CSS;Java;JavaScript
+57239,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+57240,C#;HTML/CSS;JavaScript;TypeScript
+57241,Java;JavaScript;SQL
+57242,HTML/CSS;Java;SQL
+57243,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57244,HTML/CSS;JavaScript;PHP;SQL
+57245,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+57246,HTML/CSS;JavaScript;Ruby
+57247,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript;VBA
+57248,R;SQL;VBA
+57249,C#;Java;Kotlin
+57250,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57251,C#;SQL
+57252,Python;Scala;SQL
+57253,C++;Java;Python
+57254,C#;SQL
+57255,C;HTML/CSS;Java;JavaScript;Python
+57256,C#;HTML/CSS;JavaScript;SQL;VBA
+57257,Objective-C;Swift
+57258,Bash/Shell/PowerShell;Java;Python;SQL
+57259,C++;Java;JavaScript
+57260,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+57261,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+57262,Go;Python;Ruby;Other(s):
+57263,Bash/Shell/PowerShell;C#
+57264,Bash/Shell/PowerShell;Go;Python
+57265,Assembly;Bash/Shell/PowerShell;C;C++;Python;VBA
+57266,C#;Go;HTML/CSS;Java;SQL;TypeScript;Other(s):
+57267,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+57268,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;TypeScript
+57269,HTML/CSS;Java;JavaScript;SQL
+57270,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+57271,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+57272,C;C++;HTML/CSS;Java;PHP;SQL
+57273,C#;HTML/CSS;JavaScript;Python;SQL
+57274,Go;Python
+57275,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+57276,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+57277,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Other(s):
+57278,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+57279,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57280,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+57281,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+57282,Assembly;C#;JavaScript;SQL;VBA;Other(s):
+57283,C#
+57284,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+57285,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57286,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+57287,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57288,C#;HTML/CSS;JavaScript;TypeScript
+57289,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+57290,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57291,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+57292,Go;HTML/CSS;JavaScript;PHP;Ruby
+57293,HTML/CSS;JavaScript
+57294,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57295,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly;Other(s):
+57296,Objective-C;Swift
+57297,HTML/CSS;Python;R
+57298,C#;JavaScript;SQL
+57299,C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+57300,Bash/Shell/PowerShell;C++;C#;Java
+57301,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Swift;TypeScript
+57302,HTML/CSS;JavaScript;PHP;SQL
+57303,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+57304,Bash/Shell/PowerShell;Java;JavaScript;SQL
+57305,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+57306,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+57307,HTML/CSS;JavaScript;Other(s):
+57308,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+57309,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;SQL;VBA;Other(s):
+57310,Assembly;HTML/CSS;JavaScript;TypeScript
+57312,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+57313,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;SQL
+57314,HTML/CSS;Java;JavaScript;PHP;SQL
+57315,HTML/CSS;Java;JavaScript;SQL
+57316,C++;C#;Java;Python
+57317,HTML/CSS;JavaScript;Ruby;SQL
+57318,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+57319,JavaScript;Swift
+57320,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Swift
+57321,Bash/Shell/PowerShell;C;Other(s):
+57322,C#;Clojure;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+57323,Bash/Shell/PowerShell;Go;Python
+57324,Java;Kotlin;Python;Swift
+57325,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57326,C#;Clojure;HTML/CSS;Java;JavaScript;SQL
+57327,HTML/CSS;Java;JavaScript;SQL
+57328,C++;C#;Python;SQL;VBA
+57329,C#
+57330,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+57331,C;C++;Java
+57332,C;HTML/CSS;Java;PHP;Python
+57333,HTML/CSS;JavaScript
+57334,Bash/Shell/PowerShell;C++;C#;Java;Python;Other(s):
+57335,HTML/CSS;JavaScript;PHP;Python;SQL
+57336,C++;Java;Kotlin
+57337,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+57338,HTML/CSS;JavaScript;VBA;Other(s):
+57339,Bash/Shell/PowerShell;JavaScript;VBA
+57340,Bash/Shell/PowerShell;Python;SQL
+57341,C;C++;Python
+57342,HTML/CSS;JavaScript;PHP;Python;R;SQL
+57343,HTML/CSS;JavaScript;PHP
+57344,C#
+57345,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+57346,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+57347,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57348,HTML/CSS;Java;JavaScript;TypeScript
+57349,HTML/CSS;JavaScript;TypeScript;Other(s):
+57350,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;Ruby;SQL;Other(s):
+57351,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57352,JavaScript;SQL
+57353,Bash/Shell/PowerShell;C;C++;Python;Rust
+57354,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+57355,HTML/CSS;Java;JavaScript;SQL
+57356,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+57357,Bash/Shell/PowerShell;C;C++;Python;Rust
+57358,HTML/CSS;JavaScript;Python;TypeScript
+57359,HTML/CSS;Java;JavaScript
+57360,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+57361,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+57362,C#;Java;JavaScript;PHP;Python;SQL
+57363,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+57364,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+57365,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+57366,HTML/CSS;JavaScript;WebAssembly
+57367,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+57368,Bash/Shell/PowerShell;Go;Java;Python;Scala;SQL
+57369,JavaScript;Python;Ruby
+57370,Java;Kotlin;PHP
+57371,Assembly;C;C#
+57372,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+57373,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+57374,Bash/Shell/PowerShell;C#;Java;SQL;TypeScript;Other(s):
+57375,Bash/Shell/PowerShell;Python;R
+57376,Java;Kotlin
+57377,Java
+57378,C;HTML/CSS;PHP;Python;SQL
+57379,C#;HTML/CSS;JavaScript;PHP
+57380,Bash/Shell/PowerShell;Go;Python;SQL
+57381,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+57382,C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+57383,JavaScript;PHP;Python;R;SQL
+57384,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Rust;Scala
+57385,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57386,C;HTML/CSS;Java;PHP;TypeScript
+57387,C#;HTML/CSS;Java;JavaScript;SQL
+57389,Python
+57390,C#;HTML/CSS;JavaScript;SQL
+57391,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+57392,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+57393,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57394,Assembly;Bash/Shell/PowerShell;C;C++
+57395,C#;HTML/CSS;JavaScript;SQL;TypeScript
+57396,Java
+57397,HTML/CSS;Java;JavaScript;PHP;SQL
+57398,Swift
+57399,C;C++;C#;Rust;Swift;TypeScript
+57400,C#;JavaScript;SQL;TypeScript
+57401,Python
+57402,C;C++
+57403,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+57404,Bash/Shell/PowerShell;C;C++;C#;F#;Java;Python;Rust;SQL;TypeScript;WebAssembly;Other(s):
+57405,Bash/Shell/PowerShell;JavaScript;Kotlin;PHP;SQL
+57406,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+57407,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+57408,C#
+57409,C#;F#;JavaScript;PHP
+57410,C;JavaScript;Python
+57411,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+57412,Bash/Shell/PowerShell;Python;R;SQL
+57413,C#;PHP;SQL
+57414,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;WebAssembly
+57415,HTML/CSS;Java;JavaScript;SQL;TypeScript
+57416,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL;Swift
+57417,HTML/CSS;Java;JavaScript;SQL
+57418,C;C++;SQL;VBA
+57419,C#;HTML/CSS;SQL
+57420,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+57421,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+57422,Bash/Shell/PowerShell;C++;Go;Python
+57423,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+57424,JavaScript;TypeScript
+57425,HTML/CSS;JavaScript;PHP
+57426,C++
+57427,Assembly;Bash/Shell/PowerShell;C;Java;Python
+57428,Bash/Shell/PowerShell;C;Python
+57429,C#;SQL
+57430,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+57431,HTML/CSS;JavaScript;PHP;SQL
+57432,Go;HTML/CSS;Python;TypeScript
+57433,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+57434,Java;Python;Scala
+57435,JavaScript;SQL
+57436,C;JavaScript;Python
+57437,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python
+57438,HTML/CSS;JavaScript
+57439,C#;HTML/CSS;JavaScript;Python
+57440,Elixir;Go;JavaScript;PHP;SQL
+57441,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+57442,SQL;VBA
+57443,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57444,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Swift
+57445,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+57446,Python
+57447,Ruby
+57448,HTML/CSS;JavaScript;Python
+57449,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+57450,C#;HTML/CSS;JavaScript;SQL;VBA
+57451,C#;HTML/CSS;SQL
+57452,HTML/CSS;JavaScript;TypeScript
+57453,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57454,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+57455,C++;Java;Kotlin
+57456,HTML/CSS;JavaScript;PHP;SQL
+57457,JavaScript;PHP;Python
+57458,HTML/CSS;Java;JavaScript;Python;Swift
+57459,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby
+57460,C;Python;SQL
+57461,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+57462,HTML/CSS;Java;JavaScript;Python;SQL
+57463,HTML/CSS;JavaScript;SQL
+57464,Java;Scala;SQL
+57465,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+57466,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+57467,C;Java
+57468,HTML/CSS;JavaScript;PHP;TypeScript
+57469,Java;SQL
+57470,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57471,Bash/Shell/PowerShell;C;C++;Python
+57473,C++;C#;HTML/CSS;SQL;VBA
+57474,Bash/Shell/PowerShell;C;Python
+57475,C#;HTML/CSS;JavaScript;TypeScript
+57476,HTML/CSS;JavaScript;PHP;SQL
+57477,JavaScript;PHP
+57478,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+57479,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+57480,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57481,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+57482,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Rust;WebAssembly
+57483,Bash/Shell/PowerShell;JavaScript;SQL
+57484,JavaScript
+57485,C#;Java;Objective-C
+57486,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+57487,HTML/CSS;JavaScript;PHP;SQL
+57488,JavaScript;Kotlin;TypeScript
+57489,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57490,HTML/CSS;Java;Python;SQL
+57491,Bash/Shell/PowerShell;Java;JavaScript
+57492,Java;SQL
+57493,C;C++;HTML/CSS;Java;Python;SQL
+57494,C#;SQL
+57495,C;Dart;Erlang;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+57496,Java
+57497,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+57498,C++;C#;SQL
+57499,HTML/CSS;JavaScript;PHP;SQL;VBA
+57500,C#;HTML/CSS;Java;JavaScript
+57501,Go;Python
+57502,Assembly;Bash/Shell/PowerShell;C;C++;Python
+57503,C;C++;Java
+57504,C;C++;Java;Python
+57505,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+57506,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+57508,Java;JavaScript;Kotlin;PHP
+57509,C++;Java;Swift
+57510,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+57511,HTML/CSS;Java;JavaScript;TypeScript
+57512,C#;HTML/CSS;Java;JavaScript;SQL
+57513,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+57514,C#;JavaScript;SQL;TypeScript
+57515,Assembly;JavaScript
+57516,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+57517,Bash/Shell/PowerShell;C;C++;C#;Python;Rust;SQL
+57518,C;C++;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+57519,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+57521,HTML/CSS;SQL;TypeScript
+57522,HTML/CSS;JavaScript;Ruby
+57523,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57524,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+57525,HTML/CSS;Java;JavaScript;PHP
+57526,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57527,HTML/CSS;JavaScript;Python;TypeScript
+57528,Ruby
+57529,HTML/CSS;JavaScript;PHP
+57530,C++;C#;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+57531,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+57532,Java;Kotlin;Other(s):
+57533,C#;HTML/CSS;Java;JavaScript
+57534,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python
+57535,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Swift;TypeScript;Other(s):
+57537,C;C++;C#;SQL;Other(s):
+57538,Bash/Shell/PowerShell;C;C#;Python
+57539,Clojure;HTML/CSS;SQL;Other(s):
+57540,HTML/CSS;JavaScript;SQL
+57541,HTML/CSS;JavaScript;TypeScript
+57542,HTML/CSS;JavaScript
+57543,Bash/Shell/PowerShell;C++;Python
+57544,C#;HTML/CSS;JavaScript;SQL;TypeScript
+57545,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+57546,Bash/Shell/PowerShell;C#;SQL;Swift
+57547,Java
+57548,HTML/CSS;JavaScript;Python
+57549,C++;C#;VBA;Other(s):
+57550,Assembly;C;C++;Python
+57551,R
+57552,Bash/Shell/PowerShell;Java;Python
+57553,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;Rust
+57554,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+57555,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+57556,C++;C#;JavaScript;SQL
+57557,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+57558,Bash/Shell/PowerShell;Python;SQL;Other(s):
+57559,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+57560,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+57561,HTML/CSS;JavaScript;PHP;SQL
+57562,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+57563,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+57565,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+57566,JavaScript;PHP;SQL
+57567,C#;HTML/CSS;JavaScript;SQL;TypeScript
+57568,HTML/CSS;Java;SQL
+57569,Bash/Shell/PowerShell;C;R;SQL;VBA
+57570,Assembly;C;Erlang;Python;SQL
+57571,Assembly;C;HTML/CSS;Java;PHP;SQL
+57572,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57573,HTML/CSS;JavaScript;PHP;Other(s):
+57574,Assembly;C;C++;Java;Python
+57575,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+57576,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+57577,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+57578,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+57579,SQL;Other(s):
+57580,Bash/Shell/PowerShell;C;Java;Python
+57581,C#;HTML/CSS;JavaScript
+57582,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+57583,C++
+57584,Assembly;C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+57585,C#;JavaScript;Python
+57586,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+57587,C#;HTML/CSS;JavaScript;SQL;Other(s):
+57588,Python
+57589,Bash/Shell/PowerShell;C;Python;Other(s):
+57590,C#;Java;Kotlin;Python
+57591,Kotlin;Python;Ruby
+57592,HTML/CSS;JavaScript;PHP;SQL
+57593,C;Go;PHP;Python;Scala
+57594,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+57595,C#;HTML/CSS;JavaScript;SQL
+57596,Bash/Shell/PowerShell;C;Python
+57597,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+57598,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+57599,HTML/CSS;Java;JavaScript
+57600,JavaScript;Ruby
+57601,Clojure;HTML/CSS;JavaScript
+57602,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+57603,Java
+57604,Bash/Shell/PowerShell;HTML/CSS;Python
+57605,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57606,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+57607,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;Scala;SQL
+57608,SQL;Other(s):
+57609,HTML/CSS;JavaScript;TypeScript
+57610,C#;Other(s):
+57611,C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL
+57612,HTML/CSS;Java;JavaScript;Kotlin;SQL
+57613,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+57614,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+57615,HTML/CSS;JavaScript;PHP;Python;SQL
+57617,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+57618,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+57619,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+57620,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+57621,C#;HTML/CSS;JavaScript;SQL;TypeScript
+57622,C#;HTML/CSS;JavaScript;SQL
+57623,C++
+57624,Java
+57625,C;C++;Java;JavaScript;Python;Scala;SQL
+57626,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Other(s):
+57627,HTML/CSS;Java;JavaScript;PHP;SQL
+57628,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+57629,HTML/CSS;JavaScript;PHP
+57630,C;C#;Java;JavaScript;PHP;SQL;TypeScript
+57631,Python
+57632,Java;JavaScript;TypeScript
+57633,Java;Kotlin;SQL
+57634,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+57635,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57636,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+57637,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+57638,C#;SQL
+57639,Java;Python
+57640,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+57641,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+57642,C#;HTML/CSS;JavaScript;SQL
+57643,HTML/CSS;JavaScript;TypeScript
+57644,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+57645,HTML/CSS;Java;JavaScript;Python;SQL
+57646,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+57647,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57648,C;C++;C#;HTML/CSS;Java;Python;SQL
+57649,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+57650,Java
+57651,Python
+57652,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57653,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+57654,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+57655,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+57656,C#;HTML/CSS;JavaScript;Rust;TypeScript
+57657,C#
+57658,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57659,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+57660,HTML/CSS;Java;JavaScript;PHP;SQL
+57661,C#;HTML/CSS;JavaScript;Python;TypeScript
+57662,Assembly;JavaScript
+57663,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+57665,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+57666,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+57667,HTML/CSS;JavaScript;PHP;SQL
+57668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57669,HTML/CSS;JavaScript;PHP;SQL
+57670,Elixir;HTML/CSS;JavaScript;TypeScript
+57671,HTML/CSS;Java;JavaScript;SQL
+57672,C;C++;HTML/CSS;Java;Python
+57673,C++;HTML/CSS;Java;JavaScript;Python;SQL
+57674,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+57675,Bash/Shell/PowerShell;Go;PHP
+57676,HTML/CSS;JavaScript;PHP;SQL
+57677,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+57678,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+57679,C;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+57680,C;C++
+57681,Bash/Shell/PowerShell;Dart;Go;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+57682,C++;HTML/CSS;JavaScript
+57683,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+57684,Bash/Shell/PowerShell;Java;Kotlin;Python
+57685,Bash/Shell/PowerShell;Dart;Java;SQL
+57686,Assembly;Bash/Shell/PowerShell;C;C#;JavaScript;Python;SQL;Other(s):
+57687,Bash/Shell/PowerShell;Python
+57688,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+57689,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+57690,C;C++;Java;JavaScript;TypeScript
+57691,HTML/CSS;Java;JavaScript;SQL
+57692,C++;C#;SQL
+57693,Go;JavaScript;PHP;SQL
+57694,C;C++;C#;HTML/CSS;SQL
+57695,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+57696,Bash/Shell/PowerShell;C#;Python
+57697,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+57698,C;Java;JavaScript;Python
+57699,C;Java;JavaScript;SQL
+57700,HTML/CSS;JavaScript;PHP
+57701,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+57702,Java;JavaScript
+57703,Bash/Shell/PowerShell;C;HTML/CSS;Other(s):
+57704,Assembly;Bash/Shell/PowerShell;C#;SQL
+57705,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+57706,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+57707,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java
+57708,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57709,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57710,HTML/CSS
+57711,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57712,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+57713,HTML/CSS;JavaScript;Python
+57714,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Other(s):
+57715,HTML/CSS;JavaScript;PHP
+57716,C#;HTML/CSS;PHP
+57717,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+57718,HTML/CSS;Java;JavaScript;SQL;TypeScript
+57719,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+57720,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Ruby;SQL
+57721,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57722,Bash/Shell/PowerShell;C#;SQL;VBA
+57723,C++;Objective-C;Swift
+57724,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+57725,C;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+57726,C#;HTML/CSS;Java;Objective-C;SQL
+57727,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+57728,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+57729,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+57730,C;JavaScript;Ruby
+57731,C++;Java;Python
+57732,Bash/Shell/PowerShell;Erlang;Go;Python
+57733,Java;Python
+57734,Assembly;C++;HTML/CSS;JavaScript;Python
+57735,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+57736,HTML/CSS;JavaScript;PHP;TypeScript
+57737,Java;JavaScript
+57738,C;Go;Java;Python;Scala
+57739,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+57740,HTML/CSS;JavaScript;PHP;SQL
+57741,HTML/CSS;JavaScript;PHP;Other(s):
+57742,C++
+57743,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+57744,HTML/CSS;Java;JavaScript;Kotlin;SQL
+57745,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL
+57746,JavaScript;Python
+57747,Bash/Shell/PowerShell;C++;C#;Kotlin;Objective-C;Python;Rust
+57748,Bash/Shell/PowerShell;Go;PHP;Python
+57749,HTML/CSS;Java;SQL
+57750,HTML/CSS;Java;JavaScript;Python;SQL
+57751,C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+57752,C#;HTML/CSS;JavaScript;PHP;SQL
+57753,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+57754,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+57755,C;C++;Java
+57756,Bash/Shell/PowerShell;C++;Python;Other(s):
+57757,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+57758,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Rust;WebAssembly;Other(s):
+57759,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+57760,C;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+57761,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+57762,C#;HTML/CSS;JavaScript
+57763,JavaScript;Python;Ruby;SQL
+57764,C#;HTML/CSS;JavaScript;TypeScript
+57765,HTML/CSS;Java;JavaScript;SQL
+57766,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+57767,C++;Erlang
+57768,Other(s):
+57769,Java
+57770,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+57771,Bash/Shell/PowerShell;Python;Ruby;Rust;SQL
+57772,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+57773,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+57774,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+57775,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+57776,HTML/CSS;Java;JavaScript;SQL;TypeScript
+57777,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+57778,C#;Java;JavaScript;TypeScript
+57779,HTML/CSS;JavaScript;PHP
+57780,JavaScript;PHP
+57781,HTML/CSS;JavaScript;PHP;SQL;VBA
+57782,Assembly;C++;HTML/CSS;Java;JavaScript;Python
+57783,Bash/Shell/PowerShell;JavaScript;PHP
+57784,Assembly;Bash/Shell/PowerShell;C;C++;Python
+57786,Dart;Java;Kotlin;R;SQL
+57787,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57788,C#;Erlang;HTML/CSS;Java;JavaScript;Scala;SQL
+57789,Assembly;C;C++;Java;JavaScript;Python
+57790,HTML/CSS;JavaScript
+57791,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+57793,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;SQL
+57794,HTML/CSS;JavaScript;TypeScript
+57795,C#;HTML/CSS;Java;JavaScript;Python;SQL
+57796,HTML/CSS;JavaScript;Python;SQL;VBA
+57797,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+57798,C;C++;HTML/CSS;JavaScript;PHP;SQL;Swift
+57799,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+57800,HTML/CSS;JavaScript;Python;SQL
+57801,Go;Java;JavaScript;Python;TypeScript
+57802,HTML/CSS;JavaScript;Python;SQL;TypeScript
+57804,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+57805,Bash/Shell/PowerShell;SQL
+57806,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+57807,JavaScript;PHP;SQL
+57808,C++;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+57809,Bash/Shell/PowerShell;JavaScript;TypeScript
+57810,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+57811,HTML/CSS;JavaScript;PHP;Python;SQL
+57812,SQL
+57813,Assembly;C;C++;C#;HTML/CSS;SQL
+57814,C++;C#;F#
+57815,HTML/CSS;JavaScript;Python;SQL
+57816,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+57817,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+57818,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+57819,C#;HTML/CSS;JavaScript;Python;SQL
+57820,HTML/CSS;Python
+57821,Bash/Shell/PowerShell;C++;Clojure;Java;JavaScript;Python;Swift;Other(s):
+57822,HTML/CSS;Java;JavaScript;SQL
+57823,C;C++;HTML/CSS;JavaScript;Python;Ruby
+57824,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL
+57825,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+57826,C++;HTML/CSS;JavaScript;Python
+57827,Elixir;HTML/CSS;JavaScript;PHP;Python;SQL
+57828,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+57829,C++;C#;HTML/CSS;JavaScript;SQL;VBA
+57830,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+57831,C;C++;HTML/CSS;PHP;SQL
+57832,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+57833,HTML/CSS;Java;JavaScript;PHP
+57834,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+57835,C;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;TypeScript
+57836,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+57837,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;Swift;Other(s):
+57838,HTML/CSS;JavaScript
+57839,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+57840,C#;HTML/CSS;JavaScript;SQL;Other(s):
+57841,JavaScript;SQL;TypeScript;Other(s):
+57842,Bash/Shell/PowerShell;JavaScript;Python;R;Other(s):
+57843,HTML/CSS;Java;JavaScript;SQL
+57844,Bash/Shell/PowerShell;Java;Kotlin;PHP;SQL
+57845,C++;C#;Clojure;Python
+57846,HTML/CSS;JavaScript;PHP;SQL
+57848,Bash/Shell/PowerShell;C;Python;SQL;VBA
+57849,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+57850,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57851,C++;C#;Go;HTML/CSS;Java;JavaScript;SQL
+57853,HTML/CSS;Python
+57854,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+57855,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+57856,HTML/CSS;Java;JavaScript;SQL;TypeScript
+57857,Go;HTML/CSS;JavaScript
+57858,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;VBA
+57859,C;Go;Java;JavaScript;PHP;Python;Ruby;SQL
+57860,HTML/CSS;Java;JavaScript;Python;Scala;Other(s):
+57861,C#;HTML/CSS;TypeScript
+57862,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;Other(s):
+57863,HTML/CSS;Java;JavaScript;PHP;SQL
+57864,Other(s):
+57865,Bash/Shell/PowerShell;R
+57866,C++;C#;Other(s):
+57867,C#;HTML/CSS;JavaScript;SQL;TypeScript
+57868,Bash/Shell/PowerShell;C;Python
+57869,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+57870,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+57871,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+57872,HTML/CSS;JavaScript
+57873,C;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+57874,Ruby
+57875,C#;JavaScript
+57876,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+57877,HTML/CSS;JavaScript;SQL
+57878,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+57879,C#;HTML/CSS;JavaScript;TypeScript
+57880,C#;HTML/CSS;JavaScript;SQL
+57881,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Other(s):
+57882,HTML/CSS;Java
+57883,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+57884,C;C++;C#;Other(s):
+57885,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+57886,HTML/CSS;JavaScript
+57887,Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python
+57888,Bash/Shell/PowerShell;SQL;VBA
+57889,C#;HTML/CSS;JavaScript;R;SQL
+57890,Bash/Shell/PowerShell;Python
+57891,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+57892,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+57893,R
+57894,Assembly;Java;Python
+57895,Java;JavaScript;Python;Scala;SQL;Swift
+57896,C++;Dart;Go;Java;JavaScript;Kotlin;Objective-C;Python;Rust;Swift;TypeScript
+57897,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+57898,HTML/CSS;Java;JavaScript;PHP;SQL
+57899,Objective-C;Swift
+57900,Go;HTML/CSS;JavaScript;TypeScript
+57901,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+57902,C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+57903,C++
+57904,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+57905,Go;HTML/CSS;Java;JavaScript;R;Scala
+57906,C#;JavaScript
+57907,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+57908,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+57909,Bash/Shell/PowerShell;JavaScript;Ruby;Scala
+57910,C++;Python
+57911,Objective-C;Swift
+57912,Java
+57914,Python
+57915,HTML/CSS;JavaScript;PHP
+57916,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL;TypeScript
+57917,C#
+57918,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL;TypeScript
+57919,C++;C#;SQL
+57920,C++;HTML/CSS;Java;SQL
+57921,Bash/Shell/PowerShell;C++
+57922,C++
+57923,HTML/CSS;JavaScript;PHP;SQL
+57924,HTML/CSS;Java;JavaScript;Ruby
+57925,Java;Ruby;SQL
+57926,HTML/CSS;JavaScript;Ruby;SQL
+57927,Bash/Shell/PowerShell;Clojure;Elixir;JavaScript;Python;Ruby;SQL;Other(s):
+57928,C;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+57929,HTML/CSS;JavaScript
+57930,Bash/Shell/PowerShell;C;C++;Java
+57931,Java
+57932,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+57933,C++;C#;HTML/CSS;Java;JavaScript;SQL
+57934,Java;JavaScript;TypeScript
+57935,Bash/Shell/PowerShell;Go;Other(s):
+57937,HTML/CSS;Java;JavaScript;SQL;TypeScript
+57938,C++;C#;HTML/CSS;TypeScript
+57939,C#;HTML/CSS;JavaScript;SQL
+57940,Bash/Shell/PowerShell;JavaScript;PHP
+57941,JavaScript;Scala;TypeScript
+57942,HTML/CSS;Java;JavaScript;Python;Rust;SQL
+57943,Bash/Shell/PowerShell;C;Elixir;Python
+57944,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+57945,Bash/Shell/PowerShell;PHP;SQL
+57946,Assembly;C;C++
+57947,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+57948,Bash/Shell/PowerShell;R
+57949,HTML/CSS;JavaScript;PHP;SQL
+57950,C#;Java;JavaScript;Python
+57951,C#;HTML/CSS;JavaScript;PHP;SQL
+57952,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+57953,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+57954,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+57955,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+57956,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+57957,C;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+57959,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+57960,Java
+57961,Assembly;Bash/Shell/PowerShell;C;C#;Java;Rust
+57962,VBA
+57963,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+57964,C#;SQL
+57965,Bash/Shell/PowerShell;Java;Python
+57966,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL;Other(s):
+57967,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+57968,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+57969,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+57970,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+57971,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python
+57972,C;Java;Python;Other(s):
+57973,JavaScript;Python
+57974,HTML/CSS;Java;JavaScript;SQL
+57975,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+57976,Java;JavaScript;PHP;SQL;TypeScript
+57977,C++;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+57978,Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+57979,Java;PHP
+57980,C#;HTML/CSS;JavaScript;SQL
+57981,SQL;Other(s):
+57982,C#;HTML/CSS;JavaScript;SQL
+57983,Swift
+57984,HTML/CSS;SQL
+57985,C#;HTML/CSS;JavaScript;Python
+57986,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+57987,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+57988,C++;C#;HTML/CSS;JavaScript;Python;SQL
+57989,HTML/CSS;Java;JavaScript;SQL;TypeScript
+57990,Java;JavaScript;Python;Swift;TypeScript
+57991,C;C++;HTML/CSS;Java;JavaScript
+57992,HTML/CSS;Java;JavaScript;PHP;SQL
+57993,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+57994,Go;JavaScript;PHP;R
+57995,C#;HTML/CSS;SQL
+57996,HTML/CSS;JavaScript;Ruby;SQL
+57997,Java;Kotlin;TypeScript
+57998,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;TypeScript
+57999,HTML/CSS;JavaScript;PHP;TypeScript
+58000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+58001,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+58002,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+58003,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+58004,HTML/CSS;Java;JavaScript;TypeScript
+58005,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+58006,C#;HTML/CSS;JavaScript;Python
+58008,HTML/CSS;Java;SQL;TypeScript
+58009,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+58010,C;C++;HTML/CSS;Python
+58011,HTML/CSS;JavaScript
+58012,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+58013,Scala;TypeScript
+58014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+58015,Bash/Shell/PowerShell;Python;Ruby
+58016,Bash/Shell/PowerShell;Java;JavaScript;SQL
+58017,HTML/CSS;JavaScript;PHP;Ruby;SQL
+58018,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Swift
+58019,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+58020,Go;Java;Scala
+58021,Swift
+58022,HTML/CSS;Java;JavaScript
+58023,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58024,C;C++;Java;Python
+58025,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Other(s):
+58026,HTML/CSS;Java;SQL
+58027,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+58028,HTML/CSS;Java;JavaScript;Scala
+58029,Swift
+58030,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+58031,C++;Objective-C;Python;R;SQL
+58032,Python;R
+58033,Assembly;Bash/Shell/PowerShell;C;C#;JavaScript;TypeScript
+58034,C;C++;HTML/CSS;JavaScript
+58035,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+58036,Bash/Shell/PowerShell;C;HTML/CSS;Python;Other(s):
+58037,Java;JavaScript;SQL
+58038,Kotlin
+58039,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+58040,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL;TypeScript
+58041,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+58042,Swift
+58043,C;C++;HTML/CSS;JavaScript;PHP
+58044,Java;PHP;Python;Scala;SQL
+58045,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+58046,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58047,HTML/CSS;Java;Kotlin;PHP
+58048,C++;C#;Clojure;HTML/CSS;Java;JavaScript;SQL
+58049,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+58050,Bash/Shell/PowerShell;R
+58051,C#;Other(s):
+58052,Java;JavaScript;TypeScript;Other(s):
+58053,HTML/CSS;JavaScript;SQL;Swift
+58054,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+58055,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58056,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+58057,Bash/Shell/PowerShell;C;Python;SQL
+58058,C#;Java;JavaScript;Kotlin
+58059,JavaScript;PHP
+58060,HTML/CSS;JavaScript;Other(s):
+58061,C#;HTML/CSS;SQL
+58062,C++;C#;Java;JavaScript;Kotlin;SQL
+58063,C#;HTML/CSS;JavaScript
+58064,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58065,C#;Go;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+58066,Elixir;Go;HTML/CSS;JavaScript;Python;R;Ruby
+58067,Bash/Shell/PowerShell;Python;SQL
+58068,C;HTML/CSS;Java;JavaScript;SQL
+58069,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58070,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+58071,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+58072,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+58073,Java
+58074,Other(s):
+58075,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;TypeScript
+58076,C++;HTML/CSS;R
+58077,HTML/CSS;JavaScript;PHP;Python
+58078,Assembly;Bash/Shell/PowerShell;C
+58079,C;C++;HTML/CSS;Java;JavaScript;R;SQL
+58080,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+58081,Java;Kotlin;Objective-C;Swift
+58082,HTML/CSS;JavaScript;Ruby;TypeScript
+58083,HTML/CSS;JavaScript;PHP;SQL
+58084,Clojure;Go;Java;JavaScript;Python;Ruby;SQL
+58085,HTML/CSS;JavaScript;Python
+58086,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+58087,C++
+58088,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+58089,Bash/Shell/PowerShell;C;C++;Go
+58090,Bash/Shell/PowerShell;Python;R
+58091,Objective-C;Swift
+58092,Bash/Shell/PowerShell;Java;Python;R;SQL
+58093,Bash/Shell/PowerShell;Go;Java;Python
+58094,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+58095,C#;HTML/CSS;JavaScript;PHP;TypeScript
+58096,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+58097,Java;JavaScript;Python;SQL
+58098,HTML/CSS;JavaScript;Ruby
+58099,HTML/CSS;Java;JavaScript;PHP;SQL
+58100,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+58101,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby
+58102,Assembly;C;C++;VBA
+58103,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R
+58104,Java;SQL
+58105,Clojure;Java;JavaScript;Python;R;SQL
+58106,Assembly;Bash/Shell/PowerShell;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Objective-C;Ruby;Rust;Scala;SQL
+58107,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58108,Clojure;HTML/CSS;Java;JavaScript
+58109,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+58110,Java;Python;Scala;SQL
+58111,C++;Python
+58112,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+58113,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+58114,Clojure;HTML/CSS;JavaScript;Other(s):
+58115,HTML/CSS;JavaScript;PHP;SQL
+58116,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+58117,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58118,HTML/CSS;Java;JavaScript;Python;SQL
+58119,HTML/CSS;JavaScript;PHP;SQL
+58120,Bash/Shell/PowerShell;C;C++;Kotlin;Objective-C;Python;Ruby;Swift
+58121,HTML/CSS;Java;SQL
+58122,Bash/Shell/PowerShell;C++;C#;SQL
+58123,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+58124,HTML/CSS;Java;JavaScript;SQL;TypeScript
+58125,C#;HTML/CSS;JavaScript;SQL;Other(s):
+58126,HTML/CSS;JavaScript
+58127,Python;R;SQL
+58128,Assembly;Bash/Shell/PowerShell;C;Python;Rust
+58129,C;C++;HTML/CSS;JavaScript;PHP
+58130,C++;C#;HTML/CSS;Java;JavaScript;SQL
+58131,C#;F#;Java;Python;SQL;TypeScript
+58132,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+58133,C#;SQL
+58134,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+58135,C;C++;Python;Other(s):
+58136,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+58137,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58138,Python;R;SQL
+58139,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+58140,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+58141,HTML/CSS;JavaScript;PHP;SQL
+58142,Go;JavaScript;Python
+58143,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+58144,JavaScript;SQL;TypeScript
+58145,Bash/Shell/PowerShell;C#;Python;SQL
+58146,C++;Python;Swift;TypeScript
+58147,Bash/Shell/PowerShell;C;C++
+58148,TypeScript;Other(s):
+58150,Bash/Shell/PowerShell;C++;Go;Python;SQL
+58151,Java;JavaScript;Python;SQL;TypeScript
+58152,C++;HTML/CSS;JavaScript;PHP
+58153,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+58154,Assembly;Erlang;Python;R
+58155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL;TypeScript
+58156,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL;TypeScript;VBA
+58157,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+58158,Dart;Java;JavaScript;Kotlin;TypeScript
+58160,HTML/CSS;JavaScript;Python
+58161,Bash/Shell/PowerShell;C++;C#;Ruby;VBA
+58162,Java;JavaScript;Objective-C;Swift
+58163,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+58164,C;C++;Dart;Go;HTML/CSS;JavaScript;Kotlin;Python;Swift;TypeScript
+58165,Objective-C
+58166,C#;HTML/CSS
+58167,HTML/CSS;Java;JavaScript;Kotlin
+58168,Elixir;Go;HTML/CSS;JavaScript;Ruby;Rust;SQL
+58169,HTML/CSS;JavaScript;Kotlin;PHP
+58170,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+58171,JavaScript;Swift;Other(s):
+58172,HTML/CSS;Python;SQL
+58173,JavaScript;Ruby;TypeScript
+58174,C++;C#;Java
+58175,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+58176,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;Python;R;SQL
+58177,HTML/CSS;JavaScript;PHP;Python
+58178,C#;HTML/CSS;JavaScript;SQL
+58179,Python;R;VBA
+58180,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+58181,Assembly;Other(s):
+58182,HTML/CSS;Java;JavaScript;SQL
+58183,HTML/CSS;JavaScript;TypeScript
+58184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58185,HTML/CSS;Java;JavaScript;Kotlin
+58186,C#;HTML/CSS;JavaScript;SQL;VBA
+58187,C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;VBA
+58188,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Python;SQL
+58189,Bash/Shell/PowerShell;C;C++;Clojure;Erlang;Go;Java;Python;Ruby;Scala;SQL
+58190,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+58192,Bash/Shell/PowerShell;C#;Java;Other(s):
+58193,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58194,Bash/Shell/PowerShell;C#
+58195,HTML/CSS;Java;JavaScript;Scala
+58196,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+58197,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+58198,C#;HTML/CSS;JavaScript;PHP;SQL
+58199,C;JavaScript;Python
+58200,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+58201,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+58202,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+58203,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+58204,HTML/CSS;JavaScript;PHP;TypeScript
+58206,C#;Java
+58207,Java;Kotlin
+58208,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+58209,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+58210,C#;HTML/CSS;JavaScript;TypeScript
+58211,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+58212,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58213,C#;Elixir;Erlang;JavaScript;SQL
+58214,HTML/CSS;JavaScript;PHP;SQL
+58215,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+58216,JavaScript;R;SQL
+58217,Java
+58218,C++;Java;SQL
+58219,HTML/CSS;JavaScript;PHP;Python;SQL
+58220,HTML/CSS;JavaScript;SQL;TypeScript
+58221,Rust
+58222,Bash/Shell/PowerShell;Python
+58223,HTML/CSS;Java;JavaScript;PHP;Ruby
+58224,Bash/Shell/PowerShell;C#;Clojure;F#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+58225,Java;Kotlin
+58226,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+58227,Java;SQL
+58229,C#;HTML/CSS;JavaScript;SQL
+58230,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+58231,C#;VBA
+58232,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+58233,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+58234,HTML/CSS;JavaScript
+58235,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58236,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+58237,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Scala;SQL
+58238,Bash/Shell/PowerShell;C++;Java;Python
+58239,Bash/Shell/PowerShell;JavaScript;Python;SQL
+58240,HTML/CSS;JavaScript;PHP;Python;R;SQL
+58241,HTML/CSS;JavaScript;Python;Other(s):
+58242,C;C++;HTML/CSS;Java;JavaScript;Python
+58243,C#;Go;HTML/CSS;Java;JavaScript;SQL
+58244,C#;HTML/CSS;JavaScript;SQL;Other(s):
+58245,Assembly;C;C++;C#;HTML/CSS;Java;PHP;SQL
+58246,Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+58247,JavaScript
+58248,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+58249,C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+58250,C#;HTML/CSS;JavaScript;TypeScript
+58251,C;HTML/CSS;JavaScript;PHP;SQL
+58252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;VBA
+58253,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+58254,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+58255,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;Scala;SQL
+58256,Bash/Shell/PowerShell;C#;JavaScript;R
+58257,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+58258,Bash/Shell/PowerShell;C#;Python;SQL;TypeScript
+58259,HTML/CSS;Java;Rust;SQL;TypeScript
+58260,Ruby
+58261,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58262,C;C++;HTML/CSS;Java;JavaScript;PHP
+58263,HTML/CSS;JavaScript;Python;TypeScript
+58264,HTML/CSS;Java;JavaScript;Python;SQL
+58265,C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+58266,C++;Java;Python;SQL
+58267,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;TypeScript;WebAssembly
+58268,C;C++;Python
+58269,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+58270,C;C#;Java;PHP
+58271,C#;F#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+58272,HTML/CSS;Java;JavaScript;PHP;SQL
+58273,PHP;Python
+58274,Bash/Shell/PowerShell;Python;SQL
+58275,Java;Kotlin;PHP;Python;SQL
+58276,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58277,HTML/CSS;JavaScript;PHP
+58278,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58279,C#;Go;Swift
+58280,HTML/CSS
+58281,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+58282,C#;SQL;Other(s):
+58283,Python;Other(s):
+58284,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+58285,HTML/CSS;JavaScript;Ruby;SQL
+58286,JavaScript;Objective-C;Ruby;Swift
+58287,HTML/CSS;JavaScript;Python;SQL;VBA
+58288,HTML/CSS;JavaScript;Python;SQL
+58289,Bash/Shell/PowerShell;C++;Other(s):
+58290,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58291,C#;JavaScript
+58292,HTML/CSS;JavaScript;PHP;VBA
+58293,C#;HTML/CSS;JavaScript
+58294,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+58295,Bash/Shell/PowerShell;C++;C#;Elixir;Erlang;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+58296,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+58297,Bash/Shell/PowerShell;Python
+58298,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+58299,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58300,Elixir;JavaScript
+58301,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+58302,Assembly;C;C++;C#;Erlang;JavaScript;Python;SQL
+58303,C#;HTML/CSS;Java;JavaScript
+58304,HTML/CSS;JavaScript;PHP;SQL
+58305,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+58306,Bash/Shell/PowerShell;C;Java
+58307,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58308,Bash/Shell/PowerShell;C++;Python
+58309,JavaScript;Other(s):
+58310,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+58311,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+58312,C++;Python
+58313,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58314,Bash/Shell/PowerShell;Go;HTML/CSS;Objective-C;Python;SQL
+58315,Bash/Shell/PowerShell;C#;Python;SQL
+58316,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;VBA
+58317,Assembly;C;C++;HTML/CSS;Rust;Other(s):
+58318,C++;Elixir;Java;Python
+58319,Java;JavaScript;Scala;TypeScript;Other(s):
+58320,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+58321,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58322,C#;TypeScript
+58323,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+58324,C++;Java;Python;SQL;Other(s):
+58326,Bash/Shell/PowerShell;C;C++;VBA
+58327,HTML/CSS;JavaScript;Python;SQL
+58328,C;C++;Java
+58329,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+58330,Bash/Shell/PowerShell;C;Python;Other(s):
+58331,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58332,HTML/CSS;JavaScript;Python;SQL
+58333,C;C++;Java;JavaScript;Kotlin;SQL
+58334,C#;HTML/CSS;Java;JavaScript;Python;SQL
+58335,Bash/Shell/PowerShell;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+58336,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+58337,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+58338,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58339,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+58340,Assembly;Rust
+58341,C;C++;Python
+58342,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+58343,C++;Elixir;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+58344,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+58345,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+58346,Elixir;HTML/CSS;JavaScript;PHP
+58347,HTML/CSS;Java;JavaScript;SQL;TypeScript
+58348,HTML/CSS;JavaScript;Ruby;SQL
+58349,Java
+58350,HTML/CSS;JavaScript;PHP;SQL
+58351,Java;Objective-C;Swift
+58352,SQL
+58353,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58354,Java
+58355,HTML/CSS;JavaScript;PHP
+58356,C#;Java;Python
+58357,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58358,Bash/Shell/PowerShell;Java;Python;Ruby;Scala;SQL
+58359,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+58360,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+58361,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+58362,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+58363,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58364,C;C++;Objective-C;Swift
+58365,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Scala;SQL
+58366,HTML/CSS;Java;JavaScript;PHP;Python
+58367,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+58368,Bash/Shell/PowerShell;Java;JavaScript
+58369,Go;Kotlin;Python;SQL;Other(s):
+58370,Bash/Shell/PowerShell
+58371,C;C++;Java;Python;R
+58372,C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+58373,C#;HTML/CSS;JavaScript;SQL
+58374,C++;Java;Kotlin;Python
+58375,HTML/CSS;JavaScript;Python;R;Ruby
+58376,HTML/CSS;JavaScript;Ruby
+58377,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;SQL
+58378,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58379,HTML/CSS;JavaScript;PHP;Python;SQL
+58380,Elixir
+58381,C;HTML/CSS;Java;JavaScript;PHP;Python
+58382,F#;HTML/CSS;JavaScript;PHP;TypeScript
+58383,C#;Go;JavaScript;Python;R;SQL;TypeScript
+58384,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+58385,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+58386,HTML/CSS;JavaScript;Ruby
+58387,HTML/CSS;JavaScript;PHP;Python;SQL
+58388,HTML/CSS;JavaScript;TypeScript
+58389,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+58390,Python;Other(s):
+58391,HTML/CSS;JavaScript;PHP
+58392,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+58393,Clojure;Java
+58394,HTML/CSS;Java;JavaScript
+58395,PHP
+58396,HTML/CSS;Java;JavaScript;PHP;SQL
+58397,HTML/CSS;JavaScript;PHP
+58398,Python;SQL;Other(s):
+58399,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;R;SQL
+58400,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+58401,Bash/Shell/PowerShell;C#;Python
+58402,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+58403,PHP
+58404,C++;Python;Rust;TypeScript
+58405,HTML/CSS;JavaScript;Other(s):
+58406,Java;JavaScript
+58407,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58408,Bash/Shell/PowerShell;C#;HTML/CSS;Python;TypeScript
+58409,Assembly;Bash/Shell/PowerShell;C;C++;Objective-C;Rust;SQL;Swift;Other(s):
+58410,HTML/CSS;Java;JavaScript;Other(s):
+58411,HTML/CSS;Java;JavaScript;PHP;Python;Swift
+58412,Clojure;HTML/CSS;SQL
+58413,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+58414,C;C++;Java
+58415,C#;Go;HTML/CSS;JavaScript;Ruby
+58416,HTML/CSS;JavaScript;PHP;Python;SQL
+58417,Java;JavaScript;SQL
+58418,C++;Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+58419,C;C++;C#;HTML/CSS;Java;JavaScript
+58420,C++;HTML/CSS;Java;JavaScript;TypeScript
+58421,C++;JavaScript
+58422,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58423,JavaScript;Python;Scala
+58424,Bash/Shell/PowerShell;C++;Python;SQL
+58425,HTML/CSS;JavaScript;Python;SQL
+58426,Assembly;Bash/Shell/PowerShell;C;C++;Java;Kotlin;Python;R
+58427,Bash/Shell/PowerShell;C#;HTML/CSS;R;SQL;VBA
+58428,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+58429,C#;HTML/CSS;JavaScript;Python
+58430,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+58431,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;SQL
+58432,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+58433,C#;HTML/CSS;JavaScript
+58434,Bash/Shell/PowerShell;C++;Java;Python;Rust;Scala;Other(s):
+58435,HTML/CSS;JavaScript;PHP;SQL
+58436,Assembly;C;C++;HTML/CSS
+58437,Python;Other(s):
+58438,C#;HTML/CSS;Java;JavaScript;SQL
+58439,C++;HTML/CSS;Java;JavaScript;Python;SQL
+58440,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+58441,HTML/CSS;JavaScript;PHP;SQL
+58442,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Other(s):
+58443,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL;Other(s):
+58444,Bash/Shell/PowerShell;C;C++;PHP;Python;SQL
+58445,C#;HTML/CSS;JavaScript;Python
+58446,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+58447,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+58448,HTML/CSS;Java;JavaScript;Python;Ruby
+58449,HTML/CSS;JavaScript
+58450,Assembly;C;C++;HTML/CSS;Java;PHP;SQL
+58451,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+58452,HTML/CSS;JavaScript;PHP;SQL
+58453,HTML/CSS;Java;JavaScript;PHP;R;SQL
+58454,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+58455,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+58456,Bash/Shell/PowerShell;Python;Rust
+58457,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+58458,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58459,HTML/CSS;Java;JavaScript;SQL
+58460,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+58461,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58462,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Other(s):
+58463,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+58464,Java;Swift;Other(s):
+58465,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58466,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL
+58467,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript
+58468,C#;HTML/CSS;JavaScript;SQL
+58469,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+58470,C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+58471,Bash/Shell/PowerShell;C;C++;C#;Java
+58472,HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+58473,C#;HTML/CSS;Java;JavaScript;SQL
+58474,Assembly;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+58475,C;C++;HTML/CSS;JavaScript;PHP;SQL
+58476,Java;JavaScript;PHP
+58477,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+58478,C#;HTML/CSS;JavaScript;PHP;SQL
+58479,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+58480,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+58481,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+58482,Java;Scala;TypeScript
+58483,Clojure;JavaScript;Python
+58484,Java;Objective-C;SQL;Swift
+58485,Bash/Shell/PowerShell;C++;Go;Python;R;Rust;Scala;SQL
+58486,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+58487,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+58488,C++;C#;HTML/CSS;Java;PHP;Python
+58489,Go;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+58490,Bash/Shell/PowerShell;C;JavaScript;Python;SQL
+58491,HTML/CSS;JavaScript;Python
+58492,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+58493,Java;Python;SQL
+58494,Assembly;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+58495,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58496,C++;Java;JavaScript;TypeScript
+58497,Python;TypeScript
+58498,Bash/Shell/PowerShell;C#;Python;SQL
+58499,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+58500,HTML/CSS;Java;JavaScript;PHP
+58501,C#;JavaScript;TypeScript
+58502,HTML/CSS;JavaScript;Python;R;SQL
+58503,F#;JavaScript
+58504,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+58505,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58506,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+58507,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;SQL
+58508,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+58509,C;C++;Java;Python
+58510,C#;HTML/CSS;JavaScript;SQL
+58511,C#;HTML/CSS;JavaScript;Python;SQL
+58512,Python
+58513,HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;Swift
+58514,HTML/CSS;JavaScript;PHP;SQL
+58515,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+58516,Ruby
+58517,HTML/CSS;JavaScript;PHP;SQL
+58518,HTML/CSS;JavaScript
+58519,C#;HTML/CSS;JavaScript;SQL
+58520,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58521,Python;Scala
+58522,HTML/CSS;JavaScript
+58523,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+58524,C++;C#;SQL
+58525,C#;HTML/CSS;JavaScript;PHP;SQL
+58526,JavaScript;Python
+58527,Bash/Shell/PowerShell;C;C++;Java;Python;Ruby;SQL;Other(s):
+58528,HTML/CSS;Java;PHP;Python;SQL
+58529,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript;VBA
+58530,HTML/CSS;JavaScript;PHP;SQL
+58531,Bash/Shell/PowerShell;C++;C#;F#;Objective-C;Python;Swift;TypeScript
+58532,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+58533,HTML/CSS;JavaScript;PHP
+58534,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;Python;SQL;VBA
+58535,C#;HTML/CSS;JavaScript;SQL;VBA
+58536,Bash/Shell/PowerShell;C;C++;Python
+58537,Bash/Shell/PowerShell;C;JavaScript;Python
+58538,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58539,C++;JavaScript;Rust
+58540,C#;SQL
+58541,C;C++;Java;JavaScript;TypeScript
+58542,Bash/Shell/PowerShell;C;Java;Python;R;Scala;SQL
+58543,C#;SQL;VBA
+58544,HTML/CSS;JavaScript;PHP;Python;SQL
+58545,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+58546,HTML/CSS;JavaScript
+58547,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;JavaScript
+58548,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58549,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+58550,C#;HTML/CSS;Java;JavaScript;Ruby
+58551,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+58552,Python;Swift
+58553,C#;HTML/CSS;JavaScript
+58554,C;HTML/CSS;R;SQL
+58555,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;SQL
+58556,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+58557,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS
+58558,HTML/CSS;Java;JavaScript;Scala;SQL
+58559,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+58560,Assembly;C;C++;C#;HTML/CSS;Python
+58562,Bash/Shell/PowerShell;Java;JavaScript;Python
+58563,HTML/CSS;JavaScript;Python
+58564,C#;SQL;Swift
+58565,C;C#;HTML/CSS;Java;Python;R;SQL
+58566,Clojure;Java
+58567,Bash/Shell/PowerShell;C#;JavaScript;Python
+58568,HTML/CSS;JavaScript;SQL
+58569,Java
+58570,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL;VBA
+58571,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;SQL
+58572,HTML/CSS;JavaScript;Python;SQL
+58573,C;C++;HTML/CSS;JavaScript;SQL
+58575,C;C++;C#;HTML/CSS;JavaScript;SQL
+58576,Bash/Shell/PowerShell;Java;JavaScript
+58577,Java;JavaScript
+58578,Bash/Shell/PowerShell;Java;SQL;Other(s):
+58579,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;Python;SQL;Swift
+58580,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python
+58581,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+58582,C++;HTML/CSS;PHP;Python;R;SQL
+58583,Python
+58584,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+58585,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+58586,C#;Go;Rust
+58587,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+58588,JavaScript;Python;Other(s):
+58589,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;Scala;SQL
+58590,HTML/CSS;JavaScript;TypeScript
+58591,Bash/Shell/PowerShell;C#;JavaScript;SQL
+58592,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+58593,HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+58594,JavaScript;Python;SQL
+58595,C#;JavaScript
+58596,Bash/Shell/PowerShell;C#;JavaScript;Python;R;SQL;TypeScript
+58597,JavaScript;Python;Rust;SQL
+58598,HTML/CSS;Java;JavaScript;SQL
+58599,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+58600,Bash/Shell/PowerShell;C;C++;C#;Go;Python;SQL
+58601,Assembly;Bash/Shell/PowerShell;C++;Java
+58602,HTML/CSS;Ruby
+58604,HTML/CSS;JavaScript;PHP;Python;SQL
+58605,C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+58606,C;C++
+58607,Python
+58608,C++;HTML/CSS;JavaScript;Python;TypeScript
+58609,Assembly;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+58610,C#;Java
+58611,JavaScript;Python;TypeScript
+58612,C#;HTML/CSS;JavaScript;PHP;Ruby;Scala;SQL
+58613,HTML/CSS;Java;JavaScript;PHP;SQL
+58614,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;R;SQL;Swift;TypeScript
+58615,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+58616,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+58617,Bash/Shell/PowerShell;SQL
+58618,HTML/CSS;PHP;Python;Ruby;SQL
+58619,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust
+58620,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;SQL;TypeScript
+58621,JavaScript
+58622,C++;Python
+58623,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;Scala;SQL
+58624,HTML/CSS;Java
+58625,Python;Scala
+58626,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+58627,C;HTML/CSS;Java;JavaScript;Kotlin;SQL
+58628,HTML/CSS;Java;JavaScript;SQL
+58629,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;R
+58630,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+58631,C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+58632,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+58633,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+58634,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;TypeScript
+58635,C;HTML/CSS;Java;Python
+58636,C;HTML/CSS;JavaScript;PHP
+58637,HTML/CSS;JavaScript;SQL
+58638,C#;HTML/CSS;JavaScript;SQL
+58639,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+58640,Java
+58641,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58642,Bash/Shell/PowerShell;C#;JavaScript;SQL
+58643,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+58644,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+58645,C#;HTML/CSS;Java;JavaScript;TypeScript
+58646,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+58647,HTML/CSS;Java;JavaScript;Kotlin;Python
+58648,HTML/CSS;JavaScript
+58649,C;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+58650,Python
+58651,C#;JavaScript;Other(s):
+58652,C;C++;C#;JavaScript;VBA
+58653,C#;HTML/CSS;SQL;Other(s):
+58654,Bash/Shell/PowerShell;Python;R
+58655,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Swift;VBA
+58656,C++;C#;Java;JavaScript;Python;TypeScript
+58657,Java;Kotlin
+58658,Python
+58660,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+58661,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+58662,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+58663,Java;Kotlin
+58664,C;C#;Python;SQL;VBA
+58665,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58666,HTML/CSS;JavaScript;Python
+58667,HTML/CSS;Java;SQL;TypeScript;Other(s):
+58668,HTML/CSS;JavaScript;TypeScript
+58669,HTML/CSS;Objective-C;Swift
+58670,C++;HTML/CSS;JavaScript
+58671,HTML/CSS;JavaScript;Python;Swift
+58672,C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+58673,C;HTML/CSS;JavaScript;PHP;Python;SQL
+58674,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+58675,HTML/CSS;JavaScript;Python;Scala;VBA
+58676,Bash/Shell/PowerShell;Python;R;SQL
+58677,C;C++;C#;Java;JavaScript;Python
+58678,HTML/CSS;JavaScript;TypeScript
+58679,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+58680,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA;WebAssembly
+58681,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+58682,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;SQL
+58683,HTML/CSS;JavaScript
+58684,HTML/CSS;Java;PHP;SQL
+58685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+58686,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+58687,Java;Other(s):
+58688,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+58689,HTML/CSS;JavaScript;Python
+58690,Java
+58691,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL;TypeScript
+58692,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58693,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+58694,C;C++;C#;HTML/CSS;Java;JavaScript
+58695,C#;HTML/CSS;Python
+58697,Python;R;SQL
+58698,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+58699,C#
+58700,C;C++;Python
+58701,Bash/Shell/PowerShell;C;HTML/CSS;Ruby;TypeScript
+58702,C;Objective-C;Other(s):
+58703,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+58704,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58705,HTML/CSS;JavaScript;PHP
+58706,HTML/CSS;Java;JavaScript;Python;SQL
+58707,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL
+58709,Assembly;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+58710,C++;Java;PHP;Swift
+58711,C#;HTML/CSS;JavaScript;Kotlin;Python
+58712,HTML/CSS;Java;JavaScript;Python;SQL
+58713,C#;HTML/CSS;JavaScript;SQL
+58715,JavaScript
+58716,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+58717,Bash/Shell/PowerShell;C++;JavaScript;Ruby;SQL
+58718,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+58719,Bash/Shell/PowerShell;C++;Java;Python;SQL
+58720,Bash/Shell/PowerShell;C#;Java;Python;SQL;VBA
+58721,Assembly;C;C++;HTML/CSS;Java;Python;Other(s):
+58722,C;C++;C#;JavaScript;SQL
+58723,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+58724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+58725,Bash/Shell/PowerShell;SQL
+58726,Java
+58727,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58728,HTML/CSS;Java;PHP
+58729,C;C++;Python
+58730,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58731,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;Swift
+58732,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+58733,HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+58734,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+58735,Go;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+58736,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+58737,C++;Elixir;HTML/CSS;JavaScript;SQL
+58738,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+58739,HTML/CSS;JavaScript;Ruby;Rust
+58740,C;C++;C#;Java;JavaScript;PHP;SQL
+58741,C;C#;HTML/CSS;Java;JavaScript;Swift;TypeScript
+58742,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+58743,C#;Dart
+58744,HTML/CSS;JavaScript;Python;R;SQL;VBA
+58745,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+58746,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+58747,Bash/Shell/PowerShell;C;C++;JavaScript;Python;TypeScript
+58748,JavaScript
+58749,C;C++;Python
+58750,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58751,Objective-C;Swift
+58752,C#;JavaScript;SQL;TypeScript
+58753,C++;HTML/CSS;JavaScript;PHP;SQL
+58754,HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+58755,Bash/Shell/PowerShell;JavaScript;Python;SQL
+58756,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Ruby;Rust
+58757,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+58758,JavaScript;Python;SQL
+58759,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+58761,Bash/Shell/PowerShell;Java;SQL
+58762,HTML/CSS;JavaScript
+58763,SQL;Other(s):
+58764,Java;Kotlin
+58765,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Scala;SQL
+58766,Clojure;Dart
+58767,Bash/Shell/PowerShell;Java;SQL
+58768,Clojure;Dart;HTML/CSS;JavaScript
+58769,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;R;SQL
+58770,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+58771,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+58772,C#;Python;SQL
+58773,C#;HTML/CSS;JavaScript
+58774,HTML/CSS;JavaScript;PHP;SQL
+58775,C#;JavaScript;SQL
+58776,Java;SQL
+58777,HTML/CSS;JavaScript;PHP;SQL
+58778,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+58779,JavaScript;Python;R;SQL
+58780,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+58781,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+58782,Java;JavaScript;Kotlin;SQL;Swift
+58783,C;C++;Clojure;Java;JavaScript;PHP
+58784,Java;Kotlin
+58785,HTML/CSS;JavaScript;SQL
+58786,C++;Python
+58787,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58788,C#;HTML/CSS;JavaScript;SQL;TypeScript
+58789,HTML/CSS;JavaScript;PHP;SQL
+58790,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+58791,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+58792,Kotlin;PHP;Python
+58793,Java;VBA
+58794,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+58795,Bash/Shell/PowerShell;C;C++;Java;Python;R
+58796,Java;SQL
+58797,C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript;VBA
+58798,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+58799,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+58800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+58801,Java;Kotlin
+58803,C#;JavaScript;SQL
+58804,C#;HTML/CSS;JavaScript
+58805,Python
+58806,Java
+58807,HTML/CSS;JavaScript;TypeScript
+58808,HTML/CSS;Python;SQL
+58809,C#;SQL
+58810,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+58811,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+58812,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+58813,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58814,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58815,C++;Java;Python
+58816,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58817,Assembly;Bash/Shell/PowerShell;C++;C#;Go;Java;JavaScript;Python;Rust
+58818,C#;HTML/CSS;JavaScript;Python
+58819,C#;HTML/CSS;JavaScript;PHP
+58820,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+58821,Kotlin;Objective-C;Python;SQL;TypeScript
+58822,Assembly;Bash/Shell/PowerShell;C;Go;Java;JavaScript;Rust;WebAssembly
+58823,HTML/CSS;JavaScript;PHP;SQL
+58824,C;C++;Other(s):
+58825,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Other(s):
+58826,Clojure;HTML/CSS;Java;JavaScript;Python
+58827,Java;Python;SQL
+58828,C#;Elixir;HTML/CSS;JavaScript;TypeScript
+58829,C#;HTML/CSS;Java;JavaScript;Python
+58830,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+58831,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+58832,HTML/CSS;Java;JavaScript
+58833,Java;JavaScript;SQL
+58834,Bash/Shell/PowerShell;Java
+58835,HTML/CSS;JavaScript;Python;SQL;TypeScript
+58836,HTML/CSS;JavaScript;Python;SQL
+58837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+58838,C#;JavaScript;PHP;SQL;Swift
+58839,Kotlin;Swift
+58840,Java;SQL
+58841,C#
+58842,C++;HTML/CSS;JavaScript
+58843,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+58845,HTML/CSS;JavaScript;Python;SQL;TypeScript
+58846,Objective-C;Swift
+58847,HTML/CSS;JavaScript
+58848,C#;HTML/CSS;JavaScript;TypeScript
+58849,C;C++;HTML/CSS;Java;PHP;Python;SQL
+58850,Bash/Shell/PowerShell;C++
+58851,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+58852,Bash/Shell/PowerShell;C#;Java;Python;Rust
+58853,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58854,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+58855,HTML/CSS;Python
+58856,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+58857,HTML/CSS;JavaScript;SQL;Other(s):
+58858,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+58859,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;Swift;VBA
+58860,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+58861,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;VBA
+58862,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58863,HTML/CSS;Java;JavaScript;Python;SQL
+58864,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;Scala
+58865,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+58866,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+58867,C;C#;HTML/CSS;JavaScript;SQL
+58868,HTML/CSS;JavaScript;PHP
+58869,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;SQL;VBA
+58870,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+58871,C#;HTML/CSS;JavaScript;PHP;SQL
+58872,C#;JavaScript;Python;SQL;TypeScript
+58873,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+58874,HTML/CSS;JavaScript;PHP;SQL
+58875,C#
+58876,HTML/CSS;JavaScript;PHP;SQL
+58877,HTML/CSS;JavaScript;PHP;Python
+58878,C#;HTML/CSS;JavaScript;SQL
+58879,C#;Ruby;SQL
+58880,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+58881,HTML/CSS;JavaScript
+58882,HTML/CSS;JavaScript;PHP
+58883,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+58884,C#
+58885,HTML/CSS;JavaScript;PHP;Python
+58886,HTML/CSS;Java;JavaScript;PHP;SQL
+58887,C++;C#;HTML/CSS;JavaScript;Python
+58888,Bash/Shell/PowerShell;C
+58889,HTML/CSS;JavaScript
+58890,HTML/CSS;JavaScript;Python
+58891,Bash/Shell/PowerShell;C#;Swift
+58892,JavaScript
+58893,C#;HTML/CSS;JavaScript;SQL
+58894,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+58895,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+58896,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;R;Scala;SQL
+58897,HTML/CSS;JavaScript;Python;SQL
+58898,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+58899,Java;SQL
+58900,HTML/CSS;JavaScript;Python;TypeScript
+58901,Java;JavaScript;Python;SQL;TypeScript
+58902,Java;Objective-C;Swift
+58903,HTML/CSS;JavaScript;SQL;TypeScript
+58904,C#;HTML/CSS;Java;JavaScript;SQL
+58905,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL;Swift;TypeScript
+58906,JavaScript;Python
+58907,Bash/Shell/PowerShell;C#;JavaScript;SQL
+58908,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;Python;SQL;TypeScript;VBA
+58909,Objective-C;Swift
+58910,Bash/Shell/PowerShell;C#;Java;Python;R;SQL
+58911,Objective-C;Swift
+58912,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+58913,C++;JavaScript;Python
+58914,Bash/Shell/PowerShell;C#;Python
+58915,HTML/CSS;JavaScript;Python;SQL
+58916,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+58917,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+58918,C#;HTML/CSS;Rust;SQL
+58919,Bash/Shell/PowerShell;Go;Python;Ruby;Scala;SQL
+58920,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+58921,Bash/Shell/PowerShell;C++;C#;Python;SQL
+58922,C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+58923,Elixir;JavaScript;Ruby
+58924,Assembly;C;HTML/CSS;Java;PHP;Python;SQL
+58925,Bash/Shell/PowerShell;Python;SQL
+58926,HTML/CSS;JavaScript;TypeScript
+58927,C#;F#;HTML/CSS;JavaScript
+58928,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+58929,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+58930,C++;C#
+58931,C++;Go;JavaScript;Python;Rust;TypeScript
+58932,C#;HTML/CSS;Java;JavaScript;SQL
+58933,C;Java;PHP;Other(s):
+58934,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+58935,C#;Java;JavaScript
+58936,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+58937,HTML/CSS;JavaScript;PHP
+58938,C;C++;Java;PHP
+58939,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+58940,Java;SQL;Other(s):
+58941,Bash/Shell/PowerShell;C;Java;Kotlin;Rust
+58942,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58943,Assembly;Bash/Shell/PowerShell;C;Python;SQL
+58944,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin
+58945,HTML/CSS;JavaScript
+58946,Bash/Shell/PowerShell;C++;Kotlin;SQL;Swift
+58947,Java;Kotlin;Rust
+58948,C++;Java
+58949,Go;JavaScript;TypeScript
+58950,Bash/Shell/PowerShell;C;JavaScript;Python;Ruby;SQL;Other(s):
+58951,Python
+58952,Bash/Shell/PowerShell;C;C++;Erlang;Java;SQL;Other(s):
+58953,Assembly
+58954,Bash/Shell/PowerShell;Python;VBA
+58955,Assembly;C;C++;Objective-C;Python;Swift
+58956,HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+58957,Elixir;Erlang;Go;Java;JavaScript;Kotlin;Ruby
+58958,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Other(s):
+58959,C#;HTML/CSS;SQL
+58960,C;HTML/CSS;JavaScript;Python
+58961,HTML/CSS;JavaScript;PHP;SQL
+58962,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python;Ruby
+58964,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+58965,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+58966,Bash/Shell/PowerShell;JavaScript;TypeScript
+58967,R
+58968,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+58969,Assembly;C;C++;Other(s):
+58970,HTML/CSS;Java;JavaScript;Python
+58972,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+58973,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;TypeScript
+58974,HTML/CSS;Java;JavaScript;SQL
+58975,Java;JavaScript;PHP;SQL
+58976,Bash/Shell/PowerShell;C;JavaScript;Python;SQL
+58977,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+58978,Bash/Shell/PowerShell;Python;SQL
+58979,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;PHP;SQL
+58980,Bash/Shell/PowerShell;C;Python;Rust;Other(s):
+58981,C++;Go
+58982,C;C++;Python;R;SQL
+58984,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+58985,Python;R
+58986,C#;Python;Other(s):
+58987,C;C#;HTML/CSS;Python
+58988,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+58989,C++;C#;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+58990,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+58991,HTML/CSS;JavaScript
+58992,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+58993,HTML/CSS;Java;Kotlin;SQL
+58994,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+58995,HTML/CSS;JavaScript
+58996,HTML/CSS;Python
+58997,C#;HTML/CSS;JavaScript
+58998,HTML/CSS;Java;JavaScript;TypeScript
+58999,C#;Go;HTML/CSS;JavaScript;TypeScript
+59000,HTML/CSS;Java;JavaScript;Python;SQL
+59001,HTML/CSS;JavaScript
+59002,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+59003,HTML/CSS;JavaScript;TypeScript
+59004,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59005,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+59006,Bash/Shell/PowerShell;HTML/CSS;Java
+59007,C#;HTML/CSS;JavaScript;SQL;VBA
+59008,C#;Java;Scala;SQL
+59009,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+59010,HTML/CSS;JavaScript;SQL;Swift
+59011,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+59012,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+59013,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+59014,C++;Objective-C
+59015,C#;HTML/CSS;JavaScript;SQL
+59016,Java;SQL
+59017,C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+59018,HTML/CSS;Java;JavaScript;Python
+59019,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+59020,HTML/CSS;JavaScript;PHP;SQL
+59021,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala
+59022,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;VBA;WebAssembly;Other(s):
+59023,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+59024,Bash/Shell/PowerShell;Go;PHP;Python;SQL
+59025,Java
+59026,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+59027,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Other(s):
+59028,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+59029,C#;SQL
+59030,Bash/Shell/PowerShell;HTML/CSS;Ruby;Rust;TypeScript
+59031,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+59032,HTML/CSS;JavaScript;PHP;Rust;SQL
+59033,Bash/Shell/PowerShell;Python
+59034,C;C++;Dart;Java;JavaScript;Kotlin;TypeScript
+59035,HTML/CSS;JavaScript;PHP;SQL
+59036,C;C++;C#;Java;JavaScript;PHP;SQL
+59037,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+59038,C++;Python
+59039,Bash/Shell/PowerShell;JavaScript;Ruby;Other(s):
+59040,Python;R;VBA
+59041,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;JavaScript;Ruby;Scala;TypeScript
+59042,C#;Java;Kotlin;Python
+59043,C#;JavaScript
+59044,C#;HTML/CSS;Java;JavaScript;Python
+59045,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL;TypeScript
+59046,HTML/CSS;SQL;VBA
+59047,Other(s):
+59048,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby
+59049,C#;HTML/CSS;JavaScript;TypeScript
+59050,Go;JavaScript
+59051,HTML/CSS;TypeScript
+59052,Go;HTML/CSS;Java;JavaScript
+59053,Assembly;Python
+59054,HTML/CSS;JavaScript;PHP
+59055,C#;HTML/CSS;JavaScript;PHP;SQL
+59056,C#
+59058,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+59059,HTML/CSS;JavaScript;PHP;TypeScript
+59060,C;Python;Other(s):
+59061,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+59062,C;HTML/CSS;Java;JavaScript
+59063,HTML/CSS;JavaScript
+59064,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+59065,Bash/Shell/PowerShell;PHP;SQL
+59066,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+59067,Python
+59068,TypeScript
+59069,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+59070,JavaScript;PHP
+59071,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+59072,SQL;VBA
+59073,C;HTML/CSS;Java;Kotlin;PHP;Python;SQL
+59074,Java;Kotlin;Scala
+59075,Bash/Shell/PowerShell;Java;Python;Scala;SQL;TypeScript
+59076,Bash/Shell/PowerShell;C++;Python;SQL;Other(s):
+59077,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+59078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+59079,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+59080,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+59081,C#;HTML/CSS;JavaScript;SQL
+59082,Assembly;C;C++;C#;Java;Python;SQL
+59083,HTML/CSS;Python
+59084,Java
+59085,C++;HTML/CSS;JavaScript
+59086,Bash/Shell/PowerShell;Erlang;Go;Python
+59087,Bash/Shell/PowerShell;C#;Go;Java;Kotlin;SQL;TypeScript
+59088,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+59089,HTML/CSS;PHP;SQL;Other(s):
+59090,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+59091,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+59092,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59093,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;VBA;Other(s):
+59094,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;SQL;TypeScript
+59095,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59096,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Other(s):
+59097,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python;SQL
+59098,HTML/CSS;JavaScript;SQL;TypeScript
+59099,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+59100,HTML/CSS;JavaScript;PHP;SQL
+59101,HTML/CSS;Java;JavaScript;PHP
+59102,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;VBA
+59103,C;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift
+59104,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+59105,Python
+59106,Java;JavaScript;SQL
+59107,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+59108,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+59109,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+59110,HTML/CSS;Java;JavaScript;TypeScript
+59111,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+59112,C++;JavaScript;TypeScript
+59113,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python
+59114,Bash/Shell/PowerShell;C++;Java;Objective-C;Python
+59115,Other(s):
+59116,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;R;Ruby;SQL;TypeScript
+59117,HTML/CSS;JavaScript
+59118,HTML/CSS;JavaScript;SQL;Other(s):
+59119,JavaScript;Python;R;SQL
+59120,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+59121,Python;R;SQL;Other(s):
+59122,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+59123,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;SQL;TypeScript
+59124,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby
+59125,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+59126,Bash/Shell/PowerShell;C++
+59128,JavaScript;SQL
+59129,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+59130,Python;R;SQL;VBA;Other(s):
+59131,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+59132,Python;R;SQL
+59133,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+59134,Java;SQL
+59135,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+59136,HTML/CSS;JavaScript;PHP;Python;SQL
+59137,C++;Java
+59138,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript;WebAssembly;Other(s):
+59139,C;C++;HTML/CSS;Java;Objective-C;PHP;SQL
+59140,SQL
+59141,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+59142,Bash/Shell/PowerShell;Python;R;Other(s):
+59143,C#
+59144,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+59145,C#;HTML/CSS;JavaScript;SQL
+59146,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+59147,Python;SQL
+59148,C;C++;HTML/CSS;JavaScript;PHP;SQL
+59149,Java;JavaScript;Python
+59150,C#;HTML/CSS;JavaScript;SQL;VBA
+59151,HTML/CSS;Java;JavaScript;SQL;VBA
+59152,HTML/CSS;Java;JavaScript;PHP;SQL
+59153,HTML/CSS;JavaScript;Ruby
+59154,C#;JavaScript;SQL;TypeScript
+59155,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+59156,HTML/CSS;JavaScript;PHP;Other(s):
+59157,Bash/Shell/PowerShell;Go;Python
+59158,HTML/CSS;Java;JavaScript;Python;SQL
+59159,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59160,C#;JavaScript;PHP;SQL
+59161,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Other(s):
+59162,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+59163,C;Java;Python;Swift
+59164,C#;HTML/CSS;JavaScript
+59165,HTML/CSS;JavaScript;PHP;Ruby;SQL
+59166,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59167,HTML/CSS;Java;PHP;SQL;TypeScript
+59168,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59169,HTML/CSS;JavaScript;PHP;Python
+59170,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59171,HTML/CSS;Java;PHP
+59172,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+59173,HTML/CSS;JavaScript;PHP;SQL
+59174,HTML/CSS;Java;JavaScript;SQL
+59175,C++;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+59176,C#;HTML/CSS;JavaScript;SQL
+59177,Bash/Shell/PowerShell;C++;C#;Python;SQL
+59178,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+59179,HTML/CSS;JavaScript;PHP;SQL
+59180,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+59181,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+59182,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59183,C#;HTML/CSS;JavaScript
+59184,Go;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+59185,C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59186,C++;C#;Rust;WebAssembly
+59187,C#;F#;HTML/CSS;JavaScript;SQL
+59188,C#
+59189,C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+59191,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+59192,Go;Java;JavaScript;Python
+59193,HTML/CSS;JavaScript;PHP;SQL
+59194,HTML/CSS;JavaScript;PHP;SQL
+59195,HTML/CSS;JavaScript;SQL
+59196,Go;Java;Kotlin;Ruby
+59197,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA;Other(s):
+59198,C#;HTML/CSS;Python;SQL
+59199,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+59200,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59201,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+59202,C++;Erlang;Go;JavaScript;PHP;Python;SQL
+59203,HTML/CSS;Java;JavaScript;SQL
+59204,Assembly;Bash/Shell/PowerShell;C;Go;Other(s):
+59205,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL
+59206,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+59207,Bash/Shell/PowerShell;Java
+59208,HTML/CSS;Java;JavaScript;Python;SQL
+59209,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+59210,C++;Go;HTML/CSS;JavaScript;PHP;Python
+59212,Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+59214,C#;HTML/CSS;Java;JavaScript;Python;R
+59215,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+59216,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+59217,C++;HTML/CSS;JavaScript;Python;SQL
+59218,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+59219,Bash/Shell/PowerShell;Elixir;Python
+59220,C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby
+59221,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python
+59222,C#;Java;SQL
+59223,C;HTML/CSS;Java;JavaScript;Kotlin;TypeScript;WebAssembly
+59224,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+59225,Bash/Shell/PowerShell;C;C++
+59226,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+59227,Assembly;C#
+59228,R
+59229,Bash/Shell/PowerShell;C++;SQL
+59230,Go;HTML/CSS;JavaScript;Rust
+59231,Java;SQL
+59232,C++;HTML/CSS;JavaScript;Python
+59233,Java;Python;Swift
+59234,Objective-C
+59235,C;C++;HTML/CSS;Java;JavaScript;Python
+59236,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+59237,Bash/Shell/PowerShell;C++;C#;SQL
+59238,C#
+59239,Other(s):
+59240,HTML/CSS;JavaScript;PHP;SQL
+59241,Python
+59242,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+59243,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+59244,HTML/CSS;JavaScript;PHP;Ruby;SQL
+59245,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+59246,Java;JavaScript;Python;TypeScript;WebAssembly
+59247,Java;Scala;SQL
+59248,JavaScript;Scala;TypeScript
+59249,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+59250,C++;C#;HTML/CSS;JavaScript;TypeScript
+59251,C++;C#;Java;JavaScript;Python;Ruby;SQL
+59252,Swift
+59253,C;Java;Python;Ruby
+59254,HTML/CSS;JavaScript;PHP;SQL
+59255,Bash/Shell/PowerShell;C++;Java;Python
+59256,C#;HTML/CSS;TypeScript;VBA
+59257,HTML/CSS;JavaScript;PHP;Python;SQL
+59258,C#;Java;JavaScript;TypeScript
+59259,Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL;VBA
+59260,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59261,C#;HTML/CSS;JavaScript;SQL
+59262,HTML/CSS;SQL;Other(s):
+59263,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59264,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+59265,C;C++;C#;HTML/CSS;JavaScript;Python
+59266,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Rust;Scala
+59267,Java;PHP;SQL
+59268,HTML/CSS;JavaScript;Python;Ruby
+59269,Bash/Shell/PowerShell;C#;F#;Python;Scala;VBA;Other(s):
+59270,Assembly;C;HTML/CSS;Java;JavaScript;SQL;Other(s):
+59271,Python
+59272,C#;HTML/CSS;JavaScript;SQL;VBA
+59273,Python
+59274,C;Java;JavaScript;Python;R
+59275,HTML/CSS;Java;JavaScript;TypeScript
+59276,C;Python;R;VBA
+59277,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+59278,C;C++;C#;HTML/CSS;JavaScript;Python
+59279,Bash/Shell/PowerShell;Python;R
+59280,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+59281,HTML/CSS;JavaScript;SQL
+59282,Bash/Shell/PowerShell;Clojure;Java;JavaScript
+59283,Bash/Shell/PowerShell;SQL
+59284,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+59285,HTML/CSS;Java;JavaScript;SQL
+59286,C++;C#;Kotlin;PHP;Python;SQL
+59287,SQL
+59288,HTML/CSS;JavaScript;PHP;SQL
+59289,HTML/CSS;Java;JavaScript;PHP
+59290,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;SQL;VBA
+59291,C;C++
+59292,C#;HTML/CSS;JavaScript;SQL
+59293,C;Java;Python
+59294,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL
+59295,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust;Other(s):
+59296,HTML/CSS;JavaScript;PHP;SQL
+59297,HTML/CSS;JavaScript
+59298,C++;Java;JavaScript;TypeScript
+59299,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+59300,Assembly;Java;Other(s):
+59301,C#;HTML/CSS;Java
+59302,Bash/Shell/PowerShell;C;C++;Go;JavaScript;PHP
+59303,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+59304,HTML/CSS;JavaScript;PHP;SQL
+59305,Elixir;JavaScript;Ruby;SQL;TypeScript
+59306,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+59307,Bash/Shell/PowerShell;C++;Rust
+59308,C#;JavaScript;SQL;TypeScript
+59309,HTML/CSS;JavaScript
+59310,JavaScript;PHP;Python;SQL
+59311,C;Java;JavaScript;PHP;SQL
+59312,C#;Python
+59313,C#;HTML/CSS;JavaScript;SQL
+59314,C#;Go;HTML/CSS
+59315,Assembly;C;C#;F#;Go;HTML/CSS;Java;JavaScript;PHP;Python
+59316,HTML/CSS;Java;SQL
+59317,HTML/CSS;JavaScript;Python;Other(s):
+59319,HTML/CSS;Java;JavaScript;Python;SQL
+59320,Java;Ruby
+59321,C#;HTML/CSS;JavaScript;SQL
+59322,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+59323,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Scala;SQL
+59324,C++
+59325,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+59326,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Scala;SQL;TypeScript
+59327,Python;R
+59328,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+59329,HTML/CSS;JavaScript;TypeScript
+59330,HTML/CSS;Java;JavaScript;Python;TypeScript
+59331,C#;HTML/CSS;JavaScript;SQL
+59332,SQL;VBA
+59333,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+59334,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+59335,HTML/CSS;JavaScript;SQL;TypeScript
+59336,HTML/CSS;JavaScript;PHP;TypeScript
+59337,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+59339,HTML/CSS;JavaScript;PHP;SQL
+59340,Bash/Shell/PowerShell;C#;Erlang;F#;HTML/CSS;Java;JavaScript;TypeScript
+59341,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+59342,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript;Other(s):
+59343,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+59344,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Rust;Other(s):
+59345,Python
+59346,C#;HTML/CSS;Java;JavaScript;SQL
+59347,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59348,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+59349,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP
+59350,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+59351,Swift
+59352,C;C++;Python
+59353,HTML/CSS;JavaScript;PHP
+59354,C#;HTML/CSS;Java;JavaScript;SQL
+59355,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+59356,C;C++;Java
+59357,HTML/CSS;JavaScript;PHP;SQL
+59358,C#;HTML/CSS;JavaScript;Objective-C;SQL
+59359,C#;HTML/CSS;JavaScript;TypeScript
+59360,C#;HTML/CSS;Java;JavaScript;Kotlin;R;TypeScript
+59361,C;C++;C#;HTML/CSS;Java;Objective-C;PHP;SQL
+59362,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL
+59363,Bash/Shell/PowerShell;C;C++;C#;Python
+59364,C#;Go;HTML/CSS;JavaScript;PHP;Python
+59365,C#;Python
+59366,HTML/CSS;JavaScript;PHP;SQL
+59367,Bash/Shell/PowerShell;C#;SQL;TypeScript
+59368,Assembly;C;C++;Other(s):
+59369,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+59370,Java;JavaScript;Python
+59371,C#;HTML/CSS;JavaScript;TypeScript
+59372,Bash/Shell/PowerShell;C;C++;Python
+59373,C;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+59374,Java;JavaScript;SQL
+59375,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+59376,C;C++;Python
+59377,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+59378,Objective-C;Swift
+59379,Clojure;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+59380,Java;Ruby;SQL
+59381,HTML/CSS;JavaScript;PHP;SQL
+59382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+59383,R;SQL
+59384,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+59385,C#;JavaScript;PHP;VBA
+59386,C#;HTML/CSS;JavaScript;PHP;SQL
+59387,C++;Python;Ruby
+59388,JavaScript
+59389,HTML/CSS;JavaScript
+59390,C#;HTML/CSS;Java;PHP;Python;SQL
+59391,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Objective-C;Python;Ruby;Rust;Swift
+59392,Bash/Shell/PowerShell;C;Python;VBA
+59393,C#;Java;JavaScript;Objective-C;SQL
+59394,HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+59395,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+59396,C;C++;HTML/CSS;Java;JavaScript;Python
+59397,Bash/Shell/PowerShell;Go
+59398,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59399,Go;HTML/CSS;JavaScript;PHP;SQL
+59400,C;HTML/CSS;PHP;SQL
+59401,Assembly;Bash/Shell/PowerShell;C
+59402,C#;SQL;Other(s):
+59403,Java;JavaScript;SQL;TypeScript
+59404,HTML/CSS;Java;JavaScript;TypeScript
+59405,Bash/Shell/PowerShell;Python;R;SQL
+59406,Bash/Shell/PowerShell;C;C++;C#
+59407,C#;F#;JavaScript;SQL
+59408,Bash/Shell/PowerShell;Java;PHP;Python;SQL
+59409,HTML/CSS;Java;JavaScript;SQL
+59410,JavaScript;PHP;SQL
+59411,C;Java
+59412,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+59413,C#;HTML/CSS;JavaScript;PHP;SQL
+59414,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+59415,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+59416,Bash/Shell/PowerShell;C#;JavaScript;PHP;Swift
+59417,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59418,Bash/Shell/PowerShell;Python;Ruby
+59419,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+59420,C#;Elixir;Java;JavaScript;Objective-C;Ruby;Swift
+59421,C#;HTML/CSS;JavaScript;Other(s):
+59422,HTML/CSS;Java;JavaScript;SQL;TypeScript
+59423,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+59424,HTML/CSS;Java;JavaScript;Ruby;SQL
+59425,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL;Other(s):
+59426,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+59427,Bash/Shell/PowerShell;C#;F#;Java;Kotlin;Python
+59428,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+59429,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59430,C#;HTML/CSS;JavaScript
+59431,C#
+59432,C++;R
+59433,Bash/Shell/PowerShell;HTML/CSS;Python;R;Other(s):
+59434,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+59436,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+59437,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+59438,Python;Ruby
+59439,C#;HTML/CSS;Java;JavaScript;SQL
+59440,HTML/CSS;JavaScript;PHP;Python;SQL
+59441,C#;Java;Kotlin
+59442,Go;Java;Kotlin
+59443,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+59444,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Swift;TypeScript;VBA
+59445,HTML/CSS;JavaScript;Python
+59446,C#;HTML/CSS;Java;JavaScript;Python;SQL
+59447,JavaScript;SQL;Other(s):
+59449,HTML/CSS;Java;JavaScript;Python;SQL
+59450,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;TypeScript
+59451,Python
+59452,HTML/CSS;Java;JavaScript;PHP;TypeScript
+59453,JavaScript;PHP;Other(s):
+59454,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+59456,C#;SQL
+59457,Bash/Shell/PowerShell;Go
+59458,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59459,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+59460,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+59461,Dart;Go;Objective-C;Swift
+59462,C#;HTML/CSS;JavaScript;SQL
+59463,HTML/CSS;JavaScript;PHP;Ruby;SQL
+59464,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+59465,Assembly;C;HTML/CSS;Java;JavaScript;PHP
+59466,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+59467,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;WebAssembly
+59468,Python
+59469,C#
+59470,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59471,HTML/CSS;JavaScript;PHP;SQL;VBA
+59472,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+59473,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+59474,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+59475,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+59476,Java;Kotlin;SQL
+59477,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59478,Java
+59479,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;TypeScript
+59480,C;JavaScript;Kotlin;Python;Swift
+59481,C;C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+59482,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+59483,Bash/Shell/PowerShell;Java;Python
+59484,C#;HTML/CSS;JavaScript;SQL
+59485,HTML/CSS;JavaScript;TypeScript
+59486,C++;HTML/CSS;Java;JavaScript;TypeScript
+59487,Clojure;Python;Rust;Scala
+59488,Bash/Shell/PowerShell;C++;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+59489,C++;C#;HTML/CSS;Python;SQL
+59490,JavaScript;TypeScript
+59491,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+59492,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59493,C#;JavaScript;TypeScript
+59494,HTML/CSS;JavaScript;Python;SQL
+59495,HTML/CSS;Java;JavaScript;Python
+59496,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+59497,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+59498,C#;Python
+59499,Bash/Shell/PowerShell;C;C++;Java
+59500,C;HTML/CSS;JavaScript;PHP;Other(s):
+59501,JavaScript;Ruby
+59502,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby
+59503,Assembly;Bash/Shell/PowerShell;C;C++;C#;PHP;Python
+59504,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Other(s):
+59505,JavaScript;Python
+59506,C;C++;C#;Python
+59507,HTML/CSS;JavaScript;PHP;SQL
+59508,C#;HTML/CSS;Java;JavaScript;TypeScript
+59509,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust;SQL
+59510,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59511,Assembly;C;Java;JavaScript;Python;R
+59512,C#;Python;R;SQL
+59513,C++;Java;Python;Scala
+59514,SQL
+59515,JavaScript;TypeScript;WebAssembly;Other(s):
+59516,Java;SQL
+59517,Bash/Shell/PowerShell;Go;Ruby
+59518,Objective-C;Swift
+59519,C#;JavaScript;PHP;SQL
+59520,Assembly;C++;C#;Python
+59521,HTML/CSS;Java;JavaScript;Python;R;SQL
+59522,C#;HTML/CSS
+59523,HTML/CSS;JavaScript
+59524,HTML/CSS;JavaScript
+59525,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+59526,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+59527,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+59528,C;C++;Java;JavaScript;Kotlin;SQL
+59529,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+59530,HTML/CSS;JavaScript;PHP
+59531,C++
+59532,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+59533,C#;HTML/CSS;SQL;TypeScript
+59534,PHP;Ruby
+59535,Assembly;C#;HTML/CSS
+59536,C++;C#;HTML/CSS;Java;Python
+59537,C;C++
+59538,HTML/CSS;Java;TypeScript
+59539,HTML/CSS;JavaScript;Python;SQL
+59540,Bash/Shell/PowerShell;C++;Python;Other(s):
+59541,C;C++;C#;HTML/CSS;Java;SQL
+59542,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+59543,Assembly
+59544,Java
+59545,C++;Python;SQL
+59546,Bash/Shell/PowerShell;Python;SQL
+59547,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59548,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+59549,C#;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+59550,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Swift
+59551,HTML/CSS;Java;JavaScript;R;TypeScript
+59552,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+59553,JavaScript;Python
+59554,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59555,Python;R;SQL
+59556,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+59557,Other(s):
+59558,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Scala;SQL;TypeScript
+59559,Java;Kotlin
+59560,C;C++;Go;HTML/CSS;Java;JavaScript;Python;Swift
+59561,HTML/CSS;Java;JavaScript;Python;SQL
+59562,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+59563,HTML/CSS;JavaScript;PHP;SQL
+59564,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+59565,HTML/CSS;JavaScript;Python
+59566,C#;JavaScript;SQL
+59567,HTML/CSS;JavaScript;Python;SQL
+59568,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+59569,C#;HTML/CSS;JavaScript;SQL
+59570,HTML/CSS;JavaScript;PHP;SQL
+59571,C;C++;Go
+59572,C#;Dart;HTML/CSS;Java;JavaScript;SQL
+59573,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+59574,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+59575,JavaScript
+59576,C++;HTML/CSS;Java;JavaScript;SQL
+59577,HTML/CSS;JavaScript;PHP;SQL
+59578,Python
+59579,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+59580,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+59581,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+59582,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Python;Ruby;Scala;TypeScript
+59583,C;Go;Java;Python
+59584,C;Python;R;SQL
+59585,Java
+59586,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+59587,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+59588,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;Python;Scala;SQL;Other(s):
+59589,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+59590,Bash/Shell/PowerShell;JavaScript;SQL;Swift;TypeScript
+59591,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+59592,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript;VBA
+59593,C++;Python
+59594,HTML/CSS;JavaScript;Objective-C;Swift
+59595,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+59596,R
+59597,HTML/CSS;JavaScript;Python;SQL;WebAssembly;Other(s):
+59598,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Swift;TypeScript
+59599,C#;HTML/CSS;JavaScript;Python
+59600,HTML/CSS;JavaScript;PHP;Python;SQL
+59601,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+59602,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+59603,Assembly;Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;Rust
+59605,Python
+59606,C#;Java
+59607,Bash/Shell/PowerShell;JavaScript;Python;SQL
+59608,Java
+59609,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;VBA
+59610,PHP
+59611,Java;SQL
+59612,Erlang;Java;PHP;R;SQL
+59613,Java;JavaScript
+59614,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;WebAssembly
+59615,C#;HTML/CSS;JavaScript;Ruby;Rust
+59616,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;SQL;VBA
+59617,Python;R
+59618,Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+59619,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+59620,C;C++;HTML/CSS;Java;JavaScript;PHP
+59621,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python;Rust;TypeScript
+59622,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+59624,Java
+59625,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python
+59626,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+59627,Dart;Erlang;F#;Go;Java;JavaScript;Kotlin;PHP;Rust;SQL;TypeScript
+59628,C++;Go;JavaScript;Python
+59629,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+59630,Go;HTML/CSS;Java;JavaScript;Python;SQL
+59631,Bash/Shell/PowerShell;Scala
+59632,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+59633,HTML/CSS;JavaScript;PHP
+59634,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+59635,Bash/Shell/PowerShell;C;SQL
+59636,Java;JavaScript;TypeScript
+59637,Bash/Shell/PowerShell
+59638,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+59639,Python;Other(s):
+59640,C
+59641,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59642,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;VBA
+59643,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59644,Java;JavaScript
+59645,Assembly;Bash/Shell/PowerShell;C;C++;Python
+59646,HTML/CSS;JavaScript;Python;SQL
+59647,C#;HTML/CSS;JavaScript;SQL;VBA
+59648,Bash/Shell/PowerShell;C;Java;JavaScript;PHP
+59649,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+59650,Assembly;C;HTML/CSS;Java;JavaScript;Python;SQL
+59651,Java;JavaScript;Kotlin
+59652,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+59653,JavaScript;TypeScript
+59654,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+59655,Assembly;C;C++;JavaScript;PHP;Python
+59656,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+59657,Assembly;C;C++;HTML/CSS;JavaScript
+59658,Bash/Shell/PowerShell;JavaScript;PHP
+59660,HTML/CSS;Java;JavaScript
+59661,Java;JavaScript
+59662,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+59663,Bash/Shell/PowerShell;C#
+59664,C#
+59665,Bash/Shell/PowerShell;HTML/CSS;Python
+59666,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+59667,Java;JavaScript;PHP;Scala;SQL;TypeScript;Other(s):
+59668,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript
+59669,R
+59670,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+59671,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript;VBA
+59672,Java;Kotlin;Ruby
+59673,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+59674,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;R
+59675,R
+59676,C#;Java;Other(s):
+59677,HTML/CSS;JavaScript;PHP
+59678,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+59679,Dart;HTML/CSS;JavaScript;Python;TypeScript
+59680,Bash/Shell/PowerShell;C
+59681,C#
+59682,Bash/Shell/PowerShell;HTML/CSS;Python
+59683,C#
+59684,C;JavaScript;Python;Scala
+59685,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+59686,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+59687,HTML/CSS;JavaScript;Kotlin;Python;SQL;Other(s):
+59688,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+59689,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+59690,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+59692,Bash/Shell/PowerShell;Java;Python
+59693,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+59694,HTML/CSS;JavaScript;Python;SQL
+59695,C#;HTML/CSS;JavaScript;TypeScript
+59696,Elixir;JavaScript;Python
+59697,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+59698,PHP;SQL
+59699,PHP
+59700,C;C++;Java;Python
+59701,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+59702,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL;TypeScript
+59703,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+59704,C#;HTML/CSS;JavaScript;PHP;SQL
+59705,Bash/Shell/PowerShell;C#;SQL
+59706,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+59707,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+59708,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+59709,C#;JavaScript;SQL;VBA
+59710,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+59711,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+59712,HTML/CSS;Java;JavaScript;PHP;SQL
+59713,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+59714,Bash/Shell/PowerShell;Java;SQL
+59715,R;VBA
+59716,Python
+59717,Python
+59718,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;SQL
+59719,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python
+59720,Swift
+59721,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+59722,C++;HTML/CSS;Java
+59723,C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+59724,HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+59725,C#;Java;Python
+59726,C++;C#;HTML/CSS;Java;JavaScript;Python
+59727,Python
+59728,HTML/CSS;JavaScript;Python;TypeScript
+59729,C#;HTML/CSS;JavaScript;PHP;SQL
+59730,C#;HTML/CSS;JavaScript
+59731,Bash/Shell/PowerShell;C++;C#;Go;JavaScript;PHP;Python;SQL
+59732,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+59733,Java;Python;SQL
+59734,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59735,C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+59736,Bash/Shell/PowerShell;C#
+59737,Go;JavaScript;Python;TypeScript
+59738,JavaScript
+59739,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59740,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+59741,HTML/CSS;JavaScript;Kotlin;PHP;TypeScript
+59742,HTML/CSS;JavaScript;PHP
+59743,C#;Go;HTML/CSS;JavaScript;PHP;TypeScript
+59744,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+59745,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+59746,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+59747,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+59748,Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+59749,C;C++;HTML/CSS;Java;Python;SQL
+59750,Ruby;Rust
+59751,HTML/CSS;Java;JavaScript
+59752,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+59753,Objective-C;Swift
+59754,C++;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+59755,C;C++
+59756,Objective-C;Swift
+59757,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+59758,Assembly;C;HTML/CSS;Java;Kotlin;Objective-C;PHP;SQL;Swift
+59759,HTML/CSS;Java;JavaScript;PHP;SQL
+59760,C#;HTML/CSS;JavaScript;PHP;SQL
+59761,C#;SQL
+59762,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+59763,Java;Python;SQL
+59764,Java;JavaScript
+59765,JavaScript;Python
+59766,C;C++;Java;Objective-C
+59767,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Scala;SQL;Swift
+59768,C#;HTML/CSS;JavaScript;SQL;Other(s):
+59769,Go;Java;Kotlin;Python
+59770,R
+59771,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+59772,HTML/CSS;JavaScript;Python;SQL
+59773,Bash/Shell/PowerShell;C++;C#;Other(s):
+59774,HTML/CSS;JavaScript;PHP;TypeScript
+59775,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+59776,JavaScript;Python
+59777,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL;TypeScript
+59778,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+59779,Bash/Shell/PowerShell;SQL;Other(s):
+59780,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+59781,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+59782,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+59783,C++;HTML/CSS;JavaScript;SQL
+59784,C++;C#;HTML/CSS;SQL
+59785,HTML/CSS;JavaScript
+59786,Java;JavaScript;Kotlin;PHP
+59787,Bash/Shell/PowerShell;C++;SQL
+59788,HTML/CSS;Java;Python
+59789,Assembly;Bash/Shell/PowerShell;C;Go;Python;Ruby
+59790,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;Other(s):
+59791,JavaScript;TypeScript
+59792,C;HTML/CSS;Java;JavaScript
+59793,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+59794,HTML/CSS;Java;JavaScript;Kotlin;PHP
+59795,C++;Python
+59796,C;C++;HTML/CSS;Java;JavaScript;Python
+59797,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+59798,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+59799,HTML/CSS;JavaScript;Python;VBA
+59800,HTML/CSS;JavaScript
+59801,HTML/CSS;PHP
+59802,HTML/CSS;JavaScript
+59803,Assembly;Bash/Shell/PowerShell;C;C++;Python
+59804,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59805,Other(s):
+59806,Assembly;C;Go;HTML/CSS;Java;JavaScript;R;Swift;TypeScript
+59807,C++;HTML/CSS;JavaScript;Rust;WebAssembly
+59808,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Other(s):
+59809,HTML/CSS;JavaScript;PHP;R;SQL
+59810,C#;HTML/CSS;JavaScript;TypeScript
+59811,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59812,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python;SQL
+59813,Go;JavaScript;PHP
+59814,C#;HTML/CSS;Java;JavaScript;TypeScript
+59815,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;JavaScript;Python;SQL
+59816,Java;Kotlin
+59817,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+59818,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;SQL
+59819,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;Java;JavaScript;PHP;TypeScript
+59820,Elixir;Java;Python;Ruby;Rust;WebAssembly
+59821,Clojure
+59822,C++;C#;HTML/CSS;JavaScript;SQL
+59823,C#;HTML/CSS;JavaScript;PHP
+59824,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+59825,Java;JavaScript;SQL;Other(s):
+59826,C#;HTML/CSS;JavaScript;SQL
+59828,C#;HTML/CSS;JavaScript;R;SQL;TypeScript;WebAssembly
+59829,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59830,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+59831,HTML/CSS;JavaScript;PHP
+59832,Python;SQL
+59833,Swift
+59834,Bash/Shell/PowerShell;C;Rust;Other(s):
+59836,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+59837,C;C++;C#;Java
+59838,C#;Java;JavaScript;SQL
+59839,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+59840,Bash/Shell/PowerShell;Python;Ruby
+59841,C++;HTML/CSS;SQL
+59842,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;TypeScript
+59843,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+59844,C;C#
+59845,C#;HTML/CSS;JavaScript;PHP;SQL
+59846,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;Swift
+59847,HTML/CSS;JavaScript
+59848,Assembly;Bash/Shell/PowerShell;C;C++;C#;Other(s):
+59849,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+59850,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59851,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+59852,Java;Python;R;SQL;Other(s):
+59853,C;HTML/CSS;JavaScript;PHP;SQL
+59854,HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+59855,HTML/CSS;JavaScript;PHP
+59856,C;HTML/CSS;Python
+59857,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59858,C#;HTML/CSS;JavaScript;SQL;TypeScript
+59859,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+59860,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+59861,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+59862,Java;JavaScript
+59863,HTML/CSS;Java;JavaScript;SQL
+59864,C#;JavaScript;Python;SQL;TypeScript
+59865,C#;HTML/CSS;JavaScript;PHP;SQL
+59866,Assembly;Bash/Shell/PowerShell;C;Java;Python;SQL
+59867,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+59868,C++;HTML/CSS;JavaScript;Python;TypeScript
+59869,Python
+59870,C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;TypeScript;VBA
+59871,Dart;Java;JavaScript;Kotlin
+59872,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+59873,HTML/CSS;JavaScript;Python
+59874,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+59875,Java;JavaScript;Python;SQL
+59876,C#;HTML/CSS;JavaScript
+59877,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby
+59878,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59879,Java;Kotlin
+59880,Clojure;JavaScript;Python;SQL;Other(s):
+59881,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL;Other(s):
+59883,JavaScript;PHP;SQL
+59884,JavaScript;SQL;VBA;Other(s):
+59885,C#;HTML/CSS;JavaScript;SQL
+59886,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+59887,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+59888,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;WebAssembly
+59889,C++;C#;HTML/CSS;Java;JavaScript;PHP
+59890,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;R;SQL
+59891,C#;HTML/CSS;JavaScript;SQL;VBA
+59892,Bash/Shell/PowerShell;C++;Python;SQL
+59893,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+59894,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+59895,C;C++;C#
+59896,Python;Other(s):
+59897,Bash/Shell/PowerShell;Ruby
+59898,HTML/CSS;JavaScript;Python;VBA
+59900,HTML/CSS;JavaScript;PHP
+59901,Bash/Shell/PowerShell;C;Rust
+59902,Python;SQL;Other(s):
+59903,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+59904,Python;SQL;VBA;Other(s):
+59905,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL;TypeScript
+59906,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+59907,C++;C#;JavaScript;PHP;Python;R;SQL
+59908,Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+59909,HTML/CSS;JavaScript;Python;SQL;TypeScript
+59910,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59911,C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+59912,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+59913,Bash/Shell/PowerShell;C;Objective-C;Other(s):
+59914,SQL;Other(s):
+59915,C;HTML/CSS;JavaScript;Python;SQL
+59916,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;Swift;TypeScript
+59917,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+59918,C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+59919,Clojure;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+59920,HTML/CSS;Objective-C;PHP;Swift
+59921,C++;HTML/CSS;Java;JavaScript;SQL
+59922,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+59923,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Rust;Scala;SQL;VBA
+59924,Python;Other(s):
+59925,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+59926,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+59928,C#;HTML/CSS;JavaScript;Python
+59929,HTML/CSS;Java;JavaScript;Python
+59930,Go;PHP;SQL
+59931,C#;SQL;Other(s):
+59932,C#;SQL;TypeScript
+59933,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+59934,Python;R
+59935,Assembly;C;C++;Java;JavaScript;Python
+59936,HTML/CSS;Other(s):
+59937,C#;Dart;HTML/CSS;JavaScript;WebAssembly
+59938,HTML/CSS;JavaScript;Scala
+59939,C++;C#;HTML/CSS;JavaScript;Objective-C
+59940,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+59941,C#;Python
+59942,C#;HTML/CSS;JavaScript;SQL
+59943,Bash/Shell/PowerShell;SQL
+59944,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;Java;Python;SQL;Other(s):
+59945,Java;Kotlin;Python;Swift
+59946,Bash/Shell/PowerShell;C;Python
+59947,Java;JavaScript;Objective-C;Swift
+59948,C#;Python
+59949,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+59950,HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+59951,JavaScript;SQL
+59952,C++;Java;Python
+59953,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59954,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+59955,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+59956,HTML/CSS;JavaScript;PHP
+59957,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+59958,C++
+59959,Bash/Shell/PowerShell;Python;SQL
+59960,C++;Java;Kotlin;Python;Ruby;SQL
+59961,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+59962,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;Other(s):
+59963,Objective-C;Swift
+59964,C#;HTML/CSS;Java;PHP;SQL
+59965,C;C++;C#;Java
+59966,HTML/CSS;JavaScript;SQL
+59967,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+59968,C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+59969,Assembly;HTML/CSS;Java;Python;SQL;TypeScript
+59971,PHP
+59972,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;TypeScript
+59973,C#;F#
+59974,HTML/CSS;JavaScript;Kotlin;Python;SQL
+59975,C#;Java;JavaScript;Kotlin;Python;SQL
+59976,C#;Erlang;Java;JavaScript;PHP;Python;Ruby
+59977,HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+59978,HTML/CSS;Python
+59979,HTML/CSS;JavaScript;PHP;SQL
+59980,Bash/Shell/PowerShell;C;Go;JavaScript;Python
+59981,Python;R
+59982,C++;JavaScript;Python;Rust
+59983,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+59984,HTML/CSS;JavaScript;PHP
+59985,HTML/CSS;JavaScript;PHP;Python
+59986,C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+59987,HTML/CSS;JavaScript;PHP;SQL
+59988,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+59989,Bash/Shell/PowerShell;C;C++;Clojure;Objective-C
+59990,Bash/Shell/PowerShell;C++;Python
+59991,C#;Clojure;HTML/CSS;JavaScript;SQL
+59992,HTML/CSS;Java;JavaScript;TypeScript
+59993,C++;C#;HTML/CSS;Java;PHP;Python;R;SQL;VBA
+59994,C;C#;HTML/CSS;Java;JavaScript;Python
+59995,C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+59996,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+59997,HTML/CSS;JavaScript;PHP
+59998,Go;HTML/CSS;JavaScript;Ruby
+59999,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+60000,JavaScript;Python
+60001,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+60002,C#;HTML/CSS;JavaScript;Python
+60003,Bash/Shell/PowerShell;C++;JavaScript;Python;Ruby;Scala
+60004,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+60005,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;SQL
+60006,HTML/CSS;JavaScript;PHP
+60007,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+60008,HTML/CSS;Java;JavaScript;PHP;SQL
+60009,Go;JavaScript;Ruby;SQL
+60010,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+60011,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+60012,C;Java;Kotlin;Objective-C
+60013,HTML/CSS;JavaScript
+60014,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+60015,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+60016,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60017,HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+60019,C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;Other(s):
+60020,C#;JavaScript;SQL;TypeScript
+60021,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+60022,JavaScript;Python;SQL;TypeScript
+60023,C;C++;HTML/CSS;Java;JavaScript;Python
+60024,HTML/CSS;Java;JavaScript;PHP;SQL
+60025,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+60026,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+60027,JavaScript;Python;TypeScript
+60028,HTML/CSS;JavaScript;PHP
+60029,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;Python;Scala;SQL
+60030,C#;HTML/CSS;JavaScript;SQL;Other(s):
+60031,Bash/Shell/PowerShell;C;Java;Python;R;Other(s):
+60032,Bash/Shell/PowerShell;Swift
+60033,Java
+60034,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+60035,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+60036,JavaScript
+60037,HTML/CSS;Java;JavaScript;SQL
+60038,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Scala;SQL
+60039,R;SQL
+60040,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+60041,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+60042,Bash/Shell/PowerShell;Python;SQL
+60043,C#;HTML/CSS;JavaScript;Python;SQL
+60044,HTML/CSS;JavaScript;SQL;Other(s):
+60045,Java
+60046,Bash/Shell/PowerShell;Python
+60047,C++;C#;Dart;HTML/CSS;JavaScript;PHP;Python;Ruby
+60048,Bash/Shell/PowerShell;Python;SQL
+60049,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP
+60050,C#;JavaScript;PHP;SQL
+60051,Java;Kotlin
+60052,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;SQL
+60053,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+60054,JavaScript;PHP;SQL
+60055,HTML/CSS;TypeScript;VBA
+60056,HTML/CSS;SQL;Other(s):
+60057,HTML/CSS;JavaScript;Python;TypeScript
+60058,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+60059,C#
+60060,Java;Python;SQL;Other(s):
+60061,HTML/CSS;PHP
+60062,C++;Other(s):
+60063,Java;Kotlin
+60064,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;Ruby;SQL;Other(s):
+60065,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift
+60067,C;C++;HTML/CSS;Java
+60068,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+60069,JavaScript;PHP
+60070,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+60071,Python;SQL
+60072,C#;JavaScript;SQL;Other(s):
+60073,Java;TypeScript
+60074,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+60075,C++;HTML/CSS;JavaScript;Python
+60076,Java;Python;Scala
+60077,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+60079,HTML/CSS;JavaScript;PHP;R;Scala;VBA
+60080,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+60081,Java;Swift
+60082,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby
+60083,HTML/CSS;JavaScript;Python
+60084,Python;R
+60085,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+60086,Go;Java
+60087,Bash/Shell/PowerShell;C#;Go;JavaScript;Ruby;TypeScript
+60088,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL
+60089,Other(s):
+60090,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+60091,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+60092,C;C++;Java;Kotlin;Python;Rust;Scala;SQL
+60093,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+60094,JavaScript
+60095,Java;Ruby
+60096,C#;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript;VBA
+60097,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+60098,Bash/Shell/PowerShell;Python
+60099,Java;TypeScript
+60100,HTML/CSS;Java;JavaScript;Python
+60101,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60102,Java;SQL
+60103,C#;SQL
+60104,C#;JavaScript
+60105,HTML/CSS;JavaScript;SQL
+60106,HTML/CSS;JavaScript;PHP;Python
+60107,Bash/Shell/PowerShell;C;C++;Other(s):
+60108,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+60109,JavaScript;PHP;Python;VBA
+60110,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60111,R;Other(s):
+60112,JavaScript;Python
+60113,HTML/CSS;JavaScript;SQL
+60114,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python;VBA;Other(s):
+60115,Java;Python
+60116,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+60117,C#;JavaScript;TypeScript
+60118,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60119,C++
+60120,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+60121,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+60122,C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+60123,Kotlin;Python;Scala
+60124,SQL;Other(s):
+60125,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python
+60126,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;TypeScript
+60127,C++;C#;Java;SQL
+60128,HTML/CSS;JavaScript;Python
+60129,HTML/CSS;JavaScript;PHP;Python
+60130,C;C++;HTML/CSS;JavaScript;Python;SQL
+60131,Bash/Shell/PowerShell;C;Clojure;JavaScript;PHP;SQL
+60132,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+60134,HTML/CSS;JavaScript;PHP
+60135,SQL
+60136,Bash/Shell/PowerShell;C;C++;Python
+60137,Python;Other(s):
+60138,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+60139,Java;Python
+60140,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+60141,C#;JavaScript
+60142,Assembly;C;C++;C#;Go;Java;Python;SQL
+60143,Bash/Shell/PowerShell;Go;Python;SQL;TypeScript
+60144,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Swift;TypeScript
+60145,C#;HTML/CSS;JavaScript;SQL
+60146,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+60147,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Rust
+60148,HTML/CSS;JavaScript;PHP;SQL
+60149,C;C++;Java;SQL
+60150,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60151,HTML/CSS;Java;JavaScript;Swift
+60152,C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+60153,C;C++;Python
+60154,Go;Python;Ruby;SQL;Other(s):
+60156,Java;Kotlin
+60158,C++
+60159,HTML/CSS;Java;Swift
+60160,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60161,C;C++;Java;JavaScript;PHP;SQL
+60162,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60163,Bash/Shell/PowerShell;Java;Kotlin
+60164,HTML/CSS;Java;JavaScript;PHP;Python
+60165,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+60166,C;HTML/CSS;JavaScript;PHP;Python
+60167,Bash/Shell/PowerShell;Python;SQL
+60168,Python
+60169,SQL
+60170,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+60171,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript
+60172,C#;HTML/CSS;Java;Python;SQL
+60173,Java;JavaScript
+60174,Elixir;HTML/CSS;JavaScript;TypeScript
+60175,JavaScript
+60176,HTML/CSS;Python
+60177,Java;JavaScript;Kotlin;Scala
+60178,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+60179,C++;Python
+60180,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60181,JavaScript
+60182,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Other(s):
+60183,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60185,SQL
+60186,HTML/CSS;Java;Kotlin;PHP;SQL;TypeScript
+60187,HTML/CSS;JavaScript;PHP
+60188,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+60189,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;TypeScript
+60190,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;Rust;SQL;Swift
+60191,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+60192,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60193,Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+60194,C#;HTML/CSS;JavaScript;SQL
+60195,Java
+60196,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+60197,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+60198,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+60199,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60200,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+60201,Elixir;HTML/CSS;JavaScript;Ruby
+60202,Java;Python;SQL;TypeScript
+60203,C;C++;C#;Java;JavaScript;SQL;TypeScript
+60204,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL;VBA
+60205,Bash/Shell/PowerShell;Erlang;JavaScript;Python;Other(s):
+60206,PHP
+60208,Assembly;Bash/Shell/PowerShell;C;Python
+60209,C#;HTML/CSS;JavaScript;Python;SQL
+60210,VBA
+60211,Assembly;C;C++;Dart;Java
+60212,HTML/CSS;Java;JavaScript
+60213,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;R;SQL
+60214,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+60215,Bash/Shell/PowerShell;C;Clojure;Java;Python;Scala;SQL
+60216,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60217,Python
+60218,C;C++;C#;HTML/CSS;JavaScript;SQL
+60219,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+60220,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+60221,C++;C#;HTML/CSS;Java;Other(s):
+60222,Python;Other(s):
+60223,C#;Swift
+60224,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript
+60225,Bash/Shell/PowerShell;Python;Scala
+60226,Bash/Shell/PowerShell;Python
+60227,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+60228,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+60229,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+60230,Bash/Shell/PowerShell;Java;Python;Other(s):
+60231,C#;Java;JavaScript
+60232,HTML/CSS;JavaScript
+60233,C#;JavaScript;SQL
+60234,JavaScript;Ruby
+60235,HTML/CSS;JavaScript;PHP;SQL
+60236,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;R;SQL;VBA
+60237,HTML/CSS;JavaScript;Python;R
+60238,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+60239,HTML/CSS;JavaScript;Ruby
+60240,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+60241,C++;Java;JavaScript;VBA
+60242,C++;HTML/CSS;PHP;Python;SQL
+60243,HTML/CSS
+60244,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+60245,Java;JavaScript;Python;SQL
+60246,C#;F#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+60247,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript;Other(s):
+60248,HTML/CSS;JavaScript;PHP;SQL
+60249,Bash/Shell/PowerShell;HTML/CSS;Python
+60250,HTML/CSS;JavaScript;PHP
+60251,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+60252,HTML/CSS;JavaScript;PHP;Python
+60253,Java;JavaScript;TypeScript
+60254,C;Java
+60255,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+60256,Bash/Shell/PowerShell;Python;R;SQL
+60258,Java;Kotlin
+60259,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60260,C;HTML/CSS;Java;JavaScript;PHP;SQL
+60261,C#;HTML/CSS;JavaScript;SQL
+60262,Java;JavaScript;Python;SQL;TypeScript
+60263,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+60264,Bash/Shell/PowerShell;Java;JavaScript
+60265,HTML/CSS;Java;JavaScript;Kotlin
+60266,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+60267,Java
+60268,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+60269,Assembly;C;C#;HTML/CSS;JavaScript;PHP;SQL
+60270,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+60271,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+60272,Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+60273,Bash/Shell/PowerShell;Java
+60274,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+60275,Bash/Shell/PowerShell;Go;Java;PHP;Python;R;SQL
+60276,Bash/Shell/PowerShell;Python;Scala;SQL
+60277,Assembly;Java
+60278,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+60279,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL
+60280,C++;HTML/CSS;Java;JavaScript;Python;R;SQL;Other(s):
+60281,HTML/CSS;JavaScript;PHP
+60282,C#;JavaScript;Kotlin;R;SQL;TypeScript
+60283,C#;HTML/CSS;JavaScript;TypeScript
+60284,Assembly;C;C++;Python;R
+60286,HTML/CSS;JavaScript;Ruby
+60287,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+60288,Assembly;Java;JavaScript;SQL;TypeScript
+60289,JavaScript;PHP
+60290,C;C++;C#;HTML/CSS;SQL
+60291,Assembly
+60292,Java;JavaScript
+60293,Java;Python;SQL
+60294,HTML/CSS;JavaScript;PHP;SQL
+60295,HTML/CSS;JavaScript;TypeScript;Other(s):
+60296,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript;VBA
+60297,Bash/Shell/PowerShell;Python;R;SQL
+60298,Assembly;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+60299,Java;JavaScript;Python
+60300,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+60301,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+60302,Bash/Shell/PowerShell;C;C#;Elixir;Erlang;HTML/CSS;JavaScript;Python;Rust;SQL;WebAssembly;Other(s):
+60303,HTML/CSS;Java;JavaScript;Python
+60304,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+60305,HTML/CSS;JavaScript;PHP;TypeScript
+60306,C#;HTML/CSS;JavaScript;PHP;SQL
+60307,HTML/CSS;JavaScript;Python;TypeScript
+60308,Java;Kotlin
+60309,C++;HTML/CSS;JavaScript
+60310,C;C++;C#;Python;SQL
+60311,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+60312,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+60313,C#;Go;HTML/CSS;JavaScript;SQL
+60314,Bash/Shell/PowerShell;C;C++;R
+60315,C#;HTML/CSS;Java;JavaScript;SQL
+60316,VBA
+60317,HTML/CSS;JavaScript;Kotlin;PHP;SQL
+60318,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+60319,C;HTML/CSS;Java;JavaScript;Python;SQL
+60320,HTML/CSS;JavaScript;PHP
+60321,C++;C#;HTML/CSS;Java;JavaScript;SQL
+60322,HTML/CSS;JavaScript;Ruby;SQL
+60323,C#;HTML/CSS;TypeScript
+60324,HTML/CSS;JavaScript;Python
+60325,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+60326,Bash/Shell/PowerShell;C#
+60327,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+60328,Bash/Shell/PowerShell;Objective-C;PHP;Python;Ruby;Swift
+60329,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+60330,C;C++;Other(s):
+60331,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+60332,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+60333,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+60334,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+60335,Java;Kotlin;SQL
+60336,HTML/CSS;JavaScript
+60337,Bash/Shell/PowerShell;C++;Go;JavaScript;TypeScript
+60338,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;PHP
+60339,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+60340,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+60341,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+60342,HTML/CSS;JavaScript
+60343,Bash/Shell/PowerShell;Python;R
+60344,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+60345,C#;HTML/CSS;JavaScript;Swift
+60346,HTML/CSS;JavaScript
+60347,JavaScript
+60348,C;C++;C#;HTML/CSS
+60349,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+60350,HTML/CSS;Python;R;SQL
+60351,C#;HTML/CSS;JavaScript;SQL;Other(s):
+60352,C;C++;Go;Java;Python;SQL
+60353,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+60354,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+60355,HTML/CSS;JavaScript;TypeScript
+60356,C;C++;Java;JavaScript;Python
+60357,C++;HTML/CSS;Java;JavaScript
+60358,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala;SQL;Other(s):
+60359,Bash/Shell/PowerShell;C#;Go;HTML/CSS
+60360,C#;Go;HTML/CSS;Java;JavaScript;SQL;Other(s):
+60361,Java;Scala
+60362,Java
+60363,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL
+60364,Assembly;HTML/CSS;JavaScript;PHP;SQL
+60365,C#;HTML/CSS;JavaScript;SQL
+60366,C;HTML/CSS;JavaScript;Ruby;Rust;SQL;TypeScript;WebAssembly
+60367,Assembly;C;HTML/CSS;Java;JavaScript;SQL
+60368,C#;HTML/CSS;JavaScript;PHP;SQL
+60369,C;C++;Java;Python
+60370,Bash/Shell/PowerShell;C#;F#;SQL;VBA
+60371,C#;Java;JavaScript
+60372,JavaScript;Python;Ruby
+60373,Python
+60374,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+60375,C;C++;HTML/CSS;Java;JavaScript;Python;R
+60376,Go;Python
+60377,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+60378,C;C++;HTML/CSS;Java;JavaScript;PHP
+60379,HTML/CSS;Java;JavaScript;PHP;SQL
+60380,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP
+60381,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60382,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60383,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+60384,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+60385,C;C#;HTML/CSS;Java;Python
+60386,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+60387,C#;Java;Python
+60388,Clojure;Swift
+60389,HTML/CSS;PHP;SQL
+60390,C++;Python
+60391,Java
+60392,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+60393,C#;Python;SQL
+60394,Java;JavaScript
+60395,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60396,Bash/Shell/PowerShell;C;C++;Python
+60397,C#;HTML/CSS;SQL
+60398,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+60399,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60400,C#;HTML/CSS;Java;JavaScript;TypeScript
+60401,JavaScript;Python;Ruby
+60402,HTML/CSS;JavaScript;Python;SQL
+60403,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;SQL;Other(s):
+60404,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+60405,Assembly;Bash/Shell/PowerShell;C;C++;C#
+60406,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+60407,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+60408,HTML/CSS;JavaScript;SQL;VBA;Other(s):
+60409,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL
+60410,Bash/Shell/PowerShell;C;C++;HTML/CSS;Kotlin;Rust
+60411,Java
+60412,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+60413,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+60414,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+60415,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Rust;SQL
+60416,Bash/Shell/PowerShell;C#;PHP;SQL
+60417,HTML/CSS;JavaScript;PHP;SQL
+60418,C#;HTML/CSS;JavaScript;SQL
+60419,Java;Python
+60420,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+60421,C++;Python
+60422,Java
+60423,C#;HTML/CSS;JavaScript;SQL
+60424,HTML/CSS;Java
+60425,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+60426,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+60427,HTML/CSS;Java;JavaScript
+60428,C#;SQL
+60429,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+60430,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+60431,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL
+60432,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+60433,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python
+60434,HTML/CSS;Python;R;SQL
+60435,Bash/Shell/PowerShell;HTML/CSS;Python;R
+60436,Dart;HTML/CSS;Java;JavaScript;TypeScript
+60437,Python;R;SQL
+60438,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+60439,C++;Erlang;Java;JavaScript;PHP;Python;Scala;SQL
+60440,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+60441,JavaScript;PHP;SQL
+60442,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript;VBA
+60443,Bash/Shell/PowerShell;C++;Java;Python;SQL
+60444,C;C++;JavaScript;Python;SQL
+60445,JavaScript;PHP;SQL
+60446,Bash/Shell/PowerShell;C;Python
+60447,Elixir;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+60448,HTML/CSS;JavaScript;Python
+60449,C#;HTML/CSS;JavaScript;SQL
+60450,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+60451,Bash/Shell/PowerShell;Elixir;JavaScript
+60452,Assembly;C#;Java;JavaScript;SQL
+60453,Assembly;C;C++;C#;HTML/CSS;Java;PHP;R;SQL;TypeScript;Other(s):
+60454,Java;JavaScript
+60455,Bash/Shell/PowerShell;Java
+60456,Go;HTML/CSS;JavaScript;Ruby
+60457,JavaScript
+60458,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+60459,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+60460,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+60461,C++;C#;HTML/CSS;Python
+60462,JavaScript;PHP;R;SQL;VBA
+60463,C#;HTML/CSS;JavaScript;SQL
+60464,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+60465,Bash/Shell/PowerShell;Clojure;Python;Scala
+60466,Assembly
+60467,HTML/CSS;JavaScript;PHP;SQL
+60468,Bash/Shell/PowerShell;C++;Go;Python;SQL;TypeScript
+60469,Bash/Shell/PowerShell;HTML/CSS;Python
+60470,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+60471,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60472,HTML/CSS;JavaScript;PHP;SQL
+60473,Python;SQL
+60474,HTML/CSS;JavaScript;PHP;Swift
+60475,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60476,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+60477,Java;Kotlin
+60478,HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+60479,C++;C#;HTML/CSS;JavaScript;SQL
+60480,C#;HTML/CSS;JavaScript;Python;SQL
+60481,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+60482,Java;JavaScript;SQL
+60483,Java;JavaScript;SQL
+60484,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+60485,Bash/Shell/PowerShell;C;C++;Python
+60486,Bash/Shell/PowerShell;C++
+60487,HTML/CSS;Java;JavaScript;Kotlin;SQL
+60488,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Rust
+60489,C++;JavaScript;PHP;Python;SQL;TypeScript
+60490,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+60491,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+60492,C;HTML/CSS;Java;SQL
+60493,HTML/CSS;JavaScript;PHP
+60495,Assembly;C;C++;PHP;Python;SQL
+60496,HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+60497,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala;SQL
+60498,Bash/Shell/PowerShell;C#;SQL
+60499,HTML/CSS;JavaScript;Python;SQL;TypeScript
+60500,Java
+60501,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+60502,C;HTML/CSS;JavaScript;Kotlin;Objective-C;Swift;TypeScript;WebAssembly
+60503,VBA
+60504,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;SQL;TypeScript
+60505,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+60506,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+60507,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;VBA;Other(s):
+60508,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+60509,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+60510,JavaScript;Python
+60511,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+60512,Clojure;Elixir;Other(s):
+60513,Java;JavaScript;Python;Rust
+60514,HTML/CSS;Python
+60515,HTML/CSS;Java;JavaScript
+60516,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript;VBA
+60517,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60518,C;Java
+60519,Dart;F#;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+60520,C#;JavaScript;Swift
+60521,HTML/CSS;JavaScript
+60522,HTML/CSS;JavaScript;PHP
+60523,Java;JavaScript
+60524,C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+60525,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+60526,Python;SQL
+60527,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+60528,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+60529,HTML/CSS;Java;JavaScript;PHP
+60530,C#;HTML/CSS;JavaScript
+60531,Bash/Shell/PowerShell;C;HTML/CSS;Python
+60532,Python
+60533,C;JavaScript
+60534,HTML/CSS;JavaScript
+60535,HTML/CSS;Java;JavaScript;Python;Ruby
+60536,Bash/Shell/PowerShell;C;C++
+60537,C#;Java;JavaScript
+60538,C;C++;HTML/CSS;Python;R;SQL
+60539,HTML/CSS;Python
+60540,C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+60541,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+60542,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Scala;TypeScript;WebAssembly
+60543,C#;JavaScript;SQL;TypeScript;WebAssembly
+60544,Elixir;HTML/CSS;JavaScript;Ruby
+60545,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60546,C;Dart;HTML/CSS;JavaScript;Python;Rust
+60547,C#
+60548,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60549,C;Python;SQL
+60550,C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+60551,PHP;SQL
+60552,HTML/CSS;JavaScript;PHP;SQL
+60554,HTML/CSS;JavaScript;Kotlin;TypeScript
+60555,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+60556,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60557,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+60558,C;Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+60559,Java;Scala;Other(s):
+60560,HTML/CSS;JavaScript;Python
+60561,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+60562,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+60563,Java;JavaScript;Scala;SQL;TypeScript
+60564,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60565,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60566,HTML/CSS;JavaScript;PHP;SQL
+60567,Python;SQL
+60568,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60569,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60570,HTML/CSS;Java;JavaScript;PHP;SQL
+60571,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+60572,C;C++;C#;HTML/CSS;Java;SQL;Other(s):
+60573,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+60574,C#;Python
+60575,Python
+60576,HTML/CSS;JavaScript;Ruby
+60577,Bash/Shell/PowerShell;C#;SQL
+60578,Bash/Shell/PowerShell;Go;Java;JavaScript;Scala;SQL;Other(s):
+60579,C#;Java;Kotlin;Python
+60580,C#;Other(s):
+60581,C#;Swift
+60582,C#;Java;JavaScript
+60584,HTML/CSS;PHP;SQL
+60585,C;C++;HTML/CSS;Python;Rust;SQL
+60586,HTML/CSS;JavaScript;PHP;SQL
+60587,HTML/CSS;JavaScript;PHP;Python;SQL
+60588,Kotlin
+60589,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60590,Bash/Shell/PowerShell;Java;JavaScript
+60591,HTML/CSS;JavaScript;PHP;Python;SQL
+60592,HTML/CSS;JavaScript;PHP;SQL;VBA
+60593,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+60594,HTML/CSS;JavaScript;PHP;SQL
+60595,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60596,Assembly;C;C++;Objective-C
+60597,SQL
+60598,C++;C#;Java;SQL
+60599,Assembly;SQL;Other(s):
+60600,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+60601,C#
+60602,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+60603,Dart;HTML/CSS;Java;Kotlin;SQL;Other(s):
+60604,Assembly;C#;HTML/CSS;JavaScript;SQL
+60605,HTML/CSS;Java;JavaScript;PHP;TypeScript
+60606,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+60607,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+60608,HTML/CSS;Java;JavaScript;Kotlin;SQL
+60609,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+60610,Bash/Shell/PowerShell;C;Python
+60611,Java;JavaScript;Python;SQL
+60612,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+60613,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+60614,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+60615,HTML/CSS;JavaScript;TypeScript
+60616,Java;Kotlin
+60617,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+60618,Bash/Shell/PowerShell;JavaScript;Ruby;Scala;SQL
+60619,Assembly;C
+60620,C#;SQL;VBA
+60621,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+60622,HTML/CSS;JavaScript
+60623,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+60624,Rust
+60625,Bash/Shell/PowerShell;Java;SQL
+60626,C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+60627,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+60628,C;HTML/CSS;Java;PHP;Rust;SQL
+60629,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Python;Rust
+60631,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+60632,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+60633,Bash/Shell/PowerShell;Dart;Elixir;HTML/CSS;Java;JavaScript;TypeScript
+60634,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60635,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+60636,HTML/CSS;PHP;Python;R;Scala;SQL
+60637,Bash/Shell/PowerShell;C#;SQL
+60638,C#;HTML/CSS;PHP;SQL
+60639,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;Python;SQL
+60640,Bash/Shell/PowerShell;Python
+60641,C#;Ruby
+60642,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+60643,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+60644,C#;Java;SQL
+60645,C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+60646,C++;C#;Rust;SQL;TypeScript
+60647,HTML/CSS;Java;SQL;TypeScript
+60648,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+60649,Bash/Shell/PowerShell;Java;JavaScript;Scala
+60650,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+60651,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+60652,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+60653,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+60654,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+60655,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+60656,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+60657,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;VBA;Other(s):
+60658,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+60659,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Objective-C;PHP;SQL
+60661,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;Swift
+60662,HTML/CSS;JavaScript;PHP;Ruby
+60663,Bash/Shell/PowerShell;C;C++;Java;Objective-C;Swift
+60664,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Scala;SQL;Swift
+60665,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+60666,Java;JavaScript;SQL
+60667,C#;Java;SQL
+60668,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60669,Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+60670,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+60671,C++;C#
+60672,Bash/Shell/PowerShell;C#;JavaScript;Python;R;SQL;TypeScript
+60673,C#;HTML/CSS;JavaScript;Objective-C;SQL
+60674,C++;Go;HTML/CSS;Java;JavaScript;Python
+60675,C++;Java;Python;R;SQL
+60676,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+60677,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL
+60678,C;C++;JavaScript;PHP;Other(s):
+60679,C;Python;Other(s):
+60680,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+60681,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+60682,F#;HTML/CSS;SQL
+60684,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+60685,C#;HTML/CSS
+60686,C;C++;Java;Python;TypeScript
+60687,HTML/CSS;JavaScript;PHP;SQL
+60688,Java;PHP
+60689,C#
+60690,HTML/CSS;JavaScript;PHP;SQL
+60691,C#;Java;SQL
+60692,Java;Python;SQL;Other(s):
+60693,C#
+60694,C++;HTML/CSS;JavaScript
+60695,HTML/CSS;JavaScript
+60696,HTML/CSS;PHP;SQL
+60697,Java;JavaScript;PHP;SQL
+60698,C#;HTML/CSS;JavaScript;TypeScript
+60699,HTML/CSS;JavaScript;Python
+60700,HTML/CSS;JavaScript;Objective-C;PHP;SQL
+60701,Bash/Shell/PowerShell;Python;R
+60702,Bash/Shell/PowerShell;C#
+60703,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Rust;WebAssembly
+60704,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript;Other(s):
+60705,C#;JavaScript;SQL
+60706,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60707,Objective-C;Swift
+60708,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+60709,Bash/Shell/PowerShell;C++;C#;Java;Python;Ruby
+60710,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+60711,Bash/Shell/PowerShell;C;C++
+60712,Java
+60714,Assembly;Bash/Shell/PowerShell;C++;Dart;Elixir;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+60715,HTML/CSS;JavaScript;Ruby
+60716,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+60717,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala
+60718,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+60719,C++;HTML/CSS;JavaScript;Python;SQL
+60721,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+60722,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+60723,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+60724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+60725,Bash/Shell/PowerShell;Java;SQL
+60726,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+60727,Bash/Shell/PowerShell;C;C++;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript
+60728,Bash/Shell/PowerShell;Java;JavaScript;SQL
+60729,C
+60730,C;Python;Other(s):
+60731,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60732,HTML/CSS;JavaScript;PHP;Python;SQL
+60733,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Ruby;Swift
+60734,HTML/CSS;Java;JavaScript;PHP;SQL
+60735,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+60736,Bash/Shell/PowerShell;Python
+60737,HTML/CSS;PHP;SQL
+60738,Bash/Shell/PowerShell;C++;Python
+60739,Bash/Shell/PowerShell;C++;R;SQL
+60740,C#;F#
+60741,HTML/CSS;JavaScript;PHP
+60742,HTML/CSS;Python
+60743,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60744,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60745,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+60746,Bash/Shell/PowerShell;JavaScript;Python
+60747,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift;TypeScript
+60748,Elixir;Go;Ruby
+60749,HTML/CSS;JavaScript;PHP
+60750,Go;JavaScript;Scala
+60751,Bash/Shell/PowerShell;C++;Python;SQL
+60752,Python
+60753,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+60754,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+60756,HTML/CSS;JavaScript;Ruby;SQL
+60757,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL
+60758,HTML/CSS;JavaScript;Python;SQL;TypeScript
+60759,HTML/CSS;Java;JavaScript;SQL
+60760,HTML/CSS;Java
+60761,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+60762,C#;HTML/CSS;JavaScript;SQL
+60763,Bash/Shell/PowerShell;C;Java;Python
+60764,HTML/CSS;JavaScript;Python;R;Ruby;SQL
+60765,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+60766,C#;Go;HTML/CSS;JavaScript;Python;TypeScript
+60767,JavaScript;Kotlin;Python;TypeScript
+60768,C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+60769,HTML/CSS;JavaScript
+60770,C;C++;HTML/CSS;JavaScript;PHP;SQL
+60771,C#;HTML/CSS;JavaScript;Python
+60772,F#;JavaScript;TypeScript
+60773,HTML/CSS;JavaScript
+60774,HTML/CSS;JavaScript;PHP;R;SQL
+60775,HTML/CSS;Java;JavaScript;Python;SQL
+60776,Bash/Shell/PowerShell;JavaScript;PHP
+60777,Python
+60778,Assembly;Bash/Shell/PowerShell;C;Other(s):
+60779,C#;HTML/CSS
+60780,HTML/CSS;JavaScript;PHP
+60781,C;HTML/CSS;Java;JavaScript
+60782,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+60783,Assembly;C++;HTML/CSS;Java;PHP;Python;SQL
+60784,C#;Go;HTML/CSS;Java;JavaScript;Swift;TypeScript
+60785,Other(s):
+60786,C#;Java;JavaScript;Python;SQL;TypeScript
+60787,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60788,HTML/CSS;Java;Python;SQL
+60789,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R
+60790,Bash/Shell/PowerShell;Go;JavaScript;Python;Rust;SQL;TypeScript
+60791,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+60792,C#;JavaScript
+60793,HTML/CSS;JavaScript;PHP;Python;SQL
+60794,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+60795,HTML/CSS;Java;JavaScript;PHP;SQL
+60796,HTML/CSS;JavaScript;Python;SQL
+60797,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+60798,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+60799,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+60800,HTML/CSS;JavaScript
+60801,C#;HTML/CSS;JavaScript;TypeScript
+60802,Bash/Shell/PowerShell;Python;SQL;Other(s):
+60803,C++;Java;JavaScript;Kotlin;Objective-C;Python;R
+60804,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+60805,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+60806,Java;SQL
+60807,Assembly;Bash/Shell/PowerShell;C;Objective-C;Python
+60808,HTML/CSS;JavaScript;PHP;SQL
+60809,Go;HTML/CSS;JavaScript
+60810,HTML/CSS;Java;JavaScript;PHP;SQL
+60811,Bash/Shell/PowerShell;C;C++;C#;SQL
+60812,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+60813,Python
+60814,HTML/CSS;JavaScript;Python;Other(s):
+60815,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60816,Objective-C;Swift
+60817,C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+60818,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+60819,Bash/Shell/PowerShell;Java;JavaScript;SQL
+60820,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+60821,C++;Python;Rust
+60822,Bash/Shell/PowerShell;Java
+60823,HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+60824,Bash/Shell/PowerShell;C++;JavaScript
+60825,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+60826,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+60827,Bash/Shell/PowerShell;C#
+60828,C#;Java;Python;SQL
+60829,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+60831,C#;HTML/CSS;JavaScript;SQL
+60832,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+60833,C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+60834,C#;HTML/CSS;Java;JavaScript;Python;SQL
+60835,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin
+60836,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+60837,HTML/CSS;JavaScript;SQL;Other(s):
+60838,C#
+60839,Bash/Shell/PowerShell;C;Java;Python;Scala;SQL
+60840,Dart;HTML/CSS;Java
+60841,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+60842,C#;Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+60843,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+60844,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+60845,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+60846,Bash/Shell/PowerShell;JavaScript;TypeScript
+60847,HTML/CSS;JavaScript;PHP
+60848,HTML/CSS;JavaScript;PHP
+60849,C#;HTML/CSS;Java;JavaScript;SQL
+60850,Assembly;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+60851,Bash/Shell/PowerShell;C;C++;Go;Python;SQL
+60852,C;C++;C#;HTML/CSS;JavaScript;PHP;R;SQL;VBA;Other(s):
+60853,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+60854,HTML/CSS;JavaScript;Python;SQL
+60855,HTML/CSS;JavaScript;Python;SQL
+60856,HTML/CSS;Java;JavaScript;Scala;VBA
+60857,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;SQL
+60858,C;C++;Python;Rust;SQL
+60859,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;JavaScript;Ruby;Rust;SQL;TypeScript
+60860,C#;HTML/CSS;JavaScript
+60861,Other(s):
+60862,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+60863,C#
+60864,Bash/Shell/PowerShell;C;C++;Python;SQL
+60865,C;C++;C#;HTML/CSS;PHP
+60866,HTML/CSS;JavaScript;PHP;Python;SQL
+60867,Go;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+60868,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60869,Bash/Shell/PowerShell;Java;Python;Scala
+60870,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+60871,C#;HTML/CSS;JavaScript;PHP;SQL
+60872,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+60873,C
+60874,Bash/Shell/PowerShell;Java
+60875,Bash/Shell/PowerShell;C;C++;Java;Kotlin;PHP
+60877,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+60878,HTML/CSS;JavaScript
+60879,Java;Kotlin;SQL;Swift
+60880,C++;Java;Python;SQL
+60881,Bash/Shell/PowerShell;C;C++;Java;JavaScript
+60882,JavaScript
+60883,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Python
+60884,Clojure
+60885,C++;Java;JavaScript;Python;Scala;TypeScript
+60886,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+60887,HTML/CSS;Java;JavaScript;Python;R;SQL
+60888,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+60889,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+60890,Bash/Shell/PowerShell;Python;SQL
+60891,C#;HTML/CSS;JavaScript;SQL
+60892,Go;Objective-C;Swift
+60893,HTML/CSS;Java;TypeScript
+60894,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+60895,HTML/CSS;JavaScript;TypeScript
+60896,HTML/CSS;JavaScript;PHP;TypeScript
+60897,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+60898,C#;Dart;JavaScript;Objective-C;Python;Swift
+60899,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+60900,Java;JavaScript;Python;Scala;TypeScript
+60901,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+60902,R
+60903,C#;HTML/CSS;JavaScript;R;SQL;Swift
+60904,HTML/CSS;JavaScript;PHP
+60905,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60906,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+60907,C;F#;HTML/CSS;Java;JavaScript;Python;SQL
+60908,Bash/Shell/PowerShell;Python
+60909,HTML/CSS;JavaScript;TypeScript
+60910,C#;HTML/CSS;Java;Kotlin;Python
+60911,Java;Objective-C;SQL;Swift
+60912,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60913,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+60914,HTML/CSS;JavaScript;PHP
+60915,Bash/Shell/PowerShell;Swift
+60916,Elixir;HTML/CSS;JavaScript;PHP;Python;SQL
+60917,Assembly;C;C++;Java;JavaScript;Ruby;SQL;TypeScript
+60918,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+60919,Go;JavaScript;Python
+60920,Java;JavaScript;PHP;SQL
+60921,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+60922,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+60923,Java;Kotlin
+60924,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60925,C#;HTML/CSS;Java;Python;Ruby;SQL;Swift
+60926,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+60927,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+60928,C;HTML/CSS;JavaScript;PHP;TypeScript
+60930,Bash/Shell/PowerShell;Python;R;Other(s):
+60931,Assembly;Bash/Shell/PowerShell;C;C++;Python;R;Rust
+60932,JavaScript;PHP;Python
+60933,HTML/CSS;Java;JavaScript
+60934,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+60935,C;HTML/CSS;Python
+60936,Bash/Shell/PowerShell;Elixir;Go;JavaScript;R;TypeScript
+60937,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+60938,Java;JavaScript;SQL;Other(s):
+60939,HTML/CSS;JavaScript;Other(s):
+60940,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60941,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+60942,HTML/CSS;JavaScript
+60943,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+60944,C#;JavaScript;SQL;VBA
+60945,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+60946,HTML/CSS;JavaScript;PHP;SQL
+60947,HTML/CSS;PHP;Python;SQL
+60948,Bash/Shell/PowerShell;HTML/CSS;Java;Ruby;SQL;Other(s):
+60949,Bash/Shell/PowerShell;Go;Java;JavaScript;Ruby;TypeScript
+60950,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+60951,Bash/Shell/PowerShell;Python
+60952,Bash/Shell/PowerShell;C#;PHP;SQL;Other(s):
+60953,C++;HTML/CSS;Java;Python
+60954,JavaScript;PHP
+60955,C#;Python
+60956,C#;HTML/CSS;JavaScript;SQL
+60957,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+60958,Python;R;SQL;VBA
+60959,Assembly;C;C++;HTML/CSS;JavaScript
+60960,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+60961,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+60962,C;C++
+60963,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+60964,C;C++;Java
+60965,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+60966,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL;Other(s):
+60967,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+60968,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+60969,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+60970,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+60971,JavaScript;Other(s):
+60972,HTML/CSS;Java;JavaScript;PHP;SQL
+60973,HTML/CSS;Java;JavaScript;SQL
+60974,Bash/Shell/PowerShell;C++;Python;R;SQL
+60975,HTML/CSS;JavaScript
+60976,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+60977,Assembly;JavaScript;Python;SQL;Swift
+60978,C#;HTML/CSS;JavaScript;SQL;TypeScript
+60979,Scala
+60980,HTML/CSS;Kotlin
+60981,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60982,Bash/Shell/PowerShell;Java;Python;TypeScript
+60983,Java;Rust
+60984,HTML/CSS;JavaScript;PHP;SQL
+60985,Java;JavaScript;PHP
+60986,Bash/Shell/PowerShell;Python;R;SQL
+60987,C;C++;C#;HTML/CSS;Java
+60988,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+60989,HTML/CSS;JavaScript;PHP
+60990,HTML/CSS;Java;JavaScript;SQL;TypeScript
+60991,Bash/Shell/PowerShell;C++;Java;Python;R;SQL
+60992,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+60993,C++;C#
+60994,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+60995,Python;SQL;Other(s):
+60996,Java;SQL
+60997,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+60998,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;SQL;TypeScript
+60999,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61000,C;Go;HTML/CSS;JavaScript;PHP;Python
+61001,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+61002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+61003,C++;C#;Java;JavaScript;Other(s):
+61004,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+61005,HTML/CSS;Java;JavaScript;Python;SQL;VBA
+61006,HTML/CSS;JavaScript;PHP;Python;Other(s):
+61007,Bash/Shell/PowerShell;Python;SQL
+61008,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+61010,C#;F#;HTML/CSS;Python;SQL;TypeScript;Other(s):
+61011,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61012,C;C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+61013,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61014,C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61015,Bash/Shell/PowerShell;Java;Rust;Scala;SQL
+61016,Java;JavaScript;PHP;SQL
+61018,Assembly;Bash/Shell/PowerShell;C;C++;Python;R
+61019,Objective-C;Swift
+61020,C++;C#;JavaScript;TypeScript
+61021,C#;HTML/CSS;JavaScript;Python;TypeScript
+61022,Assembly;Bash/Shell/PowerShell;C;C++;F#;HTML/CSS;JavaScript;Python;Rust;Other(s):
+61023,C#;HTML/CSS;Java;PHP;SQL
+61025,C++;Python;Ruby;SQL
+61026,C#;HTML/CSS;JavaScript;SQL
+61027,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61028,HTML/CSS;JavaScript;Kotlin;Objective-C;Swift
+61030,C++;HTML/CSS;JavaScript;TypeScript
+61031,C++;Python
+61032,Java;Kotlin
+61033,Java;PHP
+61034,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+61035,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61036,C#;HTML/CSS;JavaScript;Ruby;SQL
+61037,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61038,HTML/CSS;JavaScript;PHP;SQL
+61039,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+61040,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL;Other(s):
+61041,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61042,JavaScript;PHP;SQL
+61043,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61044,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+61045,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+61046,Bash/Shell/PowerShell;Java;Python
+61047,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+61048,Dart;HTML/CSS;JavaScript;Python
+61049,Bash/Shell/PowerShell;JavaScript;Ruby
+61050,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+61051,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+61052,C;C++;SQL
+61053,Bash/Shell/PowerShell;C;Java;Python;VBA;Other(s):
+61054,HTML/CSS;JavaScript;Python
+61055,C#;F#;SQL
+61056,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+61057,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+61058,HTML/CSS;JavaScript;TypeScript
+61059,Bash/Shell/PowerShell;C++;C#
+61060,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+61061,Python
+61062,Objective-C;Swift
+61063,HTML/CSS;JavaScript;PHP;Python
+61065,C#;HTML/CSS;JavaScript;SQL;Other(s):
+61066,C;C++;C#;HTML/CSS;PHP
+61067,Bash/Shell/PowerShell;Go;Java;SQL
+61068,Python;R;SQL;Other(s):
+61069,Bash/Shell/PowerShell;C#;SQL
+61070,C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+61071,HTML/CSS;JavaScript;VBA
+61072,HTML/CSS;Java;JavaScript;Python
+61073,HTML/CSS;JavaScript
+61074,C#;HTML/CSS;JavaScript;SQL
+61075,HTML/CSS;Kotlin;Objective-C;TypeScript
+61076,Bash/Shell/PowerShell;C#;Go;JavaScript;Rust;SQL
+61077,HTML/CSS;JavaScript;PHP;SQL
+61078,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+61079,R
+61080,C#;F#;HTML/CSS;JavaScript;SQL
+61081,Java;Python;Rust
+61082,C++;Clojure;HTML/CSS;Java;JavaScript
+61083,C++;HTML/CSS;Java;PHP
+61084,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+61085,C++;C#;Java
+61086,C++;C#
+61087,Bash/Shell/PowerShell;C#;SQL;TypeScript
+61088,HTML/CSS
+61089,HTML/CSS;Java;JavaScript;PHP;SQL
+61090,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+61091,C++;C#;Dart;Go;Java;JavaScript;Kotlin;PHP;Rust;TypeScript
+61092,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+61093,Assembly;Bash/Shell/PowerShell;C;C#;Java;Python
+61094,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+61095,Java
+61096,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61097,JavaScript
+61098,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+61099,C;HTML/CSS;JavaScript;Python;SQL
+61100,Swift
+61102,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+61103,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+61104,C#;Python
+61105,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+61106,Java;JavaScript;SQL;TypeScript
+61107,Bash/Shell/PowerShell;C++;Python;SQL
+61108,Bash/Shell/PowerShell;C;Python
+61109,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+61110,C;C++;Python
+61111,C++;C#;Python;Scala
+61112,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+61113,C#;Go
+61114,Objective-C;Swift
+61115,HTML/CSS;JavaScript;Python;R;Ruby;Rust;SQL;TypeScript
+61116,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61117,HTML/CSS;JavaScript;Ruby
+61118,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;VBA
+61119,Bash/Shell/PowerShell;C#;Go;HTML/CSS;SQL;TypeScript
+61120,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Objective-C;Python;Swift
+61121,HTML/CSS;JavaScript;TypeScript
+61122,C#;HTML/CSS;SQL;VBA
+61123,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL;TypeScript
+61124,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+61125,C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+61126,C#;HTML/CSS;JavaScript
+61127,Bash/Shell/PowerShell;Java;SQL
+61128,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61129,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61130,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+61131,Go;Python
+61132,C#;HTML/CSS;Java;PHP;SQL
+61133,C++;C#;HTML/CSS;Java;JavaScript;Python
+61134,C#;HTML/CSS;JavaScript;SQL
+61135,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+61136,Bash/Shell/PowerShell;C#;Clojure;JavaScript;Python
+61137,C#;HTML/CSS;Java;JavaScript;SQL
+61138,C#;Java;JavaScript;SQL
+61139,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+61140,Java;JavaScript;Python;Scala;SQL
+61141,C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+61142,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust
+61143,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+61144,Java;JavaScript
+61145,HTML/CSS;JavaScript;PHP
+61146,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61147,Other(s):
+61148,C;C++;Python
+61149,C;C++;HTML/CSS;Java;PHP;SQL
+61150,Python
+61151,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript;Other(s):
+61152,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+61153,HTML/CSS;JavaScript;Ruby
+61154,C#;Swift
+61155,C#;HTML/CSS;SQL
+61156,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61157,Elixir;HTML/CSS;Java;JavaScript;Python;SQL
+61158,C;C++;Java
+61159,C#;HTML/CSS;JavaScript;SQL
+61160,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL
+61161,HTML/CSS;Java;PHP;SQL
+61162,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+61163,C#;SQL
+61164,C#;HTML/CSS;Java;PHP
+61165,Go;JavaScript;Python;Ruby;SQL
+61166,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+61167,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+61168,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+61169,C++;C#;Java;VBA;Other(s):
+61170,Java
+61171,Python
+61172,HTML/CSS;JavaScript;PHP;SQL
+61173,Dart;HTML/CSS;Java;Kotlin;SQL
+61174,HTML/CSS;JavaScript;Python
+61175,HTML/CSS;Java;JavaScript;Python
+61176,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+61178,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61179,C#;SQL
+61180,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61181,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+61182,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Ruby;SQL;VBA;WebAssembly
+61183,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+61184,C#;HTML/CSS;JavaScript;PHP;SQL
+61185,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Rust;Swift;WebAssembly
+61186,HTML/CSS;Python;R;SQL
+61187,HTML/CSS;Java;PHP;SQL
+61188,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+61189,HTML/CSS;JavaScript;SQL
+61190,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+61191,Assembly;Bash/Shell/PowerShell;C;C++;Python;VBA
+61192,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+61193,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61194,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61195,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+61196,C++
+61197,C#;HTML/CSS;JavaScript;PHP;SQL
+61198,Java
+61199,Bash/Shell/PowerShell;Objective-C;Python;Swift
+61200,Python;SQL
+61201,Objective-C;Swift
+61202,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61203,HTML/CSS;Java;JavaScript;SQL
+61204,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;TypeScript
+61205,C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+61206,Assembly;C++;HTML/CSS;Java;PHP
+61207,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+61208,C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+61209,HTML/CSS;Java;JavaScript;Python;R;SQL
+61210,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;VBA
+61212,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61213,C++;HTML/CSS;Other(s):
+61214,C;HTML/CSS;Java;JavaScript;PHP
+61215,C#
+61216,C#;HTML/CSS;JavaScript;SQL
+61217,C#;HTML/CSS;JavaScript;TypeScript
+61218,HTML/CSS;Java;JavaScript;SQL
+61219,HTML/CSS;JavaScript
+61220,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;PHP;R;Ruby;SQL
+61221,HTML/CSS;Java;JavaScript;PHP;SQL
+61222,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;WebAssembly
+61223,C;Clojure
+61224,C#;Elixir;JavaScript;SQL
+61225,Java;Kotlin;Swift
+61226,HTML/CSS;Java;JavaScript;PHP
+61227,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61228,Bash/Shell/PowerShell;C++;JavaScript;Python
+61229,Bash/Shell/PowerShell;C;C++;Go;SQL
+61230,Erlang
+61231,C#;HTML/CSS;JavaScript;SQL
+61232,Assembly;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+61233,HTML/CSS;Java;JavaScript;SQL
+61234,HTML/CSS;JavaScript;PHP
+61235,Objective-C;Swift
+61236,HTML/CSS;Java;JavaScript;SQL
+61237,Bash/Shell/PowerShell;C;C++;Python
+61238,C++;Java;Python
+61239,Python
+61240,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+61241,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;TypeScript
+61242,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+61243,C++;C#;Java;PHP;Python;SQL
+61244,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+61245,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+61246,Java;Python
+61247,C;C#;HTML/CSS;Java;JavaScript;Swift
+61248,Java;JavaScript;Ruby
+61249,Bash/Shell/PowerShell;Python;Swift
+61250,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+61251,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61252,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+61253,Assembly;C++;JavaScript;PHP;Python
+61254,Bash/Shell/PowerShell;C#;Go;Java;SQL
+61255,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+61256,HTML/CSS;JavaScript
+61257,Bash/Shell/PowerShell;Java;Kotlin;Python
+61258,Java
+61259,JavaScript;SQL
+61260,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+61261,C++;Python;R
+61262,C#;SQL
+61263,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP
+61264,HTML/CSS;Other(s):
+61265,C#;JavaScript;Ruby;TypeScript
+61266,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+61267,C++;C#;HTML/CSS;JavaScript;SQL
+61268,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+61269,HTML/CSS;JavaScript;Python
+61270,Objective-C
+61271,C++;HTML/CSS;JavaScript
+61272,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Python
+61273,C;C++;Python
+61274,Go;JavaScript;Python
+61275,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61276,HTML/CSS;JavaScript
+61277,Bash/Shell/PowerShell;C++;Go;Java;Kotlin;Python;SQL
+61278,C#;JavaScript;PHP;Python;SQL
+61279,C#;HTML/CSS;Java;JavaScript;SQL
+61280,Swift
+61281,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+61282,Java;Python
+61283,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+61284,HTML/CSS;JavaScript
+61285,Java;SQL
+61286,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61287,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+61288,Go;HTML/CSS;JavaScript
+61289,Python
+61290,C++;C#;HTML/CSS;JavaScript;Python
+61291,HTML/CSS;Java;Kotlin;PHP
+61292,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+61293,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+61294,HTML/CSS;JavaScript;Python;SQL
+61295,HTML/CSS;Java;JavaScript;PHP;SQL
+61296,C;C++;HTML/CSS;JavaScript;Python;Rust;Scala;SQL;Other(s):
+61297,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;Rust;SQL;Swift
+61298,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+61299,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+61300,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby;Rust
+61301,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Swift;TypeScript;VBA;Other(s):
+61302,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61303,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+61304,C#;SQL
+61305,C;C++;HTML/CSS;Java;PHP
+61306,HTML/CSS;PHP;SQL
+61307,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+61308,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript
+61309,Bash/Shell/PowerShell;C++;Java;Python;Scala
+61310,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+61311,HTML/CSS;JavaScript;TypeScript
+61312,C++;C#;JavaScript
+61313,Bash/Shell/PowerShell;C;C++;SQL
+61314,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;Swift
+61315,Go;HTML/CSS;Python;Rust;TypeScript
+61316,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;TypeScript;Other(s):
+61317,JavaScript;Python
+61318,Bash/Shell/PowerShell;Java
+61319,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61320,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61321,PHP;Python
+61322,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;Java;JavaScript;R
+61323,HTML/CSS;Java;SQL;TypeScript
+61324,HTML/CSS;Java;JavaScript
+61325,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+61326,HTML/CSS;JavaScript;PHP;Python;SQL
+61327,JavaScript
+61328,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+61329,Java;JavaScript;Kotlin;SQL;TypeScript
+61330,JavaScript;PHP
+61331,HTML/CSS;JavaScript;PHP
+61332,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61333,C#
+61334,C;C++;Java;SQL;Swift
+61335,C;HTML/CSS;Java;JavaScript;PHP;SQL
+61336,Java;JavaScript;Python;Scala
+61337,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61338,Assembly;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+61339,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;VBA;WebAssembly
+61340,Bash/Shell/PowerShell;R;SQL
+61341,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61342,C++;HTML/CSS;Java;JavaScript;PHP;Python
+61343,Python;SQL
+61344,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+61345,C;C++;C#;HTML/CSS;JavaScript;Python
+61346,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Swift
+61347,HTML/CSS;Java;JavaScript;SQL
+61348,C;C++;HTML/CSS;Java;SQL
+61349,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+61350,Assembly;C;C++;Java;Python
+61351,HTML/CSS;JavaScript;PHP;SQL
+61352,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61353,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+61354,Assembly;C;C++;Python;Ruby;Other(s):
+61355,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+61356,Bash/Shell/PowerShell;Java;Python
+61357,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+61358,C#;Java;JavaScript;PHP;Python;Ruby;SQL
+61359,HTML/CSS;JavaScript;TypeScript
+61360,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+61361,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+61362,Assembly;C#;HTML/CSS;SQL;TypeScript
+61363,Bash/Shell/PowerShell;Python;Ruby
+61364,C++;JavaScript
+61365,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+61366,Assembly;HTML/CSS;JavaScript;Rust;WebAssembly;Other(s):
+61367,HTML/CSS;JavaScript;SQL;Other(s):
+61368,C;C++;Java;JavaScript;SQL
+61369,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61370,HTML/CSS;Java;Python;Scala;SQL
+61371,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61372,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+61373,Bash/Shell/PowerShell;C#;HTML/CSS;Kotlin;PHP
+61374,C;R;SQL
+61375,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+61376,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+61377,Java;SQL
+61378,Java;SQL
+61379,C#;HTML/CSS;JavaScript;Python;SQL
+61380,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+61381,C++;C#;JavaScript;WebAssembly
+61382,HTML/CSS;JavaScript;PHP;Ruby;SQL
+61383,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+61384,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+61385,Dart;HTML/CSS;Java;JavaScript;Python;SQL
+61386,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+61387,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python
+61389,C++;Python
+61390,Bash/Shell/PowerShell;C++;Java;JavaScript;SQL
+61391,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61392,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+61393,HTML/CSS;JavaScript;PHP;Python
+61394,C#
+61395,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+61396,C#;Java;Python;SQL
+61397,C#;F#;SQL
+61398,C#;Go;HTML/CSS;JavaScript;Python;SQL
+61399,HTML/CSS;Java;JavaScript
+61400,Java;Kotlin
+61402,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+61403,C#;HTML/CSS;JavaScript
+61404,C;C++;JavaScript;Python
+61405,Assembly;C;C++;C#;HTML/CSS;Python;R;VBA;Other(s):
+61406,Bash/Shell/PowerShell;Python
+61407,C;Go;Java;Python;SQL
+61408,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+61409,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61410,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift
+61411,HTML/CSS;Python
+61412,Assembly;Swift
+61413,Dart;HTML/CSS;JavaScript;TypeScript
+61414,C++;JavaScript;Python
+61415,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61416,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+61417,C#;Other(s):
+61418,C#;Go;HTML/CSS;Java;Kotlin;Python;Scala;SQL
+61419,Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;Java;JavaScript;Python;Scala;SQL;VBA
+61420,C#;Java;JavaScript;Kotlin
+61421,Go;JavaScript;SQL
+61422,C#;JavaScript;SQL;TypeScript
+61423,HTML/CSS;JavaScript;PHP;SQL
+61424,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61425,HTML/CSS;JavaScript;TypeScript
+61426,HTML/CSS;PHP;Python
+61427,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61428,C++;HTML/CSS;JavaScript
+61429,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;VBA
+61430,C#;F#;HTML/CSS;JavaScript;SQL
+61431,C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+61432,HTML/CSS;Java;JavaScript;SQL;Swift
+61433,Assembly;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61434,C#;HTML/CSS;Java;JavaScript;SQL
+61435,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+61436,Bash/Shell/PowerShell;C++;C#;Java;Objective-C;Python;Swift
+61438,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+61439,C;C++;Go;HTML/CSS;Java;JavaScript;Python
+61440,C#;JavaScript
+61441,C#;HTML/CSS;JavaScript;SQL
+61442,Bash/Shell/PowerShell;Java;JavaScript;Python
+61443,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+61444,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+61445,Bash/Shell/PowerShell;Python;Other(s):
+61446,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+61447,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Kotlin;Ruby
+61448,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+61449,JavaScript;SQL;TypeScript
+61450,C#;HTML/CSS;JavaScript;SQL
+61451,HTML/CSS;JavaScript;Scala;SQL
+61452,HTML/CSS;Java;JavaScript;SQL;Other(s):
+61453,C#;JavaScript;TypeScript
+61454,Java
+61455,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61456,Go;Java
+61457,JavaScript;Python;TypeScript
+61458,Java;Objective-C;Python;Swift
+61459,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61460,C#;JavaScript;TypeScript
+61461,HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;TypeScript
+61462,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61463,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+61464,C#;JavaScript;Python
+61465,C++
+61466,HTML/CSS;JavaScript;PHP;SQL
+61468,C#;JavaScript;SQL;TypeScript
+61469,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+61470,C++;Java;Kotlin;Python;Swift
+61471,Bash/Shell/PowerShell;C++;Python
+61472,HTML/CSS;JavaScript
+61473,HTML/CSS;JavaScript
+61474,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+61475,HTML/CSS;JavaScript;Python
+61476,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+61477,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61478,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+61479,Java;Other(s):
+61480,Bash/Shell/PowerShell;C;C++;C#
+61481,C#;HTML/CSS;JavaScript;SQL
+61482,Bash/Shell/PowerShell;C#;SQL
+61483,HTML/CSS;JavaScript;PHP;VBA
+61484,C;Java;Kotlin;Python;SQL
+61485,Bash/Shell/PowerShell;Clojure;JavaScript;SQL
+61486,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+61487,HTML/CSS;JavaScript;SQL;Other(s):
+61488,C;C++;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;VBA
+61489,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61490,C#;JavaScript;Python;SQL
+61491,Bash/Shell/PowerShell;C;C++;C#;Java;Rust;SQL
+61492,HTML/CSS;JavaScript;Other(s):
+61493,Bash/Shell/PowerShell;C++;Python
+61494,Java;JavaScript
+61495,Assembly;C;HTML/CSS;Java;JavaScript;Python;SQL
+61496,C++;C#
+61497,Java
+61498,C#;HTML/CSS;PHP;SQL;VBA
+61499,Java;TypeScript
+61500,C;C++;HTML/CSS;JavaScript;SQL;Other(s):
+61501,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61502,Java;Kotlin
+61503,C#;JavaScript
+61504,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+61505,C#;Go;JavaScript;SQL
+61506,HTML/CSS;JavaScript;Other(s):
+61507,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61508,HTML/CSS;Java;PHP;SQL
+61509,HTML/CSS;Java;JavaScript;PHP;SQL
+61510,HTML/CSS;JavaScript
+61511,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Swift
+61512,Bash/Shell/PowerShell;C
+61513,C#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+61514,Dart;SQL;Other(s):
+61515,Python
+61516,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+61517,Python;Scala;SQL
+61518,Assembly;Bash/Shell/PowerShell;Java;JavaScript;Python;Other(s):
+61519,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+61520,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+61521,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Scala;SQL;Swift;TypeScript
+61522,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+61523,Java;SQL
+61524,Bash/Shell/PowerShell;Python
+61525,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61526,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+61527,HTML/CSS;JavaScript;Ruby
+61528,HTML/CSS;JavaScript;PHP;SQL
+61529,HTML/CSS;JavaScript;PHP
+61530,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61532,HTML/CSS;JavaScript
+61533,Bash/Shell/PowerShell;C;C++;Python
+61534,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+61535,Bash/Shell/PowerShell;Java;JavaScript;R;SQL;VBA
+61536,Java;Python;SQL;Other(s):
+61537,C++;HTML/CSS;Java;JavaScript;TypeScript
+61538,Bash/Shell/PowerShell;Python;SQL
+61539,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;R;Ruby;SQL;TypeScript
+61540,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+61541,Bash/Shell/PowerShell;HTML/CSS
+61542,HTML/CSS;JavaScript;Python;SQL
+61543,HTML/CSS;JavaScript;PHP
+61544,C#;HTML/CSS;JavaScript;SQL
+61545,Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust;SQL
+61546,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61547,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61548,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61549,HTML/CSS;JavaScript
+61550,C#;Java
+61551,Assembly;HTML/CSS;Java;JavaScript;PHP;Python
+61552,C#;HTML/CSS;JavaScript;SQL
+61553,C++;C#;SQL;Other(s):
+61554,PHP;Python;Rust
+61555,C#;JavaScript;TypeScript
+61556,C#;HTML/CSS;SQL;VBA
+61557,Bash/Shell/PowerShell;C;C++;Java;Python
+61558,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61559,C;C++;Java;JavaScript;Kotlin;Objective-C
+61560,JavaScript;Python
+61561,C#;HTML/CSS;JavaScript;SQL
+61562,HTML/CSS;Java;JavaScript;SQL;Other(s):
+61563,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+61564,Go;JavaScript;PHP
+61565,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61566,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61567,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+61568,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61569,Go;HTML/CSS;Java;JavaScript
+61570,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Ruby;SQL
+61571,C#;HTML/CSS;JavaScript;SQL
+61572,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+61573,HTML/CSS;JavaScript;Python;Swift;TypeScript
+61574,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61575,C#;HTML/CSS;JavaScript;Ruby;SQL
+61576,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+61577,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL
+61578,C;C++;Dart;HTML/CSS;Java;Kotlin;Python
+61579,C#;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+61580,Bash/Shell/PowerShell;JavaScript;Python
+61581,C#
+61582,C;C++;C#;Java;JavaScript;PHP;SQL
+61583,C;HTML/CSS;Java;JavaScript;Other(s):
+61584,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+61585,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+61586,C++
+61587,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+61588,Bash/Shell/PowerShell;C++
+61589,Bash/Shell/PowerShell;Java;Python;SQL;TypeScript
+61590,C#;HTML/CSS;JavaScript;Python
+61591,C#;HTML/CSS;JavaScript;PHP;SQL
+61592,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61593,HTML/CSS;JavaScript;TypeScript
+61594,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+61595,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+61596,HTML/CSS;JavaScript;PHP;SQL
+61597,C#;HTML/CSS;JavaScript
+61599,C;Objective-C;PHP;SQL;Swift
+61600,C#;F#;HTML/CSS;JavaScript;Objective-C;Python;Scala;SQL;TypeScript
+61601,Assembly;C;C++;C#;Java;Python
+61602,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61603,C#;HTML/CSS;JavaScript;TypeScript
+61604,Go;HTML/CSS;JavaScript;Ruby;Rust
+61605,Bash/Shell/PowerShell;Python;Scala;SQL
+61606,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61607,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+61608,Bash/Shell/PowerShell;C++;Java
+61609,HTML/CSS;Java;JavaScript;PHP;SQL
+61610,HTML/CSS;JavaScript;Ruby;SQL
+61611,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+61612,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61613,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+61614,HTML/CSS;JavaScript;Python;TypeScript
+61615,Java;SQL
+61616,Kotlin;PHP
+61617,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+61618,Python;R
+61619,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+61620,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+61621,C;Dart;Java;JavaScript;Python;R;SQL
+61622,C#;HTML/CSS;JavaScript
+61623,C#;HTML/CSS;SQL;TypeScript
+61624,Go;Java;Kotlin;PHP;Python;Ruby
+61625,C++;Go;Objective-C;Python;Scala;Swift;Other(s):
+61626,Assembly;C#;HTML/CSS;PHP;Python
+61627,HTML/CSS;JavaScript;PHP;SQL
+61628,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+61629,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+61630,HTML/CSS;JavaScript;Ruby;TypeScript
+61631,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+61632,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+61633,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61634,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+61635,Java;Python;R;SQL
+61636,C++;Java;JavaScript;Python;SQL
+61637,Java;JavaScript;PHP;Python;TypeScript
+61638,C;C++;C#;Java;PHP;SQL;TypeScript
+61639,HTML/CSS;JavaScript;PHP;TypeScript
+61640,Java;SQL
+61641,C;C++
+61642,Bash/Shell/PowerShell;Java;SQL;Other(s):
+61643,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+61644,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+61645,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+61646,C#;JavaScript;Python
+61647,Java;JavaScript;Ruby;TypeScript
+61648,R;Ruby
+61649,Go;HTML/CSS;JavaScript;Swift
+61650,Bash/Shell/PowerShell;R;Other(s):
+61651,C#;HTML/CSS;JavaScript;TypeScript
+61652,Bash/Shell/PowerShell;C;C++;Java
+61653,HTML/CSS;Java;JavaScript;Python
+61654,Bash/Shell/PowerShell;C
+61655,C#;JavaScript;SQL
+61656,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+61657,C;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+61658,Java;JavaScript;Python;R;VBA
+61659,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;R;SQL
+61660,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL
+61661,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;R
+61662,Bash/Shell/PowerShell;C#;SQL
+61663,Bash/Shell/PowerShell;Java;Python;Rust;WebAssembly
+61665,C;C++;C#
+61666,Python
+61667,C;C++;Java;JavaScript;PHP;Swift
+61668,HTML/CSS;Java;JavaScript;SQL;VBA
+61669,HTML/CSS;Java
+61670,HTML/CSS;JavaScript;TypeScript
+61671,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL;Other(s):
+61672,Assembly;R;Other(s):
+61673,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61674,Java;JavaScript;SQL
+61675,Bash/Shell/PowerShell;C;C++;Go;Java;Kotlin;Python
+61676,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61677,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+61678,HTML/CSS;Java;Python;SQL
+61679,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+61680,PHP;Python;Ruby;SQL
+61681,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+61682,JavaScript;Kotlin;Python;SQL;Other(s):
+61683,C#;HTML/CSS;JavaScript;PHP;SQL
+61684,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61685,C++;Java;Kotlin
+61686,C;C#;HTML/CSS;JavaScript;Objective-C;TypeScript
+61687,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;SQL;TypeScript
+61688,Bash/Shell/PowerShell;C++;C#;SQL;Other(s):
+61689,HTML/CSS;Java;JavaScript;PHP;SQL
+61690,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;VBA
+61691,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+61692,C#;Java;JavaScript;Kotlin;Objective-C
+61693,Java
+61694,Bash/Shell/PowerShell;C#;Erlang;Java;JavaScript;Python
+61695,HTML/CSS;JavaScript;PHP
+61696,C#;SQL
+61697,Python;Other(s):
+61698,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+61699,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+61700,C;C++
+61701,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+61702,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61703,C++;C#;SQL
+61704,C#;Java;Rust
+61705,JavaScript;SQL;VBA
+61706,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+61707,Java;JavaScript;SQL
+61708,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61709,Bash/Shell/PowerShell;Python;R;SQL
+61710,C;C++;Java;Python
+61711,C++;HTML/CSS;Java;TypeScript
+61712,Bash/Shell/PowerShell;Python;SQL
+61713,Bash/Shell/PowerShell;Clojure;JavaScript;PHP;SQL;Other(s):
+61714,C++;Python
+61715,Clojure;JavaScript
+61716,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python
+61717,Java;JavaScript;Python;SQL
+61718,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+61719,C++;HTML/CSS;Java;PHP;Python;SQL
+61720,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61721,Other(s):
+61722,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+61723,JavaScript;PHP;TypeScript
+61724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+61725,Java;JavaScript;TypeScript
+61726,Elixir;Erlang;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61727,C++;HTML/CSS;Java;JavaScript
+61728,Bash/Shell/PowerShell;Java;JavaScript;SQL
+61729,Scala;SQL
+61730,C;Python
+61731,HTML/CSS;JavaScript;Python
+61732,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+61733,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61734,JavaScript
+61735,C;HTML/CSS;Java;JavaScript;Python;SQL
+61736,Bash/Shell/PowerShell;C#;Go;Java;Python;SQL
+61737,C;C++;C#;HTML/CSS;PHP
+61738,C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+61740,Bash/Shell/PowerShell;C;JavaScript;Python
+61741,R;SQL
+61742,Dart;Java;Kotlin;Python;Ruby;Swift
+61743,HTML/CSS;JavaScript;Objective-C;Swift
+61744,C#;HTML/CSS;Java;JavaScript
+61745,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+61746,Go;HTML/CSS;JavaScript
+61747,C#;HTML/CSS;Java;JavaScript;SQL
+61749,Objective-C
+61750,Kotlin;Objective-C;Python;Swift
+61751,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61752,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+61754,HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;TypeScript
+61755,Python;R;SQL
+61756,Bash/Shell/PowerShell;C;Python;R;SQL;Other(s):
+61757,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+61758,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+61759,C;HTML/CSS;Java;JavaScript;Python
+61760,Java;JavaScript;Python;TypeScript
+61761,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61762,HTML/CSS;JavaScript;Python
+61763,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+61764,Java;JavaScript;PHP;SQL;TypeScript
+61765,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+61766,Dart;JavaScript;Python
+61767,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+61768,C++;SQL
+61769,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+61770,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+61771,HTML/CSS;PHP
+61772,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+61773,Bash/Shell/PowerShell;Java;PHP;SQL
+61774,JavaScript;PHP
+61775,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+61776,C++;HTML/CSS;Java;JavaScript
+61777,Assembly;C;C++;Python
+61778,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+61779,Objective-C;Swift
+61780,Java
+61781,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61782,Bash/Shell/PowerShell;SQL
+61783,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61784,Bash/Shell/PowerShell;Dart;JavaScript;Python;SQL
+61785,PHP;Python
+61788,Java;JavaScript
+61789,C#;Java;Python
+61790,Java;JavaScript;Python;SQL
+61791,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61792,Dart;Java
+61793,C;HTML/CSS;JavaScript;Python;SQL
+61794,C#;HTML/CSS;JavaScript;SQL
+61795,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61796,Python;R;Ruby;SQL
+61797,C#;HTML/CSS;JavaScript;SQL
+61798,HTML/CSS;JavaScript
+61799,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+61800,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+61801,Bash/Shell/PowerShell;HTML/CSS;Python
+61802,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Swift;TypeScript
+61803,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61804,Bash/Shell/PowerShell;C;C++;Objective-C;Swift
+61805,HTML/CSS;JavaScript
+61806,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;SQL
+61807,Clojure;HTML/CSS;Java;JavaScript;SQL
+61808,HTML/CSS;JavaScript;PHP;SQL
+61809,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+61810,Bash/Shell/PowerShell;C;C++;Other(s):
+61811,JavaScript;TypeScript
+61812,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+61813,C;C++;JavaScript;Ruby;SQL
+61814,HTML/CSS;JavaScript;Python
+61815,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+61816,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+61817,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+61818,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+61819,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+61820,Java;SQL
+61821,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+61822,HTML/CSS;JavaScript;Ruby;TypeScript
+61823,Python
+61824,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+61825,C#;HTML/CSS;JavaScript;SQL
+61826,Bash/Shell/PowerShell;Java;Python;Scala
+61827,Bash/Shell/PowerShell;C;C++;Java
+61828,Bash/Shell/PowerShell;Java;R;SQL
+61829,Bash/Shell/PowerShell;C
+61830,C;C++;PHP;Python
+61831,HTML/CSS;JavaScript;Python
+61832,HTML/CSS;TypeScript
+61833,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+61834,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL
+61835,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+61836,Java;JavaScript;Rust
+61837,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+61838,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61839,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+61840,C#;Dart;HTML/CSS;JavaScript;Rust;SQL
+61841,Java;SQL
+61842,Go;Python;Rust;Swift;Other(s):
+61843,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61844,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+61845,C++
+61846,C;C#;HTML/CSS;JavaScript;SQL
+61847,C#;HTML/CSS;JavaScript;PHP
+61848,C++;C#;HTML/CSS;JavaScript;PHP;TypeScript
+61849,Java
+61850,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61851,HTML/CSS;PHP;SQL
+61852,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+61853,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;SQL
+61854,Bash/Shell/PowerShell;Objective-C;Swift
+61855,Bash/Shell/PowerShell;JavaScript;PHP
+61856,HTML/CSS;Java;JavaScript;Scala;SQL
+61857,C++;C#;JavaScript;Kotlin;Python;VBA
+61858,C++;SQL;Other(s):
+61859,HTML/CSS;Java;JavaScript;PHP;SQL
+61860,C++
+61861,Assembly
+61862,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+61863,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+61864,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+61865,C
+61866,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+61867,Bash/Shell/PowerShell;C;C++;Python
+61868,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL;TypeScript
+61869,JavaScript;TypeScript
+61870,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;VBA
+61871,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+61872,Python;SQL
+61873,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+61874,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61875,JavaScript;PHP
+61876,Java
+61877,Java;JavaScript;Python;TypeScript
+61878,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+61879,Java;JavaScript
+61880,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+61881,C#;HTML/CSS;JavaScript;SQL
+61882,JavaScript;PHP;TypeScript
+61883,Go;Python
+61884,Assembly;Bash/Shell/PowerShell;C;Python
+61885,C#;HTML/CSS;JavaScript;PHP;SQL
+61886,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+61888,C#;HTML/CSS;JavaScript;Python;SQL;Swift
+61889,Go;HTML/CSS;Java;JavaScript;SQL
+61890,JavaScript;Python;SQL
+61891,C;HTML/CSS;Java;JavaScript;SQL
+61892,C#;SQL
+61893,Bash/Shell/PowerShell;JavaScript;Python
+61894,C++;HTML/CSS;Java;SQL
+61895,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+61896,JavaScript
+61897,HTML/CSS;JavaScript;PHP;Swift
+61898,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+61899,C++
+61900,HTML/CSS;JavaScript
+61901,Bash/Shell/PowerShell;Java;SQL
+61902,Python;SQL
+61903,HTML/CSS;JavaScript;PHP;SQL
+61904,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL;VBA
+61905,C#
+61906,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+61907,Java;JavaScript;Python
+61908,Other(s):
+61909,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python
+61910,Assembly;Java;SQL;TypeScript
+61911,HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+61913,C#;HTML/CSS;JavaScript
+61914,C#;HTML/CSS;JavaScript;TypeScript
+61915,HTML/CSS;JavaScript
+61916,Bash/Shell/PowerShell;Java;Python
+61917,C#;Java;SQL
+61919,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+61920,HTML/CSS;Java;Python;SQL;TypeScript
+61921,C;C++
+61923,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;WebAssembly
+61924,JavaScript;Ruby
+61925,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Ruby;TypeScript;WebAssembly
+61926,HTML/CSS;Java;JavaScript;Kotlin;Objective-C
+61927,C;HTML/CSS;Java;JavaScript;SQL
+61928,Java;SQL
+61929,HTML/CSS;Python
+61930,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+61931,C;C++;HTML/CSS;Python;SQL
+61932,Bash/Shell/PowerShell;Python
+61933,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+61934,C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+61935,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+61936,C#;HTML/CSS;SQL
+61937,HTML/CSS;JavaScript;PHP;SQL
+61938,HTML/CSS;Java;JavaScript
+61939,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+61940,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+61941,C#;HTML/CSS;JavaScript;Python;TypeScript
+61942,Assembly;C;C#;Other(s):
+61943,Java;JavaScript;Kotlin;Python
+61944,C#
+61945,Assembly;Go
+61946,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+61947,Bash/Shell/PowerShell;Python
+61948,Bash/Shell/PowerShell;Python;SQL;Other(s):
+61949,Bash/Shell/PowerShell;Go;Objective-C;PHP;Python;R;Scala;SQL;Swift
+61950,HTML/CSS;JavaScript;Scala
+61951,HTML/CSS;Java;JavaScript;SQL
+61952,C#;HTML/CSS;JavaScript;SQL;TypeScript
+61953,Bash/Shell/PowerShell;C++;C#;Python;SQL;VBA
+61954,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python
+61955,Bash/Shell/PowerShell;Java;Kotlin;Rust;SQL
+61956,C#;Go;Python;SQL;TypeScript
+61957,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+61958,HTML/CSS;JavaScript;PHP;SQL
+61959,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+61960,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+61961,HTML/CSS;Objective-C
+61962,Objective-C;Rust;Swift
+61963,C#;HTML/CSS;JavaScript;Python;SQL
+61964,C++;HTML/CSS;Java;Python;SQL
+61965,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+61966,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Other(s):
+61967,HTML/CSS;JavaScript;Python
+61968,HTML/CSS;Java;JavaScript;Python
+61969,C#;Python
+61970,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+61971,HTML/CSS;JavaScript;PHP;Python
+61972,HTML/CSS;Java;JavaScript;PHP;SQL
+61973,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+61974,Bash/Shell/PowerShell;C++;Python;SQL;VBA
+61975,C;C++;JavaScript
+61976,C;C++;JavaScript;Python;R;Ruby
+61977,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+61978,Assembly;C;C++;C#;PHP;Python;Rust
+61979,C++;C#;HTML/CSS;JavaScript
+61980,HTML/CSS;JavaScript;PHP;SQL
+61981,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Kotlin;TypeScript
+61982,C;C++;Java;JavaScript
+61983,Bash/Shell/PowerShell;Go;Java;Python
+61984,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R
+61985,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+61986,C;HTML/CSS;JavaScript;Objective-C;Python;R;Ruby;SQL;TypeScript
+61987,HTML/CSS;JavaScript;PHP;Other(s):
+61988,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+61989,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+61990,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala
+61991,HTML/CSS;Java;JavaScript;Swift
+61992,C#;Java
+61993,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+61994,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+61995,C#;HTML/CSS;Java;JavaScript;TypeScript
+61996,HTML/CSS;Java;JavaScript;SQL;TypeScript
+61997,Java;JavaScript;Python;Ruby
+61998,Java;JavaScript;PHP;Python;SQL
+61999,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+62000,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+62001,Elixir;JavaScript;PHP
+62002,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;TypeScript
+62003,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+62004,HTML/CSS;JavaScript
+62005,Bash/Shell/PowerShell;Clojure;Java;JavaScript;SQL;Other(s):
+62006,HTML/CSS;JavaScript
+62007,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL;TypeScript
+62008,Bash/Shell/PowerShell
+62009,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL
+62010,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Rust;Other(s):
+62011,C#;HTML/CSS;JavaScript;SQL
+62012,C++;C#;HTML/CSS;JavaScript;R;SQL;Other(s):
+62013,C;C++;JavaScript;Python
+62015,Bash/Shell/PowerShell;C;C++;Python
+62016,JavaScript;PHP
+62017,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+62018,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+62019,Java;Swift
+62020,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;R;Ruby;VBA
+62021,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+62022,Assembly;C;C++;C#;Clojure;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;TypeScript
+62023,Bash/Shell/PowerShell;C++;Java;JavaScript;SQL;VBA
+62024,HTML/CSS;Java;Kotlin
+62025,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62026,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+62027,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+62028,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+62029,Java;JavaScript
+62030,Java;JavaScript;Kotlin
+62031,Python;R
+62032,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Kotlin;Scala;SQL
+62033,Assembly;C;C#;HTML/CSS;JavaScript;SQL;Other(s):
+62034,C#;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62035,Java;JavaScript;Python;Ruby;SQL
+62036,Bash/Shell/PowerShell;Scala
+62037,C;C++
+62038,C++;JavaScript;Python
+62039,C#;Python
+62040,C#;HTML/CSS;JavaScript;SQL
+62041,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;Python;SQL
+62042,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+62043,Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+62044,HTML/CSS;JavaScript;Python
+62045,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;SQL;TypeScript
+62046,C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+62047,Bash/Shell/PowerShell;PHP;Python;SQL;Other(s):
+62048,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+62049,C#;HTML/CSS;Java;PHP;Python
+62050,C#;HTML/CSS
+62051,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+62052,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62053,C#;HTML/CSS;JavaScript;SQL;Other(s):
+62054,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+62055,HTML/CSS;Java;JavaScript;Python
+62056,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+62057,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+62058,HTML/CSS;Java;SQL
+62059,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62060,C#;HTML/CSS;JavaScript;SQL
+62061,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62062,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+62063,C#;HTML/CSS;JavaScript;SQL;Other(s):
+62064,C;C#;HTML/CSS;JavaScript;PHP
+62065,C#;JavaScript;PHP;SQL
+62066,JavaScript;Swift
+62067,Java;Python
+62068,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+62069,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;Scala;SQL
+62070,C#;HTML/CSS;JavaScript;SQL
+62071,C#;HTML/CSS;JavaScript;SQL
+62072,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;WebAssembly;Other(s):
+62073,Assembly;C;C++;HTML/CSS;Java;Kotlin;Python;SQL
+62074,Assembly;C;C++;Java;Python;Other(s):
+62075,HTML/CSS;JavaScript;PHP;SQL
+62076,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+62077,C#;HTML/CSS;JavaScript;R;SQL
+62078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+62079,HTML/CSS;JavaScript;SQL
+62080,JavaScript;PHP
+62081,Python;SQL
+62082,Bash/Shell/PowerShell;Java;Python;SQL;TypeScript;Other(s):
+62083,C;C++;HTML/CSS;JavaScript;PHP;Swift
+62084,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+62085,HTML/CSS;JavaScript;PHP;Ruby
+62086,C#;TypeScript
+62087,C#;HTML/CSS;JavaScript
+62088,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62089,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+62090,Bash/Shell/PowerShell;Python;SQL
+62091,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+62092,HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+62093,HTML/CSS;Java;JavaScript
+62094,C#;HTML/CSS;JavaScript;SQL
+62095,C#;SQL
+62096,Java;SQL
+62097,Bash/Shell/PowerShell;C++;C#;Dart;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;WebAssembly;Other(s):
+62098,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;JavaScript;Swift;Other(s):
+62099,Go;Objective-C;Python;Swift
+62100,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python
+62101,Bash/Shell/PowerShell;C#;JavaScript
+62102,C;C#;TypeScript
+62103,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62104,Bash/Shell/PowerShell;C++;Go;Java;Python
+62105,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;Swift
+62106,Assembly;Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;Other(s):
+62107,Assembly;Bash/Shell/PowerShell;C;C++;Go;Scala
+62108,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+62109,Java;JavaScript;Kotlin;Python;Ruby;SQL
+62110,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+62111,Java;Python;R;SQL;Other(s):
+62112,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+62113,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+62115,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+62116,Dart;JavaScript;Python
+62117,C#;HTML/CSS;JavaScript;SQL
+62118,C#
+62119,Go;Java;Python;SQL
+62120,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62121,C#;HTML/CSS;JavaScript;SQL
+62122,Bash/Shell/PowerShell;C;C++;Java
+62123,JavaScript;Python
+62124,Java;Python;SQL
+62125,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+62126,Java
+62127,Assembly;C;HTML/CSS;Java;Python;R;SQL
+62128,Bash/Shell/PowerShell;Java;JavaScript;PHP
+62129,HTML/CSS;JavaScript;PHP;SQL
+62130,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+62131,Java;SQL
+62132,Java;Kotlin;Scala
+62133,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62134,PHP;SQL
+62135,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62136,Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+62137,HTML/CSS;Java;JavaScript;SQL
+62138,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript;WebAssembly
+62139,HTML/CSS;JavaScript
+62140,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+62141,C++;C#;HTML/CSS;JavaScript;SQL
+62142,Bash/Shell/PowerShell;C;C++
+62143,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+62144,Bash/Shell/PowerShell;Python;R;Scala;SQL
+62145,Assembly;Bash/Shell/PowerShell;C;C++;C#;Objective-C;Python;Ruby;Other(s):
+62146,C#
+62147,JavaScript;TypeScript
+62148,C;C++;Python
+62150,HTML/CSS;JavaScript;PHP;SQL
+62151,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+62152,HTML/CSS;JavaScript;Other(s):
+62153,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+62154,C#;HTML/CSS;JavaScript;SQL
+62155,C;JavaScript;Other(s):
+62156,Ruby
+62157,C;C++;HTML/CSS;Java;PHP;Python;SQL;VBA;Other(s):
+62158,C#;HTML/CSS;JavaScript
+62159,Dart;Java;JavaScript
+62160,HTML/CSS;JavaScript;TypeScript
+62161,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+62162,HTML/CSS;Java;SQL
+62163,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+62165,PHP;SQL
+62166,Assembly;Bash/Shell/PowerShell;C++;C#;Java
+62167,C#;HTML/CSS;JavaScript
+62168,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62169,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62170,C#;HTML/CSS;JavaScript;R;SQL
+62171,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+62172,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+62173,JavaScript;Kotlin;Ruby
+62174,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+62175,Rust
+62176,HTML/CSS;JavaScript;PHP
+62178,Bash/Shell/PowerShell;C;Java;PHP;Python;R;Ruby;Scala
+62179,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+62180,Bash/Shell/PowerShell;C;C++;Python;SQL
+62181,HTML/CSS;JavaScript;Swift;TypeScript
+62182,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+62183,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+62184,Java;SQL
+62185,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA;Other(s):
+62186,Java;JavaScript;PHP;SQL
+62187,Assembly;Bash/Shell/PowerShell;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+62188,HTML/CSS
+62189,HTML/CSS;Java;Kotlin;TypeScript
+62190,Go;HTML/CSS;JavaScript;Python
+62191,HTML/CSS;JavaScript;PHP;TypeScript
+62192,C;Java;Python
+62193,HTML/CSS;Java;PHP;Python
+62194,C++;HTML/CSS;Java;JavaScript;SQL
+62195,Python
+62196,C#;Java;JavaScript;SQL;TypeScript
+62197,HTML/CSS;JavaScript;Python;SQL
+62198,Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;Other(s):
+62199,Java
+62200,C;C++;Java;JavaScript;Python
+62201,HTML/CSS;JavaScript;PHP;SQL
+62202,C#;HTML/CSS;SQL;TypeScript
+62203,HTML/CSS;Java;JavaScript;Python;Other(s):
+62204,Python
+62205,HTML/CSS;JavaScript;VBA
+62206,Java;Kotlin;Swift
+62207,Dart;JavaScript;Python;R
+62208,HTML/CSS;JavaScript
+62209,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;Python;SQL
+62210,HTML/CSS;Java;JavaScript;Kotlin
+62211,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62212,JavaScript
+62213,C#;TypeScript
+62214,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+62215,C#
+62216,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+62217,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift;VBA
+62218,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+62219,Java;JavaScript;PHP;SQL
+62220,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62221,JavaScript;PHP;Python;Ruby;SQL
+62222,Java;Kotlin
+62223,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+62224,Java
+62225,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+62226,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;TypeScript
+62227,HTML/CSS;PHP
+62228,Python
+62229,Clojure;Python;SQL
+62230,HTML/CSS;JavaScript;Ruby
+62231,Objective-C
+62232,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+62233,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+62234,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+62235,HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+62236,C;Clojure;HTML/CSS;JavaScript;Python
+62237,HTML/CSS;JavaScript;PHP;SQL
+62238,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+62239,HTML/CSS;JavaScript
+62240,Bash/Shell/PowerShell;C++
+62241,C++
+62242,HTML/CSS;JavaScript
+62243,C#;HTML/CSS;Java;Ruby
+62244,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java
+62245,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62246,Assembly;Bash/Shell/PowerShell;C;C++;Java
+62247,Java;JavaScript;SQL
+62248,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+62249,Java;Kotlin
+62250,C#;HTML/CSS;Java;JavaScript;SQL
+62251,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+62252,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+62253,Go;JavaScript;Ruby
+62254,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+62255,Assembly;C++;Java
+62256,C#;HTML/CSS;Java;JavaScript;SQL
+62257,Python
+62258,HTML/CSS;JavaScript;Python
+62259,HTML/CSS;JavaScript;TypeScript
+62260,Clojure
+62261,Swift
+62262,Python;R
+62263,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62264,C;Java
+62265,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62266,Java;Kotlin
+62267,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62268,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+62269,Bash/Shell/PowerShell;C;C++;Go;Java;Scala
+62270,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+62271,C;HTML/CSS;Java;JavaScript;PHP
+62272,Bash/Shell/PowerShell;Python;Scala;SQL
+62273,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62274,HTML/CSS;JavaScript;PHP;SQL
+62275,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL;VBA
+62276,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62277,Bash/Shell/PowerShell;Python;Scala
+62278,Bash/Shell/PowerShell;Dart;Go;Java;JavaScript;Kotlin;SQL
+62279,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python
+62280,JavaScript;PHP;Other(s):
+62281,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+62282,HTML/CSS;JavaScript
+62283,C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;VBA;Other(s):
+62284,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+62285,Go;JavaScript;Python;R
+62286,C#;Go;HTML/CSS;JavaScript;Python;SQL
+62287,Assembly;C#;HTML/CSS;Java;JavaScript;SQL
+62288,C#;HTML/CSS;JavaScript;SQL
+62289,Ruby
+62290,HTML/CSS;Java;SQL
+62291,C;C++;Java;Python;Swift
+62292,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+62293,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+62295,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+62296,HTML/CSS;Java;Kotlin;Python;Ruby;SQL
+62297,Bash/Shell/PowerShell;C;C++;Other(s):
+62298,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+62299,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+62300,Java
+62301,C++;HTML/CSS;Java;JavaScript;SQL
+62302,HTML/CSS;PHP;SQL
+62303,C#;HTML/CSS;JavaScript;PHP;SQL
+62304,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+62305,HTML/CSS;JavaScript;PHP;Ruby;SQL
+62306,HTML/CSS;Java;JavaScript;PHP;SQL
+62307,JavaScript;Python;SQL
+62308,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL;Other(s):
+62309,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL;VBA
+62310,C#;HTML/CSS;JavaScript
+62311,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62312,C#;JavaScript
+62313,Bash/Shell/PowerShell;C++;Java;Python
+62314,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+62315,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62316,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+62317,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+62318,HTML/CSS;Java;JavaScript;SQL
+62319,Python
+62320,HTML/CSS;JavaScript;Python;Ruby
+62321,C;C++;Dart;JavaScript;Objective-C;Python;Ruby
+62322,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+62323,HTML/CSS;Java;JavaScript;SQL;TypeScript
+62324,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+62325,HTML/CSS;JavaScript;PHP;Other(s):
+62326,C;C++;Objective-C;Python;Swift
+62327,HTML/CSS;JavaScript;TypeScript
+62328,HTML/CSS;JavaScript
+62329,C#;JavaScript
+62330,C;C++;C#;Python;SQL
+62331,C++;C#;Java;Python;Ruby;SQL
+62332,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+62333,C#;Java
+62334,C#;HTML/CSS;JavaScript;SQL
+62336,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+62337,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;SQL
+62338,Java;PHP;Ruby;SQL
+62339,C#
+62340,HTML/CSS;Python;SQL;VBA
+62341,Java
+62342,C#;HTML/CSS;JavaScript;TypeScript
+62343,C#;Java;Objective-C;Python;SQL;Swift;VBA
+62344,C#;HTML/CSS;JavaScript;SQL;VBA
+62345,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+62346,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+62347,HTML/CSS;JavaScript;TypeScript
+62348,C#;Java
+62349,C#;HTML/CSS;Java;JavaScript
+62350,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62351,JavaScript;Python;TypeScript
+62352,C++;Python;Other(s):
+62353,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+62354,Assembly;C;C++;Python;Other(s):
+62355,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62356,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+62357,Python;R;SQL
+62358,HTML/CSS;JavaScript;Other(s):
+62359,Assembly;C#;Java
+62360,C#;PHP;SQL
+62361,Java;Python
+62362,Bash/Shell/PowerShell;C++;SQL
+62363,C;C++;C#;Python;SQL
+62364,C++;HTML/CSS;Java;JavaScript
+62365,HTML/CSS;JavaScript;TypeScript
+62366,C++;C#;SQL
+62367,Assembly;Bash/Shell/PowerShell;C++;Clojure;Java;JavaScript;Python
+62368,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Kotlin;Python;R;Scala;SQL
+62369,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+62370,C#;HTML/CSS;JavaScript;SQL
+62371,C#;SQL
+62372,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+62373,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+62374,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62375,Assembly;Bash/Shell/PowerShell;C;C#;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;VBA;Other(s):
+62376,C++
+62377,Java;Objective-C;PHP;Ruby;SQL
+62378,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+62379,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+62380,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+62381,C;C++;HTML/CSS;JavaScript;SQL
+62382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+62383,C;Objective-C;Python;Swift
+62384,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python
+62385,VBA
+62386,Assembly;C;HTML/CSS;JavaScript;Python
+62387,C#;HTML/CSS;Java;JavaScript
+62388,C++
+62389,HTML/CSS;JavaScript;PHP
+62390,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;SQL;Other(s):
+62391,Java;Kotlin;SQL
+62392,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+62393,HTML/CSS;Java;JavaScript;Python
+62394,HTML/CSS;JavaScript;PHP;SQL
+62395,HTML/CSS;JavaScript;Ruby
+62396,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+62397,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript
+62398,HTML/CSS;Java;JavaScript;Python;R;SQL
+62399,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+62400,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+62401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+62402,C;C++;C#;JavaScript;Python;R
+62403,Java;JavaScript;SQL;TypeScript
+62404,JavaScript
+62405,Python;SQL
+62406,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+62407,PHP
+62408,HTML/CSS;JavaScript;Python;SQL
+62409,C;C++;HTML/CSS;Java;SQL
+62410,HTML/CSS;JavaScript;PHP;Python
+62411,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+62412,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+62413,Java;Kotlin;Python
+62414,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+62415,C#;JavaScript;Python;TypeScript
+62416,C;C++;C#;HTML/CSS;JavaScript;Objective-C;TypeScript
+62417,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+62418,C++;C#;HTML/CSS;Java;JavaScript;SQL
+62419,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Ruby;SQL
+62420,JavaScript;Other(s):
+62421,HTML/CSS;JavaScript;Ruby;TypeScript
+62422,C#
+62423,Go;HTML/CSS;JavaScript;SQL
+62424,C;C++;HTML/CSS;JavaScript;PHP
+62425,C#;HTML/CSS;SQL
+62426,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+62427,C#;HTML/CSS;JavaScript;SQL
+62428,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+62429,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+62430,C++;Java;JavaScript
+62431,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+62432,HTML/CSS;JavaScript;TypeScript
+62434,Java;JavaScript;TypeScript
+62435,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Rust;SQL;Swift;TypeScript
+62436,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL
+62437,Objective-C;Python;Ruby;Swift
+62438,Bash/Shell/PowerShell;C++;Python
+62439,Bash/Shell/PowerShell;JavaScript;SQL
+62440,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62442,C++;C#;Java;Python;SQL
+62443,C#;Java;SQL
+62444,PHP
+62445,Java;PHP;SQL
+62446,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+62447,Java;TypeScript
+62448,C#;HTML/CSS;JavaScript;SQL
+62449,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+62450,C;HTML/CSS;Java
+62451,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+62452,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+62453,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Ruby;SQL
+62454,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+62455,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+62456,C#;Java;JavaScript;Python;SQL
+62457,Bash/Shell/PowerShell;C#;Go;Java;Kotlin;SQL
+62458,HTML/CSS;JavaScript
+62459,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+62460,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+62461,R;SQL
+62462,C;Java
+62463,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+62464,HTML/CSS;JavaScript;Python;SQL
+62465,Bash/Shell/PowerShell;SQL
+62466,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+62467,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+62468,Python
+62469,HTML/CSS;Python;R;Other(s):
+62470,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+62471,C#;HTML/CSS;JavaScript;SQL
+62472,HTML/CSS;JavaScript
+62473,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;VBA
+62474,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+62475,C;C++
+62476,Bash/Shell/PowerShell;C;Erlang;Go;Python;Ruby;Rust
+62477,C;C++;Go;HTML/CSS;Java;PHP;Python;SQL
+62478,Objective-C;Swift
+62479,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+62480,C#;PHP;SQL;VBA
+62481,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+62482,JavaScript;Ruby
+62483,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+62484,HTML/CSS
+62485,C#;F#;HTML/CSS;TypeScript
+62486,C++;HTML/CSS;JavaScript;Rust
+62487,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+62488,HTML/CSS;Java;JavaScript;SQL;TypeScript
+62489,HTML/CSS;JavaScript;Python
+62490,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+62491,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+62492,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62493,HTML/CSS;Java;JavaScript;SQL
+62494,HTML/CSS;JavaScript;PHP
+62495,HTML/CSS;Java;Python;SQL
+62496,Go;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly;Other(s):
+62497,HTML/CSS;JavaScript;Objective-C;Swift
+62498,C;C++;HTML/CSS;Java
+62499,Assembly;Bash/Shell/PowerShell;C;Java;Scala
+62500,HTML/CSS;JavaScript;PHP;SQL
+62501,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+62502,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+62503,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+62504,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+62505,C#;HTML/CSS;Java;JavaScript;Python;SQL
+62506,C#;HTML/CSS;JavaScript;SQL
+62507,Java
+62508,C#;Go;HTML/CSS;JavaScript
+62509,C++;C#;Python
+62510,C;C++;C#;SQL
+62511,C#;JavaScript;Ruby;TypeScript
+62512,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+62513,Bash/Shell/PowerShell;C;Java;Python;SQL
+62514,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+62515,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+62516,C++;Python;Other(s):
+62517,Bash/Shell/PowerShell;Java;Other(s):
+62519,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+62520,Python;Ruby
+62521,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+62522,C
+62523,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+62524,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;Python;SQL
+62525,HTML/CSS;Java;PHP;SQL
+62526,C;C++;C#;Java;JavaScript;Other(s):
+62527,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+62529,HTML/CSS;Java;JavaScript;SQL
+62530,Bash/Shell/PowerShell;Python
+62531,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+62532,HTML/CSS;JavaScript
+62533,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+62534,C#;SQL
+62535,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+62536,HTML/CSS;Python;R
+62537,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+62538,C++;C#;HTML/CSS;Python;TypeScript
+62539,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+62540,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;PHP;Python;SQL;WebAssembly;Other(s):
+62541,Java;Kotlin
+62542,Bash/Shell/PowerShell;Python;Other(s):
+62543,C#;JavaScript;SQL;TypeScript
+62544,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+62545,C#;HTML/CSS;JavaScript;TypeScript
+62546,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL;VBA
+62547,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+62548,Bash/Shell/PowerShell;C;C++;SQL
+62549,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;Rust;SQL
+62550,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+62551,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Rust
+62552,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+62553,HTML/CSS;JavaScript;Rust;Swift;WebAssembly
+62554,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL
+62555,C#;HTML/CSS;JavaScript;SQL
+62556,C++
+62557,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;Other(s):
+62558,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+62559,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;R;TypeScript
+62560,C++;Java;Kotlin;SQL;Swift
+62561,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+62562,Java;JavaScript;Python;SQL
+62563,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62564,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift
+62565,HTML/CSS;JavaScript;PHP;SQL
+62566,HTML/CSS;Java;JavaScript;Scala;SQL
+62567,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+62568,Bash/Shell/PowerShell;C++;C#;F#;JavaScript;PHP;Python
+62569,Bash/Shell/PowerShell;Java;Python;SQL
+62570,Go;Java;JavaScript;Python;SQL
+62571,C#;HTML/CSS;JavaScript;SQL
+62572,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+62573,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+62574,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+62575,Objective-C
+62576,C#;HTML/CSS;JavaScript
+62577,Bash/Shell/PowerShell;Python
+62578,JavaScript;PHP;Scala;SQL
+62579,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+62580,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62581,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62582,C;Python;SQL
+62583,VBA
+62584,Bash/Shell/PowerShell;SQL;VBA
+62585,Bash/Shell/PowerShell;Java;JavaScript
+62586,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+62587,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+62588,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+62589,PHP;Scala;SQL
+62590,C;C#;Java;Python;SQL;VBA
+62591,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Ruby;Swift
+62592,Java;JavaScript;SQL
+62593,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;PHP;Python;Rust
+62594,C#;HTML/CSS;JavaScript;PHP;SQL
+62595,Bash/Shell/PowerShell;HTML/CSS;PHP;R;SQL
+62596,C
+62597,Java;Python
+62598,Assembly;C;C++;Java;Python
+62599,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62600,HTML/CSS;Java;JavaScript;PHP;SQL
+62601,C++;HTML/CSS;JavaScript;PHP
+62602,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Scala
+62603,C;C++
+62604,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+62605,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;SQL;WebAssembly
+62606,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;TypeScript
+62607,Bash/Shell/PowerShell;C;C++;Dart;Java;Kotlin
+62608,C#;Dart;HTML/CSS;Java;JavaScript;Python
+62609,JavaScript
+62610,Bash/Shell/PowerShell;F#;Scala;SQL
+62611,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+62612,HTML/CSS;JavaScript;PHP
+62613,C++;JavaScript
+62614,HTML/CSS;JavaScript;PHP;SQL
+62615,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+62616,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+62617,Dart;HTML/CSS;Java;JavaScript;Kotlin;Python
+62618,Bash/Shell/PowerShell;Java;Python;SQL
+62619,Java
+62620,Go;HTML/CSS;JavaScript;PHP;Python;Other(s):
+62621,C;C++;JavaScript;Python
+62622,HTML/CSS;JavaScript;Python
+62623,HTML/CSS;JavaScript;PHP;SQL
+62624,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+62625,C;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+62626,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+62627,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;TypeScript
+62628,Bash/Shell/PowerShell;Java;Scala
+62629,Java;Python
+62630,JavaScript;TypeScript
+62631,C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+62632,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;TypeScript;Other(s):
+62633,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+62634,C++;HTML/CSS;JavaScript;PHP;SQL
+62635,Assembly;C;C++;SQL;Other(s):
+62636,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;PHP;SQL
+62637,C#
+62638,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+62639,C#;HTML/CSS;JavaScript;SQL
+62640,Python;SQL
+62641,C#;JavaScript;SQL
+62642,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;SQL
+62643,Java;Python
+62644,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62645,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;SQL
+62646,HTML/CSS;Java;JavaScript;Python
+62647,Go;HTML/CSS;JavaScript;PHP;SQL
+62648,SQL;VBA
+62649,Bash/Shell/PowerShell;C;Java
+62650,C#;HTML/CSS;JavaScript;SQL
+62651,Go;Java;Kotlin;Python
+62652,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript
+62653,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+62654,C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+62655,HTML/CSS;JavaScript;Python;Swift
+62656,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Scala;SQL;Swift;Other(s):
+62657,HTML/CSS;Java;JavaScript;PHP;TypeScript
+62658,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62659,HTML/CSS;Java;JavaScript
+62660,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+62661,C#;HTML/CSS;JavaScript;SQL
+62662,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62663,C#;HTML/CSS;Java;JavaScript;Python;SQL
+62664,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Swift
+62665,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+62666,C#;Python;Other(s):
+62667,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+62668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+62669,SQL;VBA
+62670,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+62671,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+62672,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62673,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+62674,Bash/Shell/PowerShell;Python;R;SQL
+62675,C#;HTML/CSS;JavaScript;TypeScript
+62676,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62677,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+62678,JavaScript;PHP
+62679,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+62680,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+62681,C;C++;HTML/CSS;Java;SQL
+62682,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62683,JavaScript;Python
+62684,Bash/Shell/PowerShell;C#;Go;JavaScript;Python
+62685,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+62686,Python
+62687,Python
+62688,C++;C#;HTML/CSS;SQL;TypeScript
+62689,R;SQL
+62690,Java;JavaScript;Ruby;SQL
+62691,Bash/Shell/PowerShell;Python;R;SQL
+62692,Dart;HTML/CSS;JavaScript;Other(s):
+62693,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+62694,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+62695,HTML/CSS;JavaScript
+62696,C;C#;HTML/CSS;JavaScript;Python;SQL
+62697,HTML/CSS;JavaScript;Python
+62698,C#;HTML/CSS;JavaScript;SQL
+62699,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;VBA
+62700,HTML/CSS;Java;JavaScript;Ruby;SQL
+62701,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+62702,Go;HTML/CSS;JavaScript;Ruby;SQL;Swift
+62703,Objective-C;Swift
+62704,Java;JavaScript
+62705,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+62706,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+62707,C++
+62708,HTML/CSS;JavaScript;PHP
+62709,HTML/CSS;Java;JavaScript;SQL
+62710,C++;C#;Java
+62711,Java
+62712,C#;HTML/CSS;SQL
+62713,Bash/Shell/PowerShell;Python;SQL
+62714,Python;Other(s):
+62715,Java;SQL
+62716,C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+62717,Go;HTML/CSS;Java;JavaScript;Scala
+62718,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+62719,Java;Objective-C;Swift
+62720,HTML/CSS;Java;JavaScript;SQL
+62721,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+62722,Bash/Shell/PowerShell;C;C++;Java;PHP;Python;SQL
+62723,C#;SQL;VBA
+62724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+62725,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+62726,HTML/CSS;JavaScript;PHP
+62727,Other(s):
+62728,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+62729,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+62730,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62731,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+62732,Bash/Shell/PowerShell;Erlang;Go;JavaScript;Ruby;Rust
+62733,Bash/Shell/PowerShell;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;Swift
+62734,Bash/Shell/PowerShell;C;C#;Go;JavaScript;Python;SQL;TypeScript
+62735,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+62736,Bash/Shell/PowerShell;Clojure;SQL;Other(s):
+62737,C#;HTML/CSS;JavaScript
+62738,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;R;SQL;Swift
+62739,C#;HTML/CSS;Java;PHP;SQL
+62741,Bash/Shell/PowerShell;JavaScript;TypeScript
+62742,C++;C#;Elixir;Erlang;F#;Go;HTML/CSS;JavaScript;Kotlin;Python;R;Ruby;Rust;TypeScript;WebAssembly
+62743,Java;JavaScript;Objective-C;Python;SQL
+62744,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Scala;TypeScript;WebAssembly
+62745,Python
+62746,PHP;SQL
+62747,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R
+62748,Assembly;HTML/CSS;JavaScript;Python;SQL
+62749,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+62750,Objective-C;Swift
+62751,C++;Go;Java;Kotlin;PHP;Python;SQL
+62752,C#;Swift
+62753,Bash/Shell/PowerShell
+62754,HTML/CSS;JavaScript;PHP;Python
+62755,C;C++;Python;SQL
+62756,C#;JavaScript;SQL
+62757,HTML/CSS;Java;JavaScript;PHP;SQL
+62758,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+62759,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;Python;Rust;Scala;Swift;TypeScript
+62760,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62761,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;VBA
+62762,Bash/Shell/PowerShell;Java
+62763,Java;JavaScript;Python;Ruby;Other(s):
+62764,HTML/CSS;JavaScript;TypeScript
+62765,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+62766,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+62767,HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+62768,Java;JavaScript;SQL;TypeScript
+62769,C;C++;HTML/CSS;JavaScript;Python;R
+62770,C#;HTML/CSS;JavaScript;SQL
+62771,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;TypeScript
+62772,C#;JavaScript;SQL
+62773,HTML/CSS;JavaScript;TypeScript
+62774,C;Java;Python;SQL
+62775,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+62776,Java;JavaScript;TypeScript
+62778,Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+62779,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+62780,Java;JavaScript;PHP;Other(s):
+62781,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+62782,HTML/CSS;Java;SQL;VBA
+62783,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+62784,JavaScript;Python;Other(s):
+62785,C++;C#;HTML/CSS;JavaScript;Python
+62786,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+62787,HTML/CSS;Java;JavaScript;Ruby;SQL
+62788,Java
+62790,C;C++;C#;TypeScript
+62791,Java
+62792,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+62793,Assembly;Bash/Shell/PowerShell;C;C++;Python
+62794,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Swift
+62795,Clojure;HTML/CSS;JavaScript;SQL
+62796,HTML/CSS;JavaScript
+62797,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+62798,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+62799,Assembly;C;C++;C#;Java;Python
+62800,HTML/CSS;JavaScript;PHP;SQL
+62801,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62802,Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;JavaScript;Python;SQL
+62803,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+62804,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;SQL
+62805,C#;HTML/CSS;JavaScript;PHP;SQL
+62806,Bash/Shell/PowerShell;Python;SQL
+62807,HTML/CSS;JavaScript;SQL
+62808,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL;VBA
+62809,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+62810,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62811,Java;Kotlin;Python;Scala
+62812,HTML/CSS;Java;JavaScript;PHP
+62813,Java;JavaScript
+62814,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+62815,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+62816,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62817,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Scala;SQL
+62818,Assembly;HTML/CSS;Java;JavaScript;Python
+62819,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+62820,C;HTML/CSS;Java;Python
+62821,C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+62822,Bash/Shell/PowerShell;Java;Python
+62823,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby
+62824,JavaScript;PHP;TypeScript
+62825,Java;JavaScript;Scala;SQL;TypeScript
+62827,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript;Other(s):
+62828,HTML/CSS;JavaScript;PHP;Other(s):
+62829,C#;HTML/CSS;JavaScript;SQL;TypeScript
+62830,HTML/CSS;JavaScript;Ruby
+62831,HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+62832,C#;JavaScript;TypeScript
+62833,Bash/Shell/PowerShell;Clojure;Java;Python
+62834,Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+62835,C++;C#;HTML/CSS;PHP;Swift
+62836,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+62837,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+62838,C#;HTML/CSS;Java;SQL;Swift
+62839,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+62840,HTML/CSS;JavaScript;SQL;TypeScript
+62841,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+62842,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+62843,Go;Python;TypeScript
+62844,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+62845,Bash/Shell/PowerShell;Java;Python;SQL
+62846,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;TypeScript;VBA
+62847,Assembly;Bash/Shell/PowerShell;C;C++
+62848,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+62849,Go;Java;JavaScript;Python;Scala
+62850,Go;HTML/CSS;JavaScript;SQL;Other(s):
+62851,HTML/CSS;JavaScript;Python;SQL
+62852,C#;HTML/CSS;JavaScript;SQL
+62853,HTML/CSS;Java;JavaScript;R;SQL
+62854,C#;JavaScript;TypeScript
+62855,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+62856,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+62857,HTML/CSS;JavaScript;Python;TypeScript
+62858,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+62859,HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+62860,Bash/Shell/PowerShell;Python;SQL
+62861,Java;JavaScript;Python;SQL
+62862,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+62863,Bash/Shell/PowerShell;C;C++;Python
+62864,C#;HTML/CSS;Java;Python;SQL
+62865,HTML/CSS;Java;SQL;Other(s):
+62866,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;TypeScript
+62867,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+62868,C#;Java;Objective-C;Swift
+62870,Bash/Shell/PowerShell;HTML/CSS;Java
+62871,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+62872,Bash/Shell/PowerShell;JavaScript;Python;SQL;VBA;Other(s):
+62873,HTML/CSS;JavaScript;TypeScript
+62874,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;Swift;TypeScript
+62875,HTML/CSS;Java;JavaScript;Python;SQL
+62876,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+62878,R
+62879,C#;Java;TypeScript
+62880,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+62881,C;HTML/CSS;Swift
+62883,HTML/CSS;JavaScript;PHP;SQL
+62884,HTML/CSS;Java;JavaScript;Python;Swift
+62885,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+62886,HTML/CSS;Java;JavaScript;SQL
+62887,Objective-C;Swift
+62888,Bash/Shell/PowerShell;Java;Python;SQL
+62889,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+62890,Python
+62891,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+62892,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+62893,HTML/CSS;Java;JavaScript;Scala;SQL
+62894,HTML/CSS
+62895,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+62896,HTML/CSS;JavaScript;Ruby;SQL
+62897,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;Swift;VBA;Other(s):
+62898,HTML/CSS;JavaScript;PHP;Python
+62899,Other(s):
+62900,HTML/CSS;JavaScript
+62901,C#;HTML/CSS;Java;JavaScript;SQL
+62902,Python
+62903,Java
+62904,Bash/Shell/PowerShell;JavaScript;Python;R;Scala;SQL
+62905,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62906,Python;SQL;VBA
+62907,Python;R;SQL
+62908,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+62909,HTML/CSS;Java;JavaScript;Python;SQL
+62910,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+62911,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62912,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+62913,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+62914,HTML/CSS;JavaScript;Ruby;SQL
+62915,C#;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+62916,HTML/CSS;JavaScript;PHP
+62917,HTML/CSS;JavaScript;PHP;SQL
+62918,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+62919,Python;SQL
+62920,C;C++;C#;TypeScript
+62921,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+62922,Assembly;Bash/Shell/PowerShell;Go;Java;Scala
+62923,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+62924,HTML/CSS;JavaScript;Python;Ruby;SQL
+62925,Java;R;Other(s):
+62926,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+62927,HTML/CSS;Java
+62928,HTML/CSS;Java;JavaScript;SQL;TypeScript
+62929,JavaScript;TypeScript
+62930,C#;HTML/CSS;JavaScript;Kotlin;TypeScript
+62931,HTML/CSS;JavaScript;PHP;TypeScript
+62932,PHP
+62933,C#;Java;JavaScript;SQL
+62934,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;Other(s):
+62935,Java;Kotlin;Python
+62936,JavaScript
+62937,C#
+62938,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+62939,C#;JavaScript;Python;SQL
+62940,Bash/Shell/PowerShell;C;C++;SQL
+62941,JavaScript
+62942,HTML/CSS;JavaScript
+62943,C++
+62944,Assembly;Bash/Shell/PowerShell;Go;Java;Kotlin;PHP;Python
+62945,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+62946,Java;JavaScript;SQL
+62947,Bash/Shell/PowerShell;Java
+62948,C++;HTML/CSS;Java;JavaScript;PHP;Ruby
+62949,C++;C#
+62950,C;C++;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+62951,Assembly;C;C++;C#;Java;JavaScript;Python;R;SQL;TypeScript
+62952,HTML/CSS;JavaScript;PHP;SQL
+62953,Bash/Shell/PowerShell
+62954,Python
+62955,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+62956,C++;JavaScript;PHP;Python
+62957,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+62958,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+62959,Java
+62960,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+62961,C#;HTML/CSS;JavaScript
+62962,Assembly;C;C++;Java
+62963,C;Python;Other(s):
+62964,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+62965,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+62966,C;Go;HTML/CSS;Java;Python;R;VBA
+62967,Assembly;C;C++;HTML/CSS;Python
+62968,Java;SQL
+62969,C;Python
+62970,JavaScript;Kotlin;Swift
+62971,Go;PHP;Python
+62972,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+62973,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+62974,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+62975,HTML/CSS;JavaScript;PHP;SQL
+62976,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript;VBA
+62977,C#;JavaScript;Objective-C;PHP;Python;SQL;Swift
+62978,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+62979,C#;HTML/CSS;SQL
+62980,C#;HTML/CSS;JavaScript;SQL;VBA
+62982,HTML/CSS
+62983,C++;Go;Java;Python;Rust
+62984,C#;HTML/CSS;Java;JavaScript;SQL
+62985,HTML/CSS;JavaScript;Objective-C
+62986,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+62987,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+62988,C#;HTML/CSS;JavaScript;TypeScript
+62989,C#;HTML/CSS;JavaScript;Objective-C;Ruby
+62990,C#;HTML/CSS;JavaScript;SQL
+62991,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+62992,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+62993,Assembly;C;C#;HTML/CSS;JavaScript;SQL
+62994,HTML/CSS;PHP
+62995,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+62996,Python;Scala;SQL
+62997,C#;Java;SQL
+62998,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;TypeScript
+63000,HTML/CSS;JavaScript
+63001,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+63002,Assembly;Bash/Shell/PowerShell;C;C++;R
+63003,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+63004,C#;SQL
+63005,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+63006,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Swift;Other(s):
+63007,Bash/Shell/PowerShell;C#;Go;Java;Kotlin;Python;Scala
+63008,SQL;Swift;VBA;Other(s):
+63009,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;SQL
+63010,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63011,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+63012,C#;HTML/CSS;Java;JavaScript
+63013,C#;HTML/CSS;JavaScript;PHP;SQL
+63014,C;Go;HTML/CSS;Java;JavaScript;Kotlin;Rust;TypeScript
+63015,Bash/Shell/PowerShell;Python;R
+63016,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+63017,Assembly;C;C++;Objective-C;SQL
+63018,C;C++;C#;Python
+63020,Bash/Shell/PowerShell;C++;Java;Scala;SQL
+63021,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+63022,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+63023,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin
+63024,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+63025,HTML/CSS;Java;JavaScript
+63026,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+63027,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+63028,HTML/CSS;JavaScript;Python;SQL;Other(s):
+63029,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+63030,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+63031,Bash/Shell/PowerShell;C;Go;Python;Ruby
+63032,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+63033,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript
+63034,Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+63035,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63036,Assembly;Bash/Shell/PowerShell;C;Python
+63037,Objective-C;Swift
+63038,Python
+63039,C#;Other(s):
+63040,C++;C#;SQL
+63042,HTML/CSS;JavaScript;PHP;SQL
+63043,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+63044,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+63046,Go;Java;Python;SQL
+63047,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;TypeScript
+63048,C#;VBA
+63049,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63050,C;C++;HTML/CSS
+63051,HTML/CSS;JavaScript;Python
+63052,C#;HTML/CSS;JavaScript;Python;SQL
+63053,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+63054,C#;HTML/CSS;JavaScript;SQL
+63055,HTML/CSS;JavaScript;PHP;SQL
+63056,C#;HTML/CSS;JavaScript
+63057,C;C++;Python
+63058,Bash/Shell/PowerShell;C#;Python
+63059,Java
+63060,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+63061,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+63062,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63063,HTML/CSS;JavaScript;PHP;Python;Ruby;Scala;SQL
+63064,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63065,Bash/Shell/PowerShell;C;C++;C#;TypeScript
+63066,HTML/CSS;JavaScript;SQL;TypeScript
+63067,HTML/CSS;Java;JavaScript
+63068,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+63069,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Rust;Scala;Other(s):
+63070,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+63071,Bash/Shell/PowerShell;C;HTML/CSS;Python
+63072,HTML/CSS;JavaScript;PHP;Ruby;SQL
+63073,HTML/CSS;Java;JavaScript
+63074,JavaScript;PHP;SQL
+63075,Java;JavaScript;SQL;VBA
+63076,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+63077,HTML/CSS;JavaScript;PHP;SQL
+63078,HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+63079,C++;C#;Java;SQL;VBA;Other(s):
+63080,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;TypeScript
+63081,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL
+63082,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+63083,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+63084,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+63085,C#;Dart;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+63086,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;SQL
+63087,Java;Python;R;SQL;VBA
+63088,HTML/CSS;Java;JavaScript
+63089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;VBA
+63090,HTML/CSS;Java;JavaScript;Python;SQL
+63091,C#;Swift
+63092,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL
+63093,Bash/Shell/PowerShell;Java;Python
+63094,C;Java;Python
+63095,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63096,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+63097,Java
+63098,Assembly;C++;Python
+63099,Java;Kotlin
+63100,Objective-C;SQL;Swift
+63101,Objective-C;Swift
+63102,Go;HTML/CSS;Java;WebAssembly
+63103,C;C++;Python;R
+63104,Assembly;Java;Kotlin
+63105,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+63106,HTML/CSS;JavaScript;TypeScript
+63107,HTML/CSS;Java;Kotlin;Python;Ruby;SQL
+63108,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+63109,HTML/CSS;JavaScript
+63110,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+63111,HTML/CSS;SQL;TypeScript;Other(s):
+63112,Bash/Shell/PowerShell;Java;JavaScript;SQL;VBA
+63113,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+63114,Python
+63115,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+63116,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+63117,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63118,Assembly;C++;C#;HTML/CSS;Java;PHP
+63119,Bash/Shell/PowerShell;PHP;SQL
+63120,Bash/Shell/PowerShell;C;Go;Python;R
+63121,C#;F#;SQL
+63122,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Rust;SQL;Swift
+63123,Objective-C;Swift
+63124,Bash/Shell/PowerShell;C#;Java;Scala
+63125,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;Other(s):
+63126,Bash/Shell/PowerShell;JavaScript;Kotlin;Objective-C;Swift
+63127,C++;Python;R
+63128,HTML/CSS;JavaScript;Python;SQL
+63129,Assembly;Bash/Shell/PowerShell;Other(s):
+63130,HTML/CSS;JavaScript;PHP;SQL
+63131,C;HTML/CSS;Java;Python
+63132,Bash/Shell/PowerShell;Python;Scala;SQL
+63133,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+63134,C;C++;Python
+63135,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL;Other(s):
+63136,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL;Other(s):
+63138,C++;JavaScript;Ruby;Other(s):
+63139,Java;JavaScript
+63140,C++;C#;Java;Python
+63141,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63142,HTML/CSS;PHP;Python;R
+63143,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+63144,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+63145,HTML/CSS;JavaScript;PHP;SQL
+63146,Clojure;HTML/CSS;JavaScript;PHP;SQL
+63147,HTML/CSS;Java
+63148,HTML/CSS;JavaScript;Python;SQL
+63149,C++;HTML/CSS;Python
+63150,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+63151,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+63152,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63153,HTML/CSS;Java;JavaScript;SQL;TypeScript
+63154,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+63155,HTML/CSS;Java;JavaScript
+63156,R
+63157,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63158,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+63159,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+63160,HTML/CSS;Java;JavaScript;TypeScript
+63161,Java;Python
+63162,C;C++;HTML/CSS;JavaScript;PHP;SQL
+63163,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+63164,Python
+63165,Bash/Shell/PowerShell;Python;Ruby;VBA
+63166,HTML/CSS;JavaScript;PHP;SQL
+63167,HTML/CSS;Java;JavaScript
+63168,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+63169,Bash/Shell/PowerShell;Python
+63170,C#;SQL
+63171,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63172,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+63173,HTML/CSS;JavaScript;PHP;SQL
+63174,Java
+63175,HTML/CSS;JavaScript;SQL;TypeScript
+63176,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+63177,C++;C#;F#;HTML/CSS;JavaScript;Python;R
+63178,C#;HTML/CSS;JavaScript;SQL
+63179,C#;Erlang;Java;JavaScript;Objective-C;Python;Ruby;SQL;TypeScript;Other(s):
+63180,Java;JavaScript;SQL;TypeScript
+63181,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+63182,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+63183,HTML/CSS
+63184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+63185,HTML/CSS;JavaScript
+63186,Clojure;SQL
+63187,C#;Java;Swift
+63188,C#;HTML/CSS;JavaScript
+63189,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Scala
+63190,C++;Java;R;Ruby
+63191,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63192,HTML/CSS;JavaScript;PHP
+63193,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Swift
+63194,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+63195,C#;HTML/CSS;Python
+63196,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+63197,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Swift
+63198,C#;HTML/CSS;JavaScript;PHP;SQL
+63199,C#;JavaScript;PHP
+63200,HTML/CSS;Java;JavaScript;Python;SQL
+63201,C++;C#;HTML/CSS;Java;JavaScript
+63202,HTML/CSS;JavaScript;Python;R;SQL
+63203,C++;C#
+63204,C;C++;Java;Kotlin
+63205,HTML/CSS;JavaScript;SQL;TypeScript
+63206,HTML/CSS;Java;JavaScript;SQL
+63207,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby
+63208,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+63209,Bash/Shell/PowerShell;C++;Python;Rust
+63210,HTML/CSS;JavaScript;PHP
+63211,HTML/CSS;Java;JavaScript;Python;TypeScript
+63212,HTML/CSS;JavaScript;Python;R
+63213,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+63214,Java;Swift
+63215,C++;C#;HTML/CSS;JavaScript;SQL
+63216,HTML/CSS;Java;JavaScript;PHP
+63217,Swift
+63218,HTML/CSS;JavaScript;PHP
+63219,HTML/CSS;JavaScript;Python
+63220,HTML/CSS;Objective-C;Swift
+63221,Assembly;Java;Python;Rust
+63222,HTML/CSS;Java;JavaScript;Scala;SQL
+63223,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+63224,Bash/Shell/PowerShell;PHP;SQL
+63225,Assembly;Bash/Shell/PowerShell;C;C++;Python
+63226,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+63227,C;C++;HTML/CSS
+63228,Bash/Shell/PowerShell;C++;Python;R;SQL
+63229,HTML/CSS
+63230,C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+63231,Python;SQL
+63232,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+63233,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+63234,Bash/Shell/PowerShell;C#;Java;Python;SQL
+63235,Java;JavaScript;Kotlin;Objective-C;Swift
+63236,Python;Ruby;SQL
+63237,Java;Kotlin;Python
+63238,Dart;HTML/CSS;JavaScript;R
+63239,Bash/Shell/PowerShell;Java;Python;R
+63240,HTML/CSS;JavaScript;PHP;Python;SQL
+63241,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+63242,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+63243,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+63244,C++;Python;SQL;Other(s):
+63245,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+63246,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+63247,C#;HTML/CSS;JavaScript;SQL
+63248,Bash/Shell/PowerShell;Java
+63249,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+63250,Assembly;Bash/Shell/PowerShell;HTML/CSS;Python
+63251,Bash/Shell/PowerShell;C;Python
+63252,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+63253,C#;Swift
+63254,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+63255,C++;Java
+63256,C++;Java;Kotlin;Rust;SQL
+63257,C#;F#;Go;HTML/CSS;Java;JavaScript;TypeScript
+63258,JavaScript;PHP;SQL
+63259,Python
+63260,Bash/Shell/PowerShell;Python
+63261,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63262,HTML/CSS;JavaScript;Python;SQL
+63263,JavaScript;Objective-C
+63264,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+63265,Objective-C;Swift
+63266,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL
+63267,HTML/CSS;Java;JavaScript;Python
+63268,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+63269,Java
+63270,C++;JavaScript;Objective-C;Swift
+63271,HTML/CSS;JavaScript;Objective-C;TypeScript
+63272,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+63273,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63274,Go;HTML/CSS;JavaScript
+63275,HTML/CSS;JavaScript;Python
+63276,C#;HTML/CSS;JavaScript;PHP
+63277,HTML/CSS;JavaScript;SQL;TypeScript
+63278,Assembly;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+63279,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Python;Rust
+63280,C#;HTML/CSS;JavaScript;Python;SQL
+63281,Python
+63282,C#;HTML/CSS;JavaScript;PHP;SQL
+63283,HTML/CSS;JavaScript;TypeScript
+63284,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+63285,JavaScript;PHP;Python
+63286,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63287,C#;JavaScript;SQL;TypeScript
+63288,HTML/CSS;Java;PHP;SQL
+63289,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+63290,Bash/Shell/PowerShell;C;HTML/CSS;Java;Kotlin;Objective-C;PHP;SQL
+63291,HTML/CSS;JavaScript;PHP;SQL
+63292,Bash/Shell/PowerShell;Python
+63293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+63294,C#;HTML/CSS;JavaScript;SQL
+63295,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+63296,C;C++;C#;Go;Kotlin;Python
+63297,C#;HTML/CSS;JavaScript;SQL
+63298,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+63299,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+63300,Other(s):
+63301,HTML/CSS;Java;JavaScript;Python
+63302,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+63303,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+63304,C#;Go;Java;Kotlin;SQL
+63305,C#;Elixir;JavaScript;Ruby;TypeScript
+63306,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+63307,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Swift;Other(s):
+63308,PHP
+63309,Bash/Shell/PowerShell
+63310,JavaScript;PHP;SQL
+63311,HTML/CSS;JavaScript;PHP
+63312,C++;Python;R
+63313,C#;HTML/CSS;JavaScript;SQL
+63314,Bash/Shell/PowerShell;Python;SQL
+63315,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+63317,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+63318,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python
+63319,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+63320,HTML/CSS;Java;JavaScript;SQL;TypeScript
+63321,HTML/CSS;JavaScript
+63322,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+63323,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+63324,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+63325,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+63326,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+63327,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+63328,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;Other(s):
+63329,C++;HTML/CSS;Java;Python;Scala;SQL
+63330,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+63331,Bash/Shell/PowerShell;C#;Python
+63332,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+63333,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+63334,HTML/CSS;JavaScript
+63335,C++
+63336,Go;Java;Python;SQL
+63337,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby
+63338,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63339,Java;JavaScript;Kotlin
+63340,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Scala;SQL;TypeScript;Other(s):
+63341,Bash/Shell/PowerShell;C++;Java;Python
+63342,HTML/CSS;Java;JavaScript;SQL;TypeScript
+63343,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63344,C++;Python;Other(s):
+63345,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin
+63346,Bash/Shell/PowerShell;C;Go;Java;Kotlin;Python;Rust
+63347,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+63348,Bash/Shell/PowerShell;R;SQL
+63349,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+63350,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Swift
+63351,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+63352,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL;TypeScript
+63353,HTML/CSS;Objective-C;Swift;VBA
+63354,HTML/CSS;R
+63355,Bash/Shell/PowerShell;Go;HTML/CSS;Ruby;SQL;Other(s):
+63356,Go;HTML/CSS;JavaScript;Python;SQL
+63357,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+63358,C#;HTML/CSS;JavaScript;Ruby;TypeScript
+63359,HTML/CSS;Java;JavaScript;Other(s):
+63360,Bash/Shell/PowerShell;C;C++;Python;SQL
+63361,HTML/CSS;Java;JavaScript;SQL;TypeScript
+63362,Bash/Shell/PowerShell;C;C++;Python;R
+63363,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Swift;TypeScript
+63364,HTML/CSS;JavaScript;PHP;Python;SQL
+63365,HTML/CSS;JavaScript;PHP;Python;Ruby
+63366,Objective-C;Swift
+63367,Bash/Shell/PowerShell;C;C++;Go;Python
+63368,C;Java;Kotlin
+63369,C#;HTML/CSS;JavaScript;Python;Other(s):
+63370,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+63371,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63372,Java;JavaScript;Python;SQL;TypeScript
+63373,C;C++;C#;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript;WebAssembly
+63374,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+63375,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63376,HTML/CSS;JavaScript;Kotlin;Swift;TypeScript
+63377,C++;Python
+63378,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+63379,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63380,C#;HTML/CSS;JavaScript;SQL
+63381,C#;Java;SQL
+63382,HTML/CSS;Java;JavaScript;Python;TypeScript
+63383,C;HTML/CSS;Python
+63384,C#;HTML/CSS;JavaScript;SQL
+63385,HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+63386,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+63387,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+63388,C#;JavaScript;PHP;SQL
+63389,C;C++;Java;PHP
+63390,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63391,Java
+63392,Assembly;C;C++;Python
+63393,C#
+63394,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;TypeScript
+63395,HTML/CSS;Java;JavaScript;SQL
+63396,Assembly;C;C++;C#;HTML/CSS;JavaScript;SQL
+63397,Kotlin
+63398,C;Python
+63399,Java
+63400,Bash/Shell/PowerShell;C#;F#
+63401,HTML/CSS;JavaScript;TypeScript
+63402,HTML/CSS;JavaScript;PHP;SQL
+63403,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+63404,C++;JavaScript;Python
+63405,C#;HTML/CSS;JavaScript;SQL
+63406,C++;C#;HTML/CSS;Java;SQL
+63407,C;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;WebAssembly
+63408,C#;HTML/CSS;Java;JavaScript;TypeScript
+63409,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63410,HTML/CSS;JavaScript;PHP;SQL
+63411,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Scala
+63412,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+63413,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+63414,Java
+63415,PHP;Python
+63416,Bash/Shell/PowerShell;C#;JavaScript;Python
+63417,Python;SQL
+63418,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+63419,HTML/CSS;Java;JavaScript;Python;SQL
+63420,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63421,C#;HTML/CSS;JavaScript;SQL
+63422,HTML/CSS;JavaScript;PHP
+63423,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby
+63424,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+63425,Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;Python;Swift
+63426,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+63428,Bash/Shell/PowerShell;C++;C#;Python
+63429,C;HTML/CSS;PHP;SQL
+63430,Bash/Shell/PowerShell;C++;Python;Ruby
+63431,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+63432,HTML/CSS;JavaScript;TypeScript
+63433,HTML/CSS;Java
+63434,JavaScript;PHP;Python;SQL
+63435,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+63436,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63437,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+63438,C#;HTML/CSS;Java;PHP;SQL
+63439,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63440,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63441,C++;Other(s):
+63442,HTML/CSS;JavaScript;PHP;Python;SQL
+63444,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+63445,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+63446,HTML/CSS;JavaScript;Python;SQL
+63447,C++;Python
+63448,C;C++;C#;HTML/CSS
+63449,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;VBA
+63450,C#
+63451,Bash/Shell/PowerShell;C++;Java;Kotlin;PHP;Python
+63452,Java;JavaScript;Other(s):
+63453,Bash/Shell/PowerShell;C;Erlang;F#;Go;Rust
+63454,Objective-C;Swift
+63455,Bash/Shell/PowerShell;Java
+63456,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL;TypeScript
+63457,HTML/CSS;Java;JavaScript;SQL
+63458,HTML/CSS;JavaScript;Ruby
+63459,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;TypeScript
+63460,C;C++;Python
+63461,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+63463,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+63464,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+63465,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+63466,Bash/Shell/PowerShell;Java
+63467,HTML/CSS;Java;JavaScript;Objective-C
+63468,HTML/CSS;Java;JavaScript;Python
+63469,HTML/CSS;Java;JavaScript;SQL
+63471,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+63472,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+63473,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+63474,VBA
+63475,C#;Java;JavaScript;PHP
+63476,Bash/Shell/PowerShell;Python;R
+63477,HTML/CSS;JavaScript;TypeScript
+63478,Assembly;Bash/Shell/PowerShell;C;C++;Python;Ruby
+63479,HTML/CSS
+63480,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Scala
+63481,HTML/CSS;Java;JavaScript;SQL
+63482,HTML/CSS;Java;JavaScript;PHP;Python;Rust
+63483,C#;HTML/CSS;JavaScript
+63484,C#;HTML/CSS;JavaScript;TypeScript
+63485,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;SQL
+63486,HTML/CSS;JavaScript;PHP
+63487,C#;HTML/CSS;JavaScript;Python;SQL
+63488,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63489,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+63490,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+63491,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+63492,HTML/CSS;JavaScript;PHP
+63493,HTML/CSS;Java;JavaScript;PHP;TypeScript
+63494,Java;JavaScript
+63495,C#;Erlang;F#;HTML/CSS;JavaScript;TypeScript
+63496,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+63497,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+63498,Assembly;Bash/Shell/PowerShell;C;C++;Python
+63499,HTML/CSS;JavaScript;PHP
+63500,Bash/Shell/PowerShell;HTML/CSS;Ruby
+63501,HTML/CSS;Java;JavaScript
+63502,C;C++;C#;Java;JavaScript;PHP;Python;SQL
+63503,HTML/CSS;JavaScript;PHP
+63504,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63505,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+63506,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Scala;SQL
+63507,C#;Go;HTML/CSS;JavaScript;Python;SQL
+63508,JavaScript;SQL
+63509,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+63510,Assembly;C++;HTML/CSS;PHP;SQL
+63511,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+63512,Swift
+63513,HTML/CSS;JavaScript;PHP;SQL
+63514,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63515,HTML/CSS;JavaScript;PHP;TypeScript
+63516,C#;Java;Scala;SQL
+63517,Java;JavaScript
+63518,Bash/Shell/PowerShell;Go;Python;SQL
+63519,Bash/Shell/PowerShell;Java;SQL
+63520,C;C++;Java
+63521,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+63522,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+63523,HTML/CSS;JavaScript;Ruby;VBA
+63524,C#;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+63525,C#;Swift
+63526,HTML/CSS;JavaScript;PHP;Python;SQL
+63527,C++;C#;Dart;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+63528,Swift
+63529,C#;HTML/CSS;Java;SQL
+63530,C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+63531,C#
+63532,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+63534,HTML/CSS;JavaScript;PHP
+63535,C;HTML/CSS;Java;JavaScript;PHP;Python
+63536,C#;JavaScript
+63537,HTML/CSS;JavaScript;TypeScript
+63538,HTML/CSS;Java;Kotlin
+63539,Assembly;Other(s):
+63540,HTML/CSS;SQL;Other(s):
+63541,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+63542,C;C++;C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+63543,C#;HTML/CSS;JavaScript;Ruby;SQL
+63544,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+63545,C#;SQL
+63546,Assembly;C;C++;C#;Java;SQL
+63547,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+63548,HTML/CSS;JavaScript;PHP;SQL
+63549,C++;Java;Python
+63550,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP
+63551,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+63552,C#;HTML/CSS;JavaScript;PHP;SQL
+63553,Java;SQL;Other(s):
+63554,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+63555,Bash/Shell/PowerShell;Java;SQL
+63556,Bash/Shell/PowerShell;Java;PHP;Python;SQL
+63557,HTML/CSS;JavaScript;PHP;Python
+63558,C#;Java;JavaScript;SQL;VBA
+63559,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+63560,Bash/Shell/PowerShell;C++;JavaScript;Python
+63561,HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+63562,Objective-C;Swift
+63563,HTML/CSS;JavaScript;Ruby
+63564,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+63565,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift;TypeScript
+63566,Bash/Shell/PowerShell;C#;Java;Python;SQL
+63567,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+63568,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+63569,JavaScript
+63571,Python;SQL
+63572,Objective-C;Swift
+63573,C++;Java
+63574,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63575,C;C++
+63576,Clojure;HTML/CSS;JavaScript;Python;SQL;Other(s):
+63577,C++;Python;R
+63578,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+63579,C;JavaScript;Ruby;Rust;SQL
+63580,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly
+63581,C#;F#
+63582,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+63583,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;WebAssembly
+63584,HTML/CSS;Java;JavaScript;Kotlin;R;SQL;Other(s):
+63585,HTML/CSS;JavaScript
+63586,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+63587,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+63588,Bash/Shell/PowerShell;C++;Python
+63589,Assembly;Java;Python;SQL
+63590,Java;JavaScript;TypeScript
+63591,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+63592,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+63593,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63594,HTML/CSS;Java;JavaScript;Scala
+63595,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+63596,Bash/Shell/PowerShell;Java;JavaScript
+63597,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Objective-C;Python;R;Swift
+63598,C#;HTML/CSS;Java;JavaScript;SQL
+63599,C++;Objective-C;Swift
+63600,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63601,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+63602,HTML/CSS;JavaScript;Objective-C;PHP;SQL
+63603,C++
+63604,JavaScript;Ruby
+63605,C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+63606,C#;Erlang;HTML/CSS;JavaScript;SQL
+63607,Assembly;C;Java;Python
+63608,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript;VBA
+63609,C#;Java
+63610,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63611,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;VBA;WebAssembly
+63612,Java;JavaScript;Kotlin;Python;Rust;SQL
+63613,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63614,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+63615,C;C++;HTML/CSS;Java;JavaScript;Python;R;Rust;Scala;SQL;TypeScript
+63616,C#;HTML/CSS;JavaScript;PHP;SQL
+63617,C;C++;C#
+63618,Java;Kotlin;SQL
+63619,Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+63620,Java;JavaScript;Python;R;SQL
+63621,C;HTML/CSS;JavaScript;PHP;Python
+63622,Java
+63623,HTML/CSS;JavaScript
+63624,C#;HTML/CSS;JavaScript;SQL;VBA
+63625,Elixir;JavaScript;Ruby;SQL
+63626,Dart;HTML/CSS;JavaScript;Objective-C;SQL;WebAssembly
+63627,C;C++;JavaScript;Python
+63628,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+63630,C#;HTML/CSS;JavaScript;SQL
+63631,Assembly;Bash/Shell/PowerShell;C;C++;Python
+63632,HTML/CSS;Java;JavaScript;Ruby;SQL
+63634,C#;HTML/CSS;JavaScript;Python;VBA
+63635,HTML/CSS;PHP;SQL
+63636,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Python;Other(s):
+63637,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+63638,Bash/Shell/PowerShell;C++;Java;Python;SQL;TypeScript
+63639,C#;SQL;Other(s):
+63640,HTML/CSS
+63641,HTML/CSS;JavaScript;Ruby;SQL
+63642,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;TypeScript
+63643,Bash/Shell/PowerShell;C++;JavaScript;Kotlin;Python;TypeScript;VBA
+63644,Java;PHP;SQL
+63645,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63646,C++;Python;SQL;VBA
+63647,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+63648,Java
+63649,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+63650,C#;Java;Kotlin;Python;VBA
+63651,HTML/CSS;JavaScript;PHP
+63652,HTML/CSS;JavaScript;Python
+63653,C#;F#;HTML/CSS
+63654,Java;Kotlin;SQL
+63655,HTML/CSS;PHP;Ruby;TypeScript
+63656,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Kotlin;Python;R;Scala;SQL;TypeScript
+63657,HTML/CSS;Java;JavaScript;SQL;TypeScript
+63658,HTML/CSS;Java;JavaScript
+63659,Bash/Shell/PowerShell;Python;SQL
+63660,C#;HTML/CSS;JavaScript;PHP;SQL
+63661,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Python;R;SQL
+63662,C
+63663,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+63664,Bash/Shell/PowerShell;Java;Python;SQL
+63665,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+63666,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+63667,C;C#;Python
+63668,HTML/CSS;Java
+63669,C++;C#;Java;Python
+63670,JavaScript;PHP
+63671,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+63672,Bash/Shell/PowerShell;Go
+63673,C;C++;C#;Java;Python;SQL
+63674,Python;R;Ruby;SQL
+63675,C;C++;Python
+63676,HTML/CSS;Java;JavaScript;TypeScript
+63677,Bash/Shell/PowerShell;Java;JavaScript;SQL
+63678,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+63679,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+63680,JavaScript;Ruby;SQL;Other(s):
+63681,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+63682,Bash/Shell/PowerShell;Kotlin;Python;Ruby
+63683,Go;Java;JavaScript;Python;Ruby;SQL
+63684,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+63685,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+63686,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;TypeScript
+63687,Bash/Shell/PowerShell;C;C++;C#;Java;Python
+63688,C#
+63689,C#;HTML/CSS;SQL
+63690,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63691,HTML/CSS;Java;JavaScript;TypeScript
+63692,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+63693,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63694,HTML/CSS;Java;JavaScript;SQL
+63695,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+63696,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+63697,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+63698,Bash/Shell/PowerShell;Java;SQL
+63699,HTML/CSS;Java;JavaScript;Kotlin;SQL
+63700,Bash/Shell/PowerShell;HTML/CSS;Java;TypeScript
+63701,JavaScript;Python;SQL;TypeScript
+63702,C#;HTML/CSS;Java;Other(s):
+63703,C;C++;PHP;Ruby
+63704,Bash/Shell/PowerShell;C;C++;SQL
+63705,HTML/CSS;JavaScript
+63706,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+63707,HTML/CSS;JavaScript;Python;SQL
+63708,C;C++;HTML/CSS;Java;JavaScript
+63709,C#;HTML/CSS;JavaScript;SQL
+63710,C;C++;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63711,HTML/CSS;JavaScript;PHP;Python;R;SQL
+63712,HTML/CSS;JavaScript;PHP;SQL
+63713,HTML/CSS;Java;JavaScript;Swift;TypeScript
+63714,JavaScript;Python;TypeScript
+63715,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+63716,C#;Python;SQL
+63717,C++;HTML/CSS;Python;Other(s):
+63718,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+63719,Python;Ruby
+63720,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+63721,C++;HTML/CSS;JavaScript;Python
+63722,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63723,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+63724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+63725,Go;Java;JavaScript;Scala;SQL
+63726,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+63727,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL
+63728,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+63729,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;SQL
+63730,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+63731,Bash/Shell/PowerShell;C;C++;C#;Python;Other(s):
+63732,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63733,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+63734,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+63735,Bash/Shell/PowerShell;C;C++;Python
+63736,Bash/Shell/PowerShell;JavaScript;PHP;SQL;Other(s):
+63737,C;C++;HTML/CSS;Java;JavaScript
+63738,JavaScript
+63740,C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL
+63741,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+63742,Java;JavaScript;SQL
+63743,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+63744,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63745,HTML/CSS;JavaScript;SQL
+63746,C;C++;HTML/CSS;Java;JavaScript;SQL
+63747,Bash/Shell/PowerShell;C;C++;JavaScript;Kotlin;Objective-C;Swift
+63748,C++;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+63749,JavaScript;PHP;Python;TypeScript
+63750,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63751,JavaScript;Python;SQL;VBA
+63752,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+63753,C++;C#;JavaScript;Python
+63754,Bash/Shell/PowerShell;C#;Python
+63755,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Other(s):
+63756,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+63757,Bash/Shell/PowerShell;HTML/CSS;PHP
+63758,Assembly;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+63759,Bash/Shell/PowerShell;Python
+63760,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;Python;R;SQL;Swift
+63761,HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+63762,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;VBA
+63763,Java
+63764,C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+63765,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+63766,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+63767,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+63768,Python;Other(s):
+63769,C#;JavaScript
+63770,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63771,Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+63772,HTML/CSS;Java;JavaScript;PHP;SQL
+63773,Bash/Shell/PowerShell;JavaScript;Python;SQL
+63774,Java;Python
+63775,C#;HTML/CSS;JavaScript;SQL
+63776,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+63777,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Rust;SQL
+63778,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63779,HTML/CSS;JavaScript
+63780,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+63781,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+63782,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+63783,Bash/Shell/PowerShell;C#;Python
+63784,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+63785,Go;JavaScript;Python;SQL;Swift
+63786,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+63787,C++;Python
+63788,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;R;SQL;VBA;Other(s):
+63789,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+63790,HTML/CSS;JavaScript
+63791,HTML/CSS;JavaScript;PHP
+63792,C;C++;C#;HTML/CSS;Java;JavaScript;Swift;TypeScript;VBA;WebAssembly
+63793,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+63794,Java
+63795,HTML/CSS;JavaScript;PHP;SQL
+63796,C;C++;HTML/CSS;Java
+63797,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python;SQL
+63798,C++;Python;Swift
+63799,Bash/Shell/PowerShell;C;C++;C#;Clojure;JavaScript;Objective-C;Python;Ruby;Swift;TypeScript
+63800,HTML/CSS;Python;R;Ruby;SQL;VBA
+63801,Python;Swift
+63802,Bash/Shell/PowerShell;Python;R;Scala;SQL
+63803,Java;Kotlin;Other(s):
+63804,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+63805,HTML/CSS;JavaScript;Python;Ruby
+63806,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript;WebAssembly
+63807,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;R;Rust;Scala;TypeScript
+63808,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+63809,HTML/CSS;Java;JavaScript;SQL;TypeScript
+63810,C;JavaScript;Python;SQL;Other(s):
+63811,HTML/CSS;Java;JavaScript;Kotlin;Rust;TypeScript
+63812,Java;Objective-C
+63813,Java;JavaScript;SQL
+63814,C#;Dart;HTML/CSS;Java;PHP;SQL
+63815,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+63816,C;C++;Python
+63817,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63818,Bash/Shell/PowerShell;Java;Python
+63819,C;C++;HTML/CSS;JavaScript;Python
+63820,C++;HTML/CSS;Java;JavaScript
+63821,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+63822,HTML/CSS;JavaScript;PHP;SQL
+63823,Java;JavaScript;Kotlin;Python;TypeScript
+63824,C;C++;HTML/CSS;Java;PHP;SQL;VBA
+63825,C#;HTML/CSS;JavaScript
+63826,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63827,C;C++;C#;Java;SQL
+63828,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+63829,HTML/CSS;JavaScript;PHP
+63830,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;PHP;SQL;Swift;Other(s):
+63831,JavaScript;Scala
+63832,C#;Python;SQL
+63833,HTML/CSS;JavaScript;SQL;TypeScript
+63834,Bash/Shell/PowerShell;C++;JavaScript;TypeScript;Other(s):
+63835,Java;JavaScript;TypeScript
+63836,HTML/CSS;JavaScript;PHP;SQL
+63837,Java;JavaScript;Ruby;TypeScript
+63838,C#;HTML/CSS;JavaScript;SQL
+63839,HTML/CSS;JavaScript;VBA;Other(s):
+63840,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Rust;Scala;WebAssembly
+63841,Other(s):
+63842,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63843,C
+63844,HTML/CSS;Java;JavaScript;Python;Other(s):
+63845,HTML/CSS;JavaScript;SQL;TypeScript
+63846,HTML/CSS;JavaScript;Kotlin;Objective-C;SQL;Swift
+63847,C#;JavaScript
+63848,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;VBA
+63849,HTML/CSS;JavaScript;TypeScript
+63850,C;C++;Java;Python;Other(s):
+63851,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+63852,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63853,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Go;Kotlin;PHP;SQL
+63854,C
+63855,C#
+63856,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63857,C;C++;HTML/CSS;Java;JavaScript;SQL
+63858,C;HTML/CSS;Java;JavaScript
+63859,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+63860,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+63861,Java;JavaScript;SQL
+63862,HTML/CSS;JavaScript;Ruby
+63863,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+63864,C;Java;SQL
+63865,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+63866,JavaScript;Python
+63867,Bash/Shell/PowerShell
+63868,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+63869,JavaScript;TypeScript
+63870,Java;JavaScript
+63871,C;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+63872,HTML/CSS;JavaScript;TypeScript
+63873,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63874,C++;C#;HTML/CSS;Java;JavaScript
+63875,Java;JavaScript;PHP;Scala;Other(s):
+63876,HTML/CSS;JavaScript;PHP;TypeScript
+63877,C++;HTML/CSS;Java;JavaScript;Python;SQL
+63878,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+63879,Bash/Shell/PowerShell;C;C++;Elixir;Erlang
+63880,Bash/Shell/PowerShell;C#;JavaScript;PHP
+63881,JavaScript;PHP;Python;SQL
+63882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+63883,Clojure;Go;Java;JavaScript;TypeScript
+63884,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;Scala;SQL
+63885,C++;HTML/CSS;JavaScript;PHP;SQL
+63886,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL
+63887,C#;HTML/CSS;JavaScript;SQL
+63888,Bash/Shell/PowerShell;C#;Java
+63889,C#;HTML/CSS;JavaScript;SQL
+63890,C#;Python;SQL
+63891,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+63892,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+63893,C#;F#
+63894,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+63895,Bash/Shell/PowerShell;C#;SQL
+63896,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+63897,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+63898,Assembly;C;C++;Java;Kotlin;Python;Rust;Other(s):
+63899,Java;JavaScript;Python
+63900,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+63901,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+63902,C;C++;Erlang;Java;JavaScript;Objective-C;PHP;Python;Rust;Swift
+63903,Java;Python
+63904,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;TypeScript
+63905,C++;HTML/CSS;JavaScript
+63906,Bash/Shell/PowerShell;C#;SQL
+63907,C#;HTML/CSS;JavaScript;TypeScript
+63908,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63909,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+63910,Java;Kotlin;SQL
+63911,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+63912,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+63913,Bash/Shell/PowerShell;Python;R;SQL;VBA
+63914,JavaScript;PHP;SQL
+63915,C#;JavaScript;Python;Ruby;SQL
+63916,HTML/CSS;Python;SQL
+63917,Bash/Shell/PowerShell
+63918,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+63919,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+63920,C#;HTML/CSS;JavaScript;Python;SQL
+63921,C#;JavaScript;PHP;SQL;VBA;Other(s):
+63922,Bash/Shell/PowerShell;Objective-C;Python;Swift
+63923,Objective-C;Swift
+63924,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+63925,C#;HTML/CSS;JavaScript;SQL
+63926,C++;Java
+63927,HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+63928,Assembly;Bash/Shell/PowerShell;C;Java;R;SQL;Swift
+63929,Swift
+63930,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63931,Bash/Shell/PowerShell;Elixir;Go;Python
+63932,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;Python;R;SQL;Swift;TypeScript
+63933,C#;Java;JavaScript;Swift
+63934,Bash/Shell/PowerShell;JavaScript;TypeScript
+63935,Bash/Shell/PowerShell;Python;SQL
+63936,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+63937,HTML/CSS;JavaScript;Python
+63938,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+63939,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63940,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript
+63941,C++;C#;Java
+63942,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Scala
+63943,HTML/CSS;Java;JavaScript;Python;SQL
+63944,Java
+63945,Bash/Shell/PowerShell;C++;SQL;Other(s):
+63946,Java;JavaScript;PHP;Python
+63947,HTML/CSS;Java;JavaScript;Python;SQL;VBA
+63948,Bash/Shell/PowerShell;C#
+63949,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript
+63950,C#;HTML/CSS;JavaScript;SQL;TypeScript
+63951,Bash/Shell/PowerShell;C;C#;SQL
+63952,HTML/CSS;JavaScript;PHP;SQL
+63953,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript;WebAssembly
+63954,C#;HTML/CSS;Java;JavaScript;SQL
+63955,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+63956,C#;TypeScript
+63957,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+63958,PHP;SQL
+63959,HTML/CSS;JavaScript;SQL;VBA
+63960,SQL;VBA
+63961,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+63962,Bash/Shell/PowerShell;Go;HTML/CSS;TypeScript
+63963,C#;Java
+63964,Ruby;SQL
+63965,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;TypeScript
+63966,Java;JavaScript;Python;SQL;TypeScript
+63967,Bash/Shell/PowerShell;C++;C#;Python;Rust
+63968,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;SQL;VBA
+63969,HTML/CSS;JavaScript;SQL
+63970,C;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python
+63971,C;C++;Go;JavaScript;SQL;TypeScript
+63973,C#;HTML/CSS;JavaScript;Python
+63974,HTML/CSS;Java;JavaScript;PHP;SQL
+63975,Bash/Shell/PowerShell;C++;C#;Java;Python
+63976,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+63977,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+63978,C++;JavaScript;Python;TypeScript
+63979,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;SQL
+63980,HTML/CSS;JavaScript;Ruby
+63981,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;SQL
+63982,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+63983,HTML/CSS;JavaScript;PHP;SQL
+63984,Bash/Shell/PowerShell;C++;Java;Python;SQL
+63985,Go;HTML/CSS;JavaScript;SQL
+63986,C#;HTML/CSS;Java;SQL
+63987,Java;SQL
+63988,R
+63989,HTML/CSS;JavaScript;Ruby;TypeScript
+63990,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+63991,C#;Java
+63992,C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+63993,HTML/CSS;JavaScript;Python
+63994,HTML/CSS;PHP;SQL
+63995,C#;HTML/CSS;JavaScript;TypeScript
+63996,HTML/CSS;JavaScript
+63997,C;C++;HTML/CSS;Java;Kotlin;PHP
+63998,C++;HTML/CSS;Java;Python;SQL
+63999,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+64000,Java
+64001,HTML/CSS;JavaScript;PHP;SQL
+64002,PHP;SQL
+64003,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+64004,JavaScript
+64005,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+64006,C;C++;Java;JavaScript;Python;TypeScript
+64007,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64008,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+64009,Java;Scala;SQL;TypeScript
+64010,HTML/CSS;JavaScript;PHP;SQL
+64011,Clojure;Java;JavaScript;Python;Ruby
+64012,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64013,C;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+64014,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+64015,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;Python
+64016,HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+64017,C#;Java
+64018,Go;HTML/CSS;JavaScript;Ruby
+64019,C#;JavaScript;SQL;TypeScript
+64021,Bash/Shell/PowerShell;C#;JavaScript;Ruby
+64022,JavaScript
+64023,JavaScript;Python;SQL
+64024,Assembly;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;SQL;VBA
+64025,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Other(s):
+64026,C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby
+64027,C;C++;Python;SQL;Other(s):
+64028,Bash/Shell/PowerShell;C;JavaScript;Python;R
+64029,C#;Java
+64030,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+64031,HTML/CSS;JavaScript;Objective-C;Python;Swift
+64032,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+64033,Java;Python
+64034,C#;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust;Scala;SQL;TypeScript
+64035,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+64036,C#;HTML/CSS;Java;PHP;SQL
+64037,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64038,Go;HTML/CSS;JavaScript;Python;TypeScript
+64039,C#;SQL;VBA
+64040,C#;HTML/CSS;Java;JavaScript;SQL;Swift;Other(s):
+64041,C#;HTML/CSS;JavaScript
+64042,C++;C#;HTML/CSS;Python
+64043,C++;C#;HTML/CSS;JavaScript;TypeScript
+64044,HTML/CSS;JavaScript;Ruby;SQL
+64045,Bash/Shell/PowerShell;PHP;Python;R;SQL
+64046,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+64047,JavaScript;Ruby
+64048,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+64049,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64050,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;PHP;SQL
+64051,C#;HTML/CSS;JavaScript;SQL;Other(s):
+64052,JavaScript;Python
+64053,Java;Kotlin
+64054,HTML/CSS;JavaScript
+64055,Assembly;HTML/CSS;Java;JavaScript;Python;SQL
+64056,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+64057,Python;SQL
+64058,C#
+64059,C;C++;C#;HTML/CSS;JavaScript
+64060,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+64061,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+64062,C;C++;HTML/CSS;Java;Python;SQL;TypeScript
+64063,Java
+64064,HTML/CSS;JavaScript;PHP;Ruby;SQL
+64065,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+64066,Java;PHP;SQL
+64067,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64069,HTML/CSS;JavaScript;PHP
+64070,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64071,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64072,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64073,JavaScript;Ruby;SQL
+64074,Go;HTML/CSS;Java;JavaScript;SQL
+64075,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64076,HTML/CSS;Java;JavaScript;SQL
+64077,C#;HTML/CSS;TypeScript
+64078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+64079,Python
+64080,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64081,HTML/CSS;JavaScript
+64082,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+64083,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+64084,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;TypeScript
+64085,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+64086,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+64087,C;C++;HTML/CSS
+64088,C#;HTML/CSS;JavaScript;SQL
+64089,HTML/CSS;JavaScript;PHP;Python
+64090,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+64091,Java;Kotlin;SQL
+64092,Java
+64093,HTML/CSS;Java;JavaScript;TypeScript
+64094,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+64095,Assembly;Bash/Shell/PowerShell;C;C++;Rust
+64096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+64097,Bash/Shell/PowerShell;C;Java;Python;SQL
+64098,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+64099,HTML/CSS;JavaScript
+64100,C#;Java;Kotlin;Objective-C;SQL;Swift
+64101,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA
+64102,Bash/Shell/PowerShell;C#;Python;SQL
+64103,HTML/CSS;JavaScript;PHP
+64104,C++;C#;Erlang;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+64105,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+64106,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+64107,HTML/CSS;JavaScript;PHP;Python;SQL
+64108,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64109,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+64110,Python;VBA;Other(s):
+64111,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+64112,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64113,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+64114,JavaScript;TypeScript
+64115,HTML/CSS;JavaScript;PHP;SQL
+64116,C;Java
+64117,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+64118,HTML/CSS;Java;JavaScript;PHP;SQL
+64119,Go;JavaScript;Python
+64120,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64121,HTML/CSS;JavaScript;Python;SQL
+64122,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64123,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+64124,C;Go;JavaScript;Python;Rust
+64125,Bash/Shell/PowerShell;Java
+64126,C;C#;HTML/CSS;JavaScript;PHP;SQL
+64127,Java;Kotlin
+64128,C++;Go;JavaScript;Objective-C;Rust
+64129,HTML/CSS;JavaScript;PHP
+64130,C#;HTML/CSS;JavaScript;SQL
+64131,HTML/CSS;JavaScript
+64132,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Rust;TypeScript;Other(s):
+64133,Bash/Shell/PowerShell;Go;JavaScript;Rust
+64134,Bash/Shell/PowerShell;Go;TypeScript
+64136,Objective-C;Swift
+64137,Java;JavaScript;SQL
+64138,JavaScript;Python
+64139,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+64140,C#;Java;PHP;SQL
+64141,C;C++;Go;Java;JavaScript;Python;R;Ruby
+64142,C#;JavaScript;SQL
+64143,Elixir;HTML/CSS;JavaScript;Ruby;TypeScript
+64144,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL
+64145,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+64146,Bash/Shell/PowerShell;Java;Python;SQL
+64147,HTML/CSS;Java;JavaScript
+64148,HTML/CSS;JavaScript
+64149,C#;HTML/CSS;Java;SQL;Other(s):
+64150,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64151,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64152,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+64153,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64154,C#;HTML/CSS;Java;JavaScript
+64155,JavaScript;TypeScript
+64156,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+64157,Bash/Shell/PowerShell;C;C++
+64158,C#;HTML/CSS;JavaScript;SQL;VBA
+64159,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+64160,HTML/CSS;JavaScript;Ruby
+64161,Java;SQL
+64162,Bash/Shell/PowerShell;C;C++;Python
+64163,C;C#;Java;JavaScript;Objective-C;Swift
+64164,Java;Python;SQL
+64165,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64166,Bash/Shell/PowerShell;Python
+64167,HTML/CSS;JavaScript;Python;R;SQL
+64168,Bash/Shell/PowerShell;C++;Java;SQL
+64169,JavaScript
+64170,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+64171,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin
+64172,Bash/Shell/PowerShell;Go;Python;Ruby
+64173,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+64174,Elixir;HTML/CSS;JavaScript;Python;Swift
+64175,HTML/CSS;JavaScript;Python;SQL
+64176,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+64177,HTML/CSS;JavaScript;TypeScript
+64178,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64179,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+64180,Bash/Shell/PowerShell;C;C++;C#;Python
+64181,Go
+64182,Java;Python
+64183,Assembly;C;C++
+64184,JavaScript;PHP
+64185,C#;JavaScript;SQL;TypeScript
+64186,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+64187,Java
+64188,HTML/CSS;Java;JavaScript;SQL
+64189,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+64190,Java;JavaScript;SQL
+64191,Bash/Shell/PowerShell;Clojure;Elixir;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript;Other(s):
+64192,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+64193,Go
+64194,HTML/CSS;JavaScript;Python
+64195,Java;JavaScript;PHP;SQL
+64196,R
+64197,C;C++;C#;Java;JavaScript;Kotlin
+64198,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript
+64199,Assembly;C;Java
+64200,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL;TypeScript
+64201,Java;Scala
+64202,Bash/Shell/PowerShell;C;C++
+64203,C#;F#;Other(s):
+64204,C;C++;Kotlin;Python;SQL;Other(s):
+64205,Go;JavaScript;Python;Scala
+64206,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+64207,C#;HTML/CSS;JavaScript;SQL
+64208,C#;Ruby
+64209,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+64210,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+64211,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+64212,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+64213,Go;HTML/CSS;Java;Kotlin;Python;SQL
+64214,HTML/CSS;JavaScript;PHP;SQL
+64215,Python
+64216,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+64217,Java
+64218,Bash/Shell/PowerShell;Python
+64219,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;VBA
+64220,Bash/Shell/PowerShell;C;C++;Python;R
+64221,HTML/CSS;JavaScript;Python
+64222,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64223,Bash/Shell/PowerShell;C;C++;Go;Python;Other(s):
+64224,HTML/CSS;JavaScript;PHP;SQL
+64225,HTML/CSS;JavaScript;PHP
+64226,JavaScript;Python;SQL
+64227,HTML/CSS;JavaScript;PHP;SQL
+64228,C;Java;JavaScript;Python
+64229,Python
+64230,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+64231,Bash/Shell/PowerShell;F#;HTML/CSS;Java;JavaScript;Kotlin;R;TypeScript;VBA
+64232,HTML/CSS;JavaScript;Ruby;SQL
+64233,Bash/Shell/PowerShell;Python;R;SQL
+64234,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL;VBA
+64235,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+64236,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64237,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64238,C;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript;VBA
+64239,Go;HTML/CSS;Python
+64240,Bash/Shell/PowerShell;C++;C#;PHP
+64241,HTML/CSS;JavaScript;PHP;SQL
+64242,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64243,C;C++;Java;Python;SQL
+64244,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+64245,Bash/Shell/PowerShell;C++;Java;JavaScript;SQL
+64246,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+64247,C++;Python
+64248,C#;Java;JavaScript;Python
+64249,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+64250,Assembly;Bash/Shell/PowerShell;C;C#;Python;SQL
+64251,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64252,HTML/CSS;Java;JavaScript;PHP
+64253,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+64254,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;VBA
+64256,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+64257,Other(s):
+64258,C;Go;HTML/CSS;JavaScript
+64259,HTML/CSS;Java;JavaScript
+64260,Java;Swift
+64261,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+64262,C#;HTML/CSS;JavaScript;SQL
+64263,C#;JavaScript;SQL
+64264,HTML/CSS;JavaScript;PHP;SQL
+64265,Elixir;HTML/CSS;JavaScript;Ruby
+64266,HTML/CSS;JavaScript;Python;TypeScript
+64267,HTML/CSS;Java;JavaScript;Kotlin;SQL
+64268,C#;HTML/CSS;Java;JavaScript;TypeScript
+64269,C#;HTML/CSS;Java;R;SQL
+64270,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;TypeScript;VBA
+64271,C;HTML/CSS;Java;JavaScript;PHP;Python
+64272,Bash/Shell/PowerShell;C++;Java;JavaScript;VBA
+64273,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+64274,C++;Dart;HTML/CSS;JavaScript;Python;R;SQL
+64275,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+64276,HTML/CSS;JavaScript;PHP;SQL
+64277,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+64278,Clojure;HTML/CSS;Java;JavaScript;Python
+64279,Go;HTML/CSS;Java;JavaScript
+64280,HTML/CSS;Java;JavaScript;SQL;TypeScript
+64281,C#;HTML/CSS;JavaScript;SQL
+64282,HTML/CSS;Java;JavaScript;SQL
+64283,C#;SQL
+64284,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+64285,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+64286,Assembly;C;C++;Erlang;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+64287,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64288,C++;HTML/CSS;JavaScript;Python;Ruby
+64289,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+64290,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+64291,Bash/Shell/PowerShell;C;C++;Java
+64292,C;Java
+64293,HTML/CSS;Java;JavaScript;SQL;TypeScript
+64294,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64295,HTML/CSS;JavaScript
+64296,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+64297,C++;HTML/CSS;JavaScript;PHP
+64298,Bash/Shell/PowerShell;C++;C#;Java;Python;Rust;Other(s):
+64299,Bash/Shell/PowerShell;Java;JavaScript;SQL;VBA
+64300,C++;HTML/CSS;Java;Python
+64301,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Other(s):
+64302,HTML/CSS;Python;SQL;VBA
+64304,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+64305,Rust;SQL;Swift
+64306,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;Other(s):
+64307,C;C#;Other(s):
+64308,C#;JavaScript;Ruby;SQL;VBA
+64309,Bash/Shell/PowerShell;C#
+64310,Swift;Other(s):
+64311,C;C++;Other(s):
+64312,C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+64313,Assembly;C;C++;C#;Java;SQL
+64314,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64315,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64316,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64317,Java;JavaScript;Kotlin
+64318,Bash/Shell/PowerShell;C#;Java
+64319,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64320,HTML/CSS;JavaScript;PHP;Python;SQL
+64321,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64322,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+64323,HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Swift
+64324,Assembly;C;Go;HTML/CSS;JavaScript;Python;Rust;Other(s):
+64325,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+64326,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL
+64327,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+64328,Java
+64329,Objective-C;Swift
+64330,Java;Kotlin;SQL
+64331,C#;HTML/CSS;Python;R;SQL;VBA
+64332,Bash/Shell/PowerShell;Clojure
+64333,C#
+64334,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+64335,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+64336,Java;Python;R
+64337,Bash/Shell/PowerShell;C#;Python;Scala;SQL
+64338,Java;JavaScript;SQL
+64339,Bash/Shell/PowerShell;C;C++;Python
+64340,Assembly;Other(s):
+64341,C#;HTML/CSS;JavaScript;SQL;VBA
+64342,C;C++;C#;HTML/CSS;JavaScript;Python
+64343,Bash/Shell/PowerShell;C++;Java;Python;VBA
+64344,HTML/CSS;Java;JavaScript
+64345,HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+64346,HTML/CSS;JavaScript;PHP;Ruby;Other(s):
+64347,Assembly;Bash/Shell/PowerShell;C++;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+64348,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;R;SQL;TypeScript
+64349,Java
+64350,C#;HTML/CSS;Java;JavaScript;SQL
+64351,HTML/CSS;JavaScript
+64352,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+64354,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+64355,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+64356,C++;C#;HTML/CSS;Java;Kotlin;SQL;Swift
+64357,C;Go;Java;Python
+64358,C#;HTML/CSS;JavaScript;SQL
+64359,C++;Java;Python;R;SQL
+64360,Java;SQL
+64361,HTML/CSS;JavaScript;Python;R;SQL
+64362,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64363,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+64364,C;C++;C#;HTML/CSS;PHP;Python
+64365,HTML/CSS;Java;JavaScript
+64366,HTML/CSS;JavaScript;PHP;Python;TypeScript
+64367,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+64368,Bash/Shell/PowerShell;Java;Python;Scala
+64369,C#;Go;HTML/CSS;JavaScript;PHP;SQL
+64370,C#;HTML/CSS;JavaScript
+64371,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+64373,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+64374,Bash/Shell/PowerShell;C#;JavaScript;SQL
+64375,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;JavaScript;SQL
+64376,C#;HTML/CSS;JavaScript
+64377,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+64378,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+64379,Bash/Shell/PowerShell;Clojure;Ruby
+64380,Bash/Shell/PowerShell;C;PHP;Python
+64381,Bash/Shell/PowerShell;C;Java;Python
+64382,C#;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+64383,C;C++;JavaScript;Other(s):
+64384,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL;Swift
+64385,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;VBA
+64386,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+64387,Assembly;Java;SQL
+64388,Bash/Shell/PowerShell;Java;Kotlin;SQL
+64389,C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+64390,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+64392,HTML/CSS;Java;JavaScript;Python;SQL
+64393,C
+64394,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+64395,HTML/CSS;Java;JavaScript
+64396,Bash/Shell/PowerShell;Go;HTML/CSS;Python
+64397,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;R;Scala;SQL
+64398,HTML/CSS;JavaScript;PHP;Python;SQL
+64399,C#
+64400,C#;SQL
+64401,C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL
+64402,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;Ruby
+64403,HTML/CSS;JavaScript;Python;Ruby;SQL
+64404,HTML/CSS;JavaScript;Python;Ruby
+64405,Bash/Shell/PowerShell;C#;JavaScript
+64406,HTML/CSS;JavaScript;Python
+64407,C++;C#;HTML/CSS;JavaScript;SQL
+64408,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64409,Java
+64410,Bash/Shell/PowerShell;C++;Go;Python;SQL
+64411,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+64412,Go;Java;JavaScript
+64413,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+64414,C#;SQL
+64415,Bash/Shell/PowerShell;C
+64416,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+64417,C#;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+64418,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+64419,Objective-C;Swift
+64420,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64421,PHP;Python;SQL
+64422,Assembly;Bash/Shell/PowerShell;C;C++;Python
+64423,HTML/CSS;JavaScript;Python;SQL
+64424,HTML/CSS;Java;PHP;SQL
+64425,Java;Python
+64426,Ruby
+64427,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+64428,Bash/Shell/PowerShell;C;C++;C#;Java;PHP;Python;SQL;Other(s):
+64429,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64431,HTML/CSS;Java;JavaScript;PHP;SQL
+64432,Go;HTML/CSS;JavaScript;Python
+64433,C;Java;Python
+64434,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript
+64435,C#;Java;SQL
+64436,Java
+64437,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64438,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+64439,C#;Java;JavaScript;SQL;TypeScript
+64440,C#;HTML/CSS;JavaScript;SQL
+64441,HTML/CSS;Java;JavaScript;Scala;SQL
+64442,Java;JavaScript;SQL
+64443,C;C++;Python
+64444,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+64445,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+64446,C;C++;C#;HTML/CSS;JavaScript;Python
+64447,Bash/Shell/PowerShell;JavaScript;Python
+64448,HTML/CSS;JavaScript;PHP;Python;SQL
+64449,C++;HTML/CSS;Python;R
+64450,Dart;JavaScript;Kotlin;SQL;Other(s):
+64451,HTML/CSS;JavaScript;PHP;SQL
+64452,C#;HTML/CSS;Java;JavaScript;PHP
+64453,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64454,VBA
+64455,C#;HTML/CSS;JavaScript;PHP;SQL
+64456,C++;C#;Java
+64457,HTML/CSS;JavaScript
+64458,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+64459,Java;JavaScript;Python
+64460,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+64461,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64462,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64463,Assembly;C;C++;Java;PHP;Python;SQL
+64464,C#
+64466,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Swift;TypeScript
+64467,C#;Java
+64468,C;HTML/CSS;JavaScript;PHP;Python
+64469,Go
+64470,Java;Objective-C;Swift
+64471,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+64472,Bash/Shell/PowerShell;C;Java;Python;Other(s):
+64473,HTML/CSS;Java;JavaScript;TypeScript
+64474,Java;JavaScript;Ruby;Scala
+64476,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Swift;Other(s):
+64477,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+64478,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+64479,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+64480,Clojure;HTML/CSS;Java;JavaScript;Python;Rust;Other(s):
+64481,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64482,C;C++;HTML/CSS;Java;JavaScript
+64483,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64484,JavaScript;Ruby;VBA
+64485,Bash/Shell/PowerShell;C++;C#;Java;Kotlin;Objective-C;PHP;Python;Other(s):
+64486,Bash/Shell/PowerShell;C;Go;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+64487,Java;JavaScript
+64488,Assembly;C
+64489,Assembly;Bash/Shell/PowerShell;C
+64490,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+64491,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;TypeScript;WebAssembly
+64492,Elixir;Ruby;SQL
+64493,C#
+64494,C;Java;JavaScript;Python
+64495,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+64496,Java;Kotlin
+64497,Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+64498,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+64499,C#;HTML/CSS;Java;JavaScript
+64500,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+64501,C++;Java;Python
+64502,C;C++;HTML/CSS;JavaScript;Python;TypeScript
+64503,Java;SQL
+64504,HTML/CSS;Java;JavaScript;SQL
+64505,Bash/Shell/PowerShell;C;Python;R;SQL
+64506,R
+64507,C#;HTML/CSS;JavaScript;PHP;SQL
+64508,HTML/CSS;Java;JavaScript;PHP;Python
+64509,Bash/Shell/PowerShell;C;Java;Python
+64510,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64511,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+64512,HTML/CSS;JavaScript;PHP
+64513,Java;JavaScript
+64514,HTML/CSS;Java;JavaScript;Ruby;SQL
+64515,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64516,HTML/CSS;JavaScript;Python;Ruby;SQL
+64518,C#;HTML/CSS;Java;JavaScript;TypeScript;VBA
+64519,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift
+64520,HTML/CSS;JavaScript;Objective-C;SQL
+64521,C#;HTML/CSS;JavaScript;TypeScript
+64522,HTML/CSS;JavaScript;Python
+64523,Bash/Shell/PowerShell;Java;SQL
+64524,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Ruby;Scala;Swift;TypeScript
+64525,C;C++;Java;Kotlin
+64526,Java;Python;VBA
+64527,C#;Clojure;HTML/CSS;JavaScript;SQL
+64528,C#
+64529,C;C++;Erlang;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+64530,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+64531,HTML/CSS;JavaScript;PHP;SQL
+64532,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+64533,HTML/CSS;Java;Python;SQL
+64534,C#;HTML/CSS;Java;JavaScript;SQL
+64535,HTML/CSS;Java;JavaScript;SQL
+64536,C#;HTML/CSS;JavaScript;PHP;SQL
+64537,C#;HTML/CSS;JavaScript;SQL
+64538,C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+64539,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+64540,Java;PHP;SQL
+64541,Bash/Shell/PowerShell;C;Clojure;Elixir;Python;Rust
+64542,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+64543,C#;Java
+64544,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64545,Python
+64546,HTML/CSS;JavaScript
+64547,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+64548,C#;JavaScript;Python;TypeScript
+64549,HTML/CSS;JavaScript;Python;Ruby;SQL
+64550,HTML/CSS;Java;JavaScript;SQL;TypeScript
+64551,Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+64552,C;C++;C#
+64553,C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+64554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64555,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+64556,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+64557,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+64558,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+64559,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64560,HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+64561,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+64562,Java;JavaScript;Other(s):
+64563,HTML/CSS;JavaScript;PHP;SQL
+64564,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+64565,HTML/CSS;Java;JavaScript;Ruby;TypeScript
+64566,C#
+64567,C++;Python
+64568,Java
+64569,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS
+64570,HTML/CSS;Java;JavaScript;Rust
+64571,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+64572,C#;JavaScript;Python;Scala;SQL;TypeScript
+64573,Python
+64574,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64575,HTML/CSS;Java;PHP;Python;Scala
+64576,C#;HTML/CSS;Java;JavaScript;Python
+64577,HTML/CSS;Java
+64578,Bash/Shell/PowerShell;HTML/CSS;SQL
+64579,Bash/Shell/PowerShell;C;Objective-C;R;Swift
+64580,Bash/Shell/PowerShell;Java
+64581,Java;JavaScript
+64582,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript
+64583,C++;Python;Ruby;Other(s):
+64584,HTML/CSS;Java
+64585,HTML/CSS;JavaScript;PHP;SQL
+64586,C++;C#;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+64587,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+64588,C++;C#;HTML/CSS;Java;JavaScript;SQL
+64589,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+64590,HTML/CSS;Java;JavaScript;SQL;Other(s):
+64591,Go;HTML/CSS;JavaScript;Kotlin;Ruby;SQL
+64592,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+64593,SQL
+64594,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+64595,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+64596,C;C++;Java;Python;SQL
+64597,JavaScript;Python;Ruby;SQL
+64598,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python;Other(s):
+64599,C#;HTML/CSS;JavaScript;SQL
+64600,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64601,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+64602,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64603,JavaScript;TypeScript
+64604,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64605,Bash/Shell/PowerShell;JavaScript;PHP;SQL;VBA
+64606,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+64607,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+64608,Assembly;Objective-C;PHP;Python
+64609,Bash/Shell/PowerShell;C;C++;JavaScript;Python;R;SQL
+64610,Java
+64611,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+64612,HTML/CSS;JavaScript;Python;TypeScript
+64613,HTML/CSS;JavaScript;Scala;SQL
+64614,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+64615,HTML/CSS;JavaScript;PHP
+64616,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+64617,R;SQL
+64618,HTML/CSS;JavaScript;Ruby;TypeScript
+64619,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+64620,C#;Dart;Java;Kotlin;Swift
+64621,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+64622,HTML/CSS;Java;JavaScript;SQL;TypeScript
+64623,C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+64624,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python
+64625,HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+64626,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64627,Go;PHP;Python
+64628,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+64629,Bash/Shell/PowerShell;Go;PHP;VBA
+64630,Ruby
+64631,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+64632,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+64633,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+64634,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+64635,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+64636,Assembly;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+64637,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64638,Go;Python
+64639,C#;Java;PHP;SQL;VBA
+64640,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64641,C++;C#;HTML/CSS;SQL
+64642,C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+64643,Java
+64644,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64645,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64646,C#;HTML/CSS;JavaScript;SQL
+64647,C#;SQL;Other(s):
+64648,C#;HTML/CSS;JavaScript;SQL
+64649,Assembly;Dart;Java;JavaScript;PHP;Python;SQL;TypeScript
+64650,Go;Python
+64651,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP
+64652,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64653,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Python;SQL
+64654,C;C++;Erlang;Java;JavaScript;Kotlin;Python;Scala
+64655,Python
+64656,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+64657,C#;HTML/CSS;JavaScript;SQL
+64658,C++;Java;JavaScript;Kotlin;Swift;TypeScript
+64659,Bash/Shell/PowerShell;C;C++
+64660,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;Scala
+64661,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+64663,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+64664,C++;HTML/CSS;Python
+64665,C#;SQL;VBA
+64666,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+64667,Go;HTML/CSS;JavaScript;PHP;SQL
+64668,C++;C#;Java;JavaScript;PHP
+64669,Bash/Shell/PowerShell;C++;Python
+64670,Bash/Shell/PowerShell;Rust
+64671,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+64672,C#;HTML/CSS;JavaScript;SQL
+64673,Go;HTML/CSS;Java;Kotlin;Python;SQL
+64674,C;C++;HTML/CSS;Java;JavaScript
+64675,C
+64676,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+64677,HTML/CSS;JavaScript;PHP;SQL
+64678,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+64679,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Rust;TypeScript
+64680,Bash/Shell/PowerShell;Python
+64681,C++;Java;Python;Swift
+64682,Bash/Shell/PowerShell;C;C#;Java;JavaScript
+64683,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+64684,C;C++;Java
+64685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+64686,HTML/CSS;Java;JavaScript;SQL
+64687,HTML/CSS;Java;JavaScript;SQL
+64688,Assembly;C++;HTML/CSS;Java;JavaScript;PHP
+64689,C++;C#
+64690,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64691,C++;HTML/CSS;JavaScript;Python
+64692,Assembly;C;HTML/CSS;JavaScript;Ruby;Scala;SQL;TypeScript
+64693,Kotlin;Swift
+64694,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64695,HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript;VBA
+64696,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Swift;TypeScript
+64697,Swift
+64698,C#;HTML/CSS;Java;JavaScript
+64699,Bash/Shell/PowerShell;Python;SQL
+64700,C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;Swift
+64701,JavaScript;TypeScript
+64702,Java;SQL;Other(s):
+64703,Python
+64704,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+64705,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64706,C++;Java;SQL
+64707,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;WebAssembly
+64708,C;C++;HTML/CSS;Java;JavaScript;SQL
+64709,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+64710,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64711,C++;HTML/CSS;JavaScript;Python;TypeScript
+64712,C++;C#;Java;PHP;Python;SQL
+64713,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Kotlin;Python;SQL
+64714,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+64715,Java;Kotlin;Python
+64716,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+64717,C++;Python
+64718,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript;VBA
+64719,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64720,C++;JavaScript;Python;Ruby
+64721,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+64722,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+64723,HTML/CSS;JavaScript;PHP;SQL
+64724,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python
+64725,Bash/Shell/PowerShell;SQL;Other(s):
+64726,C#;HTML/CSS;PHP;SQL
+64727,C#;Java;SQL
+64728,HTML/CSS;JavaScript;Ruby;SQL;Swift
+64729,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;JavaScript;SQL
+64730,HTML/CSS;JavaScript;PHP;Python;SQL
+64731,C#
+64732,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64733,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+64734,Java;JavaScript;SQL
+64735,Java;Kotlin
+64736,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;SQL;VBA
+64737,HTML/CSS;JavaScript;Ruby
+64738,C#;SQL
+64739,JavaScript;TypeScript
+64740,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+64741,C;HTML/CSS;JavaScript
+64742,C;HTML/CSS;JavaScript;PHP;SQL
+64743,Bash/Shell/PowerShell;C;C++;Python;R
+64744,Java;JavaScript;Python;SQL
+64745,Bash/Shell/PowerShell;C++;Python
+64746,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64747,Go;Python
+64748,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+64749,C#;HTML/CSS;JavaScript;SQL
+64750,HTML/CSS;JavaScript;Python;Swift
+64751,HTML/CSS;JavaScript;Python
+64752,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;VBA
+64753,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python
+64754,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+64755,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64757,C++;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+64758,C#;VBA
+64759,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+64760,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA
+64761,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64762,C#;HTML/CSS;JavaScript;SQL
+64763,C;HTML/CSS;Python
+64764,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64765,Java;Python
+64766,C#;HTML/CSS;JavaScript;SQL
+64767,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+64768,C#;HTML/CSS;JavaScript;SQL
+64769,Assembly;Bash/Shell/PowerShell;C;Java;Python;SQL
+64770,HTML/CSS;JavaScript;TypeScript
+64771,C#;SQL
+64772,C#;HTML/CSS;JavaScript;PHP;SQL
+64773,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+64774,HTML/CSS;JavaScript;Ruby;SQL
+64775,HTML/CSS;JavaScript;Python
+64776,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+64777,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64778,HTML/CSS;JavaScript;Python;TypeScript
+64779,Assembly;C#;HTML/CSS;JavaScript
+64780,C;HTML/CSS;Java;JavaScript
+64781,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64782,C#
+64783,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+64784,C#;HTML/CSS;JavaScript;PHP;TypeScript
+64785,C#;HTML/CSS;JavaScript;SQL
+64786,C
+64787,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+64788,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;WebAssembly
+64789,HTML/CSS;JavaScript;PHP
+64790,Assembly;Bash/Shell/PowerShell;C;Dart;Java;JavaScript;Python;TypeScript
+64791,C#;HTML/CSS;Java;JavaScript;Python;SQL
+64792,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Rust
+64793,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+64794,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+64795,C;C#;HTML/CSS;Java
+64796,Python;R;VBA
+64797,HTML/CSS;JavaScript;SQL
+64799,HTML/CSS;JavaScript;PHP;Python;TypeScript
+64800,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64801,C;C++;Java
+64802,HTML/CSS;Java;JavaScript
+64803,HTML/CSS;PHP;Python;SQL
+64804,Java;Other(s):
+64805,HTML/CSS;JavaScript;SQL
+64806,C#;HTML/CSS;JavaScript;SQL
+64807,C;C++;C#
+64808,Go;JavaScript
+64809,Assembly;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+64810,C++;C#;HTML/CSS;JavaScript;Python;Rust
+64811,C++;Go;Kotlin
+64812,Python;VBA
+64813,HTML/CSS;Java;JavaScript;TypeScript
+64814,C;Python;SQL;Other(s):
+64815,Java;Kotlin
+64816,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+64817,C#;HTML/CSS;JavaScript;PHP;SQL
+64818,Java
+64819,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+64820,Bash/Shell/PowerShell;C#;Go;SQL;TypeScript
+64821,Bash/Shell/PowerShell;C;C++;JavaScript;Rust
+64822,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+64823,Assembly;C#;Other(s):
+64824,Java;Python
+64825,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64826,Go;Java;Python
+64827,C#;HTML/CSS;SQL
+64828,Bash/Shell/PowerShell;Go;Java;Python
+64829,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+64830,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+64831,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+64832,C;C++;C#;HTML/CSS;Java;Python;Swift
+64833,C;C++;JavaScript;PHP;Python;SQL;Other(s):
+64835,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R
+64836,Bash/Shell/PowerShell;Java;Python;Rust;Scala
+64837,Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+64838,Objective-C
+64839,Bash/Shell/PowerShell;C++;Python
+64840,HTML/CSS;JavaScript;PHP;Python;SQL
+64841,C#
+64842,JavaScript;Swift
+64843,C++;HTML/CSS;JavaScript
+64844,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL;VBA
+64845,Bash/Shell/PowerShell;Java;Scala
+64846,HTML/CSS;JavaScript
+64847,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+64848,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+64849,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+64850,C#;Erlang;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+64851,Java;Kotlin;Swift
+64852,Java;Kotlin;Swift
+64853,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+64854,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+64855,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+64856,Java;Kotlin
+64857,Bash/Shell/PowerShell;C;C++
+64858,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+64859,C;C++;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;SQL;Swift
+64860,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+64861,Bash/Shell/PowerShell;C;C++
+64862,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+64863,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+64864,C#;JavaScript;SQL;TypeScript
+64865,Bash/Shell/PowerShell;Go;Java;JavaScript
+64866,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+64867,C;C++;Go;HTML/CSS;JavaScript;Python
+64868,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+64869,Assembly;Bash/Shell/PowerShell;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript
+64870,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript;Other(s):
+64871,C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64872,C++;C#;HTML/CSS;JavaScript;SQL;Swift
+64873,Bash/Shell/PowerShell;Java;JavaScript;SQL
+64874,Bash/Shell/PowerShell;C++;Python;SQL
+64875,C;C++;Java
+64876,C;Java;Python;SQL
+64877,Java
+64878,HTML/CSS;Java;JavaScript;SQL
+64879,Bash/Shell/PowerShell;Objective-C;Swift
+64880,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+64881,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+64882,HTML/CSS;JavaScript;PHP;Ruby
+64883,HTML/CSS;JavaScript;Python;Ruby
+64884,Python;R
+64885,C#;SQL
+64886,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+64887,HTML/CSS;JavaScript;PHP
+64888,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+64889,C#;HTML/CSS;JavaScript;SQL;Other(s):
+64890,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+64891,C#;Java
+64892,C#
+64893,C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+64894,Go;Java;JavaScript;PHP
+64895,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64896,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+64897,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Swift
+64898,HTML/CSS;Python
+64899,Bash/Shell/PowerShell;Python
+64900,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64901,Bash/Shell/PowerShell;Java
+64902,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;TypeScript
+64903,C#
+64904,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;R;Scala;SQL
+64905,HTML/CSS;JavaScript
+64906,Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript;Other(s):
+64907,C;C++;HTML/CSS;Java;JavaScript
+64908,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+64909,C#;HTML/CSS;JavaScript;Python;SQL
+64911,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Kotlin;Python;SQL
+64912,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+64913,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+64914,C#;HTML/CSS;JavaScript;TypeScript
+64915,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+64916,Java;Kotlin;Objective-C;SQL;Swift
+64917,C++;Java;Kotlin;Objective-C;Swift
+64918,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+64919,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+64920,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+64921,HTML/CSS;Java;JavaScript;SQL;TypeScript
+64922,Bash/Shell/PowerShell;HTML/CSS;Java
+64923,HTML/CSS;JavaScript;Ruby;SQL
+64924,C#;SQL
+64925,C#;Erlang;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64926,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+64927,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+64928,Java
+64929,Java;Kotlin
+64930,Go;Java;JavaScript;Python;SQL;Other(s):
+64931,C#
+64932,Bash/Shell/PowerShell;Python;Scala
+64933,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+64934,C;Java;JavaScript;Python
+64935,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+64936,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64937,HTML/CSS;JavaScript;Ruby;SQL
+64938,Python;R;SQL
+64939,Swift
+64940,C++;HTML/CSS;JavaScript;SQL;Other(s):
+64941,Bash/Shell/PowerShell;SQL
+64942,HTML/CSS;JavaScript;PHP;Python;SQL
+64943,Bash/Shell/PowerShell;Python
+64944,Bash/Shell/PowerShell;HTML/CSS;Python;R
+64945,C#;Java;Python;SQL
+64946,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+64947,C;Python
+64948,HTML/CSS;JavaScript;PHP
+64949,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+64950,C#;HTML/CSS;JavaScript
+64951,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+64952,Python;Ruby
+64953,HTML/CSS;PHP;Python;SQL;TypeScript;Other(s):
+64954,Bash/Shell/PowerShell;C#;JavaScript
+64955,Java;SQL
+64956,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust
+64957,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+64958,Java
+64959,HTML/CSS;JavaScript;Python;Ruby
+64960,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+64961,PHP;Python
+64962,HTML/CSS;Java;PHP;Python
+64963,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+64964,Assembly;Bash/Shell/PowerShell;C;C++;Python
+64965,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+64966,C#
+64967,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+64968,Bash/Shell/PowerShell;C++;Python
+64969,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+64970,C#;HTML/CSS;JavaScript;SQL
+64971,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64972,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+64973,HTML/CSS;Java
+64974,C#;Swift
+64975,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+64976,C#;HTML/CSS;Java;Python
+64977,C#;HTML/CSS;JavaScript;SQL
+64978,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+64979,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;PHP;Python;Ruby
+64980,Bash/Shell/PowerShell;C++;Python;R
+64981,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+64982,C#;Java;TypeScript
+64983,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+64984,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+64985,HTML/CSS;Java;JavaScript;SQL;TypeScript
+64986,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+64987,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+64988,C#;HTML/CSS;JavaScript;SQL;TypeScript
+64989,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+64990,HTML/CSS;JavaScript;SQL;TypeScript
+64991,C#;HTML/CSS;JavaScript;Python
+64992,C#;Java
+64993,C;Java;JavaScript;Python;Other(s):
+64994,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+64995,Bash/Shell/PowerShell;C;Python;Rust
+64996,Java;Objective-C
+64997,C++;HTML/CSS;Python;R
+64999,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+65000,Assembly;C;C++;Python
+65001,HTML/CSS;JavaScript;Python
+65002,HTML/CSS;Java;JavaScript;TypeScript
+65003,C#;SQL;TypeScript
+65004,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65005,HTML/CSS;JavaScript;PHP
+65006,HTML/CSS;Java;JavaScript;SQL;TypeScript
+65007,Assembly;Java;Python
+65008,HTML/CSS;Python;SQL
+65009,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65010,Bash/Shell/PowerShell;C#
+65011,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+65012,Other(s):
+65013,C#;HTML/CSS;JavaScript;SQL
+65014,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+65016,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+65017,Dart;Java;Objective-C;Swift
+65018,Bash/Shell/PowerShell;Python;SQL
+65019,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+65020,C++;HTML/CSS;Java;JavaScript;SQL
+65021,Python
+65022,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;SQL;VBA
+65023,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+65024,C#;HTML/CSS;SQL
+65025,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+65026,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript;VBA
+65027,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+65028,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+65029,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+65030,Bash/Shell/PowerShell;Go;JavaScript;Objective-C;Python;Scala;SQL;Swift
+65031,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+65032,HTML/CSS;JavaScript
+65033,HTML/CSS;Java;JavaScript
+65034,Bash/Shell/PowerShell;Java;SQL
+65035,Bash/Shell/PowerShell;Python
+65036,C#;JavaScript;SQL
+65037,C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+65038,C;Clojure;HTML/CSS;Java;JavaScript;Kotlin
+65039,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+65040,C#;HTML/CSS;PHP;SQL
+65041,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+65042,C#;HTML/CSS;JavaScript;Python;R;SQL
+65043,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+65044,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript;Other(s):
+65045,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+65046,HTML/CSS;JavaScript;Python
+65047,HTML/CSS;JavaScript;PHP;Python;SQL
+65048,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Go;Java;JavaScript;PHP;Python;Ruby
+65049,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65050,Python
+65051,C++;Python;Rust
+65052,C++;C#
+65053,VBA
+65054,Elixir;JavaScript;PHP;Ruby;SQL
+65055,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+65056,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+65057,R
+65058,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+65059,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+65060,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65061,Java;Kotlin;Python
+65062,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+65063,Bash/Shell/PowerShell;C;Kotlin;PHP;Python
+65064,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+65065,C#;HTML/CSS;JavaScript;SQL
+65066,HTML/CSS;JavaScript;PHP;Ruby
+65067,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+65068,Assembly;Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+65069,Assembly;C;C#;Python
+65070,Bash/Shell/PowerShell;Java;Python;R;Scala;SQL
+65071,C;C++;Python
+65072,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+65073,Bash/Shell/PowerShell;JavaScript;PHP;Python;Rust;SQL
+65074,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65075,Bash/Shell/PowerShell;C;Java;Python
+65076,HTML/CSS;Java
+65077,C#;Python
+65078,R;SQL
+65079,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+65080,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+65081,C;C++;Python
+65082,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65083,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+65084,Assembly;Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+65085,HTML/CSS;Java;JavaScript;PHP;SQL
+65086,Assembly;Bash/Shell/PowerShell;C;C++;Kotlin;Python;Rust
+65087,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+65088,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+65089,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python
+65090,JavaScript;Swift;TypeScript
+65091,Bash/Shell/PowerShell;C;Other(s):
+65092,Go;Java;JavaScript;SQL;TypeScript
+65093,Java;SQL
+65094,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+65095,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65096,C;Java;Python;Other(s):
+65097,C#;SQL
+65098,C;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+65099,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+65100,HTML/CSS;Java;JavaScript;PHP;SQL
+65101,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+65102,Java;Kotlin;SQL
+65103,C;C++;C#;HTML/CSS;Java;SQL
+65104,C#;HTML/CSS;JavaScript;SQL
+65105,Java;Python;Rust;Scala
+65106,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+65107,C;C++;HTML/CSS;JavaScript;Python
+65108,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+65109,HTML/CSS;JavaScript;PHP
+65110,HTML/CSS;Python;R;SQL
+65111,Java
+65112,C#;Python
+65113,Java
+65114,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65115,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+65116,C;C++;C#;HTML/CSS;PHP;SQL
+65117,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65118,Bash/Shell/PowerShell;C;C++;C#;Go;Ruby;Rust
+65119,C++;PHP
+65120,HTML/CSS;Java;JavaScript;SQL
+65121,Bash/Shell/PowerShell;Python
+65122,C#;SQL
+65123,JavaScript;Python
+65124,Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+65125,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;R
+65126,HTML/CSS;JavaScript;PHP;SQL
+65127,Java;Kotlin;Swift
+65128,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+65129,HTML/CSS;Java;JavaScript;SQL
+65130,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+65131,HTML/CSS;Java;JavaScript
+65132,Java;Kotlin
+65133,C#;HTML/CSS;PHP;TypeScript
+65134,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+65135,Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;Python;Swift
+65136,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+65137,Bash/Shell/PowerShell;C#;Python;SQL
+65138,HTML/CSS;Java;JavaScript;Python
+65139,C;C++;C#;Python
+65140,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+65141,Assembly;C#;Python
+65142,C#
+65143,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65144,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;Other(s):
+65145,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+65146,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Swift
+65147,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;VBA;Other(s):
+65148,Assembly;C;HTML/CSS;Java;JavaScript;SQL
+65150,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL;VBA
+65151,HTML/CSS;Python;SQL;VBA
+65152,C++;Python
+65153,C#;HTML/CSS;JavaScript;Other(s):
+65154,HTML/CSS;JavaScript;PHP
+65155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+65156,C++;HTML/CSS;Java;JavaScript;Python;SQL
+65157,Assembly;C;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+65158,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+65159,HTML/CSS;Java;JavaScript;Kotlin;Python
+65160,C#;Clojure;HTML/CSS;Java;JavaScript;Python;Rust
+65161,Python
+65162,HTML/CSS;JavaScript;TypeScript
+65163,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+65164,Bash/Shell/PowerShell;Go;Java;Kotlin;Python
+65165,Java;Kotlin;Other(s):
+65166,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+65167,Bash/Shell/PowerShell;C;C#;Java;JavaScript;Python;SQL
+65168,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+65169,HTML/CSS;JavaScript;PHP;SQL
+65170,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+65171,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+65172,Assembly;C;C++;Python;VBA
+65173,C#;Objective-C;Swift
+65174,Bash/Shell/PowerShell;JavaScript;TypeScript
+65175,Assembly;Other(s):
+65176,HTML/CSS;PHP
+65177,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+65178,HTML/CSS;JavaScript
+65179,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+65180,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65181,C;Java;PHP
+65182,R
+65183,Objective-C;Ruby;Swift
+65184,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+65185,Bash/Shell/PowerShell;C;Python
+65186,HTML/CSS;JavaScript;PHP;SQL
+65187,C#;JavaScript
+65188,C;Clojure;Elixir;Erlang;Go;Java;JavaScript;Kotlin;Python;TypeScript
+65189,C++;C#
+65190,Java;Python;R;SQL;VBA;Other(s):
+65191,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+65192,HTML/CSS
+65193,C++
+65194,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;TypeScript
+65195,Bash/Shell/PowerShell;Objective-C;Ruby;Rust;Swift
+65196,HTML/CSS;JavaScript;TypeScript
+65197,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+65198,HTML/CSS;JavaScript;Python;Rust
+65199,Python;Other(s):
+65200,C++;Go;Java;Python;Scala;SQL
+65201,C++;Python;SQL
+65202,C#;HTML/CSS;JavaScript;SQL
+65203,C#;HTML/CSS;JavaScript;SQL
+65204,Java;JavaScript;Other(s):
+65205,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;F#;HTML/CSS;Java;JavaScript;Scala;SQL
+65206,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+65207,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+65208,C#;Other(s):
+65209,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python
+65210,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+65211,Elixir;JavaScript;SQL;TypeScript
+65212,Bash/Shell/PowerShell;C++;Python;R
+65213,HTML/CSS;SQL
+65214,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+65215,C;C#;HTML/CSS;Java;JavaScript;Python
+65216,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+65217,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+65218,Java;Scala;SQL
+65219,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL;VBA
+65220,Bash/Shell/PowerShell;C;C++;Java;Python;R
+65221,C;C++;HTML/CSS;JavaScript;Python;SQL
+65222,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65223,C#;HTML/CSS;JavaScript;PHP;TypeScript
+65224,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+65225,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;WebAssembly
+65226,HTML/CSS;JavaScript;PHP;TypeScript
+65227,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65229,Java;JavaScript;Kotlin;Objective-C;Python;Ruby
+65230,HTML/CSS;Java;JavaScript;PHP;Python
+65231,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+65232,Bash/Shell/PowerShell;Java;Python;SQL
+65233,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;TypeScript
+65234,HTML/CSS;JavaScript;Other(s):
+65235,C++;Python
+65236,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+65237,HTML/CSS;Java;JavaScript;PHP;TypeScript
+65238,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+65239,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+65240,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+65241,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+65242,HTML/CSS;Java;JavaScript;SQL
+65243,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+65244,C++;C#;JavaScript;SQL
+65245,Bash/Shell/PowerShell;C++;Go;Python;SQL
+65246,C++
+65247,JavaScript;Scala
+65248,Java;JavaScript;Kotlin;SQL
+65249,HTML/CSS;Java;JavaScript
+65250,Python;SQL
+65251,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+65252,HTML/CSS;JavaScript;Python;R;SQL
+65253,HTML/CSS;JavaScript;PHP;TypeScript
+65254,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+65255,Go;Java
+65256,HTML/CSS;JavaScript;Python
+65257,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL;TypeScript;Other(s):
+65258,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65259,C;C++;Java;JavaScript;PHP;Python
+65260,C#;HTML/CSS;Java;JavaScript;Python;SQL
+65261,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+65262,HTML/CSS;JavaScript;PHP;SQL
+65263,Bash/Shell/PowerShell;C;Go;Python
+65264,Java;JavaScript;Python
+65266,Java;JavaScript;Kotlin;TypeScript
+65267,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+65268,Assembly;Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+65269,C++;HTML/CSS;Java;SQL
+65270,C#;JavaScript;Python
+65271,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65272,Java;JavaScript;Swift
+65273,HTML/CSS;JavaScript;Python
+65274,HTML/CSS;Java;JavaScript;Python;SQL
+65275,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+65276,Assembly;C
+65277,Java;Kotlin
+65278,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Other(s):
+65279,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+65280,Java;Swift
+65281,C++
+65282,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65283,HTML/CSS;Java;JavaScript;TypeScript
+65284,C++;HTML/CSS;Java;JavaScript;SQL
+65285,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+65286,SQL;VBA
+65287,Java;JavaScript;Scala;SQL
+65288,HTML/CSS;JavaScript;Kotlin;PHP;Python;TypeScript
+65289,HTML/CSS;JavaScript
+65290,Assembly;C++;C#;HTML/CSS;Java;SQL
+65291,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+65292,SQL
+65293,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+65294,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+65295,Go;Java;SQL
+65297,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+65298,Bash/Shell/PowerShell;C++;Python
+65299,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+65300,HTML/CSS;JavaScript;PHP;SQL
+65301,HTML/CSS;Java;JavaScript;Swift;TypeScript;Other(s):
+65302,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65303,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+65304,Java;Kotlin;SQL
+65305,C#;Python
+65306,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+65307,JavaScript;PHP
+65308,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+65309,Bash/Shell/PowerShell;C#;SQL
+65310,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+65311,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+65312,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+65313,Bash/Shell/PowerShell;Java;SQL
+65314,Java;JavaScript;SQL
+65315,HTML/CSS;Java;JavaScript;Python
+65316,HTML/CSS;Java;PHP;Python;SQL
+65317,Bash/Shell/PowerShell;C;C++;C#;Java;Python;Other(s):
+65318,Java;JavaScript;TypeScript
+65319,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Swift
+65320,C#;HTML/CSS;Java;SQL
+65321,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+65322,JavaScript;Ruby;Rust;SQL;TypeScript
+65323,HTML/CSS;JavaScript;PHP;SQL
+65324,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+65325,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;Other(s):
+65326,C#
+65327,Assembly;Bash/Shell/PowerShell;C++;Python
+65328,Bash/Shell/PowerShell;C#;Java;Python;VBA
+65329,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+65330,Bash/Shell/PowerShell;Python;Scala;SQL
+65331,Go;Java;Python;R;SQL
+65332,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+65333,HTML/CSS;JavaScript;Python
+65334,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+65335,JavaScript;Python
+65336,Java;JavaScript;Python
+65337,Bash/Shell/PowerShell;C;C++;Java;Python;Rust;SQL
+65338,Bash/Shell/PowerShell;Java;Python;SQL
+65339,HTML/CSS;JavaScript;PHP;TypeScript
+65340,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+65341,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+65342,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;SQL
+65343,Java;JavaScript;PHP;Python
+65344,HTML/CSS;Java;JavaScript;SQL
+65345,C#;HTML/CSS;JavaScript;SQL
+65346,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65347,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL;TypeScript;Other(s):
+65348,HTML/CSS;Java;JavaScript;Kotlin;Python
+65349,HTML/CSS;Java;JavaScript;Kotlin
+65350,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+65351,C;C++;Java;PHP;Python
+65352,C++;JavaScript;PHP;TypeScript
+65353,HTML/CSS;JavaScript;SQL;TypeScript
+65354,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+65355,Assembly;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65356,HTML/CSS;JavaScript;Python
+65357,C;C#
+65358,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65359,HTML/CSS;JavaScript;PHP
+65360,C++
+65361,Python;VBA
+65362,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65363,Go
+65364,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+65365,HTML/CSS;JavaScript;Ruby;SQL
+65366,Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Other(s):
+65367,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+65368,C;C++;Go;Java;Python;Other(s):
+65369,C#;HTML/CSS;Java;Python;SQL
+65370,C;Python
+65371,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby
+65372,C++;Python
+65373,Bash/Shell/PowerShell;C;C++;Java;SQL
+65374,Bash/Shell/PowerShell;C;JavaScript;Python
+65375,VBA
+65376,HTML/CSS;Java;JavaScript;Other(s):
+65377,Bash/Shell/PowerShell;JavaScript;Python;SQL
+65378,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+65379,C#
+65380,C#;JavaScript;SQL
+65381,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+65382,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+65383,Ruby;Scala;SQL
+65384,Java;Scala;SQL
+65385,HTML/CSS;JavaScript;PHP;Python;SQL
+65386,HTML/CSS;JavaScript;Ruby;SQL
+65387,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+65388,C++;HTML/CSS;JavaScript;PHP;SQL
+65389,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+65390,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+65391,C#;HTML/CSS;JavaScript;SQL
+65392,C;C#;HTML/CSS;JavaScript;PHP;R;SQL
+65393,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+65394,C#;HTML/CSS;Java
+65395,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;VBA;Other(s):
+65396,C#;Java;JavaScript;Python;SQL
+65397,C;C++;C#;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+65398,C#;HTML/CSS;SQL;VBA
+65399,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+65400,Java;SQL
+65401,JavaScript;Ruby;SQL
+65402,C++;JavaScript;Python
+65403,C;C++;HTML/CSS;Java
+65404,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+65405,Bash/Shell/PowerShell;C#;HTML/CSS;Java
+65406,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;VBA
+65407,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;PHP
+65408,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+65409,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript
+65410,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+65411,Java;Kotlin
+65412,Bash/Shell/PowerShell;C;C++;Python
+65413,HTML/CSS;JavaScript;VBA
+65414,C#;JavaScript;SQL
+65415,Bash/Shell/PowerShell;F#;Go;HTML/CSS;JavaScript;Python;Other(s):
+65416,C;C++;HTML/CSS;JavaScript;PHP
+65417,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65418,Go;HTML/CSS;Java;JavaScript;PHP;Python
+65419,Java;JavaScript;Python
+65420,HTML/CSS;Java;SQL;TypeScript
+65421,HTML/CSS;PHP
+65422,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly;Other(s):
+65423,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+65424,HTML/CSS;JavaScript;PHP;SQL
+65425,C;C++
+65426,C#;HTML/CSS;Java;JavaScript;SQL
+65427,HTML/CSS;JavaScript
+65428,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65429,Java;JavaScript;Scala;SQL
+65430,Java;JavaScript;Python
+65431,HTML/CSS;JavaScript;TypeScript
+65432,Objective-C;Swift
+65433,HTML/CSS;Java
+65434,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;Other(s):
+65435,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+65436,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65437,Bash/Shell/PowerShell;Python
+65438,C;HTML/CSS;JavaScript;Python
+65439,HTML/CSS;JavaScript
+65440,C;Python
+65441,C#
+65442,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Swift
+65443,Java;Kotlin
+65444,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+65445,HTML/CSS;JavaScript;PHP;Python;SQL
+65446,HTML/CSS;Java;JavaScript;PHP;TypeScript
+65447,C++;HTML/CSS;JavaScript
+65448,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+65449,HTML/CSS;Java;JavaScript;PHP;SQL
+65450,Bash/Shell/PowerShell;C#;SQL
+65451,Bash/Shell/PowerShell;C;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;SQL
+65452,C;HTML/CSS;JavaScript;PHP;Python;SQL
+65453,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Ruby;Rust;Swift;TypeScript;WebAssembly;Other(s):
+65454,HTML/CSS;Java;JavaScript;TypeScript
+65455,HTML/CSS;JavaScript
+65456,HTML/CSS;Java;JavaScript;SQL
+65457,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+65458,Python;R;SQL
+65459,C++;C#;Java;Python;R;SQL
+65460,HTML/CSS;JavaScript;Swift
+65461,HTML/CSS;Java;JavaScript;Ruby;TypeScript
+65462,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;TypeScript
+65463,C;C++;HTML/CSS;Java;JavaScript;R;SQL
+65464,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+65465,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+65466,HTML/CSS;PHP;SQL;Other(s):
+65467,Bash/Shell/PowerShell;C;Python;Other(s):
+65468,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65469,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65470,HTML/CSS;JavaScript;PHP;SQL
+65471,Java;PHP;Python;SQL;Swift
+65472,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+65473,C++;C#
+65474,Bash/Shell/PowerShell;C;C++;C#;SQL
+65475,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+65476,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+65477,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+65478,C;HTML/CSS;Java;JavaScript;SQL
+65479,Bash/Shell/PowerShell;Python
+65480,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+65481,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;SQL
+65482,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+65483,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65484,Java;SQL
+65485,HTML/CSS;JavaScript;Objective-C;PHP;SQL
+65486,JavaScript;Python
+65487,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65488,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+65489,HTML/CSS;Java;JavaScript;Python;SQL
+65490,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+65491,HTML/CSS;Java;JavaScript;PHP;SQL
+65492,HTML/CSS;Java;JavaScript;SQL
+65493,C#;HTML/CSS;JavaScript;SQL;VBA
+65494,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+65495,C++;C#;Java
+65496,Python;SQL;TypeScript
+65497,Bash/Shell/PowerShell;C;C++;Ruby
+65498,Assembly;C;HTML/CSS;Java;Python;VBA
+65499,Java;Python;SQL
+65500,Assembly;C;C#;HTML/CSS;JavaScript
+65501,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python
+65502,HTML/CSS;Java;JavaScript;PHP;TypeScript
+65503,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+65504,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65505,HTML/CSS;JavaScript;Python;TypeScript
+65506,Java;JavaScript;Python
+65507,C;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+65508,Python;Scala
+65509,Java;JavaScript;SQL
+65510,Objective-C;Swift
+65511,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65512,HTML/CSS;JavaScript;PHP;Ruby;SQL
+65513,Java;PHP;Python;R
+65514,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+65515,JavaScript;Python
+65516,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+65517,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+65518,HTML/CSS;Java;SQL;VBA
+65519,C;Java
+65520,JavaScript
+65521,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+65522,C;C++;C#;HTML/CSS;JavaScript;R;SQL;VBA
+65523,HTML/CSS;JavaScript;TypeScript
+65524,C#;HTML/CSS;SQL;TypeScript
+65525,Java;Scala
+65526,C;C++;HTML/CSS;JavaScript;PHP;SQL
+65527,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+65528,Bash/Shell/PowerShell;C#;JavaScript;Kotlin;SQL
+65529,Assembly;Bash/Shell/PowerShell;C
+65530,Java;PHP;Python;R;SQL
+65531,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+65532,C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+65533,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+65534,Java;R;Scala;Other(s):
+65535,Bash/Shell/PowerShell;Java;Python;SQL
+65536,Python;R;SQL;Other(s):
+65537,HTML/CSS;JavaScript;PHP;SQL
+65538,JavaScript;Ruby;TypeScript
+65539,Python
+65540,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65541,HTML/CSS;JavaScript
+65542,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+65543,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Rust;TypeScript;Other(s):
+65544,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+65545,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+65546,Assembly;C;Java
+65547,Python;Other(s):
+65548,C;HTML/CSS;JavaScript;Python;TypeScript
+65549,C#;HTML/CSS;JavaScript;Python;SQL
+65550,Clojure;HTML/CSS;Java;JavaScript;SQL
+65551,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+65552,C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+65553,Bash/Shell/PowerShell;C#;JavaScript;SQL
+65554,C#;HTML/CSS;Java;JavaScript;Python;SQL
+65555,C#;HTML/CSS;SQL;VBA;Other(s):
+65556,HTML/CSS;JavaScript
+65557,C#;HTML/CSS;Java;JavaScript;TypeScript
+65558,Assembly;Python;Other(s):
+65559,C;C++;HTML/CSS;Java
+65560,Java;Other(s):
+65561,HTML/CSS;Java;JavaScript
+65562,Java;SQL
+65563,Clojure;JavaScript;SQL
+65564,R
+65565,Python
+65566,Bash/Shell/PowerShell;JavaScript;Python;Scala;SQL
+65567,Bash/Shell/PowerShell;C;Objective-C;SQL;Swift
+65568,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+65569,Bash/Shell/PowerShell;C++;Python;R
+65570,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+65571,HTML/CSS;JavaScript;PHP;Python
+65572,HTML/CSS;JavaScript;SQL;TypeScript
+65573,HTML/CSS;Java;JavaScript;Python
+65574,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+65575,C#;HTML/CSS;JavaScript;PHP;VBA
+65576,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+65577,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65578,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+65579,HTML/CSS;JavaScript;Python
+65580,C#
+65581,Go;Java;JavaScript;Kotlin;SQL;Other(s):
+65582,Kotlin;Python;Swift
+65583,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+65584,C;HTML/CSS;Java;JavaScript;Python
+65585,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+65586,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65587,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+65588,Bash/Shell/PowerShell;Java;Python;SQL
+65589,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+65590,Kotlin;Swift
+65591,C++;PHP
+65592,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+65593,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65594,HTML/CSS;JavaScript;PHP;Python;R;SQL
+65595,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+65596,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+65597,Assembly;C;C++;C#
+65598,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust
+65599,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65600,SQL
+65601,C++;C#;Python
+65602,Dart;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+65603,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python
+65604,HTML/CSS;JavaScript;Kotlin;Swift;TypeScript
+65605,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+65606,SQL;VBA
+65607,HTML/CSS;Java;JavaScript;Python;SQL
+65608,HTML/CSS;Java;JavaScript
+65609,C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65610,C#;JavaScript
+65611,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+65612,Go;Java;Rust
+65613,Bash/Shell/PowerShell;Other(s):
+65614,C#;HTML/CSS;JavaScript;TypeScript
+65615,HTML/CSS;Java;JavaScript;PHP;SQL
+65616,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+65617,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+65618,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+65619,Bash/Shell/PowerShell;Python;SQL
+65620,HTML/CSS;JavaScript;PHP;Swift
+65621,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+65622,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+65623,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+65624,Bash/Shell/PowerShell;C;C++;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Swift;TypeScript
+65625,Bash/Shell/PowerShell;JavaScript;Kotlin;Python;SQL;TypeScript
+65626,Assembly;C;C++;Java;Python;R;Other(s):
+65627,C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+65628,Go;Java;JavaScript;Ruby;TypeScript
+65629,Bash/Shell/PowerShell;C;C++;Java;Python
+65630,Elixir;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;SQL
+65631,C;C++;HTML/CSS;JavaScript;Python
+65632,C;Java
+65633,Bash/Shell/PowerShell;C#
+65634,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+65635,Bash/Shell/PowerShell;Other(s):
+65636,C#;HTML/CSS;JavaScript;PHP
+65637,Java;JavaScript;SQL;TypeScript
+65638,Bash/Shell/PowerShell;C;C++;Erlang;Go;Python;R;SQL
+65639,Java
+65640,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+65641,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript
+65642,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL
+65643,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+65644,Other(s):
+65645,HTML/CSS;JavaScript;PHP;Swift
+65646,Bash/Shell/PowerShell;C#;Java
+65647,C;C++;Python
+65648,C#;SQL
+65649,HTML/CSS;JavaScript;PHP
+65650,HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+65651,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+65652,HTML/CSS;JavaScript;PHP;Python;TypeScript
+65654,HTML/CSS
+65655,HTML/CSS;JavaScript;SQL
+65656,HTML/CSS;Python;R;SQL
+65657,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+65658,Assembly;C;C++;Python
+65659,Python
+65660,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+65661,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP;Ruby;Rust;WebAssembly;Other(s):
+65662,Java;JavaScript;SQL;Other(s):
+65663,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+65664,C#;HTML/CSS;JavaScript;Python;VBA
+65665,C#;HTML/CSS;JavaScript
+65666,JavaScript
+65667,C++;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+65668,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65669,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+65670,C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+65671,C;HTML/CSS;PHP;SQL
+65672,C;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+65673,Bash/Shell/PowerShell;C;C++
+65674,Bash/Shell/PowerShell;Python;Ruby;Scala;SQL
+65675,Bash/Shell/PowerShell;C;Other(s):
+65676,C#;JavaScript;TypeScript
+65677,Java;SQL;Other(s):
+65679,Assembly;C;C++;Go;Java;JavaScript;Python;R
+65680,Java;PHP;Ruby;TypeScript
+65681,JavaScript;Python;Ruby;SQL;TypeScript
+65682,C;C++;Python;SQL
+65683,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+65684,HTML/CSS;JavaScript;PHP;SQL
+65685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+65686,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;Kotlin;Python;SQL
+65687,HTML/CSS;JavaScript;Ruby
+65688,C;C++;Java;PHP
+65689,HTML/CSS;JavaScript;PHP;SQL
+65690,Python;R
+65691,HTML/CSS;JavaScript;PHP
+65692,Other(s):
+65693,C#;HTML/CSS;JavaScript;SQL;VBA
+65694,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Other(s):
+65695,C#;Go;JavaScript;SQL;TypeScript
+65696,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65697,C++;Java;Python
+65698,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65699,Go;HTML/CSS;JavaScript;Python;TypeScript
+65700,C++;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+65701,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+65702,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+65703,C;HTML/CSS;Java;JavaScript;Python;R
+65704,R
+65705,C#;HTML/CSS;Java;Python;SQL
+65706,HTML/CSS;Java;JavaScript;SQL
+65707,JavaScript;TypeScript
+65708,Java;Python
+65709,C;C++;C#;HTML/CSS;Java;PHP;Other(s):
+65710,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+65712,HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+65713,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+65714,HTML/CSS;JavaScript;PHP;SQL
+65715,Assembly;C;C++;C#;HTML/CSS;Java;SQL
+65716,C#;Dart;Java;SQL
+65717,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65718,HTML/CSS;Java;JavaScript;Rust;TypeScript
+65719,C++;HTML/CSS;JavaScript;Python;Other(s):
+65720,C#;F#;HTML/CSS;JavaScript;SQL
+65721,JavaScript;Ruby
+65722,HTML/CSS;JavaScript;Python;TypeScript
+65723,HTML/CSS;JavaScript;Python;SQL
+65724,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+65725,C++;Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+65726,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+65727,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+65728,HTML/CSS;Java;JavaScript;SQL;TypeScript
+65729,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+65730,C++;C#;HTML/CSS;JavaScript;Python
+65731,C++;C#
+65732,HTML/CSS;JavaScript;PHP;TypeScript
+65733,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+65735,Bash/Shell/PowerShell;Python
+65736,Go;HTML/CSS;Java;JavaScript;Python;SQL
+65737,Bash/Shell/PowerShell;C;Go;JavaScript;PHP;Rust
+65738,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+65739,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;Rust
+65740,C++;Java
+65741,HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+65742,HTML/CSS;JavaScript
+65743,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65744,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+65745,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;Scala;SQL;TypeScript
+65746,Assembly;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+65747,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+65748,Bash/Shell/PowerShell;Java;Python;R;SQL;Other(s):
+65749,Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65750,Bash/Shell/PowerShell;C;C++;Python
+65751,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+65752,HTML/CSS;JavaScript;Python;SQL;TypeScript
+65753,HTML/CSS;Java;JavaScript;Python;TypeScript
+65754,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+65755,JavaScript;PHP;TypeScript
+65756,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+65757,C;HTML/CSS;Ruby;SQL
+65758,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+65759,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;Swift
+65760,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Python;Ruby;SQL
+65761,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Swift;VBA;Other(s):
+65762,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+65763,C;C++;Java
+65764,C;C++;Ruby
+65765,Assembly;Bash/Shell/PowerShell;C;C++
+65766,HTML/CSS;Java;JavaScript;PHP
+65767,HTML/CSS;Java;JavaScript;TypeScript
+65768,HTML/CSS;PHP;SQL
+65770,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+65771,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+65772,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+65773,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65774,HTML/CSS;JavaScript;PHP
+65775,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+65776,C#;HTML/CSS;JavaScript;Rust;SQL
+65777,HTML/CSS;PHP;SQL
+65778,C++;Python
+65779,C#;F#;HTML/CSS;Python;R;SQL;TypeScript
+65780,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+65781,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+65782,C++;C#;HTML/CSS;TypeScript
+65783,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+65784,Bash/Shell/PowerShell;Python
+65785,Java
+65786,Bash/Shell/PowerShell
+65787,C;Java;JavaScript;Objective-C;Python;SQL;TypeScript
+65788,Bash/Shell/PowerShell;C#;JavaScript;SQL
+65789,HTML/CSS;JavaScript;PHP;SQL
+65790,JavaScript
+65791,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+65792,HTML/CSS;Java;JavaScript;PHP;SQL
+65793,HTML/CSS;PHP;Python;SQL
+65794,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Ruby;Swift
+65795,HTML/CSS;Java;JavaScript;Python
+65796,C++;HTML/CSS;Java;JavaScript;Rust
+65797,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+65798,C;C++;C#;HTML/CSS;SQL
+65799,Java;Python
+65800,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+65801,Bash/Shell/PowerShell;Python;Scala
+65802,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+65803,C;C++;PHP;SQL
+65804,C#;PHP;Python;Scala
+65805,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65806,HTML/CSS;JavaScript;SQL;Other(s):
+65807,Java
+65808,Go;HTML/CSS;JavaScript;PHP;TypeScript
+65809,R
+65810,Bash/Shell/PowerShell;Clojure;Go;Java;Python;Ruby;TypeScript
+65811,Go;PHP;Python;SQL
+65812,Clojure;Go;SQL;TypeScript
+65813,HTML/CSS;JavaScript;PHP
+65814,Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+65815,PHP;Python
+65816,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65817,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+65818,C#;HTML/CSS;Java;JavaScript
+65819,C#;HTML/CSS;JavaScript;PHP
+65820,Python
+65821,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+65822,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+65823,HTML/CSS;JavaScript;PHP;SQL;Swift
+65824,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+65825,Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+65826,HTML/CSS;PHP;Python;SQL;TypeScript
+65827,Ruby;SQL
+65828,C++;Java;Python
+65829,Java;Python;SQL
+65830,Bash/Shell/PowerShell;C;C++
+65831,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+65832,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+65833,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+65834,C;C++;HTML/CSS;JavaScript;TypeScript;Other(s):
+65835,Python;Other(s):
+65836,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+65837,HTML/CSS;Java;JavaScript
+65838,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+65839,PHP;SQL;Other(s):
+65840,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R
+65841,HTML/CSS;JavaScript;PHP;SQL
+65842,Java;JavaScript;Kotlin
+65843,C#;F#;JavaScript;Swift;TypeScript
+65844,C#;HTML/CSS;JavaScript;PHP;SQL
+65845,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+65847,HTML/CSS;JavaScript;Ruby;SQL
+65848,C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+65849,C#;HTML/CSS;JavaScript;SQL
+65850,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+65851,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+65852,C;C#;HTML/CSS;JavaScript
+65853,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65854,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+65855,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+65856,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+65857,HTML/CSS;Java;JavaScript;Python;Other(s):
+65858,C#;JavaScript
+65859,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+65860,HTML/CSS;JavaScript;Python;TypeScript
+65861,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+65862,Objective-C;Swift
+65863,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65864,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+65865,C#;HTML/CSS;JavaScript;SQL
+65866,Clojure;Java
+65867,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+65868,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+65869,Java;Ruby;SQL
+65870,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+65871,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R
+65872,Go;HTML/CSS;JavaScript;Python;SQL
+65873,HTML/CSS;JavaScript
+65874,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+65875,HTML/CSS;Java;JavaScript;SQL;TypeScript
+65876,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;SQL;TypeScript
+65877,Bash/Shell/PowerShell;C++;Other(s):
+65878,Elixir;JavaScript;SQL
+65879,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+65880,Java;Kotlin;Scala
+65881,HTML/CSS;JavaScript;Python;Ruby;Swift;TypeScript
+65882,HTML/CSS;JavaScript;PHP
+65883,SQL;Other(s):
+65885,Bash/Shell/PowerShell;C;Python;Rust;Other(s):
+65886,Bash/Shell/PowerShell;C;HTML/CSS
+65887,Bash/Shell/PowerShell;C++;Python
+65888,Dart;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+65889,Bash/Shell/PowerShell;C#;Java
+65890,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+65891,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+65892,Objective-C;SQL;Swift;VBA
+65893,C#;Java;SQL
+65894,C;C++;Python
+65895,Clojure;Elixir;Python
+65896,Assembly;C;HTML/CSS;Java;Python;Swift
+65897,C#;Java;JavaScript;TypeScript
+65898,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL
+65899,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+65900,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+65901,HTML/CSS;PHP;SQL
+65902,HTML/CSS;JavaScript;SQL
+65903,Assembly;C;C++;Python;Other(s):
+65904,HTML/CSS;JavaScript;PHP;SQL
+65905,HTML/CSS;JavaScript;PHP;Ruby;Other(s):
+65906,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+65907,HTML/CSS;Java;JavaScript;TypeScript
+65908,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+65909,HTML/CSS;JavaScript;PHP;SQL
+65910,Bash/Shell/PowerShell;Java;Kotlin;Python
+65911,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+65912,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+65913,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+65914,C#;HTML/CSS;JavaScript;PHP
+65915,Java;Python
+65916,HTML/CSS;JavaScript;PHP;SQL
+65917,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+65918,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin
+65919,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+65920,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+65921,Java;JavaScript
+65922,HTML/CSS;JavaScript;SQL
+65923,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+65924,HTML/CSS;JavaScript;PHP;SQL
+65925,Assembly;Python
+65926,JavaScript;PHP
+65927,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+65928,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+65929,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Other(s):
+65930,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+65931,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby
+65932,Java;Kotlin;Python
+65933,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+65934,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript;Other(s):
+65935,HTML/CSS;JavaScript;PHP;SQL
+65936,Assembly;Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Rust;Scala;SQL;Swift
+65937,PHP;SQL
+65938,C#;JavaScript;Kotlin;TypeScript
+65939,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+65940,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Swift;TypeScript
+65941,Bash/Shell/PowerShell;Go;JavaScript;SQL;TypeScript
+65942,C++;Java;JavaScript;Python
+65943,Bash/Shell/PowerShell;C;C++;Python;R
+65944,C#;JavaScript;Python;SQL
+65945,C#;HTML/CSS;JavaScript
+65946,HTML/CSS;Java;JavaScript
+65947,C#;SQL
+65948,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+65949,Assembly;Bash/Shell/PowerShell;C;C++;Python
+65950,Java;Python;R;SQL;VBA
+65951,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Scala;SQL;Swift;TypeScript
+65952,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65953,HTML/CSS;JavaScript;PHP;SQL
+65954,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+65955,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65956,Bash/Shell/PowerShell;Swift
+65957,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65958,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+65960,Java;Swift
+65961,C;C++;C#;HTML/CSS;Python
+65962,C++;C#;HTML/CSS;Python
+65963,Bash/Shell/PowerShell;C#;SQL
+65964,HTML/CSS;PHP;SQL
+65965,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+65966,Java;Scala
+65967,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+65968,C#;HTML/CSS;JavaScript;SQL;TypeScript
+65969,HTML/CSS;Java;JavaScript;SQL;TypeScript
+65970,C#;HTML/CSS;JavaScript;SQL
+65971,C#;HTML/CSS;JavaScript;TypeScript
+65973,C#;SQL
+65974,HTML/CSS;JavaScript;PHP;Python
+65975,Ruby
+65976,C++;HTML/CSS;JavaScript;Python
+65977,Python;Rust
+65978,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+65979,Go;Python
+65980,Bash/Shell/PowerShell;Go
+65981,JavaScript;TypeScript
+65982,Java
+65983,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;VBA
+65984,C#;HTML/CSS;JavaScript;SQL
+65985,C++;Java
+65986,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+65987,Clojure;HTML/CSS;Java;JavaScript;TypeScript
+65989,Java;PHP
+65990,Java;Python;Ruby
+65991,C++;C#;JavaScript;TypeScript
+65992,C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+65993,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+65994,C++;C#;HTML/CSS;JavaScript;TypeScript
+65995,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Swift
+65996,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+65997,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+65998,Bash/Shell/PowerShell;Go;Python
+65999,HTML/CSS;JavaScript;Ruby
+66000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+66001,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+66002,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS
+66003,C#;Java;JavaScript;Python;SQL;TypeScript;VBA
+66004,C#;HTML/CSS;JavaScript;SQL
+66005,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+66006,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66007,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;Scala
+66008,C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+66009,HTML/CSS;PHP
+66010,HTML/CSS;JavaScript
+66011,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+66012,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;SQL;TypeScript;WebAssembly
+66013,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Scala;SQL
+66015,C#;Java;JavaScript;Kotlin;Swift
+66016,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+66017,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+66018,HTML/CSS;JavaScript;Other(s):
+66019,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+66020,Bash/Shell/PowerShell;Kotlin;TypeScript
+66021,C++;Python
+66022,Bash/Shell/PowerShell;C;PHP
+66023,Go
+66024,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+66025,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+66026,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+66027,C;Java;Python
+66028,Java;SQL
+66029,Bash/Shell/PowerShell;C++;C#;SQL
+66030,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+66031,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+66032,C;C++;Other(s):
+66033,Java;JavaScript
+66034,Bash/Shell/PowerShell;C++;C#;Dart;JavaScript;PHP;Python;SQL;TypeScript
+66035,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+66036,C;Clojure;Java;JavaScript;SQL;Other(s):
+66037,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+66038,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;VBA
+66039,C++;Java
+66040,C#;HTML/CSS;Java;JavaScript;TypeScript
+66041,Bash/Shell/PowerShell;Java;Python;SQL
+66042,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+66043,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66044,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66045,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66046,Python
+66047,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+66048,C++;TypeScript
+66049,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66050,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+66051,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+66052,C#;HTML/CSS;JavaScript;SQL;VBA
+66053,HTML/CSS;Java;Python;SQL
+66054,C#
+66056,HTML/CSS;JavaScript;Python
+66057,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+66058,C#;Ruby
+66059,C++;Java;JavaScript;PHP;SQL;TypeScript
+66060,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+66061,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+66062,C#;HTML/CSS;JavaScript;PHP
+66063,Bash/Shell/PowerShell;Python;Other(s):
+66064,Bash/Shell/PowerShell;Dart;Go;JavaScript;Rust;TypeScript
+66065,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+66066,HTML/CSS;TypeScript
+66067,Bash/Shell/PowerShell;C;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Python;R;Rust
+66068,Bash/Shell/PowerShell;Python;SQL
+66069,C#;Go;Java;JavaScript
+66070,HTML/CSS;JavaScript;TypeScript
+66071,HTML/CSS;Java;JavaScript;SQL
+66072,Bash/Shell/PowerShell;C++;Python;Ruby
+66073,Python;R;Other(s):
+66074,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+66075,C#;JavaScript;SQL;TypeScript;Other(s):
+66076,Java;JavaScript;Python;TypeScript
+66077,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;VBA
+66078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+66079,Bash/Shell/PowerShell;Java;TypeScript
+66080,Objective-C;PHP;SQL;Swift
+66081,C;SQL
+66082,C#;TypeScript
+66083,Objective-C;Swift
+66084,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66085,C#;HTML/CSS;JavaScript
+66086,C;HTML/CSS;Java;JavaScript;Kotlin;Python
+66087,C#;HTML/CSS;JavaScript;PHP;SQL
+66088,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+66089,HTML/CSS;Java;JavaScript;Python;TypeScript
+66090,HTML/CSS;Java;JavaScript;Kotlin;SQL
+66091,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+66092,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66093,Bash/Shell/PowerShell;C#;F#;Go;JavaScript;Rust;SQL
+66095,Bash/Shell/PowerShell;Python
+66096,HTML/CSS;JavaScript;PHP;SQL
+66097,Java;JavaScript;SQL;TypeScript
+66098,HTML/CSS;Java;JavaScript;SQL
+66099,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby;SQL;VBA
+66100,C#;HTML/CSS;JavaScript;PHP
+66101,C#;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+66102,C++;HTML/CSS;JavaScript;PHP;Other(s):
+66103,C#;Python;SQL
+66104,HTML/CSS;JavaScript
+66105,Java;JavaScript;SQL
+66106,Bash/Shell/PowerShell;Java;Python
+66107,Assembly;Bash/Shell/PowerShell;C++;Python;Rust;Other(s):
+66108,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+66109,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+66110,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+66111,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;SQL
+66112,Bash/Shell/PowerShell;C++;C#
+66113,Assembly;C;C++;Java;SQL
+66114,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66115,C;C++;C#;HTML/CSS;Python
+66116,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+66117,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+66118,JavaScript;PHP;Ruby;SQL
+66119,HTML/CSS;JavaScript;TypeScript
+66120,HTML/CSS;TypeScript
+66121,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+66122,Bash/Shell/PowerShell;C++;Go;Python;R;SQL
+66123,C;HTML/CSS;Java;SQL
+66124,Bash/Shell/PowerShell;C++;HTML/CSS;Python;TypeScript
+66125,Java;SQL
+66126,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+66127,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66128,Assembly;C;HTML/CSS;Java;PHP;SQL
+66129,Java
+66130,C;C++;C#;Java;JavaScript;Kotlin;PHP;Other(s):
+66131,Java;SQL
+66132,Objective-C;Swift
+66133,C;Java;JavaScript
+66134,Bash/Shell/PowerShell;Java;Scala;SQL
+66135,Go;JavaScript;PHP;Python;SQL
+66136,Assembly;C;C++;C#;Python
+66137,HTML/CSS;JavaScript
+66138,Bash/Shell/PowerShell;C#;Go;Java;Python;Swift;Other(s):
+66139,Assembly;C;HTML/CSS;JavaScript
+66140,Bash/Shell/PowerShell;C#;Java;Python;SQL
+66141,Bash/Shell/PowerShell;Python
+66142,HTML/CSS;JavaScript;SQL;TypeScript
+66143,HTML/CSS;JavaScript;Python;SQL;TypeScript
+66144,C;Java;SQL
+66145,C#;HTML/CSS;JavaScript
+66146,C;C++;HTML/CSS;Objective-C;PHP;Python;Swift
+66147,C#;HTML/CSS;SQL
+66148,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+66149,HTML/CSS;Ruby
+66150,C#;Clojure;HTML/CSS;JavaScript;SQL;TypeScript
+66151,C#;HTML/CSS;JavaScript;SQL
+66152,HTML/CSS;JavaScript;SQL;Other(s):
+66153,Bash/Shell/PowerShell;C#
+66154,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+66155,Bash/Shell/PowerShell;C;PHP;Python
+66156,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;Python;SQL;TypeScript
+66157,HTML/CSS;JavaScript;TypeScript
+66158,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+66159,C#;JavaScript;SQL;Swift
+66160,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+66161,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+66162,Bash/Shell/PowerShell;C++;Java;Python
+66163,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL;Other(s):
+66164,Go;HTML/CSS;Java;JavaScript;SQL
+66165,C#;HTML/CSS;Java;JavaScript;SQL
+66166,C#;Java;JavaScript
+66167,Go;PHP;Python;Rust;SQL
+66168,C#;HTML/CSS;JavaScript
+66169,Java
+66170,Python;R;SQL
+66171,C#;SQL;VBA
+66172,Swift
+66173,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+66174,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66175,C;C++
+66176,SQL
+66177,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+66178,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+66179,C#;HTML/CSS;JavaScript;Python;SQL
+66180,Bash/Shell/PowerShell;HTML/CSS;Python
+66181,C++;HTML/CSS;Java;JavaScript;Kotlin
+66182,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+66183,Bash/Shell/PowerShell;C;C++;Python
+66184,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+66185,Bash/Shell/PowerShell;C;Python
+66186,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+66187,Bash/Shell/PowerShell;SQL
+66188,Bash/Shell/PowerShell;JavaScript;Objective-C;Python;Ruby;Swift
+66189,HTML/CSS;Java;Python
+66190,C#;HTML/CSS;JavaScript;PHP;SQL
+66191,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+66192,Bash/Shell/PowerShell;C++;Java;Python;SQL
+66193,C;HTML/CSS;JavaScript;PHP;SQL
+66194,Python;SQL;VBA
+66195,HTML/CSS;Java;JavaScript
+66196,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+66197,Assembly;C;C++;C#;Java;Python;SQL
+66198,Bash/Shell/PowerShell;C#;Java
+66199,C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+66201,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+66202,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+66203,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+66204,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+66205,Assembly;C++;Python;Rust
+66206,HTML/CSS;JavaScript;PHP;Python;SQL
+66207,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+66208,HTML/CSS;Java;JavaScript;PHP;TypeScript
+66209,C;Python
+66210,HTML/CSS;JavaScript
+66211,Go;Kotlin;Ruby
+66212,Python;R
+66213,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+66214,Dart;HTML/CSS;JavaScript;PHP;SQL
+66215,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+66216,Java;TypeScript;Other(s):
+66217,C#;HTML/CSS;Java;JavaScript;Python;SQL
+66218,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+66219,Assembly;Go;HTML/CSS;JavaScript;PHP;Python;WebAssembly
+66220,HTML/CSS;JavaScript;PHP;SQL
+66221,C#;Python
+66222,C#;HTML/CSS;JavaScript;SQL
+66223,C++;Python
+66224,HTML/CSS;Java;JavaScript
+66225,Python;R;SQL
+66226,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+66227,Java;R;VBA
+66228,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66229,JavaScript;PHP
+66230,Java;JavaScript;PHP;Python;Scala;SQL
+66231,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+66232,C#;HTML/CSS;JavaScript
+66233,Elixir;Erlang;HTML/CSS;JavaScript;PHP;R
+66234,C#;HTML/CSS;JavaScript;SQL
+66235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+66236,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+66237,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+66238,Java;SQL
+66239,C#;HTML/CSS;JavaScript;SQL
+66241,HTML/CSS;JavaScript;PHP;SQL;VBA
+66242,C;C++;Java
+66243,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+66244,C#;SQL
+66245,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+66246,HTML/CSS;JavaScript;Python;SQL
+66247,Bash/Shell/PowerShell;JavaScript;SQL
+66248,C;C++;JavaScript;Python
+66249,C++;JavaScript;SQL
+66250,C#;HTML/CSS
+66251,Bash/Shell/PowerShell;C++;Go;Python;SQL
+66252,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Ruby
+66253,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;Ruby
+66254,HTML/CSS;PHP;SQL
+66255,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL
+66256,JavaScript;TypeScript
+66257,Objective-C;Python;Swift
+66258,C++;C#;Clojure;F#;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala
+66259,JavaScript
+66260,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66261,C++;Java;SQL
+66262,C;C++;HTML/CSS;Java;PHP;Python;SQL
+66263,Assembly;Bash/Shell/PowerShell;C;C++;Python
+66264,C++;HTML/CSS;Java;JavaScript
+66265,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python
+66266,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+66268,Assembly;C;C++;Python
+66269,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+66270,HTML/CSS;Java;PHP
+66271,C++;PHP
+66272,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+66273,C#;Java;Python
+66274,Bash/Shell/PowerShell;Other(s):
+66275,Assembly;C++;HTML/CSS;PHP;Rust;SQL
+66276,C#;Java;Objective-C
+66277,JavaScript;PHP;SQL
+66278,C;C++;C#;F#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+66279,C;C++;HTML/CSS;Java;Python
+66280,Bash/Shell/PowerShell;Java;SQL
+66281,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+66282,Java;JavaScript;TypeScript;Other(s):
+66283,C#;JavaScript;SQL
+66284,Assembly;C;C++;HTML/CSS;Python;SQL
+66285,Bash/Shell/PowerShell;C;C++
+66286,C;C++;Python
+66287,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust
+66288,JavaScript
+66289,C;C++;Java
+66290,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+66291,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+66292,C#;HTML/CSS;JavaScript;PHP;SQL
+66293,Bash/Shell/PowerShell;Python;Scala;SQL
+66294,HTML/CSS;JavaScript;TypeScript
+66295,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66296,C#;F#;Java
+66297,HTML/CSS;Java;JavaScript;PHP;SQL
+66298,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66299,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+66300,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+66301,C;HTML/CSS;Java;JavaScript;PHP;SQL
+66302,Bash/Shell/PowerShell;C;C#;Python
+66303,HTML/CSS;JavaScript;SQL
+66304,C;HTML/CSS;JavaScript;Objective-C;Swift
+66305,Java;Kotlin;Python
+66306,Java;Kotlin;Python
+66307,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+66308,Bash/Shell/PowerShell;C;C++;C#;Python
+66309,Java
+66310,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL;VBA
+66311,C;HTML/CSS;Java;JavaScript;SQL
+66312,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+66313,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+66314,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+66315,C;C#;Python;SQL;VBA
+66316,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+66317,HTML/CSS;Java;JavaScript;Python
+66318,C++;C#;HTML/CSS;Java;JavaScript;SQL
+66319,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+66320,HTML/CSS;Java;JavaScript;Python;R;SQL
+66321,Java;Kotlin
+66322,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+66323,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R
+66324,C++;C#;HTML/CSS;SQL
+66325,C;Go;HTML/CSS;JavaScript;Python
+66326,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+66327,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+66328,C#;HTML/CSS;SQL
+66329,Bash/Shell/PowerShell;C;Java;Python
+66330,HTML/CSS;Java;JavaScript;Python;Scala
+66331,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Python;R;Ruby;SQL;Other(s):
+66332,C#;JavaScript
+66333,C#;HTML/CSS;JavaScript;TypeScript
+66334,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+66335,Bash/Shell/PowerShell;C;C++;Python
+66336,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+66337,C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+66338,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+66339,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+66340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA;Other(s):
+66341,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Rust;TypeScript
+66342,TypeScript
+66343,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+66345,Go;HTML/CSS;JavaScript;Kotlin;Swift
+66346,HTML/CSS;Java;JavaScript
+66347,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+66348,Bash/Shell/PowerShell;Python;Scala
+66349,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+66350,Assembly;C;C++;Clojure;Dart;Elixir;Erlang;F#;Go;Java;Objective-C;Python;Ruby;Rust;Scala;Swift;TypeScript;WebAssembly
+66351,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+66352,Java;Objective-C;R
+66353,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+66354,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66355,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+66356,Bash/Shell/PowerShell;C;Java;Python
+66357,HTML/CSS;JavaScript;PHP;Python;TypeScript
+66358,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+66359,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript
+66360,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66361,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+66362,HTML/CSS;JavaScript;Python;TypeScript
+66363,Go;Java;JavaScript
+66365,Java;Kotlin
+66366,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66367,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+66368,C#;HTML/CSS;JavaScript;SQL
+66369,C#;VBA
+66370,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66371,HTML/CSS;Java;JavaScript;Python
+66372,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66373,Bash/Shell/PowerShell;Clojure;Dart;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+66374,Java;SQL
+66376,C++;HTML/CSS;JavaScript;Python;SQL
+66377,HTML/CSS;PHP;Python;SQL
+66378,C;HTML/CSS;JavaScript;Python;R;SQL
+66379,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Ruby;SQL
+66380,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+66381,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+66382,C;C++;Python
+66383,HTML/CSS;Python;SQL
+66384,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+66385,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+66386,HTML/CSS;Python;R
+66387,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+66388,Bash/Shell/PowerShell;C#;PHP;Python;SQL;VBA
+66389,HTML/CSS;JavaScript
+66390,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+66391,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+66392,HTML/CSS;JavaScript;PHP;SQL
+66393,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;VBA
+66394,C#;HTML/CSS
+66395,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+66396,C;C++;C#;SQL
+66397,Bash/Shell/PowerShell;Java;SQL
+66398,Bash/Shell/PowerShell;R
+66399,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+66400,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;VBA
+66401,Bash/Shell/PowerShell;C++;Objective-C;Python;Other(s):
+66402,Java;Kotlin;SQL
+66403,C;C#;Python;SQL;Other(s):
+66404,HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+66405,Bash/Shell/PowerShell;JavaScript;Python;SQL
+66406,HTML/CSS;Java;JavaScript;PHP
+66407,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+66408,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+66409,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+66410,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+66411,HTML/CSS;JavaScript;TypeScript
+66412,C#;HTML/CSS;Java;JavaScript;SQL
+66413,SQL
+66414,C;C++;C#;Python;VBA
+66415,Python;SQL
+66416,C#;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+66417,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66418,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+66419,Bash/Shell/PowerShell;Go;Python
+66420,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66421,Java
+66422,C++;HTML/CSS;JavaScript
+66423,Bash/Shell/PowerShell;Java;SQL;Other(s):
+66424,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript;Other(s):
+66425,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66426,C#;JavaScript
+66427,C;C#;HTML/CSS;JavaScript;SQL
+66428,Java;Kotlin
+66429,HTML/CSS;Ruby;SQL
+66430,HTML/CSS;JavaScript;Ruby;SQL
+66431,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+66432,Python;R
+66433,C#;HTML/CSS;JavaScript
+66434,Go;HTML/CSS;Java
+66435,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;JavaScript;Ruby;Rust;SQL;Other(s):
+66436,Bash/Shell/PowerShell;HTML/CSS;Python;Swift
+66437,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+66438,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66439,Bash/Shell/PowerShell;C#;Python;SQL
+66440,Python;SQL;Swift
+66441,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+66442,HTML/CSS;JavaScript;PHP;SQL
+66443,HTML/CSS;Java;JavaScript;SQL;TypeScript
+66444,HTML/CSS;PHP
+66445,Python
+66446,Bash/Shell/PowerShell;Python
+66447,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66448,C;C++;C#;Java;Kotlin;Python
+66449,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+66450,JavaScript;Ruby
+66451,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;PHP;Python;R;Other(s):
+66452,HTML/CSS;JavaScript
+66453,Java
+66454,HTML/CSS;JavaScript
+66455,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+66456,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+66457,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+66458,HTML/CSS;JavaScript;TypeScript
+66459,HTML/CSS;Java;JavaScript;PHP;SQL
+66460,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+66461,Objective-C;SQL
+66462,C#;HTML/CSS;JavaScript;Python;SQL
+66463,Bash/Shell/PowerShell;C;Clojure;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+66464,HTML/CSS;Java;JavaScript;SQL
+66465,C++;Python
+66466,Java
+66467,C;C++;Java;Other(s):
+66468,Other(s):
+66469,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+66470,C;C++;HTML/CSS;Java;Python;SQL
+66471,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby
+66472,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+66473,HTML/CSS;JavaScript;PHP;Ruby;Other(s):
+66474,Bash/Shell/PowerShell;C#;F#;HTML/CSS;PHP;Python;Ruby;SQL
+66475,C#;Java;Kotlin
+66476,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+66477,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66478,Bash/Shell/PowerShell;SQL
+66479,HTML/CSS;PHP;Python;SQL
+66480,HTML/CSS;Java;JavaScript;TypeScript
+66481,HTML/CSS;JavaScript;Python;TypeScript
+66482,HTML/CSS;Java;JavaScript;TypeScript
+66483,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Swift;Other(s):
+66484,C#;Kotlin;Objective-C;SQL;Swift
+66485,Bash/Shell/PowerShell;Elixir;Ruby;SQL
+66486,HTML/CSS;Java;JavaScript
+66487,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+66488,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;Python;SQL;TypeScript
+66489,C;C++;HTML/CSS;Java;SQL
+66490,Other(s):
+66491,HTML/CSS;JavaScript;SQL
+66492,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+66493,Ruby
+66494,C++
+66495,C#;JavaScript;SQL
+66496,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+66497,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+66498,C#;JavaScript;Python
+66499,Bash/Shell/PowerShell;C++;Python;Other(s):
+66500,Python;SQL;VBA
+66501,C++;Go;JavaScript;Python;SQL;Other(s):
+66502,Java;Python
+66503,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66504,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+66505,HTML/CSS
+66506,HTML/CSS;Java;JavaScript;TypeScript
+66507,C#;HTML/CSS;JavaScript;Python;SQL
+66509,HTML/CSS;JavaScript;PHP;SQL;Swift
+66510,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66511,C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+66512,HTML/CSS;JavaScript;Objective-C;Swift
+66513,HTML/CSS;JavaScript;PHP;SQL
+66514,C;C++;Python;SQL
+66515,C#;SQL;Other(s):
+66516,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+66517,C;HTML/CSS;Java;JavaScript;PHP
+66518,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+66519,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66520,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+66521,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+66522,Bash/Shell/PowerShell;C;Java;SQL
+66523,HTML/CSS;JavaScript;Python;Ruby;SQL
+66524,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+66525,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+66526,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python;SQL
+66527,Python;Ruby
+66528,C;C#;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;R
+66529,HTML/CSS;Java;JavaScript;TypeScript
+66530,C#;HTML/CSS;JavaScript;PHP;SQL
+66531,HTML/CSS;Java;JavaScript;SQL;TypeScript
+66532,C++;C#;HTML/CSS;Java;PHP;SQL
+66533,C;C++;SQL
+66534,Bash/Shell/PowerShell;C#;SQL
+66535,JavaScript;PHP
+66536,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66537,Bash/Shell/PowerShell;Java;Kotlin
+66538,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+66539,C#;F#
+66540,C++;HTML/CSS;JavaScript;Python;SQL
+66541,HTML/CSS;JavaScript;Python;Ruby;SQL
+66542,Go;Python
+66543,C#
+66544,C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+66545,C#;HTML/CSS;JavaScript;SQL
+66546,VBA
+66547,Bash/Shell/PowerShell;C++;Python;TypeScript
+66548,HTML/CSS;JavaScript;Ruby;SQL
+66549,C++;Java
+66550,C++;HTML/CSS;Java;JavaScript;PHP;Python
+66551,HTML/CSS;JavaScript;PHP;SQL
+66552,HTML/CSS;JavaScript;PHP;TypeScript
+66553,HTML/CSS;Java;JavaScript;Kotlin;SQL
+66554,HTML/CSS;JavaScript;Python;SQL
+66555,C++;HTML/CSS;Rust;SQL
+66556,Python
+66557,Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Swift
+66558,C;HTML/CSS;Java;JavaScript;PHP;SQL
+66559,Assembly;Java;Scala;SQL
+66560,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+66561,Clojure;HTML/CSS;JavaScript
+66562,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66563,HTML/CSS;Java;Python;SQL
+66564,HTML/CSS;JavaScript;PHP;SQL
+66565,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+66566,C;C++;SQL
+66567,HTML/CSS;JavaScript;Python
+66568,Bash/Shell/PowerShell;C#;Java;SQL
+66569,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+66570,C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+66571,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+66572,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+66573,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+66574,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66575,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;VBA
+66576,Bash/Shell/PowerShell;C;C#;SQL
+66577,Bash/Shell/PowerShell;C;C#;Python
+66578,C;C++;C#;HTML/CSS;Java
+66579,C#;Java;JavaScript;SQL;TypeScript
+66580,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;SQL
+66581,JavaScript;PHP;SQL
+66582,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+66583,HTML/CSS;JavaScript;PHP;TypeScript
+66584,C;Python
+66585,Bash/Shell/PowerShell;Python
+66586,C;C++;C#;Java;PHP;Python;R;SQL;Swift
+66587,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+66588,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+66589,C++
+66590,Java;Kotlin;TypeScript
+66591,HTML/CSS;JavaScript
+66592,Assembly;C;C++;JavaScript;Kotlin;Python;Rust;TypeScript;WebAssembly
+66593,C#;HTML/CSS;JavaScript;SQL
+66594,C#;Elixir;Go;JavaScript;PHP;Python;Ruby
+66595,HTML/CSS;JavaScript;PHP;SQL
+66596,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+66597,C++;C#;SQL;Other(s):
+66598,HTML/CSS;JavaScript;PHP;SQL
+66599,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+66600,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+66601,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+66602,Java;PHP;Scala;SQL;TypeScript
+66603,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66604,C#;HTML/CSS
+66606,Assembly;HTML/CSS;Java;JavaScript;Python
+66607,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+66608,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+66609,C#;HTML/CSS;JavaScript;TypeScript
+66610,Java;Objective-C
+66611,Java;JavaScript;SQL
+66612,C++;PHP
+66613,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+66614,C#;JavaScript;SQL;TypeScript
+66615,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66616,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+66617,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Rust;WebAssembly
+66618,C#
+66619,Bash/Shell/PowerShell;Python;SQL
+66620,C#;HTML/CSS;JavaScript;PHP;TypeScript
+66621,HTML/CSS;Java;JavaScript;PHP;SQL
+66622,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+66623,Bash/Shell/PowerShell;C++;Python
+66624,Bash/Shell/PowerShell;JavaScript;TypeScript
+66625,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66626,Go;HTML/CSS;Java;JavaScript;Python;SQL
+66627,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+66628,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+66629,HTML/CSS;Java;JavaScript;SQL;TypeScript
+66630,Bash/Shell/PowerShell;Python;Other(s):
+66631,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66632,HTML/CSS;Java;PHP;SQL
+66633,SQL;VBA
+66634,JavaScript;Python;SQL
+66635,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+66636,C;C++;C#;HTML/CSS;Java;Kotlin;Objective-C;Swift
+66637,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript
+66638,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+66639,Bash/Shell/PowerShell;C#;Java;Python;Ruby;SQL
+66640,C#;HTML/CSS;JavaScript;SQL;Other(s):
+66641,HTML/CSS;JavaScript;Python
+66642,HTML/CSS;JavaScript;Other(s):
+66643,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+66644,Python
+66645,JavaScript
+66646,C#;PHP;SQL
+66647,Java;JavaScript;R;Rust;TypeScript
+66648,C++;Python;Swift
+66649,HTML/CSS;JavaScript;TypeScript
+66650,C;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL;VBA
+66651,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+66652,C;Python;SQL
+66653,C#
+66654,Java;JavaScript
+66655,C++;Java;SQL
+66656,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+66658,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+66659,HTML/CSS;Java;JavaScript;SQL;Other(s):
+66660,Bash/Shell/PowerShell;C;C++;JavaScript;Other(s):
+66661,JavaScript;TypeScript
+66662,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+66663,C++;HTML/CSS;Java;Python;R;Ruby;SQL
+66664,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+66665,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+66666,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+66667,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66668,HTML/CSS;JavaScript;Kotlin;SQL;TypeScript
+66669,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+66670,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+66671,Bash/Shell/PowerShell;Java;Python;R;Scala;SQL
+66672,Bash/Shell/PowerShell;Java;Kotlin;Ruby;Scala
+66673,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+66674,HTML/CSS;Java;Python;Swift
+66675,Bash/Shell/PowerShell;C++;C#;Java;TypeScript
+66676,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+66677,Go;JavaScript;TypeScript
+66678,Clojure;HTML/CSS;Java;JavaScript;PHP;SQL
+66679,HTML/CSS;JavaScript;PHP
+66680,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+66681,HTML/CSS;PHP;SQL;VBA
+66682,HTML/CSS;JavaScript;Objective-C
+66683,HTML/CSS;JavaScript;Python;SQL
+66684,SQL
+66685,Bash/Shell/PowerShell;HTML/CSS
+66686,C#;SQL
+66687,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+66688,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;TypeScript
+66690,C;Java;Objective-C;Swift;TypeScript
+66691,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66692,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+66693,Assembly;Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+66694,HTML/CSS;JavaScript;PHP
+66695,Assembly;Bash/Shell/PowerShell;Other(s):
+66696,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+66697,HTML/CSS;JavaScript;TypeScript
+66699,C#;Java;SQL
+66700,C;HTML/CSS;Java;JavaScript;Python;SQL
+66701,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+66702,C#;HTML/CSS;JavaScript;Python;SQL
+66703,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;Other(s):
+66704,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+66705,C;Java
+66706,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+66707,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+66708,Bash/Shell/PowerShell;Go;Java;Python
+66710,Bash/Shell/PowerShell;C;C++;Python
+66711,Assembly;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+66712,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Swift
+66713,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+66714,Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL;Other(s):
+66715,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+66716,C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+66717,C;C#;Dart;Java;JavaScript;PHP
+66718,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+66719,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+66720,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;VBA
+66721,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;VBA
+66722,HTML/CSS;Java;JavaScript;PHP;Python;Scala;TypeScript
+66723,C++;Python
+66724,Python;Other(s):
+66725,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66726,HTML/CSS;JavaScript;Python;SQL;TypeScript
+66727,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+66729,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+66730,C#;Swift
+66731,HTML/CSS;JavaScript;PHP;SQL
+66732,Python;Ruby
+66733,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+66734,C#;Java;JavaScript;SQL;VBA
+66735,Java;SQL
+66736,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66737,C#;Java;JavaScript
+66738,Bash/Shell/PowerShell;Java;Python
+66739,C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+66740,Java;JavaScript;Kotlin;Rust;SQL
+66741,HTML/CSS;JavaScript;TypeScript
+66742,C++;HTML/CSS;JavaScript;PHP
+66743,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+66744,HTML/CSS;JavaScript
+66745,HTML/CSS;JavaScript;PHP;SQL
+66746,Go;Java;JavaScript;PHP;Python
+66747,Java;JavaScript;TypeScript
+66748,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+66749,Bash/Shell/PowerShell;C;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+66750,Objective-C;Swift
+66752,Bash/Shell/PowerShell;JavaScript;TypeScript
+66753,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift
+66754,SQL;VBA;Other(s):
+66755,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+66756,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+66757,C#
+66758,C;C++;HTML/CSS;Java;JavaScript;SQL
+66759,HTML/CSS;JavaScript;PHP;SQL
+66760,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;WebAssembly
+66761,C#
+66762,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+66763,HTML/CSS;JavaScript
+66764,HTML/CSS;JavaScript;PHP;SQL
+66765,Java;JavaScript;Objective-C;Python;Scala;SQL;Swift
+66766,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+66767,Assembly;C++;C#;HTML/CSS;JavaScript;Python;SQL
+66768,C++;HTML/CSS;JavaScript
+66769,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+66770,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+66771,C++;HTML/CSS;Java;JavaScript
+66772,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+66773,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+66774,HTML/CSS;Swift
+66775,Java;Kotlin;Swift
+66776,Java;JavaScript;Python;SQL
+66777,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+66778,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+66779,C#;HTML/CSS;JavaScript;SQL
+66780,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Python;Swift
+66781,Assembly;Bash/Shell/PowerShell;PHP
+66782,HTML/CSS;JavaScript;TypeScript
+66783,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Rust
+66784,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python
+66785,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+66786,Bash/Shell/PowerShell;Python
+66787,C#;F#;HTML/CSS;JavaScript;R;SQL;TypeScript;Other(s):
+66788,JavaScript;Python;SQL;VBA
+66789,C;C++;SQL
+66790,C#;HTML/CSS;JavaScript;SQL
+66791,C#;SQL
+66792,Java
+66793,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+66794,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+66795,C#;HTML/CSS;Java;JavaScript;Kotlin;Scala;TypeScript
+66796,Bash/Shell/PowerShell;C++;Python;Rust
+66797,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+66798,C#;HTML/CSS;JavaScript;PHP;SQL
+66799,Bash/Shell/PowerShell;Java;Other(s):
+66800,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Rust;SQL;TypeScript;Other(s):
+66801,Bash/Shell/PowerShell;C#;HTML/CSS;VBA
+66802,Bash/Shell/PowerShell;Go;Java;JavaScript;Rust;Swift;TypeScript
+66803,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66804,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+66805,Elixir;HTML/CSS;JavaScript;Ruby;TypeScript
+66806,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+66807,HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+66808,C++;C#;Python
+66809,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL;Other(s):
+66810,Bash/Shell/PowerShell;C;Clojure;Go;Java;JavaScript;Python;SQL
+66811,HTML/CSS;JavaScript;PHP;Python;SQL
+66812,C#;HTML/CSS;JavaScript;PHP;SQL
+66813,PHP;SQL
+66814,Go;HTML/CSS;JavaScript;Python;TypeScript
+66815,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66816,HTML/CSS;JavaScript;Python;VBA
+66817,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;SQL;TypeScript;WebAssembly;Other(s):
+66818,C#;HTML/CSS;JavaScript;PHP;SQL
+66819,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift;Other(s):
+66820,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66821,Python;SQL
+66822,HTML/CSS;JavaScript;PHP;SQL
+66823,Python;R
+66824,C#;Go;HTML/CSS;JavaScript;Python;SQL
+66825,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+66826,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+66827,Python;SQL
+66828,HTML/CSS;Java;JavaScript;Python
+66829,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+66830,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+66831,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+66832,C#;HTML/CSS;JavaScript;PHP;SQL
+66833,HTML/CSS;Java;JavaScript;Python;SQL
+66835,Clojure
+66836,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+66837,HTML/CSS;JavaScript;PHP;Python;SQL
+66838,JavaScript;Python
+66839,C;C#;Go
+66840,C;C++;Java
+66841,C;C++;C#
+66842,Java;JavaScript;Python;SQL;TypeScript
+66843,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66844,C
+66845,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+66846,Bash/Shell/PowerShell;C;C++;C#;Elixir;Kotlin;Python;R
+66847,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Rust;SQL
+66848,Ruby
+66849,Java
+66850,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;Swift;TypeScript
+66851,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Other(s):
+66852,C#;HTML/CSS;JavaScript;TypeScript
+66853,PHP;Python;TypeScript
+66854,Java;Scala
+66855,Python;R;SQL
+66856,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+66857,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+66858,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;WebAssembly
+66859,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+66860,HTML/CSS;JavaScript;PHP;Python;SQL
+66861,C;C++;C#
+66862,Bash/Shell/PowerShell;C;C++;Java;Python
+66863,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+66864,C#;HTML/CSS;JavaScript;SQL
+66865,Other(s):
+66866,Java;JavaScript;R
+66867,HTML/CSS;PHP;TypeScript;VBA
+66868,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+66869,Bash/Shell/PowerShell;C;Python;Ruby
+66870,C#;HTML/CSS;JavaScript
+66871,C#
+66872,HTML/CSS;JavaScript;TypeScript
+66873,Bash/Shell/PowerShell;PHP
+66874,C#;HTML/CSS;JavaScript;SQL
+66875,Bash/Shell/PowerShell;Java;Python;SQL
+66876,HTML/CSS;JavaScript;Objective-C;PHP;SQL;VBA
+66877,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+66878,Java;JavaScript;Objective-C;Python;Ruby;Swift
+66879,HTML/CSS;JavaScript;PHP;SQL
+66880,C;Python
+66881,Go;HTML/CSS;Java;JavaScript;Scala;Swift
+66882,HTML/CSS;JavaScript;Python;SQL
+66883,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+66884,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Rust;Scala;SQL
+66885,C;C++;C#;Python
+66886,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+66887,Bash/Shell/PowerShell;C;C++;JavaScript;Rust
+66888,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+66889,C;C++;HTML/CSS;JavaScript;PHP;SQL
+66890,C#;HTML/CSS;Python;Other(s):
+66891,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+66892,Assembly;C;Java;JavaScript;Python
+66893,HTML/CSS;JavaScript
+66894,HTML/CSS;JavaScript;SQL
+66895,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+66896,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+66897,HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+66898,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust
+66899,Bash/Shell/PowerShell;R;SQL
+66900,Java;JavaScript;Kotlin
+66901,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+66902,Assembly;HTML/CSS;JavaScript;PHP;SQL
+66903,HTML/CSS;Java;JavaScript;PHP;SQL
+66904,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+66905,C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift
+66906,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+66907,C#;HTML/CSS;Java;JavaScript;Python;SQL
+66908,HTML/CSS;JavaScript;PHP;Python;SQL
+66909,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+66910,Bash/Shell/PowerShell;Go
+66911,HTML/CSS;JavaScript;PHP;SQL
+66912,Bash/Shell/PowerShell;Python
+66913,Bash/Shell/PowerShell;C++;JavaScript;Python;Other(s):
+66915,HTML/CSS;PHP;Other(s):
+66916,Python;SQL;VBA
+66917,HTML/CSS;JavaScript;PHP
+66918,HTML/CSS;JavaScript;PHP;SQL
+66919,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+66920,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;R;Ruby;Scala;Swift
+66921,JavaScript
+66922,Bash/Shell/PowerShell;Java;PHP;Python;Ruby
+66923,C++;C#;HTML/CSS;JavaScript;SQL
+66924,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+66925,HTML/CSS;Java;JavaScript;TypeScript
+66926,HTML/CSS;JavaScript;PHP;Python;SQL
+66927,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+66928,Java;JavaScript;Python
+66929,Bash/Shell/PowerShell;C;C++
+66930,Bash/Shell/PowerShell;Python;R;VBA
+66931,Java;Scala;SQL
+66932,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+66933,HTML/CSS;JavaScript;PHP;Python
+66934,JavaScript;PHP;SQL
+66935,C#;JavaScript;PHP;Other(s):
+66936,C++;Rust
+66937,HTML/CSS;JavaScript;PHP;SQL
+66938,HTML/CSS;JavaScript;PHP
+66939,Go;HTML/CSS;JavaScript;TypeScript
+66941,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+66942,Bash/Shell/PowerShell;Objective-C;SQL;Swift
+66943,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66944,Bash/Shell/PowerShell;Java;Other(s):
+66945,C;HTML/CSS;JavaScript;Python;SQL
+66946,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+66948,C#;HTML/CSS;JavaScript;VBA
+66949,C#;SQL;VBA
+66950,C;C++;Java;Kotlin
+66951,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+66952,Bash/Shell/PowerShell;Go;Python
+66953,C;C#;Java;Python
+66954,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+66955,Python
+66956,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+66957,Java;JavaScript;TypeScript
+66958,HTML/CSS;JavaScript;PHP
+66959,HTML/CSS;JavaScript;Python;SQL
+66960,C;HTML/CSS;JavaScript;Objective-C;Python;Swift
+66961,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+66962,C++;C#;JavaScript;Python;SQL;TypeScript
+66963,C#;HTML/CSS;JavaScript;SQL
+66964,Python
+66965,HTML/CSS;JavaScript;TypeScript
+66966,JavaScript;Python;SQL
+66967,Bash/Shell/PowerShell;Go;Java;Ruby
+66968,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA;Other(s):
+66969,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+66970,C;C++;Java;SQL
+66971,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+66973,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+66974,C#;HTML/CSS;JavaScript;SQL;TypeScript
+66975,C#;HTML/CSS;JavaScript;PHP
+66976,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;R;Ruby;SQL
+66977,Assembly;Bash/Shell/PowerShell;C;C#;Go;Java;TypeScript
+66978,Bash/Shell/PowerShell;Java;Python;SQL
+66980,HTML/CSS;JavaScript;TypeScript
+66981,HTML/CSS;Java
+66982,Python;R;Scala;SQL
+66983,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+66984,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;TypeScript
+66985,Go;JavaScript;Python;TypeScript
+66986,Bash/Shell/PowerShell;C#;TypeScript
+66987,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+66988,Java;SQL;Other(s):
+66989,Python;R;Other(s):
+66990,C;C#;Java;JavaScript;Python;SQL
+66991,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+66992,Assembly;Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+66993,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+66994,HTML/CSS;Java;JavaScript;SQL;VBA
+66995,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;Python;SQL;TypeScript
+66996,C;HTML/CSS;JavaScript;SQL
+66997,HTML/CSS;Java;JavaScript;Python;Swift
+66998,JavaScript;Python;Ruby;SQL
+66999,HTML/CSS;JavaScript;Ruby;SQL
+67000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+67001,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Other(s):
+67002,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python
+67003,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+67004,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+67005,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+67006,Java;JavaScript
+67007,HTML/CSS;JavaScript;PHP;SQL
+67008,HTML/CSS;Java;JavaScript;SQL;Other(s):
+67009,Java;JavaScript;Python
+67010,Bash/Shell/PowerShell;Python
+67011,C;Java;PHP
+67012,C;C++;C#;HTML/CSS;Java;Python;SQL;VBA;Other(s):
+67013,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+67014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+67015,JavaScript;SQL;VBA
+67016,C;C++;Java;Kotlin;Python
+67017,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67018,C;C++;Java;Other(s):
+67019,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+67020,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+67021,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+67022,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+67023,Go;HTML/CSS;JavaScript;Objective-C;Ruby;SQL
+67024,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+67025,C;HTML/CSS;PHP;Python;SQL;VBA
+67026,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+67027,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+67028,C++;C#;Java;Python
+67029,HTML/CSS;JavaScript;PHP
+67030,JavaScript;PHP;Ruby;SQL;TypeScript
+67031,HTML/CSS;JavaScript;Python;TypeScript
+67032,C++;HTML/CSS;Java;JavaScript
+67033,C#;SQL
+67034,HTML/CSS;JavaScript;Python;SQL
+67035,Java;Python
+67036,C#;HTML/CSS;JavaScript;TypeScript
+67037,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67038,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+67039,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;TypeScript
+67040,Bash/Shell/PowerShell;Python;Ruby
+67041,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67042,Assembly;Bash/Shell/PowerShell;C;C++;Python
+67044,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+67046,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+67047,HTML/CSS;PHP;SQL
+67048,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+67049,JavaScript
+67050,C;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+67051,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+67052,C#;HTML/CSS;JavaScript
+67053,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+67054,C#;HTML/CSS;SQL
+67055,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;Ruby;Scala;SQL
+67056,HTML/CSS;JavaScript;Python
+67057,C#;HTML/CSS;JavaScript;R;SQL;TypeScript;VBA
+67058,Java;JavaScript;SQL
+67059,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+67060,C#;HTML/CSS;JavaScript;Python;TypeScript
+67061,HTML/CSS;Java;JavaScript;PHP;SQL
+67062,Bash/Shell/PowerShell;JavaScript;Python
+67063,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python
+67064,C++;C#;Python;TypeScript
+67065,Swift
+67066,JavaScript;PHP;SQL
+67067,Assembly;C
+67070,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+67071,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+67072,HTML/CSS;Java;JavaScript;Python;SQL
+67073,C;Java;PHP;Python;SQL
+67074,Bash/Shell/PowerShell;C;C++;Python;R;Other(s):
+67075,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67077,JavaScript
+67078,Java
+67079,Bash/Shell/PowerShell;C++;JavaScript;Python
+67080,C#;HTML/CSS;JavaScript;SQL;VBA
+67081,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;SQL
+67082,Bash/Shell/PowerShell;Go;Java;Python
+67083,Bash/Shell/PowerShell;C++;Go;Python;SQL
+67084,Go
+67085,C#;HTML/CSS;JavaScript;TypeScript
+67086,C#
+67087,Assembly;Bash/Shell/PowerShell;C;C++;C#;SQL;VBA
+67088,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+67089,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+67090,C;Python
+67091,C++;Go;Java;JavaScript;Objective-C;Python;SQL;Swift
+67092,C#;HTML/CSS;Java
+67093,Objective-C;Swift
+67094,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;R
+67095,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+67096,Java;JavaScript;PHP;Python;SQL;VBA
+67097,C;C++;C#;Java;JavaScript;Python;SQL
+67098,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+67099,HTML/CSS;JavaScript;PHP;SQL
+67100,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67101,C#;HTML/CSS;Java;SQL;VBA
+67102,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+67103,HTML/CSS;Java;JavaScript;Kotlin;Ruby;Rust;SQL;TypeScript
+67104,HTML/CSS;JavaScript
+67105,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+67106,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67107,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67108,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Scala;SQL;TypeScript
+67109,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+67110,C;C++;Objective-C;Swift
+67111,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+67112,Go;HTML/CSS;JavaScript;PHP;SQL
+67113,C#;SQL
+67114,Swift
+67115,Dart;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+67116,HTML/CSS;JavaScript;SQL;Other(s):
+67117,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+67118,HTML/CSS;JavaScript;TypeScript
+67119,C#;HTML/CSS;JavaScript;PHP;SQL
+67120,HTML/CSS;JavaScript;PHP;TypeScript
+67121,HTML/CSS;Java;Kotlin
+67122,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+67123,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;SQL
+67124,C;Java;Kotlin
+67125,C++;HTML/CSS;JavaScript;Python;SQL
+67126,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+67127,Bash/Shell/PowerShell;Go;PHP;SQL
+67128,C#;SQL;TypeScript
+67129,Assembly;C;C++;HTML/CSS;Java;Kotlin;Python;SQL
+67130,C#;HTML/CSS;Java;PHP;SQL
+67131,Bash/Shell/PowerShell;C#;PHP;VBA
+67132,C#;Java;JavaScript;Python;R;SQL
+67133,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+67134,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+67135,C;C++;HTML/CSS;Java;JavaScript;R;Ruby;SQL
+67136,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67137,C++;HTML/CSS;JavaScript;Python
+67138,C;Python
+67139,Assembly;C;C++;Erlang;Go;HTML/CSS;JavaScript;Python;R;SQL
+67140,C++;Python;Other(s):
+67141,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;Swift;TypeScript
+67142,C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+67143,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+67144,C#;SQL
+67145,Ruby;Other(s):
+67147,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+67148,Assembly;Java;JavaScript;SQL
+67149,HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+67150,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+67151,Ruby;Other(s):
+67152,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+67153,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+67154,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Rust;Scala
+67156,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Swift;TypeScript
+67157,Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Scala;SQL
+67158,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67160,Bash/Shell/PowerShell;C;Dart;Elixir;Go;HTML/CSS;JavaScript;Python;Scala;SQL
+67161,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+67162,Java
+67163,C;Java;Python
+67165,Bash/Shell/PowerShell;C#;Java
+67166,Assembly;C;Java
+67167,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;R;Scala
+67168,HTML/CSS;Java;JavaScript;TypeScript;VBA;Other(s):
+67169,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+67170,C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+67171,HTML/CSS;JavaScript;TypeScript;Other(s):
+67172,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67173,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;SQL
+67174,C++;Python
+67175,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+67176,JavaScript
+67177,HTML/CSS;JavaScript;PHP;SQL
+67178,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Scala;SQL;Swift;TypeScript
+67179,C++;Java
+67180,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+67181,HTML/CSS;JavaScript;Python
+67182,HTML/CSS;Java;JavaScript;TypeScript;VBA
+67183,Bash/Shell/PowerShell;C#;SQL
+67184,C;C++;JavaScript;Python
+67185,HTML/CSS;Java;SQL
+67186,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+67187,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+67188,HTML/CSS;Java;JavaScript
+67189,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+67190,JavaScript;PHP;SQL;TypeScript
+67191,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+67192,C++;HTML/CSS;Java;JavaScript
+67193,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+67194,Bash/Shell/PowerShell;Java;JavaScript;SQL
+67195,C;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+67196,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+67197,C;C#;SQL
+67198,C#;Python;R
+67199,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Other(s):
+67200,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+67201,Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+67202,Python;Other(s):
+67203,HTML/CSS;JavaScript;Ruby
+67204,Go;HTML/CSS;Java;JavaScript;Python
+67205,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+67207,HTML/CSS;JavaScript;Python;R;SQL
+67208,Bash/Shell/PowerShell;C#;HTML/CSS
+67209,Python;R
+67210,Kotlin
+67211,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+67212,HTML/CSS;Java;JavaScript;PHP;SQL
+67213,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67214,Bash/Shell/PowerShell;Python;SQL
+67215,HTML/CSS;JavaScript
+67216,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+67217,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL
+67218,C;C++;HTML/CSS;Python;SQL
+67219,Bash/Shell/PowerShell;Python;R;SQL
+67220,Assembly;Bash/Shell/PowerShell;C++;C#
+67221,Ruby
+67222,Bash/Shell/PowerShell;Python
+67224,HTML/CSS;Java;JavaScript;Python
+67225,C#;Java;Kotlin
+67226,C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+67227,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+67228,C#;HTML/CSS;JavaScript;Python;SQL
+67229,C++;Java;Python;SQL
+67230,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+67231,Bash/Shell/PowerShell;Java;Python
+67232,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+67233,HTML/CSS;JavaScript;PHP
+67234,C++;Python
+67235,C++;C#;HTML/CSS;R;SQL;VBA
+67236,C#;HTML/CSS;Java;JavaScript;SQL
+67237,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS
+67238,C;C++;Java
+67239,Bash/Shell/PowerShell;C#;Clojure;Swift;TypeScript
+67240,Swift
+67241,C#;Python;SQL
+67242,C;Java;JavaScript;Kotlin
+67243,C#;JavaScript;SQL;TypeScript
+67244,HTML/CSS;Java;JavaScript;Scala;SQL
+67245,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+67246,HTML/CSS;JavaScript;Python
+67247,C;C++;HTML/CSS;JavaScript;PHP;SQL
+67248,Assembly;C;C++;Java;Python;SQL
+67249,C#;HTML/CSS;JavaScript;Python;TypeScript
+67250,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+67251,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+67252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+67253,Bash/Shell/PowerShell;Elixir;Kotlin;Python;Ruby;Scala;SQL
+67254,C++;C#;Python
+67255,Bash/Shell/PowerShell;C++;Java;Python;Rust
+67256,C#;HTML/CSS;Java;PHP;Python;SQL
+67257,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+67258,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67259,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+67260,JavaScript;PHP;SQL
+67261,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+67262,Assembly;C;C++;HTML/CSS;Python
+67263,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;SQL;TypeScript
+67264,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+67266,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+67267,C#;SQL
+67268,C#;HTML/CSS;JavaScript;PHP;TypeScript
+67269,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+67270,Assembly;Bash/Shell/PowerShell;Erlang;JavaScript;Other(s):
+67271,HTML/CSS;R
+67272,C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+67273,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+67274,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67275,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+67276,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+67277,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67278,Other(s):
+67279,HTML/CSS;JavaScript
+67280,C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+67281,C;C++;Java
+67282,HTML/CSS;Java;JavaScript;Python;SQL
+67283,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+67284,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+67285,HTML/CSS;JavaScript
+67286,C#;HTML/CSS;SQL
+67287,Assembly;C;Python
+67288,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+67289,C++;Python;R
+67291,HTML/CSS;JavaScript;Python
+67292,Java
+67293,HTML/CSS;Java;JavaScript;SQL
+67294,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python
+67295,C#;Java;SQL
+67296,C#;HTML/CSS;Java;PHP;SQL
+67297,HTML/CSS;Java;JavaScript;PHP;SQL
+67299,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+67300,Java;Python;SQL
+67301,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+67302,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;Other(s):
+67303,Java;JavaScript;TypeScript
+67304,Java;JavaScript;TypeScript
+67305,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+67306,C#;HTML/CSS;Java;JavaScript;PHP
+67307,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Kotlin;Python;Rust;SQL
+67308,Bash/Shell/PowerShell;C#;Go;Objective-C;SQL;Swift
+67309,HTML/CSS;JavaScript
+67310,C#;HTML/CSS;JavaScript;Other(s):
+67311,C#;HTML/CSS;TypeScript;Other(s):
+67312,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL;TypeScript
+67313,Java;JavaScript;Python;SQL
+67314,JavaScript;Ruby
+67315,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+67316,Java
+67317,Java
+67318,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+67319,HTML/CSS;JavaScript;Ruby;Scala;TypeScript
+67320,C#;HTML/CSS;Objective-C;PHP;Python;Swift
+67321,JavaScript;Kotlin;Python;SQL
+67322,Assembly;Bash/Shell/PowerShell;C++;Java
+67323,C#;Java;Python;SQL
+67324,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67325,Assembly;HTML/CSS;JavaScript
+67326,HTML/CSS;JavaScript;Ruby;SQL
+67327,Java;SQL
+67328,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67329,Bash/Shell/PowerShell;Clojure;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+67330,HTML/CSS;Java;JavaScript;SQL
+67331,C;C++;C#;Java;JavaScript;Python;SQL
+67332,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+67333,Bash/Shell/PowerShell;C;C++;Java;SQL
+67334,Java;Kotlin;SQL
+67335,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+67336,HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+67337,Java
+67338,Bash/Shell/PowerShell;Python;R;SQL
+67339,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+67340,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+67341,C#;JavaScript;SQL
+67342,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+67343,Java
+67344,C#;HTML/CSS;JavaScript;SQL
+67345,HTML/CSS;JavaScript;PHP
+67346,C#;Java;Swift
+67347,C#;HTML/CSS;Python;R;SQL;TypeScript
+67348,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+67349,JavaScript;Python;SQL
+67350,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+67351,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+67352,Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Rust;Scala
+67353,Bash/Shell/PowerShell;C#
+67354,C;C++;Scala;Other(s):
+67355,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+67356,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;VBA
+67357,C;C++
+67358,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Ruby
+67359,Bash/Shell/PowerShell;C#
+67360,C#;HTML/CSS;JavaScript;TypeScript
+67362,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+67363,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+67364,C#;Java;JavaScript;SQL
+67365,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+67366,C++;Python
+67367,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+67368,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67369,Python;Other(s):
+67370,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67371,C;C#;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+67372,Python
+67373,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+67374,C++;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+67375,C;C++;Python
+67376,C++;Java
+67377,C++;HTML/CSS;JavaScript;PHP;SQL
+67378,C#;JavaScript;SQL
+67379,HTML/CSS;JavaScript;PHP;SQL
+67380,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+67382,Python
+67383,C#;Dart;HTML/CSS;Java;JavaScript;SQL
+67384,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+67385,C;C++;HTML/CSS;Java;PHP
+67386,HTML/CSS;JavaScript;PHP
+67387,HTML/CSS;Java;JavaScript;PHP;Python
+67388,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67389,C;C++;C#;Java
+67390,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+67391,Assembly;C;C++;C#;Python;SQL;VBA
+67392,HTML/CSS;JavaScript;PHP;SQL
+67393,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+67394,Go;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript;VBA
+67395,C;C++;SQL
+67396,C;C++;HTML/CSS;Java;JavaScript;Python
+67397,HTML/CSS;Java;JavaScript;PHP;SQL
+67399,C;C#;Java;Objective-C
+67400,C;C++;Java;Python
+67401,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+67402,HTML/CSS;Java;JavaScript;Python;Ruby;Swift;Other(s):
+67403,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+67404,HTML/CSS;Java;JavaScript;TypeScript
+67405,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+67406,Python
+67407,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+67408,HTML/CSS;JavaScript
+67409,C#;Java;JavaScript;SQL;VBA;Other(s):
+67410,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+67411,Python
+67412,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+67413,HTML/CSS;Java;SQL
+67414,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+67415,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+67416,Bash/Shell/PowerShell;C;C++;Python
+67417,C++;C#;Java;Kotlin;SQL
+67418,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+67419,HTML/CSS;JavaScript
+67420,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+67421,HTML/CSS;JavaScript
+67422,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+67423,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby
+67424,HTML/CSS;JavaScript;Python;SQL;TypeScript
+67425,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+67426,C++;C#;SQL
+67427,Bash/Shell/PowerShell;Python
+67428,C++;C#;Go;JavaScript;SQL;TypeScript
+67429,C++;C#;HTML/CSS;JavaScript;R;SQL
+67430,C#;HTML/CSS;JavaScript;SQL
+67431,Clojure;Java;Python
+67432,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67433,C#;SQL
+67434,R;SQL
+67435,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67436,Clojure;Python;R;SQL;Other(s):
+67437,C;C#;HTML/CSS;JavaScript;PHP;SQL
+67438,C#;HTML/CSS
+67439,JavaScript;PHP;Python
+67440,C#;SQL
+67441,C#;Java;Python
+67442,C;C#;Python;SQL;VBA
+67443,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python
+67444,C#;HTML/CSS;JavaScript;PHP;SQL
+67445,JavaScript;Python;TypeScript;Other(s):
+67446,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67447,C
+67448,VBA
+67449,Bash/Shell/PowerShell;C#;F#;TypeScript
+67450,Go;HTML/CSS;Java;JavaScript;SQL
+67451,C#;SQL
+67452,C;HTML/CSS;JavaScript;PHP;Python;SQL
+67453,Other(s):
+67454,Java;JavaScript
+67455,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Objective-C;SQL;Swift
+67456,Other(s):
+67457,HTML/CSS;Java;JavaScript
+67458,Java;JavaScript
+67459,C#;Go;Java;Scala
+67460,C;C#;Dart;HTML/CSS;JavaScript;SQL
+67461,C#;HTML/CSS;Python
+67462,C++;C#;Java;Python;SQL
+67463,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+67464,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+67465,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+67466,C;C++;C#;F#;HTML/CSS;Java;JavaScript;SQL
+67467,HTML/CSS;JavaScript
+67468,PHP
+67469,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+67470,HTML/CSS;JavaScript;Python;R;Ruby
+67471,Java;Scala
+67472,C++;C#;HTML/CSS;JavaScript;SQL
+67473,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67474,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+67475,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+67476,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+67477,Java
+67478,C;C++;Go;PHP;Python;Swift
+67479,Bash/Shell/PowerShell;Python
+67480,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+67481,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift;TypeScript
+67482,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+67483,Ruby
+67484,Java;Python;Ruby;SQL
+67485,C++;HTML/CSS;Java;JavaScript;SQL
+67486,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+67487,Java;Kotlin;Swift
+67488,C#;HTML/CSS;Rust;Scala;SQL;TypeScript
+67489,Bash/Shell/PowerShell;C#;Java;JavaScript
+67490,HTML/CSS;Java;JavaScript;SQL
+67491,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+67492,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;Python
+67493,Python;SQL;Other(s):
+67494,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+67496,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+67497,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python
+67498,Python;R;SQL
+67499,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+67500,C;Clojure;Elixir;HTML/CSS;JavaScript;Python
+67501,C;Go;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift;TypeScript
+67502,HTML/CSS;Java;JavaScript;PHP;Scala;Other(s):
+67503,Bash/Shell/PowerShell;Python
+67504,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+67505,Java;Python;SQL
+67506,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+67507,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67508,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67509,C#;Go;SQL
+67510,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+67511,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+67512,HTML/CSS;JavaScript;PHP;SQL
+67513,Go;HTML/CSS;JavaScript;Python;TypeScript
+67514,C;HTML/CSS;Java;JavaScript;SQL
+67515,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+67516,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;WebAssembly
+67517,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67518,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+67519,HTML/CSS;Java;JavaScript;PHP
+67520,Assembly;Bash/Shell/PowerShell;C;C++;Python
+67521,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+67522,Bash/Shell/PowerShell;Python;SQL;Other(s):
+67523,C#;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+67524,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+67525,C;C++;C#;Python
+67526,Go;Java
+67527,Go;JavaScript;PHP;Python;Scala;SQL;TypeScript
+67528,HTML/CSS;Java;JavaScript;PHP;Swift
+67529,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+67530,Bash/Shell/PowerShell;C;C++;HTML/CSS
+67531,Python;VBA
+67532,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+67533,Python
+67534,C;HTML/CSS;JavaScript;Swift
+67535,Java;JavaScript;TypeScript
+67536,C#
+67537,HTML/CSS;JavaScript;Python
+67538,Go;Python;Ruby
+67539,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+67540,HTML/CSS;JavaScript;PHP;Python;SQL
+67541,Bash/Shell/PowerShell;Java
+67542,C;C++;HTML/CSS;Java;PHP;SQL
+67543,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+67544,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+67545,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+67546,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+67547,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+67548,Java;JavaScript;SQL
+67549,HTML/CSS;JavaScript;PHP;Python;Swift;TypeScript;WebAssembly
+67550,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+67551,Java;JavaScript;Kotlin
+67552,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+67553,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+67554,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67555,C#;HTML/CSS;Java;JavaScript;SQL
+67556,C#;HTML/CSS;JavaScript;SQL
+67557,Java;VBA
+67558,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+67559,Assembly;SQL;Other(s):
+67560,C;C#;Python;R;VBA
+67561,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+67562,Bash/Shell/PowerShell;Python;Ruby
+67563,HTML/CSS;JavaScript;Python
+67564,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+67565,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+67566,HTML/CSS;JavaScript;TypeScript
+67567,HTML/CSS;JavaScript;PHP;Python;TypeScript
+67568,C#;HTML/CSS;JavaScript;SQL
+67569,HTML/CSS;JavaScript
+67570,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+67571,C#;HTML/CSS;JavaScript;PHP;SQL
+67572,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL;TypeScript
+67573,HTML/CSS;Java;JavaScript;SQL
+67574,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+67575,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67576,HTML/CSS;JavaScript
+67577,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+67578,HTML/CSS;JavaScript;SQL;Other(s):
+67579,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+67580,HTML/CSS;JavaScript;PHP;SQL
+67581,C#;HTML/CSS;JavaScript;SQL
+67582,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+67583,C#;HTML/CSS;Java;JavaScript;SQL
+67584,Assembly;Bash/Shell/PowerShell;C;C++;Python
+67586,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+67587,HTML/CSS;Java;Python;SQL
+67589,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+67590,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+67591,HTML/CSS;JavaScript;PHP;Python;Other(s):
+67592,C;Dart;Java;JavaScript;Kotlin;Python;SQL
+67593,HTML/CSS;Java;JavaScript;Python;TypeScript
+67594,Java
+67595,C#;HTML/CSS;JavaScript;TypeScript
+67596,Bash/Shell/PowerShell;C#;SQL
+67597,C;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+67598,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+67599,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67600,HTML/CSS;JavaScript;PHP;Python;SQL
+67601,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python
+67602,VBA;Other(s):
+67603,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+67604,JavaScript;Other(s):
+67605,C;C++;HTML/CSS;Java;SQL
+67606,Java;JavaScript;Kotlin
+67607,HTML/CSS;JavaScript;PHP;SQL
+67608,HTML/CSS;Java
+67609,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+67610,Bash/Shell/PowerShell;C;C++;Java
+67611,Bash/Shell/PowerShell;C++;Java;Python
+67612,HTML/CSS;Java;JavaScript
+67613,Java;Kotlin;SQL
+67614,HTML/CSS;Java;JavaScript;SQL;TypeScript
+67615,C;C++;HTML/CSS;Java;PHP
+67616,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+67617,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;PHP;Python;R;TypeScript;Other(s):
+67618,Assembly;C;C++;JavaScript
+67619,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;PHP;Python;Swift
+67620,HTML/CSS;Java;JavaScript;Objective-C;Swift;VBA
+67621,C;C#;HTML/CSS;Java;JavaScript
+67622,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67623,C#;HTML/CSS;JavaScript;SQL
+67624,C#;HTML/CSS;JavaScript;PHP;Python;R;VBA
+67625,C#;HTML/CSS;JavaScript
+67626,HTML/CSS;JavaScript
+67627,C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+67628,Elixir;Ruby;VBA
+67629,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+67630,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+67631,HTML/CSS;Java;JavaScript;SQL
+67632,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+67633,C;C++;Java;Python;SQL
+67635,Java;JavaScript;Scala;TypeScript;Other(s):
+67636,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+67637,C;C++;HTML/CSS;Java;SQL
+67638,C;HTML/CSS;JavaScript;PHP;SQL
+67639,Java
+67640,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+67641,Java;JavaScript;SQL
+67642,C#
+67643,HTML/CSS;JavaScript;PHP;SQL
+67644,Java;SQL
+67645,Kotlin;PHP;Python;SQL;TypeScript
+67646,Java
+67647,JavaScript;Other(s):
+67648,Bash/Shell/PowerShell;Java;Objective-C;SQL
+67649,Java;SQL
+67650,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+67651,Java;Kotlin;PHP;SQL
+67652,HTML/CSS;JavaScript;Objective-C;PHP
+67653,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Rust;SQL;Swift
+67654,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+67655,Java
+67656,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL
+67657,C#;HTML/CSS;JavaScript;Swift
+67658,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+67659,C#;HTML/CSS;Java;JavaScript;SQL
+67660,Assembly;C#;Java;JavaScript;PHP;SQL
+67661,C++;JavaScript;Python;Other(s):
+67662,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+67663,C#;HTML/CSS;JavaScript;PHP;SQL
+67664,Bash/Shell/PowerShell;C#;SQL
+67665,C#
+67666,C++;SQL
+67667,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;Python
+67668,JavaScript;Swift
+67669,C#;Scala
+67670,Bash/Shell/PowerShell;Java
+67671,Clojure;HTML/CSS;Java;Kotlin;Scala;TypeScript
+67672,Java;JavaScript;Python;R
+67673,Bash/Shell/PowerShell;PHP;SQL
+67674,HTML/CSS;JavaScript;PHP;SQL
+67675,Assembly;C;C++;Go;HTML/CSS;Java;Python
+67676,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+67677,Python;R;SQL
+67678,Bash/Shell/PowerShell;C#;Java;Kotlin;SQL
+67679,C#;HTML/CSS;JavaScript;SQL
+67680,C++;Python;R;SQL;VBA
+67681,Dart;HTML/CSS;JavaScript
+67682,Objective-C;Swift
+67683,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+67684,HTML/CSS;Java;JavaScript
+67685,Bash/Shell/PowerShell;JavaScript;Python;SQL
+67686,Bash/Shell/PowerShell;Python
+67687,Bash/Shell/PowerShell;C;Clojure;Java;Python;Other(s):
+67688,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67689,HTML/CSS;JavaScript
+67690,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+67691,Bash/Shell/PowerShell;C;C++;Go;Other(s):
+67692,HTML/CSS;PHP;SQL
+67693,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+67694,Bash/Shell/PowerShell;C;C++;C#;Java
+67695,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+67696,C;C#;HTML/CSS;SQL
+67697,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Python
+67698,JavaScript;Python;SQL
+67699,C++;Erlang;Java;SQL
+67700,C#;Go;Java;JavaScript;Python;SQL;Other(s):
+67701,JavaScript;PHP;TypeScript
+67702,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+67703,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+67704,HTML/CSS;Java;JavaScript;PHP;SQL
+67705,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67706,HTML/CSS;JavaScript;Objective-C;Python;SQL
+67707,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+67708,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust;SQL
+67709,Java;JavaScript
+67710,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+67711,Java;SQL
+67712,C#
+67713,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67714,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+67715,Bash/Shell/PowerShell;C#;PHP;SQL;VBA
+67716,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL;TypeScript
+67717,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+67718,HTML/CSS;JavaScript;PHP;SQL
+67719,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+67720,Bash/Shell/PowerShell;Java
+67721,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+67722,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+67723,C++;Python;SQL
+67724,C
+67725,HTML/CSS;Java;JavaScript;Kotlin;SQL
+67726,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby
+67727,C++;Java;JavaScript;Python
+67728,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;TypeScript
+67729,C#;SQL
+67730,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+67731,HTML/CSS;JavaScript;Python;SQL;Other(s):
+67732,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+67733,HTML/CSS;JavaScript;PHP;SQL
+67734,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+67735,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;WebAssembly
+67736,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+67737,Java
+67738,Bash/Shell/PowerShell;C#;JavaScript;SQL
+67739,C++;HTML/CSS;JavaScript;Python
+67740,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+67741,C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+67742,Elixir;HTML/CSS;Java;JavaScript;Python;Ruby
+67743,C#;HTML/CSS;JavaScript;SQL
+67744,C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+67745,HTML/CSS;JavaScript;PHP;SQL
+67746,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+67747,Go;Java;JavaScript;Kotlin
+67748,JavaScript;PHP
+67750,HTML/CSS;Java;JavaScript;SQL
+67751,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67752,HTML/CSS;JavaScript
+67753,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+67754,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+67755,HTML/CSS;PHP;Python;Ruby
+67756,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+67757,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP
+67758,Objective-C;Swift
+67759,C++;HTML/CSS;Java;TypeScript
+67760,Bash/Shell/PowerShell;PHP;Python;SQL
+67761,HTML/CSS;JavaScript;PHP;SQL
+67762,HTML/CSS;Java;JavaScript;PHP;SQL
+67763,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+67764,HTML/CSS;JavaScript;Python;R;Rust;VBA
+67765,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python
+67766,HTML/CSS;JavaScript;Python;TypeScript
+67767,C#;HTML/CSS;Java;SQL;TypeScript
+67768,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+67769,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;VBA
+67770,HTML/CSS;JavaScript;PHP;SQL
+67771,Java;JavaScript;SQL;Other(s):
+67772,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+67773,HTML/CSS;JavaScript;PHP;SQL
+67774,Bash/Shell/PowerShell;C++;C#;SQL;VBA
+67775,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+67776,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+67777,HTML/CSS;JavaScript;Python;SQL;VBA
+67778,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+67779,HTML/CSS;JavaScript;PHP;SQL
+67780,Assembly;Bash/Shell/PowerShell;Java;Python
+67781,HTML/CSS;Java;JavaScript;PHP;SQL
+67782,Bash/Shell/PowerShell;Java;Scala
+67783,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+67784,HTML/CSS;JavaScript;Python;SQL
+67785,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+67786,C#;JavaScript;Objective-C;SQL
+67787,Bash/Shell/PowerShell;C++;Python
+67788,Objective-C;Swift
+67789,C;C++;C#;Go;Java
+67790,Bash/Shell/PowerShell;C++;Dart;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+67791,Go;JavaScript;Ruby
+67792,C#;HTML/CSS;JavaScript;TypeScript
+67793,C++;C#;HTML/CSS;JavaScript;Python;SQL
+67794,Assembly;Bash/Shell/PowerShell;C;C++;Java
+67795,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;VBA
+67796,Bash/Shell/PowerShell;C++;HTML/CSS
+67797,Bash/Shell/PowerShell;C
+67798,C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP
+67799,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;R;Other(s):
+67800,Bash/Shell/PowerShell;C++;Python
+67801,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+67802,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Scala;SQL
+67803,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67804,C;C++;Java;JavaScript;Python;SQL
+67805,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript
+67806,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+67807,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;WebAssembly
+67808,C++;C#;Python;SQL;Other(s):
+67810,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+67811,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala
+67812,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+67813,Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;WebAssembly
+67814,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+67815,Swift
+67816,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+67817,JavaScript
+67818,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67820,C#
+67821,C;C++
+67822,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+67823,HTML/CSS;JavaScript;Ruby;SQL
+67824,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+67825,C;HTML/CSS;JavaScript;Python
+67826,Bash/Shell/PowerShell
+67827,HTML/CSS;Java;JavaScript;SQL
+67828,C#;Kotlin;Python
+67829,HTML/CSS;Java;JavaScript;Python;SQL
+67830,Assembly;C;C++;C#;Java;JavaScript;Python;R;SQL
+67831,Assembly;C;C++;Go;Python;Rust;Other(s):
+67832,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67833,HTML/CSS;JavaScript
+67834,C#;HTML/CSS;JavaScript
+67835,C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;Swift
+67836,Bash/Shell/PowerShell;C#;JavaScript;SQL
+67837,C#;Go;HTML/CSS;JavaScript;PHP;R;SQL;TypeScript
+67838,C++;Objective-C;Python
+67839,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript
+67840,C#;HTML/CSS;Java;JavaScript;Python;SQL
+67841,C;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+67842,Bash/Shell/PowerShell;C;Java;Python
+67843,Dart;Java;TypeScript
+67844,Assembly;Bash/Shell/PowerShell;C;F#;Go;HTML/CSS;JavaScript;Objective-C;Python;Rust;SQL;Swift;TypeScript
+67845,C#;HTML/CSS;JavaScript;PHP;Swift
+67846,HTML/CSS;JavaScript;Ruby;SQL
+67847,C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+67848,Bash/Shell/PowerShell;Java;R
+67849,HTML/CSS;JavaScript
+67850,C#;HTML/CSS;JavaScript;SQL;TypeScript
+67851,Java;JavaScript
+67852,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+67853,Java;JavaScript;Scala;SQL;Other(s):
+67854,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+67855,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+67856,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+67857,HTML/CSS;JavaScript
+67859,HTML/CSS;JavaScript;TypeScript
+67860,Ruby
+67861,JavaScript;TypeScript
+67862,Bash/Shell/PowerShell;Python
+67863,JavaScript
+67864,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+67865,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67866,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+67867,C#
+67868,C#;JavaScript;TypeScript
+67869,C;C++;HTML/CSS;Java;JavaScript;Kotlin
+67870,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+67871,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67872,HTML/CSS;JavaScript;Python
+67873,HTML/CSS;Java;JavaScript;TypeScript
+67874,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+67875,Bash/Shell/PowerShell;Go;Java;Python
+67876,HTML/CSS;JavaScript;Ruby;Rust;SQL
+67877,HTML/CSS;JavaScript
+67878,HTML/CSS;JavaScript;PHP;Ruby;SQL;Swift
+67879,HTML/CSS;JavaScript;PHP;SQL
+67880,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+67881,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+67882,Bash/Shell/PowerShell;Go;JavaScript;Ruby;Scala;SQL
+67883,C;C++;C#;JavaScript;Python;Ruby;SQL;TypeScript
+67884,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript
+67885,Java
+67886,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+67887,Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+67888,HTML/CSS;JavaScript;PHP;TypeScript
+67889,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+67890,C++;C#;Go;HTML/CSS;JavaScript;Python
+67891,HTML/CSS;JavaScript;TypeScript
+67892,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+67893,C#;HTML/CSS;JavaScript;SQL
+67894,C++;Objective-C;PHP;Swift
+67895,HTML/CSS;Java;TypeScript
+67896,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+67897,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;VBA
+67898,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+67899,Bash/Shell/PowerShell;C++;Java;Python
+67900,HTML/CSS;JavaScript;PHP
+67901,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+67902,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+67903,Java;Kotlin
+67904,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+67905,C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+67906,Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+67907,HTML/CSS;Java;JavaScript;Kotlin;PHP
+67908,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+67909,HTML/CSS;JavaScript;SQL
+67910,HTML/CSS;Java;JavaScript;Ruby;TypeScript
+67911,Bash/Shell/PowerShell;Java;JavaScript;VBA
+67912,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+67913,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript
+67914,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+67915,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+67916,Assembly
+67917,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+67918,C#;HTML/CSS;JavaScript;SQL
+67919,C#;HTML/CSS;SQL;TypeScript
+67920,Bash/Shell/PowerShell;Go;Python;Ruby
+67921,HTML/CSS;JavaScript;TypeScript
+67922,Java;Objective-C;Swift;VBA
+67923,C#;HTML/CSS;JavaScript
+67924,HTML/CSS;Java;JavaScript;PHP;SQL
+67925,Java;Python;Rust
+67926,C;C++;HTML/CSS;PHP;Python;Rust;Swift
+67927,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+67928,JavaScript;SQL;TypeScript
+67929,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL
+67930,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+67931,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+67933,Java;JavaScript;Objective-C;SQL;Swift
+67934,Assembly;C;C++;Python
+67935,Python
+67936,C#;JavaScript;SQL
+67937,Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+67938,Python;VBA;Other(s):
+67939,C#;Java;Python;Scala
+67940,HTML/CSS;Java;JavaScript;Scala;SQL;Other(s):
+67941,JavaScript;Swift;TypeScript
+67942,C#;R
+67943,C;HTML/CSS;JavaScript
+67944,Objective-C;Swift
+67945,C#;HTML/CSS;JavaScript;Python
+67946,C++;C#;Python;SQL
+67947,Bash/Shell/PowerShell;Erlang;Java;Python;SQL
+67948,C++;C#;Java;JavaScript;Kotlin;PHP
+67949,C++;HTML/CSS;Java;JavaScript
+67950,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+67951,JavaScript;PHP;SQL
+67952,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL
+67953,C++;Java
+67954,Java;JavaScript;Python;SQL;WebAssembly
+67955,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL
+67956,HTML/CSS;JavaScript
+67957,Python
+67958,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+67959,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+67960,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+67961,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+67962,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+67963,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP
+67964,HTML/CSS;JavaScript;Python
+67965,Bash/Shell/PowerShell;HTML/CSS;Python;Ruby
+67966,Assembly;C;C++;Rust
+67967,Swift
+67968,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+67969,HTML/CSS;JavaScript;PHP;SQL
+67970,Bash/Shell/PowerShell;C++;C#;Java;SQL;Other(s):
+67971,C;C++;C#;SQL
+67972,C++;Java;Python
+67973,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+67974,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+67975,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+67976,C++;C#;HTML/CSS;Java;JavaScript;SQL
+67977,C#;Objective-C;Swift
+67978,C#;HTML/CSS;JavaScript;SQL
+67979,C++;Python
+67980,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+67981,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL;TypeScript
+67982,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+67983,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+67984,HTML/CSS;Python;R
+67985,Java
+67986,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+67987,C#;JavaScript;SQL
+67988,Java;Kotlin;Python
+67989,Bash/Shell/PowerShell;C++;Java;Kotlin;Objective-C;Swift
+67990,C#;Java;JavaScript
+67991,C#;HTML/CSS;JavaScript;TypeScript
+67992,F#;Other(s):
+67994,Bash/Shell/PowerShell;Python;R
+67995,C++;HTML/CSS;JavaScript;Objective-C;SQL
+67996,C#
+67997,HTML/CSS;JavaScript;TypeScript
+67998,Python;Scala
+67999,C++;Python;SQL
+68000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+68001,C;HTML/CSS;JavaScript;Ruby;Rust;WebAssembly
+68002,HTML/CSS;JavaScript;PHP;SQL
+68003,JavaScript;TypeScript
+68004,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;R;Rust;SQL;TypeScript;Other(s):
+68005,C#;HTML/CSS;JavaScript;SQL
+68006,SQL;Other(s):
+68007,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL
+68008,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+68009,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+68010,C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+68011,Java;JavaScript
+68012,HTML/CSS;Java;JavaScript;PHP;TypeScript
+68013,HTML/CSS;SQL;VBA
+68014,JavaScript
+68015,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python;R;SQL
+68016,HTML/CSS;Java;JavaScript;SQL
+68017,HTML/CSS;JavaScript;Objective-C;Python;Swift
+68018,Bash/Shell/PowerShell;Java
+68019,Bash/Shell/PowerShell;C;C++;Java;SQL
+68020,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;R;SQL
+68021,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;Python;R;Ruby;SQL
+68022,Bash/Shell/PowerShell;C++;JavaScript;Objective-C;Swift;TypeScript
+68023,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+68024,C#;Java;SQL
+68025,Java;JavaScript;SQL
+68026,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+68028,C++
+68029,C++;C#;Java;PHP;R;SQL
+68030,C;C++;C#
+68031,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68032,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+68033,C;HTML/CSS;Objective-C;PHP;Swift
+68034,C#;HTML/CSS;JavaScript;Python;SQL
+68035,Dart;JavaScript
+68036,C++;C#;Java;JavaScript;SQL;TypeScript
+68037,JavaScript;Objective-C;Swift
+68038,Other(s):
+68039,Bash/Shell/PowerShell;C;Go;Java;R
+68040,C++;C#;Java;Other(s):
+68041,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Python;Ruby
+68042,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+68043,Bash/Shell/PowerShell;Elixir;Java;Ruby
+68044,Bash/Shell/PowerShell;C++;JavaScript
+68045,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+68046,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin
+68047,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+68048,HTML/CSS;JavaScript;Python;TypeScript
+68049,Clojure;Java
+68050,HTML/CSS;JavaScript;PHP;Python
+68051,C#;JavaScript;Python;SQL;TypeScript;VBA
+68052,Bash/Shell/PowerShell;Python
+68053,C;C++;JavaScript;SQL;TypeScript
+68054,HTML/CSS;Java;JavaScript;Python;TypeScript
+68055,Bash/Shell/PowerShell;C++;Python
+68056,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Ruby;SQL;VBA
+68058,Go;HTML/CSS;Python
+68059,HTML/CSS;JavaScript
+68060,Assembly;C;C++;C#;Go;Java;Python;SQL
+68061,HTML/CSS;JavaScript;Python
+68062,Clojure
+68063,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP
+68064,Elixir;HTML/CSS;JavaScript;Ruby;Rust;TypeScript;WebAssembly
+68065,C;C++;C#;Java;TypeScript
+68066,C;Python
+68067,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;Objective-C;PHP;Python;SQL;Swift;Other(s):
+68068,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68069,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+68070,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68071,Go;Java;JavaScript;Python;SQL
+68072,Assembly;Bash/Shell/PowerShell;C#;Java;Kotlin
+68073,Bash/Shell/PowerShell;PHP;Python;Other(s):
+68074,Go;Java;JavaScript;Python;SQL
+68075,C;HTML/CSS;Java
+68076,HTML/CSS;JavaScript;PHP;SQL
+68077,JavaScript;Python;SQL;TypeScript
+68078,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+68079,Bash/Shell/PowerShell;Java;Kotlin
+68080,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+68081,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+68082,C++;HTML/CSS;Java;Kotlin;Objective-C;PHP;Python;Swift;Other(s):
+68083,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+68084,HTML/CSS;JavaScript
+68085,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+68086,Dart;Java;Kotlin
+68087,C++;Java
+68088,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;TypeScript
+68089,C;C++;HTML/CSS;SQL
+68090,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+68091,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;SQL
+68092,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68093,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+68094,C++;Java;JavaScript;Python;Ruby;Rust;SQL
+68095,HTML/CSS;Java;JavaScript;PHP;SQL
+68096,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68097,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+68098,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+68099,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68100,Clojure;Dart;Go;Kotlin;Objective-C;Rust;Swift
+68101,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+68102,C#;HTML/CSS;JavaScript;PHP;SQL
+68103,C;C++;C#;Java;Objective-C;Swift
+68104,HTML/CSS;Java;JavaScript;TypeScript
+68105,C#;HTML/CSS;JavaScript;Python;Other(s):
+68106,HTML/CSS;JavaScript;Python;SQL
+68107,Java;JavaScript;SQL;VBA
+68108,C;HTML/CSS;Java;SQL
+68109,Objective-C;Swift
+68110,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68111,C;C++
+68112,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68113,HTML/CSS;Java;JavaScript;SQL
+68114,Java;JavaScript
+68115,Assembly;C;C++;Java
+68116,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+68117,HTML/CSS;JavaScript
+68118,Bash/Shell/PowerShell;C++;C#;VBA
+68119,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;Kotlin
+68120,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68121,HTML/CSS;JavaScript;PHP;SQL
+68122,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+68123,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+68124,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+68125,C++;C#;SQL;VBA;Other(s):
+68126,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+68127,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+68128,HTML/CSS;Java;JavaScript;PHP;SQL
+68129,HTML/CSS;JavaScript;SQL;TypeScript
+68130,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R
+68131,C#;HTML/CSS;JavaScript
+68132,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68133,HTML/CSS;JavaScript;Python;SQL
+68134,Java;JavaScript;Kotlin;Other(s):
+68135,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;R;SQL
+68136,HTML/CSS;JavaScript;PHP;SQL;Swift
+68137,C;C++;Kotlin;Swift
+68138,Bash/Shell/PowerShell;Python;SQL;Other(s):
+68139,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+68140,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+68141,Dart;HTML/CSS;Java;JavaScript;TypeScript
+68142,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+68143,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68144,Go;HTML/CSS;JavaScript;SQL;Swift
+68145,C#;Java;JavaScript;SQL
+68146,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+68147,Swift
+68148,C++;C#;TypeScript
+68149,Bash/Shell/PowerShell;C;C++
+68150,Assembly;C;C++
+68151,C#;HTML/CSS;Java;JavaScript
+68152,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+68153,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;TypeScript
+68154,C;C++;JavaScript;Python;SQL
+68155,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68156,Bash/Shell/PowerShell;Go;JavaScript;Other(s):
+68157,HTML/CSS;JavaScript;SQL
+68158,C;C#;HTML/CSS;Java
+68159,HTML/CSS;Java;JavaScript;PHP;SQL
+68160,C#;JavaScript;TypeScript
+68161,Java;Python
+68162,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+68163,C#;HTML/CSS;JavaScript;SQL;VBA
+68164,C#;JavaScript;Kotlin;SQL
+68165,Objective-C;SQL;Swift
+68166,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+68167,Java;Kotlin;Python
+68168,HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+68169,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+68170,Java;SQL
+68171,C;JavaScript;PHP;Python
+68172,Bash/Shell/PowerShell;Java;Python;Ruby;Scala;Other(s):
+68173,Dart;Go;HTML/CSS;JavaScript;Kotlin;Python;Ruby
+68174,HTML/CSS;JavaScript;PHP;SQL
+68175,JavaScript;PHP
+68176,HTML/CSS;JavaScript;Python
+68177,C#;HTML/CSS;Java;JavaScript;Python
+68178,HTML/CSS;JavaScript;Ruby;SQL
+68179,C++
+68180,Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+68181,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+68182,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+68183,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+68184,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+68185,C++
+68186,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+68187,C#;SQL
+68188,Java;SQL
+68189,Java;SQL
+68190,C#;HTML/CSS;JavaScript;TypeScript
+68191,HTML/CSS;JavaScript;Swift;TypeScript
+68192,C#;JavaScript;Python;R
+68193,JavaScript;PHP;Ruby
+68194,Assembly;Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;R;Scala;SQL
+68195,C#;HTML/CSS;JavaScript;SQL
+68196,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+68197,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+68198,Bash/Shell/PowerShell;C#;SQL
+68199,Python
+68200,Elixir;Java;JavaScript;Python;Ruby
+68201,HTML/CSS;JavaScript;PHP
+68202,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68203,JavaScript;Python;TypeScript
+68204,HTML/CSS;Java
+68205,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+68206,Bash/Shell/PowerShell;C;Python;Other(s):
+68207,C#;HTML/CSS;JavaScript;SQL
+68209,C++
+68210,Bash/Shell/PowerShell;Java;Python;SQL
+68211,Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+68212,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+68213,Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+68214,Java;SQL;Other(s):
+68215,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;R;Ruby;SQL;TypeScript
+68216,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+68217,HTML/CSS;Java;PHP;SQL
+68218,HTML/CSS;JavaScript;PHP;Python;SQL
+68219,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+68220,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+68221,C#;HTML/CSS;JavaScript;Python;SQL
+68222,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+68223,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL
+68224,Bash/Shell/PowerShell;C;Java;Python;R;Scala;SQL
+68225,HTML/CSS;Java;Python;R
+68226,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+68227,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala
+68228,Bash/Shell/PowerShell;JavaScript;Python
+68229,Java;Kotlin;Python;Rust;SQL
+68230,HTML/CSS;Java;JavaScript;PHP;Python;Swift
+68231,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+68232,C#;HTML/CSS;JavaScript;Rust;TypeScript
+68233,HTML/CSS;Java;JavaScript;TypeScript
+68234,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68235,C++;Go;HTML/CSS;Java;JavaScript;PHP;Python
+68236,Bash/Shell/PowerShell;Java;Python
+68237,C#;Java;JavaScript;Kotlin;SQL;TypeScript
+68238,Java;JavaScript;Kotlin;Python;Ruby;SQL
+68239,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+68240,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+68241,Java;JavaScript;Python;SQL
+68242,Assembly;Bash/Shell/PowerShell;C++;C#;Java;Python
+68243,HTML/CSS;Java;JavaScript;PHP;SQL
+68244,C;Clojure;Python
+68245,Java;Kotlin;PHP;Python
+68246,HTML/CSS;JavaScript;SQL
+68247,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+68248,C#;Clojure;Elixir;F#;Java
+68249,Bash/Shell/PowerShell;Python;R;SQL;VBA
+68250,C#;PHP;SQL;Other(s):
+68251,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+68252,C#;HTML/CSS;JavaScript;TypeScript
+68253,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+68254,Assembly;Bash/Shell/PowerShell;C;Go;Java;PHP;Python;R;Ruby;SQL;Other(s):
+68255,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Ruby
+68256,Java;JavaScript;TypeScript
+68257,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+68258,Bash/Shell/PowerShell;C#;Dart;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;TypeScript
+68259,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+68260,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68261,Python;SQL
+68262,C++;C#;Java;JavaScript;Kotlin;PHP;Python
+68263,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+68264,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+68265,C#;HTML/CSS;JavaScript;TypeScript
+68266,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+68267,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+68268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+68269,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68270,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+68271,Bash/Shell/PowerShell;C;HTML/CSS;Java;Kotlin;Python;R
+68272,C;C++;Java
+68273,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+68274,Bash/Shell/PowerShell;C++;Python
+68275,Bash/Shell/PowerShell;Java
+68277,Bash/Shell/PowerShell;Python;SQL
+68278,Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+68279,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+68280,C#;Dart;HTML/CSS;Java;JavaScript;PHP
+68281,HTML/CSS;Java;SQL
+68282,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+68283,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+68284,HTML/CSS;Java;JavaScript;PHP
+68285,C#;HTML/CSS;JavaScript;SQL;Other(s):
+68286,HTML/CSS;Java;JavaScript;SQL
+68287,C#;HTML/CSS;Java;JavaScript
+68288,C#;HTML/CSS;JavaScript;SQL
+68289,Java;Objective-C;Swift
+68290,C#;JavaScript;SQL
+68291,Python;VBA
+68292,HTML/CSS;Java;JavaScript;PHP;SQL
+68293,Bash/Shell/PowerShell;Dart;Go;JavaScript;Python
+68294,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+68295,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68296,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68297,C;C#;Java;Kotlin;Python
+68298,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+68299,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+68300,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+68301,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+68302,Java;Python;Scala;SQL;Other(s):
+68303,C#;HTML/CSS;JavaScript;SQL;VBA
+68304,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+68305,C;C++;Java;Python
+68306,Bash/Shell/PowerShell;Kotlin;Python
+68308,HTML/CSS;JavaScript;Ruby;TypeScript
+68309,C++;Java;VBA
+68310,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68311,HTML/CSS;JavaScript
+68312,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+68313,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68314,Assembly;Bash/Shell/PowerShell;C;Python;R;Rust
+68315,C;C++;HTML/CSS;JavaScript;Python;SQL
+68316,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+68317,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68318,C#;HTML/CSS;Java;JavaScript;Python
+68319,JavaScript;Python
+68320,HTML/CSS;Java;Objective-C;Swift
+68321,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+68323,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+68324,C#;HTML/CSS;JavaScript
+68325,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68326,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python
+68327,JavaScript;Python
+68328,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+68330,Dart;HTML/CSS;JavaScript;TypeScript
+68331,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68332,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+68333,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL;Swift;TypeScript
+68334,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;SQL
+68335,Python;SQL
+68336,C#;HTML/CSS;JavaScript;SQL
+68337,HTML/CSS;JavaScript;Objective-C;Swift
+68338,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;PHP;Python;R
+68339,C#;HTML/CSS;JavaScript
+68340,C;C++;Java;SQL
+68341,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+68342,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+68343,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby
+68344,C++;C#;Java
+68345,C#;HTML/CSS;JavaScript;SQL
+68346,Java;Ruby
+68347,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;R;SQL;Other(s):
+68348,C#;JavaScript;SQL
+68349,C++;C#;HTML/CSS;Java;PHP;SQL
+68350,HTML/CSS;Java;JavaScript;TypeScript
+68351,Java;Scala
+68352,Go;Python;Ruby
+68353,Java;Kotlin
+68354,C;C++;HTML/CSS;JavaScript;PHP;SQL
+68355,HTML/CSS;JavaScript
+68356,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+68357,C#;Dart;Java;Python
+68358,C;Java;JavaScript;PHP;Python
+68359,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68360,C
+68361,Bash/Shell/PowerShell;C#;F#;Java;JavaScript;Python;Scala;SQL;TypeScript;VBA
+68362,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68363,C;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+68364,Ruby
+68365,HTML/CSS;JavaScript;Python
+68366,C#
+68367,Go;HTML/CSS;JavaScript;PHP;SQL
+68368,C#;JavaScript;SQL;TypeScript
+68369,HTML/CSS;JavaScript;PHP;SQL
+68370,HTML/CSS;Java;JavaScript;PHP
+68371,Bash/Shell/PowerShell;C;Python;R;SQL
+68372,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+68373,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+68374,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+68375,C#;HTML/CSS;JavaScript;SQL
+68376,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+68377,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Swift;VBA
+68378,C#;JavaScript;VBA;Other(s):
+68379,Dart;Java;Python
+68380,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68381,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+68382,HTML/CSS;JavaScript
+68383,C;C++
+68384,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+68385,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+68387,C++;Python
+68388,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+68389,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+68390,Bash/Shell/PowerShell;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+68391,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+68392,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+68393,Java;Kotlin
+68394,C#;Go;HTML/CSS;JavaScript;Python;SQL
+68395,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+68396,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Scala
+68397,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+68399,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+68400,C#;SQL
+68402,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+68403,C;C++;C#;Python
+68404,HTML/CSS;JavaScript;Python;SQL
+68405,Dart;HTML/CSS;Java;JavaScript;PHP;Python
+68406,JavaScript;PHP
+68407,JavaScript
+68408,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+68409,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+68410,C#;Elixir;F#;HTML/CSS;JavaScript;Python
+68411,Java;JavaScript;Python
+68412,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+68413,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;Swift
+68414,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68415,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+68416,C#;Java;JavaScript;Python
+68417,Java;Kotlin;Swift
+68418,C;C++;Java;JavaScript;Objective-C;PHP;SQL;Swift
+68420,HTML/CSS;Java;JavaScript;SQL
+68421,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+68422,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+68423,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+68424,Bash/Shell/PowerShell;Python
+68425,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68426,HTML/CSS;JavaScript;Python;R;SQL
+68427,Java;JavaScript;Kotlin;Scala;Swift
+68428,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+68429,Python;Rust;SQL
+68430,Bash/Shell/PowerShell;C++;C#;JavaScript;SQL
+68431,C#;HTML/CSS;JavaScript;TypeScript
+68432,Bash/Shell/PowerShell;Swift
+68433,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+68434,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;Ruby;Rust;SQL;VBA
+68435,C++;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift
+68436,HTML/CSS;JavaScript;PHP
+68437,JavaScript;PHP;SQL
+68438,Bash/Shell/PowerShell;Python;SQL
+68439,C#;Python
+68440,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+68441,Bash/Shell/PowerShell;Java;Scala;SQL
+68442,HTML/CSS;JavaScript;PHP;SQL
+68443,C#;Python
+68444,HTML/CSS;JavaScript
+68445,Python
+68446,Bash/Shell/PowerShell;C#;Java;Other(s):
+68447,Bash/Shell/PowerShell;HTML/CSS;Python;Scala;SQL
+68448,HTML/CSS;JavaScript;Python;TypeScript
+68449,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+68450,HTML/CSS;JavaScript;PHP;SQL
+68451,C#;Elixir;HTML/CSS;JavaScript;Kotlin
+68452,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68453,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68454,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby
+68455,C#;HTML/CSS;JavaScript;SQL
+68456,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+68457,Go;Python;Other(s):
+68458,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+68459,Go;HTML/CSS;JavaScript;SQL;TypeScript
+68460,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+68461,C#;HTML/CSS;JavaScript;PHP;Other(s):
+68462,HTML/CSS;JavaScript;PHP;Python;SQL
+68463,C;C++;C#;SQL
+68464,HTML/CSS;JavaScript;PHP
+68465,Bash/Shell/PowerShell;C;Java;Python;SQL
+68466,JavaScript;PHP;Python;SQL
+68467,Bash/Shell/PowerShell;Java;Python;R;SQL;VBA;Other(s):
+68468,Assembly;Bash/Shell/PowerShell;C;Clojure;JavaScript;Kotlin;Other(s):
+68469,HTML/CSS;Java;JavaScript;Other(s):
+68470,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+68471,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript
+68472,Java;JavaScript
+68473,C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68474,C;C++;HTML/CSS;Java;JavaScript;SQL
+68475,C#;Java;VBA
+68476,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA;Other(s):
+68477,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP
+68478,Objective-C;Python;Swift;VBA
+68479,C;C++;Java;JavaScript;Kotlin;Objective-C;Ruby;Rust;Swift
+68480,C;C++;HTML/CSS;Java;JavaScript;SQL
+68481,JavaScript;Python
+68482,C#;HTML/CSS;Java;Python;SQL
+68483,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+68484,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+68485,Python;SQL
+68486,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+68487,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68488,Bash/Shell/PowerShell;Java;JavaScript;Python;R;Scala;SQL
+68489,HTML/CSS;JavaScript;PHP;SQL
+68490,JavaScript;TypeScript
+68491,HTML/CSS;JavaScript;PHP;SQL
+68492,C#;HTML/CSS;JavaScript;PHP;SQL
+68493,C#;SQL
+68494,C++;C#;HTML/CSS;Java;JavaScript;SQL
+68495,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+68496,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Rust;Swift;Other(s):
+68497,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+68498,Bash/Shell/PowerShell;C++;Python
+68499,HTML/CSS;JavaScript;Python;TypeScript
+68500,HTML/CSS;Java;JavaScript;SQL
+68502,C#;HTML/CSS;JavaScript;SQL
+68503,HTML/CSS
+68504,C#;JavaScript;SQL;Other(s):
+68505,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68506,HTML/CSS;JavaScript;Python;Ruby;TypeScript;Other(s):
+68507,C#;HTML/CSS;Java;JavaScript;SQL
+68508,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+68509,Assembly;Bash/Shell/PowerShell;C;Java;PHP;Python
+68510,C;C++
+68512,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+68513,HTML/CSS;JavaScript;PHP;SQL
+68514,Java;Kotlin
+68515,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+68516,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+68517,C++;Python;SQL
+68518,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+68519,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+68520,HTML/CSS;JavaScript;PHP;Python;SQL
+68521,C#;JavaScript;PHP;SQL
+68522,C;C++;HTML/CSS;JavaScript;Python;SQL
+68523,HTML/CSS;Java;JavaScript;SQL;TypeScript
+68524,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+68526,C;C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+68527,C#;HTML/CSS;JavaScript;SQL
+68528,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68529,C;Swift
+68530,C#;JavaScript;VBA
+68531,Java
+68532,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+68533,C#
+68534,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+68535,Assembly;C#;HTML/CSS;JavaScript;Python;R;Other(s):
+68536,HTML/CSS;Java;SQL
+68537,HTML/CSS;JavaScript;TypeScript
+68538,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+68539,Bash/Shell/PowerShell;Scala
+68540,Clojure;Java;JavaScript
+68541,C#;HTML/CSS;JavaScript
+68542,Java;JavaScript;Kotlin;SQL
+68543,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+68544,HTML/CSS;JavaScript;PHP;TypeScript
+68545,HTML/CSS;JavaScript;PHP;SQL
+68546,JavaScript;TypeScript
+68547,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+68548,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python
+68549,Java;SQL
+68550,Java;Python;SQL
+68551,Java;Kotlin
+68552,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+68553,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+68554,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+68555,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+68556,C++;HTML/CSS;JavaScript;Python;SQL
+68557,Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript
+68558,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+68559,Assembly;C#;HTML/CSS;JavaScript;Python;Scala;TypeScript
+68561,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+68562,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+68563,Go;HTML/CSS;JavaScript;Python;Scala;TypeScript
+68564,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68565,C++;Rust
+68566,C#;HTML/CSS;JavaScript
+68567,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68568,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+68569,C#;Java;Python;SQL;TypeScript
+68570,HTML/CSS;Java;JavaScript;Python;R;SQL
+68571,JavaScript;Python;SQL
+68572,HTML/CSS;JavaScript;PHP
+68573,R;VBA
+68574,Java;JavaScript;SQL;TypeScript;Other(s):
+68575,Bash/Shell/PowerShell;C;C++
+68576,C#;Java;VBA
+68577,C#;Java
+68578,Python;SQL;VBA
+68579,Bash/Shell/PowerShell;C;C++;Go;Python
+68580,HTML/CSS;JavaScript;SQL
+68581,HTML/CSS;JavaScript;Python;SQL
+68582,C++;HTML/CSS;Java;JavaScript;SQL
+68583,Java;Objective-C;Swift
+68584,Python;SQL
+68585,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby
+68586,C++;C#;Java;Swift
+68587,C;C++;HTML/CSS;Java;JavaScript;SQL
+68588,HTML/CSS;JavaScript;Python;SQL
+68589,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+68590,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+68591,HTML/CSS;Java;JavaScript
+68592,C#;JavaScript;Python;Ruby
+68593,HTML/CSS;JavaScript;PHP
+68594,Python;Ruby
+68595,Assembly;C;C++;HTML/CSS;JavaScript;Python;R
+68596,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript;VBA
+68597,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+68598,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python
+68599,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+68600,Bash/Shell/PowerShell;C;Python;R
+68601,C;C++
+68602,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68603,JavaScript
+68604,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;Swift
+68605,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+68606,HTML/CSS;JavaScript;PHP;Python;SQL
+68607,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+68608,HTML/CSS;JavaScript;PHP;SQL
+68609,R
+68610,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68611,Java;Kotlin;Objective-C;PHP;SQL;Swift
+68612,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68613,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+68614,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+68615,C#;JavaScript
+68616,HTML/CSS;Java;JavaScript;TypeScript
+68617,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68618,Bash/Shell/PowerShell;JavaScript;Python;SQL
+68619,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68620,Bash/Shell/PowerShell;Go;JavaScript;Ruby;TypeScript
+68621,C++;HTML/CSS;Java;JavaScript;PHP;Python
+68622,C#;HTML/CSS;Java;Python
+68623,Python;R;VBA
+68624,Bash/Shell/PowerShell;C;C++;Go;Java;Python;Ruby;Scala
+68625,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+68626,SQL
+68627,C++;Java
+68628,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+68629,Bash/Shell/PowerShell;C;C++;Python
+68630,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL
+68632,Go;JavaScript;PHP;SQL
+68633,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+68634,Java;JavaScript;TypeScript
+68635,Go;HTML/CSS;Java;JavaScript;Python;SQL
+68636,Assembly;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Rust
+68637,C#;HTML/CSS;JavaScript;Python;SQL
+68638,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;PHP;Python;SQL
+68639,HTML/CSS;JavaScript;Ruby
+68640,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;TypeScript
+68641,C;C++;Objective-C;Swift
+68642,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+68643,Python
+68644,Bash/Shell/PowerShell;Java;Python;R;SQL
+68645,HTML/CSS;JavaScript;Python
+68646,Bash/Shell/PowerShell;Java;JavaScript
+68647,C;C++;JavaScript;Python
+68648,Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python;R;SQL;TypeScript
+68649,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+68650,HTML/CSS;R;SQL
+68651,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+68652,C;C++;Go;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+68653,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+68654,C++;C#
+68655,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+68656,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala
+68657,C#;HTML/CSS;JavaScript;PHP;SQL
+68658,HTML/CSS;JavaScript;PHP;SQL
+68659,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+68660,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+68661,C++
+68662,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+68663,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+68664,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+68665,Bash/Shell/PowerShell;Java;PHP;Python
+68666,HTML/CSS;JavaScript
+68667,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+68668,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Python;SQL
+68669,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL
+68670,Python
+68671,C#;JavaScript;TypeScript
+68672,C#;HTML/CSS;JavaScript;SQL
+68673,HTML/CSS;SQL
+68674,HTML/CSS;Java;JavaScript
+68675,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+68676,HTML/CSS;Java;PHP;Python;SQL
+68677,Java;SQL
+68678,Bash/Shell/PowerShell;C#;HTML/CSS;Python
+68679,HTML/CSS;JavaScript;Ruby
+68680,Java;Python
+68681,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+68682,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;SQL
+68683,Java;Python;Other(s):
+68684,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;Swift
+68685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+68686,Bash/Shell/PowerShell;Python;R
+68687,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+68688,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R
+68689,Java;JavaScript;SQL
+68690,C;C++;HTML/CSS;JavaScript;PHP;Ruby
+68691,JavaScript
+68692,C#;SQL;TypeScript
+68693,C#;JavaScript;Other(s):
+68694,Bash/Shell/PowerShell;Go;JavaScript;Python
+68695,C;C++;HTML/CSS;JavaScript
+68696,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+68697,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+68698,Python;R;SQL
+68699,Java;PHP
+68700,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+68701,JavaScript;Ruby;TypeScript
+68702,C++;Python
+68703,C#;Go;Java;PHP;Python;Ruby
+68704,Bash/Shell/PowerShell;C++;Python
+68705,HTML/CSS;Java;JavaScript;Python
+68706,C++
+68707,C;C++;Python;VBA
+68708,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+68709,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68710,Java;JavaScript;Python
+68711,C;Objective-C;SQL;Swift
+68712,Java;Python
+68713,Dart;HTML/CSS;JavaScript;Ruby;TypeScript
+68714,C++;Objective-C;Rust;Swift;Other(s):
+68715,C#;HTML/CSS;JavaScript;Python;SQL
+68716,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+68717,Bash/Shell/PowerShell;Elixir;Erlang;Go;HTML/CSS;JavaScript;SQL
+68718,HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly
+68719,C;Elixir;HTML/CSS;JavaScript;PHP;Ruby;SQL
+68720,Go;HTML/CSS;JavaScript;Python
+68721,Bash/Shell/PowerShell;Go;Java;SQL
+68722,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+68723,C#;Java;JavaScript;SQL
+68724,Bash/Shell/PowerShell;C++;Python
+68725,C#;Other(s):
+68726,HTML/CSS;JavaScript;PHP;SQL
+68727,Python
+68728,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+68729,Bash/Shell/PowerShell;Python
+68730,Go;JavaScript;Python
+68731,Assembly;Bash/Shell/PowerShell;C;C++;Python
+68732,HTML/CSS;JavaScript;TypeScript
+68733,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68734,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+68735,C#;HTML/CSS;SQL;TypeScript
+68736,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL
+68737,HTML/CSS;Java;JavaScript;Kotlin;Python
+68738,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Kotlin;Python;Ruby;Rust;Scala;SQL;TypeScript
+68739,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+68740,Bash/Shell/PowerShell;Java;Kotlin;Python
+68741,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+68742,C#;HTML/CSS;JavaScript;SQL
+68743,C#;HTML/CSS;Java;JavaScript;Python;SQL
+68744,Java;JavaScript;Python;Scala;SQL
+68745,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+68746,Java;TypeScript
+68747,Java;JavaScript;Kotlin;SQL
+68748,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Other(s):
+68749,C#;HTML/CSS;Python;SQL;Swift
+68750,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+68751,HTML/CSS;JavaScript;PHP;SQL
+68752,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+68753,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+68754,HTML/CSS;Java;JavaScript;Scala;Other(s):
+68755,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;Scala;SQL;TypeScript
+68756,C;C++;HTML/CSS;Python;Other(s):
+68757,C++;Python
+68758,C;C++;HTML/CSS;Java;JavaScript;Python
+68759,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+68760,C;Java
+68761,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift
+68762,C#;JavaScript;SQL
+68763,C;C++;Java;JavaScript;Python;Swift
+68764,Java;JavaScript;PHP
+68765,HTML/CSS;JavaScript;Python;TypeScript
+68766,Java;SQL
+68767,Python;R
+68768,Elixir;Erlang;HTML/CSS
+68769,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;Scala
+68770,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+68771,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+68772,Java;SQL
+68773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68774,Bash/Shell/PowerShell;C++;Java;Python;SQL
+68775,Go;Java;JavaScript;PHP;Python;Scala;SQL
+68776,C#;JavaScript
+68777,Python;R;SQL
+68778,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+68779,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68780,Python
+68781,HTML/CSS;JavaScript
+68782,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68783,HTML/CSS;JavaScript
+68784,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;R
+68785,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+68787,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+68788,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+68789,Assembly;Python
+68790,C#;HTML/CSS;JavaScript;PHP;SQL
+68791,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;WebAssembly
+68792,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+68793,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68794,HTML/CSS;JavaScript;PHP;Python
+68795,C#;JavaScript;SQL
+68796,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;TypeScript
+68797,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Other(s):
+68798,C#;HTML/CSS;JavaScript;SQL
+68799,Go
+68800,Assembly;Bash/Shell/PowerShell;C;Go;JavaScript;Python;Rust;Other(s):
+68801,HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript;Other(s):
+68802,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript
+68803,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+68804,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+68805,HTML/CSS;JavaScript;PHP;SQL
+68806,Bash/Shell/PowerShell;Elixir;Python;SQL;Other(s):
+68807,Bash/Shell/PowerShell;C#;SQL;VBA
+68808,Java;JavaScript;Python;R;SQL
+68809,Bash/Shell/PowerShell;C++;Go;Python
+68810,Java;Python
+68811,C;C++;C#;Java;Objective-C;Python;SQL;Swift;VBA
+68812,C#;JavaScript;Python
+68813,Bash/Shell/PowerShell;C;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+68814,C#;HTML/CSS;JavaScript
+68815,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+68816,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;Python;R;Scala;SQL
+68817,Java
+68818,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68819,HTML/CSS;Java;JavaScript;Python;TypeScript
+68820,Bash/Shell/PowerShell;Python;R;SQL
+68821,C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+68822,HTML/CSS;JavaScript;TypeScript
+68823,Bash/Shell/PowerShell;Elixir;Ruby;SQL
+68824,C#;HTML/CSS;JavaScript;TypeScript
+68825,JavaScript;PHP;TypeScript
+68826,C;HTML/CSS;JavaScript;Python
+68827,HTML/CSS;Java;JavaScript;Python;SQL
+68828,C#;HTML/CSS;JavaScript;SQL
+68829,C++;Dart;Other(s):
+68830,C++;JavaScript;Python;Ruby;TypeScript
+68831,C#;Dart;HTML/CSS;JavaScript;Python
+68832,C#;HTML/CSS;JavaScript
+68833,Ruby;Scala
+68834,Bash/Shell/PowerShell;Java;Scala
+68835,C;C++;Rust;Other(s):
+68836,HTML/CSS;JavaScript;Python;TypeScript
+68837,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+68838,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+68839,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68840,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+68841,Bash/Shell/PowerShell;C#;JavaScript;Python;R;SQL;TypeScript
+68842,Go;Python
+68843,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+68844,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;Swift
+68845,C#;HTML/CSS;Java;JavaScript
+68846,HTML/CSS;JavaScript
+68847,Bash/Shell/PowerShell;C#;JavaScript;Python;Ruby;SQL;TypeScript
+68848,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68849,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+68850,Bash/Shell/PowerShell;SQL
+68851,Bash/Shell/PowerShell;C;C++;Java;Python;Scala;SQL
+68852,Elixir;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+68853,HTML/CSS;JavaScript;PHP;SQL
+68854,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68855,Bash/Shell/PowerShell;JavaScript
+68856,C;Python
+68857,Bash/Shell/PowerShell;JavaScript;Python;R;Scala;Other(s):
+68858,Bash/Shell/PowerShell;C++;Java;PHP;Python;SQL
+68859,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+68860,HTML/CSS;JavaScript;PHP;Python
+68861,C;C++;C#;Python;Rust
+68862,C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68863,Elixir;Erlang;JavaScript;PHP;Python;SQL;TypeScript
+68864,Java;JavaScript;TypeScript
+68865,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+68866,C++;HTML/CSS;JavaScript;Python
+68867,C#;HTML/CSS;SQL;TypeScript
+68868,C#;HTML/CSS;JavaScript;Swift
+68869,Bash/Shell/PowerShell;C;C++;Objective-C;Swift
+68870,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+68871,Bash/Shell/PowerShell;Java;Kotlin;Python
+68872,HTML/CSS;Java;JavaScript;SQL;Other(s):
+68873,HTML/CSS;JavaScript;PHP;SQL
+68874,Bash/Shell/PowerShell;Java;Objective-C;Python
+68875,C++;C#;Dart;Elixir;Java;Kotlin;Python
+68876,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+68877,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+68878,HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+68879,HTML/CSS;Java;JavaScript;Other(s):
+68880,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+68881,C#;HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+68882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+68883,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+68884,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+68885,C++;C#;HTML/CSS;Java;Kotlin;Python;Scala;SQL;TypeScript
+68886,C;C++;Java
+68887,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript
+68888,C#;HTML/CSS;JavaScript;SQL
+68889,Go;Python
+68890,HTML/CSS;Java;JavaScript;Python;SQL
+68891,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA;Other(s):
+68892,HTML/CSS;JavaScript;Python;TypeScript
+68893,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+68894,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+68895,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+68896,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+68897,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+68898,Assembly;C;Python;Other(s):
+68899,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68900,C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+68901,C#
+68902,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+68903,JavaScript;PHP
+68904,Bash/Shell/PowerShell;Ruby
+68905,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+68906,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+68907,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+68908,C#;HTML/CSS;JavaScript;SQL
+68909,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+68910,C#;JavaScript;SQL
+68911,Assembly;C++;Java;Python
+68912,C;C++;HTML/CSS
+68913,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68914,C;HTML/CSS;Java;JavaScript;PHP;SQL
+68915,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+68916,Assembly;C++;HTML/CSS;JavaScript
+68918,Java;Kotlin
+68919,C;Go;Java;Python;Scala
+68920,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68921,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+68922,Java;Kotlin;Objective-C
+68923,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+68924,HTML/CSS;Java;JavaScript
+68925,C++;C#;JavaScript;Python
+68926,Bash/Shell/PowerShell;Java;Python;Scala
+68927,Java
+68928,C++;HTML/CSS
+68929,HTML/CSS;JavaScript;SQL
+68930,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;Rust
+68931,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+68932,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python
+68933,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+68934,C#;HTML/CSS;Java;JavaScript;SQL
+68935,C++;C#;Python
+68936,C++;Java;Python;SQL;Other(s):
+68937,HTML/CSS;JavaScript;PHP;SQL;Swift;Other(s):
+68938,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+68939,Bash/Shell/PowerShell;C;C++;Python
+68940,HTML/CSS;Java;Python
+68941,Bash/Shell/PowerShell;HTML/CSS;Python
+68942,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+68943,HTML/CSS;JavaScript;PHP
+68944,JavaScript;Python
+68945,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;Other(s):
+68946,Bash/Shell/PowerShell;Python;Rust;WebAssembly
+68947,JavaScript;Objective-C;Ruby;TypeScript
+68948,C#
+68949,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+68950,HTML/CSS;JavaScript
+68951,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+68952,Assembly;C#;Elixir;F#;Java;Python;Other(s):
+68953,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+68955,HTML/CSS;PHP;SQL;Other(s):
+68956,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+68957,C++
+68958,C#;HTML/CSS;Java;JavaScript
+68959,HTML/CSS;JavaScript;PHP;Python;SQL
+68960,Dart;JavaScript;SQL;TypeScript
+68961,HTML/CSS;JavaScript;PHP;SQL
+68962,Go;HTML/CSS;JavaScript;PHP;SQL
+68963,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+68964,HTML/CSS;JavaScript;Python
+68965,HTML/CSS;Java;JavaScript;PHP;SQL
+68966,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+68967,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+68968,Bash/Shell/PowerShell;C++;Java;JavaScript;Ruby;SQL;Other(s):
+68969,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Scala;SQL;TypeScript
+68970,C#;HTML/CSS;JavaScript;SQL;TypeScript
+68971,JavaScript;SQL;VBA
+68972,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+68973,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+68974,Go;Java;JavaScript;Python;Ruby;Scala;SQL
+68975,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+68976,C;C++;C#;HTML/CSS;Python
+68977,C;C++;Python
+68978,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+68979,JavaScript;PHP;SQL
+68980,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+68981,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+68982,Elixir;Erlang;F#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Swift
+68983,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+68984,SQL;VBA
+68985,R
+68986,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+68987,HTML/CSS;Python;R
+68988,Bash/Shell/PowerShell;Go;Python
+68989,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+68990,HTML/CSS;Java;JavaScript;PHP;SQL
+68991,C#;HTML/CSS;JavaScript;PHP;SQL
+68992,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+68993,C#;JavaScript
+68994,C;C++;C#;Python
+68995,C#;Python
+68996,Python
+68997,C#;HTML/CSS;JavaScript
+68998,HTML/CSS;JavaScript;PHP;Ruby;SQL
+68999,HTML/CSS;JavaScript;Python;SQL
+69000,Java;Python
+69001,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+69002,HTML/CSS;JavaScript;TypeScript
+69003,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69004,HTML/CSS;Java;JavaScript;TypeScript
+69005,Bash/Shell/PowerShell;C#;Python;SQL
+69006,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+69007,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69008,C;C++
+69009,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;SQL
+69010,C;C#;HTML/CSS;Java;JavaScript;SQL
+69011,C;C++;Dart;Go;HTML/CSS;Java;JavaScript
+69012,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;VBA
+69013,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+69014,HTML/CSS;Java;JavaScript;SQL
+69015,Ruby
+69016,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+69017,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+69018,C#;HTML/CSS;JavaScript
+69019,C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+69020,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+69021,HTML/CSS;Java;JavaScript;Python
+69022,C;C#;Clojure;Java;JavaScript;Rust;Scala
+69023,Bash/Shell/PowerShell;Erlang;HTML/CSS;Ruby;TypeScript
+69024,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+69025,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+69026,Assembly;C;C++;Java;JavaScript;Python;SQL
+69027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+69028,Dart;Go;SQL
+69029,C#;JavaScript;SQL;TypeScript
+69030,HTML/CSS;JavaScript
+69031,C#;HTML/CSS;JavaScript;SQL
+69032,C#;HTML/CSS;Java;SQL
+69033,C#;HTML/CSS;JavaScript;SQL
+69034,Java;JavaScript;PHP;Python;SQL;Other(s):
+69035,HTML/CSS;JavaScript;PHP
+69036,HTML/CSS;JavaScript;TypeScript
+69037,C;C++;Java;Python;R
+69038,Assembly;C;C++;Python
+69039,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;VBA
+69040,Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+69041,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;TypeScript
+69042,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+69043,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+69044,C;Java;JavaScript;Kotlin
+69045,C#;Python
+69046,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL;TypeScript
+69047,C++;Go;HTML/CSS;JavaScript;SQL;TypeScript
+69048,HTML/CSS;Java;JavaScript;SQL;TypeScript
+69049,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Objective-C;Ruby;SQL
+69050,Bash/Shell/PowerShell;C;Dart;Java;Objective-C;PHP;Python
+69051,Java;JavaScript;Kotlin
+69052,HTML/CSS;Java;JavaScript;SQL
+69053,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+69054,C#;JavaScript;SQL;TypeScript
+69055,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+69056,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;Ruby
+69057,Java
+69058,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+69059,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69060,Bash/Shell/PowerShell;Python
+69061,HTML/CSS;Python;SQL;Other(s):
+69062,HTML/CSS;JavaScript;Ruby
+69063,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69064,C#;HTML/CSS;JavaScript;PHP;SQL
+69065,HTML/CSS;JavaScript
+69066,Dart;HTML/CSS;JavaScript;Ruby
+69067,Python
+69068,Assembly;C;C++;HTML/CSS;Java;PHP;Python;SQL
+69069,JavaScript;PHP;SQL
+69070,JavaScript;PHP;SQL;TypeScript;Other(s):
+69071,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+69072,Bash/Shell/PowerShell;C;C++;Python
+69073,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69074,Assembly;C;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+69075,HTML/CSS;Java;JavaScript;PHP;SQL
+69076,Bash/Shell/PowerShell;C;C++;C#
+69077,C#;SQL
+69078,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;JavaScript;Rust;TypeScript
+69079,HTML/CSS;JavaScript;Python;R;SQL;VBA
+69080,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+69081,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69082,C++;Python
+69083,C++;Go;Python;Rust;SQL
+69084,Java;Python;SQL
+69085,Bash/Shell/PowerShell;Python;Other(s):
+69086,JavaScript;PHP;SQL;TypeScript;Other(s):
+69087,R;SQL;VBA
+69088,C++;C#;Java;SQL
+69089,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;VBA
+69090,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+69091,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+69092,C#;HTML/CSS;Java;JavaScript;TypeScript
+69093,C#;HTML/CSS;JavaScript;PHP;Python
+69094,C#;HTML/CSS;JavaScript;Ruby;SQL
+69095,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+69096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69097,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+69098,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+69099,Java;Python
+69100,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+69101,HTML/CSS;Java;JavaScript;PHP;Rust;TypeScript
+69102,Bash/Shell/PowerShell;C#;Java;Python;SQL;TypeScript
+69103,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python;Swift;VBA
+69104,Bash/Shell/PowerShell;Python;SQL
+69105,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69106,Bash/Shell/PowerShell;Python;SQL;VBA
+69107,Bash/Shell/PowerShell;C++;Clojure;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+69108,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69109,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+69110,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL
+69111,C++;Java;Kotlin
+69112,JavaScript;PHP;Python
+69113,C#;JavaScript;SQL;TypeScript
+69114,C;C++;Dart;Java;Kotlin;PHP
+69115,HTML/CSS;JavaScript;PHP;SQL
+69116,Bash/Shell/PowerShell;Go;Python;Rust
+69117,HTML/CSS;JavaScript;Other(s):
+69118,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+69119,Java;Python;SQL
+69120,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+69122,C#;JavaScript;Python;Scala;Swift
+69123,Java;JavaScript;Python;SQL;TypeScript
+69124,Java;SQL;Other(s):
+69125,C#;JavaScript
+69126,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+69127,HTML/CSS;Java;JavaScript;SQL;TypeScript
+69128,HTML/CSS;JavaScript
+69129,HTML/CSS;JavaScript;PHP;SQL
+69130,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+69132,Bash/Shell/PowerShell;Python;SQL;Swift
+69133,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+69134,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+69135,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript;VBA;Other(s):
+69136,HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+69138,HTML/CSS;JavaScript;Python;SQL
+69139,C;C++;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+69140,C;C++;C#;JavaScript;Scala;SQL;TypeScript
+69142,C;C++;C#;HTML/CSS;JavaScript;Python
+69143,HTML/CSS;JavaScript;Python;TypeScript
+69144,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+69145,Swift
+69146,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69147,Go;HTML/CSS;JavaScript;Ruby;SQL
+69148,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+69149,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+69150,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL;VBA
+69151,C++;C#;Python;Other(s):
+69152,Java
+69153,C#;HTML/CSS;Java;JavaScript;SQL
+69154,HTML/CSS;Java;JavaScript;PHP;SQL
+69155,Bash/Shell/PowerShell;Java
+69156,Java
+69157,Elixir;Java;Ruby
+69158,HTML/CSS;Ruby
+69159,Bash/Shell/PowerShell;C;Go;Java;Python;Rust;Other(s):
+69160,HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Rust;TypeScript
+69161,Go;HTML/CSS;JavaScript;SQL;Other(s):
+69162,C#;HTML/CSS;JavaScript
+69163,C#;HTML/CSS;JavaScript;SQL
+69164,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+69165,C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+69166,C++;HTML/CSS;JavaScript
+69167,C#;HTML/CSS;JavaScript;Python
+69168,Bash/Shell/PowerShell;Java;Scala
+69169,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69170,C#;HTML/CSS;JavaScript;PHP;SQL
+69171,Java;JavaScript
+69172,Bash/Shell/PowerShell;C++;Python
+69173,Bash/Shell/PowerShell;HTML/CSS;Java;Other(s):
+69174,Go;HTML/CSS;JavaScript;Python
+69175,C#;HTML/CSS;Java;JavaScript;TypeScript
+69176,HTML/CSS;JavaScript
+69178,Java;JavaScript;Python;SQL
+69179,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+69180,HTML/CSS;JavaScript;PHP
+69181,C#;HTML/CSS;Java;Python;R;SQL;VBA;Other(s):
+69182,C#;JavaScript
+69183,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+69184,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+69185,Bash/Shell/PowerShell;C;Java;JavaScript;Rust
+69186,Java;Kotlin;Python
+69187,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+69188,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+69189,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift;TypeScript
+69191,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+69192,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+69193,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+69194,C#;F#;JavaScript;TypeScript
+69195,HTML/CSS;JavaScript;SQL;TypeScript
+69196,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+69197,JavaScript;TypeScript
+69198,HTML/CSS;JavaScript
+69199,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+69200,C#;HTML/CSS;JavaScript;SQL
+69201,C#;HTML/CSS;JavaScript;TypeScript
+69202,PHP
+69203,C++;C#;Java;JavaScript;SQL
+69204,HTML/CSS;JavaScript
+69205,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+69206,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+69207,HTML/CSS;JavaScript;PHP;Python;SQL
+69208,C#;HTML/CSS;JavaScript;SQL
+69209,C++;HTML/CSS;Java;Kotlin
+69210,C#;HTML/CSS;JavaScript;SQL
+69211,Bash/Shell/PowerShell;C;Python
+69212,C;C#;Java;Python;Other(s):
+69213,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69214,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;SQL
+69215,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+69216,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+69217,C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+69218,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;PHP;Other(s):
+69219,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+69220,Bash/Shell/PowerShell;JavaScript;TypeScript
+69221,HTML/CSS;Java
+69222,Go;JavaScript;TypeScript
+69223,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+69224,Bash/Shell/PowerShell;JavaScript;Python;SQL
+69225,Assembly;C;C++;Java;Python;Swift
+69226,JavaScript
+69227,C;C#;Java;JavaScript;TypeScript
+69228,VBA
+69229,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+69230,Assembly;Bash/Shell/PowerShell;C;F#;HTML/CSS;Java;JavaScript;SQL;Swift
+69231,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+69232,Bash/Shell/PowerShell;Python
+69233,Python
+69234,Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+69235,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69236,HTML/CSS;JavaScript;SQL
+69237,Java;Python
+69238,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python
+69239,Bash/Shell/PowerShell;HTML/CSS
+69240,Bash/Shell/PowerShell;C;JavaScript;Python;TypeScript
+69241,Swift
+69242,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+69243,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+69244,Python
+69245,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+69246,Clojure;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+69247,C++;C#;HTML/CSS;Java;PHP;SQL
+69248,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+69249,C#;Java;JavaScript;SQL
+69250,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+69251,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Rust
+69252,Dart
+69253,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;WebAssembly
+69254,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+69255,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69256,C++;HTML/CSS;JavaScript;PHP;SQL
+69257,HTML/CSS;Java;JavaScript;Kotlin;SQL
+69258,Assembly;C;C++;C#;HTML/CSS;Java;PHP;SQL
+69259,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+69260,C#;SQL
+69261,C++;Python
+69262,C#;HTML/CSS;JavaScript
+69263,Java;Python;R;Scala;SQL
+69264,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+69265,C++
+69266,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+69267,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+69268,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+69269,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+69270,C#;HTML/CSS;JavaScript;SQL
+69271,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+69272,C#;HTML/CSS;Java;JavaScript
+69273,C;C++;HTML/CSS;JavaScript;SQL
+69274,JavaScript;PHP
+69275,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+69276,C++;Java;Python;Scala;Swift
+69277,C;C++;C#;Go;HTML/CSS;Java;Objective-C
+69278,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL
+69279,C#;HTML/CSS;JavaScript;SQL;Other(s):
+69280,C#;JavaScript;Kotlin;Objective-C;PHP;Python;Swift
+69281,Java;Objective-C
+69282,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Scala;SQL;TypeScript
+69283,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+69284,Java;JavaScript
+69285,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+69286,Python;Scala;Other(s):
+69287,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+69288,Bash/Shell/PowerShell;Clojure;Go;JavaScript;Ruby;Scala;SQL
+69289,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python
+69290,Bash/Shell/PowerShell;C;C#;Python;SQL
+69291,JavaScript;Python
+69292,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Swift
+69293,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL
+69294,JavaScript;TypeScript
+69295,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+69296,HTML/CSS;Python;Ruby;SQL
+69297,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+69298,Assembly;PHP;Python
+69299,HTML/CSS;Java;JavaScript;Python
+69300,Python
+69301,HTML/CSS;JavaScript;TypeScript
+69302,HTML/CSS;JavaScript;PHP
+69303,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+69304,HTML/CSS;Java;SQL;Other(s):
+69305,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69306,HTML/CSS;Java;JavaScript;SQL
+69308,C#;HTML/CSS;SQL
+69309,C++;Dart;Python;SQL
+69310,C#;F#;HTML/CSS;Java;PHP;Python;SQL
+69311,HTML/CSS;SQL
+69312,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+69313,C;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+69314,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+69315,HTML/CSS;Java;JavaScript
+69316,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+69317,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+69318,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Scala;SQL;Swift
+69319,Assembly;Bash/Shell/PowerShell;C;Python
+69320,C#;HTML/CSS;JavaScript;SQL
+69321,HTML/CSS;JavaScript;PHP;SQL
+69322,HTML/CSS;Java;JavaScript;Python;SQL
+69323,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+69324,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+69325,HTML/CSS
+69326,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+69327,C#;HTML/CSS;JavaScript;SQL;VBA
+69328,HTML/CSS;JavaScript;PHP
+69329,C#;JavaScript;SQL;Other(s):
+69330,C++;Python;Other(s):
+69331,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69332,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69333,Bash/Shell/PowerShell;Java;JavaScript;SQL
+69334,Go;Python;R;SQL
+69335,JavaScript;Ruby;SQL
+69336,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+69337,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69338,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+69339,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Swift
+69340,Bash/Shell/PowerShell;HTML/CSS;Java;Scala;SQL
+69341,Java;Kotlin;Ruby;SQL
+69342,C++;HTML/CSS;JavaScript;Python
+69343,HTML/CSS;JavaScript;PHP;Python;TypeScript
+69344,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+69345,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69346,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Other(s):
+69347,HTML/CSS;Java;JavaScript;Kotlin;PHP
+69348,Assembly;Bash/Shell/PowerShell;C;C++;Rust
+69349,Assembly;C#;HTML/CSS;JavaScript;SQL
+69350,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+69351,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+69352,HTML/CSS;JavaScript
+69353,Assembly;Bash/Shell/PowerShell;C;C++;C#
+69354,HTML/CSS;Java;JavaScript;Python;SQL
+69355,C#;HTML/CSS;JavaScript;SQL
+69356,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+69357,Bash/Shell/PowerShell;C;C++;C#;SQL
+69358,C++;Python
+69359,Bash/Shell/PowerShell;HTML/CSS;Objective-C;SQL
+69360,Java;JavaScript;Python;SQL
+69361,C#
+69362,Java;Kotlin
+69363,Bash/Shell/PowerShell;C;C++;Python
+69364,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;SQL;VBA;Other(s):
+69365,C#;HTML/CSS;JavaScript;Other(s):
+69367,C#;F#;HTML/CSS;Java
+69368,Bash/Shell/PowerShell;C#;Go;JavaScript;SQL
+69369,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+69370,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+69371,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Other(s):
+69372,HTML/CSS;JavaScript;PHP
+69373,C#;HTML/CSS;PHP;SQL
+69374,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69375,Bash/Shell/PowerShell;C++;Python
+69376,Java;JavaScript;SQL
+69377,C#;JavaScript;TypeScript
+69378,C#;HTML/CSS;JavaScript;SQL
+69379,Bash/Shell/PowerShell;C;HTML/CSS;Java;Kotlin;Python;Ruby
+69380,Bash/Shell/PowerShell;C#;Java;Python
+69381,C#;HTML/CSS;Java;SQL
+69382,C;C++
+69383,Bash/Shell/PowerShell;C#;SQL
+69384,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+69385,Bash/Shell/PowerShell;C++;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+69386,Go;Java;JavaScript;Python
+69387,Elixir;Go;JavaScript;PHP;Python;SQL
+69388,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+69389,HTML/CSS;JavaScript;Python;TypeScript
+69390,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+69391,JavaScript;Other(s):
+69392,HTML/CSS;JavaScript;PHP
+69393,C#;SQL
+69394,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+69395,C;C++;HTML/CSS;JavaScript;Python;SQL
+69396,Python;Scala
+69398,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+69399,Java;JavaScript;SQL
+69400,C++;HTML/CSS;JavaScript;Ruby;SQL
+69401,Java
+69402,Bash/Shell/PowerShell
+69403,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+69404,C#;HTML/CSS;Java;JavaScript;SQL
+69405,C;C++;Objective-C;Swift
+69406,Java;Python;Scala;SQL
+69407,C;C++;C#;HTML/CSS;Java;PHP;SQL
+69408,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69409,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+69410,Bash/Shell/PowerShell;C#;Java;JavaScript;Other(s):
+69411,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+69412,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+69413,HTML/CSS;JavaScript;PHP
+69414,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69415,Bash/Shell/PowerShell
+69416,Bash/Shell/PowerShell;PHP;Python;SQL
+69417,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;VBA
+69418,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+69419,Bash/Shell/PowerShell;Go;Python
+69420,Clojure;HTML/CSS;Java;JavaScript;Python;Scala
+69421,Objective-C;Swift
+69422,HTML/CSS;JavaScript;PHP
+69423,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69424,C;C#;Java;Python
+69425,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+69426,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+69427,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69428,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;TypeScript
+69429,Java;JavaScript;Python;TypeScript
+69430,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+69431,Java;Scala
+69432,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Kotlin;Python
+69433,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+69434,Java;JavaScript;Python
+69435,C;C++;HTML/CSS;Java;JavaScript;SQL
+69436,HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+69437,Java;JavaScript
+69438,Java;Kotlin
+69439,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+69440,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;Swift
+69441,C#;Dart;Java;Python
+69442,Bash/Shell/PowerShell;Go;Java;Python;Rust;Scala
+69443,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+69444,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+69445,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+69446,C#;SQL;Other(s):
+69447,HTML/CSS;Java;JavaScript;SQL
+69448,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+69449,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69450,Java;Kotlin
+69451,HTML/CSS;Java;JavaScript;TypeScript
+69452,HTML/CSS;Java;JavaScript
+69453,C#;HTML/CSS;JavaScript;PHP;SQL
+69454,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+69455,Java;JavaScript;Kotlin;SQL;TypeScript
+69456,Assembly;HTML/CSS;JavaScript;PHP;SQL
+69457,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+69458,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+69459,C#;JavaScript
+69460,Java
+69461,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+69462,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Other(s):
+69463,C;C++;HTML/CSS;PHP;Python;SQL
+69464,HTML/CSS;Java;JavaScript;SQL;TypeScript
+69465,Bash/Shell/PowerShell;C;C++;PHP;Other(s):
+69466,Bash/Shell/PowerShell;Dart;JavaScript;PHP;SQL
+69467,C#;Python;R
+69468,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;JavaScript;Python;Rust;Scala;WebAssembly
+69469,HTML/CSS;JavaScript
+69470,Assembly;C;C++;C#;Go;JavaScript;Python;Rust;SQL;WebAssembly
+69471,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+69472,C#;HTML/CSS;JavaScript;SQL;VBA
+69473,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+69474,HTML/CSS;Java;JavaScript;PHP;SQL
+69475,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+69476,C;C#;Go;HTML/CSS;PHP;Python;R;SQL
+69477,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+69478,HTML/CSS;JavaScript;PHP;Python
+69479,C;C++;C#;Python;SQL;Swift;VBA
+69480,HTML/CSS;JavaScript;TypeScript
+69481,C;C++;PHP;Python
+69482,HTML/CSS;JavaScript;Python
+69483,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+69484,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+69485,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Objective-C;PHP;Rust;SQL
+69486,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+69487,Python;R
+69488,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+69489,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+69490,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+69492,C;HTML/CSS;Java;JavaScript;PHP;SQL
+69493,JavaScript;TypeScript
+69494,Java;Swift
+69495,C#;HTML/CSS;JavaScript;PHP;SQL
+69496,Assembly;JavaScript;PHP
+69497,C#;JavaScript;SQL
+69498,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+69499,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+69500,HTML/CSS;JavaScript;Kotlin;Python;SQL
+69501,HTML/CSS;JavaScript;Python;SQL;TypeScript
+69502,C#;HTML/CSS;JavaScript;PHP;SQL
+69503,C#;HTML/CSS
+69504,C++;Java;Python
+69505,Bash/Shell/PowerShell;Go;Python
+69506,Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+69507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+69508,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Rust;SQL
+69509,Assembly;Go;Java;PHP;WebAssembly;Other(s):
+69510,HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+69511,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+69512,HTML/CSS;JavaScript;Python
+69513,Assembly;Bash/Shell/PowerShell;C;Go;Java;Python
+69514,C#;HTML/CSS;JavaScript;TypeScript
+69515,Java
+69516,Java;JavaScript;Kotlin;SQL;TypeScript
+69517,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+69518,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+69519,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;VBA
+69520,C#
+69521,C;C++;HTML/CSS;Java;JavaScript;PHP
+69522,C;Java;SQL;Swift
+69523,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+69524,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;Swift;TypeScript
+69525,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+69526,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL
+69527,C#;HTML/CSS;JavaScript;SQL
+69528,HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+69529,Bash/Shell/PowerShell;HTML/CSS
+69530,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+69531,Bash/Shell/PowerShell;C++;JavaScript;Python;R;SQL
+69532,Bash/Shell/PowerShell;Java;Python;Other(s):
+69533,HTML/CSS;JavaScript;PHP
+69534,Java;Python
+69535,JavaScript;TypeScript
+69536,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+69537,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+69538,JavaScript;Python
+69539,C#;HTML/CSS;JavaScript;SQL
+69541,Java;Swift
+69542,HTML/CSS;JavaScript;PHP;SQL
+69543,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python
+69544,C#;HTML/CSS;JavaScript;VBA
+69545,HTML/CSS;JavaScript;SQL
+69546,Go;Java
+69547,Bash/Shell/PowerShell;Java;SQL;Other(s):
+69548,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+69549,HTML/CSS;JavaScript;TypeScript
+69550,SQL;VBA
+69551,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+69552,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+69553,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+69554,C++;HTML/CSS;PHP;Python;Rust;Other(s):
+69555,C;Java;JavaScript;R;SQL
+69556,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+69557,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+69558,Go;JavaScript;Ruby;TypeScript
+69559,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+69560,HTML/CSS;JavaScript
+69561,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+69562,C;C++;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69563,HTML/CSS;Java;JavaScript;TypeScript;VBA
+69564,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69565,C++;C#;Go;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+69566,Assembly;Bash/Shell/PowerShell;Other(s):
+69567,HTML/CSS;JavaScript;Python;SQL
+69568,HTML/CSS;JavaScript;PHP;Other(s):
+69569,HTML/CSS;JavaScript
+69570,HTML/CSS;Java;JavaScript;PHP;SQL
+69571,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+69572,C;HTML/CSS;JavaScript;PHP;Python;SQL
+69573,C#;HTML/CSS;JavaScript;SQL
+69574,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69575,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python;Rust;SQL
+69576,Bash/Shell/PowerShell;Python;R;SQL
+69577,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin
+69578,Java;Python;Scala
+69579,Bash/Shell/PowerShell;C;Go;Python
+69580,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+69581,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+69582,C#;Java;JavaScript;Swift;Other(s):
+69583,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP
+69584,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+69585,Bash/Shell/PowerShell;C;Swift;TypeScript
+69586,Java;JavaScript;SQL
+69587,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+69588,C#;HTML/CSS;JavaScript;TypeScript
+69589,HTML/CSS;JavaScript
+69590,Java;JavaScript;TypeScript
+69591,Bash/Shell/PowerShell;C++;C#
+69592,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+69593,Bash/Shell/PowerShell;JavaScript;Python;Scala
+69594,HTML/CSS
+69595,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+69596,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+69597,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP
+69598,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+69599,C;C++;HTML/CSS;Java;Python;SQL
+69600,Java;Kotlin
+69601,C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+69602,Bash/Shell/PowerShell;C;C++;Java;Python
+69603,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;R
+69604,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+69605,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;Python;SQL
+69606,Bash/Shell/PowerShell;C;C++
+69607,Java
+69608,Clojure;Python
+69609,Java;Python
+69610,HTML/CSS;JavaScript;PHP;Python
+69611,C++;C#;Go;HTML/CSS;Java;JavaScript;Ruby;SQL;Swift;TypeScript
+69612,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Swift
+69613,C#
+69614,HTML/CSS;JavaScript
+69615,Assembly;C++
+69616,Bash/Shell/PowerShell;JavaScript;Python;SQL
+69617,HTML/CSS;Java;JavaScript
+69618,HTML/CSS;Java;JavaScript;PHP;TypeScript
+69619,JavaScript;Python;TypeScript
+69620,C;C++;HTML/CSS;Java
+69621,Bash/Shell/PowerShell;Java;Python
+69622,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+69623,Bash/Shell/PowerShell
+69624,HTML/CSS;Java;PHP;SQL
+69625,Assembly;C++;C#;Java;JavaScript;TypeScript
+69626,C;C++;Clojure;Java;JavaScript;Python
+69627,Clojure;Elixir;Go;JavaScript
+69628,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;SQL
+69629,C++
+69630,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+69631,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+69632,Bash/Shell/PowerShell;C#;PHP;SQL
+69633,C++;Go
+69634,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+69635,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;Swift
+69636,HTML/CSS;JavaScript;PHP;SQL
+69638,Bash/Shell/PowerShell;C;Ruby
+69639,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+69640,HTML/CSS;JavaScript;PHP;SQL
+69641,C#;HTML/CSS;JavaScript;Swift
+69642,C;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+69643,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL
+69644,C#
+69645,Bash/Shell/PowerShell;Java;SQL
+69646,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69647,Java;Python;SQL;Other(s):
+69648,HTML/CSS;JavaScript;PHP
+69649,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+69650,HTML/CSS;JavaScript;TypeScript
+69651,Go;HTML/CSS;JavaScript;SQL
+69652,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69653,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Objective-C;PHP;Python;TypeScript
+69654,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+69655,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69656,Bash/Shell/PowerShell;JavaScript;Python
+69657,Dart;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+69658,Bash/Shell/PowerShell;C++;Java;Ruby;SQL
+69659,C;C++;JavaScript;Python
+69660,C#;R;SQL;TypeScript
+69661,JavaScript
+69662,Bash/Shell/PowerShell;C++;C#;Java;SQL
+69663,HTML/CSS;JavaScript;Python
+69664,HTML/CSS;Java;JavaScript
+69665,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69666,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+69667,C++
+69668,Bash/Shell/PowerShell;PHP;Python;SQL
+69669,Assembly;C;C++;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+69670,Assembly;C;C++;C#;JavaScript;Python
+69671,Bash/Shell/PowerShell;Clojure;Go;Python
+69672,C;C++;HTML/CSS;Java;JavaScript
+69673,Bash/Shell/PowerShell;C;C++;Java;Python
+69674,Go;Java;Kotlin;SQL;TypeScript
+69675,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;Swift
+69676,C#;HTML/CSS;Java;JavaScript;SQL
+69677,Java;SQL;Other(s):
+69678,JavaScript;Swift
+69679,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift
+69680,C#;HTML/CSS;JavaScript;SQL
+69681,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+69682,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+69683,C;C++;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+69685,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69686,HTML/CSS;JavaScript;Python;SQL
+69687,HTML/CSS;JavaScript;SQL;TypeScript
+69688,C#;HTML/CSS;JavaScript;SQL
+69689,Assembly;HTML/CSS;JavaScript;PHP;Other(s):
+69690,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;Other(s):
+69691,Java;JavaScript
+69692,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby
+69693,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+69694,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+69695,HTML/CSS;JavaScript
+69696,C
+69697,C;C++;Objective-C;Python;Swift
+69698,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+69699,C++;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+69700,HTML/CSS;Java;JavaScript;PHP;SQL
+69701,HTML/CSS;JavaScript
+69702,C;C++;C#;Rust
+69703,C#
+69704,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;WebAssembly
+69705,C;C++;JavaScript;PHP;Python;SQL;VBA
+69706,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift
+69707,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+69708,Java;SQL
+69709,Dart;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+69710,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python
+69711,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL;Other(s):
+69712,C;C++;HTML/CSS
+69713,Java;Python;SQL
+69714,HTML/CSS;Java;JavaScript;Python
+69715,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+69716,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+69717,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+69718,C++;C#;Other(s):
+69719,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+69720,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+69721,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+69722,HTML/CSS;JavaScript;PHP
+69723,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+69724,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;Python;Ruby;SQL
+69725,C++;C#;Dart;Java;SQL
+69726,Assembly;C;C++;HTML/CSS;Java;Ruby;Other(s):
+69727,HTML/CSS;JavaScript;PHP
+69728,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+69729,Objective-C
+69730,HTML/CSS;Java;JavaScript;PHP;VBA
+69731,Bash/Shell/PowerShell;Go;Python;Ruby
+69732,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP
+69733,Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+69734,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+69735,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift;Other(s):
+69736,Bash/Shell/PowerShell;Java;JavaScript
+69737,Bash/Shell/PowerShell;Go;Ruby
+69738,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+69739,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+69740,C;Java
+69742,C
+69743,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69744,HTML/CSS;Java;JavaScript;Python;SQL;Swift
+69745,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+69746,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;Scala;SQL
+69747,C++;C#;HTML/CSS
+69748,Go;HTML/CSS;JavaScript
+69749,Java;Kotlin
+69750,C#;HTML/CSS;JavaScript;SQL
+69751,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+69752,Java;JavaScript;Python;Scala;TypeScript
+69753,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+69754,C#
+69755,C;C++;HTML/CSS;Java;Python;SQL
+69756,Bash/Shell/PowerShell;Go;HTML/CSS;Objective-C;SQL
+69757,C#;HTML/CSS;JavaScript;SQL
+69758,HTML/CSS;Java;JavaScript;Python
+69759,Python;SQL;Other(s):
+69760,C;C++;Java;JavaScript;PHP;SQL
+69761,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+69762,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69763,Java;SQL
+69764,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+69765,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+69766,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+69767,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;SQL
+69768,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+69769,HTML/CSS;Java;Python;SQL
+69770,HTML/CSS;JavaScript
+69771,Bash/Shell/PowerShell;Go;Kotlin;Python;Ruby
+69772,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+69773,Java;JavaScript;PHP;Python;R;SQL
+69774,Java;SQL
+69775,Java;JavaScript;SQL
+69776,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+69777,C++;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+69778,C#;JavaScript;SQL
+69779,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+69780,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+69781,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+69782,HTML/CSS;Java;JavaScript
+69783,Bash/Shell/PowerShell;Java
+69784,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+69785,Bash/Shell/PowerShell;C#;Go;JavaScript;SQL;TypeScript
+69786,Elixir;Erlang;Ruby;SQL
+69787,HTML/CSS;JavaScript
+69788,HTML/CSS;JavaScript;PHP;SQL
+69789,Elixir;Erlang;Python
+69790,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+69791,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+69792,C++;HTML/CSS;JavaScript;Python
+69793,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69794,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69795,C;C++;C#;HTML/CSS;Java;JavaScript
+69796,HTML/CSS;Java;JavaScript
+69797,Assembly;HTML/CSS;Java;JavaScript;Python;SQL
+69798,JavaScript;PHP;Python;Ruby;SQL
+69799,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+69800,HTML/CSS;Java;JavaScript;Python;SQL
+69801,HTML/CSS;JavaScript;PHP;SQL
+69802,C++;HTML/CSS;JavaScript;Python;R;SQL
+69803,C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+69804,Java;JavaScript;SQL;TypeScript
+69805,C#;HTML/CSS;Java;JavaScript;SQL
+69806,Bash/Shell/PowerShell;JavaScript;PHP;Ruby;Rust
+69807,HTML/CSS;JavaScript;PHP
+69808,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+69809,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+69810,C;C++;C#;SQL
+69811,Bash/Shell/PowerShell;Java;Kotlin;Python;Scala;SQL
+69812,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+69813,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+69814,HTML/CSS;JavaScript;Ruby;TypeScript
+69815,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+69816,C;C++;HTML/CSS;Java;Python;R;SQL
+69817,Java
+69818,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+69819,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+69820,C;C++;C#;Other(s):
+69821,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;JavaScript;Python
+69822,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69823,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+69824,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;Rust;SQL;Swift;TypeScript
+69825,HTML/CSS;Java;JavaScript;SQL;TypeScript
+69826,C;C++;C#;Go;Java;JavaScript;Python;Ruby;SQL
+69827,Java;JavaScript;TypeScript
+69828,HTML/CSS;JavaScript;Other(s):
+69829,Java
+69830,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+69831,JavaScript;PHP;SQL
+69832,Bash/Shell/PowerShell;C++;C#;Dart;JavaScript;SQL
+69833,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69834,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+69835,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+69836,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust
+69837,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;Swift;TypeScript
+69838,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+69839,Swift
+69840,PHP;SQL
+69841,C++;Java
+69842,C#;HTML/CSS;JavaScript;SQL
+69843,VBA
+69844,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+69845,Assembly;C;C++;Java;Python;R;SQL
+69846,HTML/CSS;Java;JavaScript;Python
+69847,Java;Swift
+69848,Bash/Shell/PowerShell;HTML/CSS;R;Ruby;SQL
+69849,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+69850,HTML/CSS;JavaScript;TypeScript
+69851,HTML/CSS;JavaScript
+69852,HTML/CSS;Java;SQL;TypeScript
+69853,HTML/CSS;Python
+69854,C#;HTML/CSS;JavaScript;SQL
+69855,Assembly;C;C++;C#;JavaScript;PHP;Python;R;SQL;VBA
+69856,Bash/Shell/PowerShell;C#;Python;Ruby;VBA
+69857,Python
+69858,HTML/CSS;JavaScript;PHP;SQL
+69859,JavaScript;TypeScript
+69860,HTML/CSS;JavaScript
+69861,Java
+69862,Go;HTML/CSS;JavaScript;Kotlin;Ruby;Rust;Other(s):
+69863,HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+69864,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Swift
+69865,Bash/Shell/PowerShell;C++;Python
+69866,Go;HTML/CSS;Java;JavaScript;SQL
+69867,HTML/CSS;JavaScript;PHP;Python;SQL
+69868,C#;Elixir;Go;Rust;Other(s):
+69869,HTML/CSS;Java;JavaScript;Ruby
+69870,HTML/CSS;JavaScript;PHP;Other(s):
+69871,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+69872,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;VBA
+69873,Java;JavaScript;PHP;SQL
+69874,Python;R
+69875,Python;Other(s):
+69876,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+69877,C++;JavaScript;TypeScript;Other(s):
+69878,C#;F#;HTML/CSS;Java;JavaScript
+69879,HTML/CSS;JavaScript;TypeScript
+69880,HTML/CSS;JavaScript
+69881,Other(s):
+69882,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+69883,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+69884,Bash/Shell/PowerShell;JavaScript;Python;SQL
+69885,HTML/CSS;Java;JavaScript;SQL;TypeScript
+69886,C;C++;Other(s):
+69887,HTML/CSS;Java;JavaScript
+69889,Bash/Shell/PowerShell;C#
+69890,Bash/Shell/PowerShell;Java;Kotlin;Python
+69891,Bash/Shell/PowerShell;C;JavaScript;Python;Rust;SQL
+69892,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+69893,Java;JavaScript;Other(s):
+69894,PHP;SQL
+69895,Clojure;Go;Python;Swift
+69896,Go;Java;JavaScript;TypeScript
+69897,C#;HTML/CSS;JavaScript;SQL
+69898,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+69899,C++;Python
+69900,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+69901,HTML/CSS;JavaScript;PHP;SQL
+69902,C;C++;HTML/CSS;Java;JavaScript
+69903,C#;Java
+69904,C#;HTML/CSS;JavaScript;SQL;TypeScript
+69905,C++;Java;Python;Other(s):
+69906,Bash/Shell/PowerShell;Java;JavaScript;SQL
+69907,Bash/Shell/PowerShell;C;C++;HTML/CSS;VBA
+69908,HTML/CSS;Java;JavaScript;SQL
+69909,C#;HTML/CSS;JavaScript;SQL
+69910,R;SQL
+69911,HTML/CSS;PHP;Python;Swift
+69912,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+69913,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript
+69914,HTML/CSS;Java;JavaScript;Python;SQL
+69915,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+69916,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript
+69917,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+69918,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+69919,Other(s):
+69920,C;C++;C#;HTML/CSS;Objective-C;Swift
+69921,C#;Java;SQL;VBA
+69922,C#;Java
+69923,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+69924,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+69925,Assembly;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+69926,HTML/CSS;JavaScript;PHP;SQL;VBA
+69927,C#;HTML/CSS;Java;JavaScript;SQL
+69928,HTML/CSS;Java;Python;SQL;VBA
+69929,Java
+69930,C;Java;JavaScript
+69931,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+69932,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA;WebAssembly
+69933,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+69934,Java
+69935,C#;SQL;VBA
+69936,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+69937,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+69938,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+69939,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+69941,C;C++;JavaScript;TypeScript
+69942,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+69943,C#;HTML/CSS;JavaScript;PHP;SQL
+69944,HTML/CSS;Java
+69945,C++;C#;HTML/CSS;Java;JavaScript;Other(s):
+69946,HTML/CSS;Java;JavaScript;SQL;TypeScript
+69947,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+69948,HTML/CSS;JavaScript;Python;Other(s):
+69949,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;R;SQL
+69950,C++;C#;Java;JavaScript;PHP;Python;SQL
+69951,Dart;Go;HTML/CSS;JavaScript;TypeScript
+69952,Bash/Shell/PowerShell;C;Python;R;Scala;SQL
+69953,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;VBA
+69954,C;C++;HTML/CSS
+69955,Bash/Shell/PowerShell;Clojure;HTML/CSS;Ruby;Other(s):
+69956,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+69957,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python
+69958,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+69959,C#;HTML/CSS;JavaScript;SQL
+69960,C#;HTML/CSS;JavaScript;TypeScript
+69961,Assembly;C++;HTML/CSS;Java;JavaScript;SQL
+69962,JavaScript;Python
+69963,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+69964,Bash/Shell/PowerShell;HTML/CSS;Python;R;VBA
+69965,C;C++;Java;JavaScript;Python
+69966,C++;C#;SQL
+69967,Bash/Shell/PowerShell;C;Java;Python
+69968,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+69969,Java
+69970,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA
+69971,JavaScript;PHP;SQL
+69972,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP;Python;TypeScript
+69973,HTML/CSS;JavaScript;SQL;TypeScript
+69974,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+69975,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+69976,Bash/Shell/PowerShell;C++;Python
+69977,Go;Ruby;Scala
+69978,Java;JavaScript;Python;Ruby
+69979,HTML/CSS;JavaScript;Ruby
+69980,HTML/CSS;JavaScript
+69981,C#;HTML/CSS;PHP;SQL
+69982,C++;C#;HTML/CSS;JavaScript;Rust;SQL
+69983,Java
+69984,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+69985,C;C++;HTML/CSS;PHP;SQL;Other(s):
+69986,C;C++;C#;SQL
+69987,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+69988,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+69989,C#;HTML/CSS;Java;Kotlin;Rust;Scala;SQL;TypeScript
+69990,HTML/CSS;JavaScript;Python
+69991,C;Java
+69992,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+69993,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+69994,HTML/CSS;JavaScript;SQL
+69995,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+69996,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+69997,C#;HTML/CSS;JavaScript
+69998,C#;JavaScript
+69999,HTML/CSS;JavaScript;TypeScript
+70000,Java;SQL
+70001,C++;JavaScript;Python
+70002,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;TypeScript
+70003,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+70004,Python;VBA
+70005,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+70006,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;R;SQL;TypeScript;VBA
+70007,HTML/CSS;Java;JavaScript;PHP;SQL
+70008,HTML/CSS;Java;Objective-C;PHP;Scala;SQL;Swift
+70009,HTML/CSS;JavaScript;PHP
+70010,C;C++;C#;Go;PHP;SQL
+70011,Bash/Shell/PowerShell;C#
+70012,Bash/Shell/PowerShell;C++;Python
+70013,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java
+70014,HTML/CSS;JavaScript;PHP
+70015,C;C#;HTML/CSS
+70016,C++;C#;HTML/CSS;PHP;Ruby;Other(s):
+70017,R;SQL
+70018,C++;C#;Python;SQL
+70019,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70020,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL;Other(s):
+70022,C++;C#;Python
+70023,HTML/CSS;JavaScript;PHP;SQL
+70024,Python
+70025,HTML/CSS;Java;Python
+70026,C++;Go;Kotlin;Python;Rust;WebAssembly;Other(s):
+70027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+70028,Assembly;Bash/Shell/PowerShell;C++;Python
+70029,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+70030,HTML/CSS;JavaScript;PHP;SQL
+70031,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+70032,Java;Kotlin
+70033,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70034,C;HTML/CSS;JavaScript;Python;TypeScript
+70035,HTML/CSS;JavaScript;PHP
+70036,C;C++;Clojure;Go;Java;JavaScript;Kotlin;Python;Rust;TypeScript;WebAssembly
+70037,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+70038,C#;Python;SQL
+70039,C#;HTML/CSS;JavaScript;Objective-C;Ruby;SQL;TypeScript
+70040,HTML/CSS;JavaScript;Swift
+70041,Java
+70042,HTML/CSS;JavaScript;Python;SQL
+70043,C;C++;C#;Java;JavaScript;Python;SQL
+70044,Java;JavaScript;TypeScript
+70045,Java;JavaScript;Rust;SQL
+70046,C++;C#;HTML/CSS;JavaScript;Python
+70047,C#;HTML/CSS;JavaScript;TypeScript
+70048,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Scala;SQL
+70049,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70050,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Python;R;Ruby;Scala;SQL
+70051,Python;Scala
+70052,C;HTML/CSS;Java;Python
+70053,HTML/CSS;Java;JavaScript;PHP;Other(s):
+70054,Go;JavaScript;SQL
+70055,C#;JavaScript;TypeScript
+70056,C;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;SQL;Other(s):
+70057,C#;HTML/CSS;Java;JavaScript;PHP;Swift
+70058,HTML/CSS;Java;JavaScript;SQL;TypeScript
+70059,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70060,Bash/Shell/PowerShell;Java;SQL;Other(s):
+70061,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70062,HTML/CSS;JavaScript;Ruby
+70063,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+70064,HTML/CSS;JavaScript;PHP
+70065,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+70066,HTML/CSS;Java;JavaScript;PHP
+70067,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+70068,Java;JavaScript;TypeScript
+70069,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70070,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70071,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+70072,JavaScript;PHP
+70073,C++;JavaScript;Python;Rust;SQL
+70074,HTML/CSS;JavaScript;TypeScript;Other(s):
+70075,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+70076,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+70077,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+70078,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+70079,HTML/CSS;Java;JavaScript;Kotlin;Python
+70080,C;HTML/CSS;JavaScript;PHP;SQL
+70081,Bash/Shell/PowerShell;Other(s):
+70082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+70083,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+70084,C#;JavaScript;Python
+70085,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Other(s):
+70086,Assembly;Other(s):
+70087,C#
+70088,HTML/CSS;JavaScript;SQL
+70089,Bash/Shell/PowerShell;Java;JavaScript
+70090,HTML/CSS
+70091,HTML/CSS;JavaScript
+70092,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+70093,HTML/CSS;Java;JavaScript;Kotlin;Swift;TypeScript
+70094,HTML/CSS;JavaScript
+70095,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70096,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL
+70097,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby
+70098,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70099,Bash/Shell/PowerShell;C;Go;Java;Python
+70100,C#;HTML/CSS;Java;JavaScript;SQL
+70101,Bash/Shell/PowerShell;Swift
+70102,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70103,HTML/CSS;Java;Swift
+70104,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+70105,Dart;Java;Kotlin;Scala;Other(s):
+70106,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;TypeScript
+70107,Python;Rust;SQL;VBA;Other(s):
+70108,HTML/CSS;JavaScript;PHP;Python
+70109,C#;HTML/CSS;Java;JavaScript;SQL
+70110,R
+70111,C#;HTML/CSS;JavaScript;SQL
+70112,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala
+70113,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;R
+70114,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift;Other(s):
+70115,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70116,C++;HTML/CSS;Java;JavaScript
+70117,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+70118,C#;HTML/CSS;JavaScript;PHP;SQL
+70119,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+70120,C#;HTML/CSS;Java;JavaScript;TypeScript
+70121,HTML/CSS;Java;JavaScript;Kotlin
+70122,Python
+70123,C;Python
+70124,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+70125,Assembly;C;C++;Other(s):
+70126,HTML/CSS;JavaScript;Ruby;Other(s):
+70127,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Scala;SQL
+70128,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70129,Bash/Shell/PowerShell;C;C++;C#;Java;Kotlin;SQL
+70130,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+70131,Bash/Shell/PowerShell;C
+70132,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+70133,Bash/Shell/PowerShell;Java;Python;SQL;Swift
+70134,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+70135,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+70136,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70137,HTML/CSS;Java;JavaScript;SQL;TypeScript
+70138,HTML/CSS;JavaScript;PHP;Python;SQL
+70139,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+70140,C#;JavaScript;Python
+70141,HTML/CSS;Java;JavaScript;TypeScript
+70142,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+70143,C++;JavaScript;Python;TypeScript
+70144,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;WebAssembly
+70145,Python
+70146,C#;HTML/CSS;JavaScript;SQL
+70147,SQL
+70148,HTML/CSS;JavaScript;TypeScript
+70149,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70150,Python;R;Scala;SQL
+70151,Python
+70152,Bash/Shell/PowerShell;Java;Python;R;Scala;SQL
+70153,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+70154,Java;JavaScript;Python
+70155,HTML/CSS;JavaScript
+70156,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+70157,Objective-C
+70158,C#;HTML/CSS;JavaScript
+70159,C#;SQL
+70160,C++;HTML/CSS;Java;JavaScript;Python
+70161,C#;HTML/CSS;PHP;SQL;TypeScript;VBA
+70162,C;Elixir;HTML/CSS;Java;JavaScript;SQL
+70163,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+70164,Go;HTML/CSS;JavaScript;PHP;Python
+70165,C#;Java;JavaScript;SQL
+70166,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+70167,HTML/CSS;PHP
+70168,C#;HTML/CSS;JavaScript;SQL
+70169,JavaScript;Ruby;SQL
+70170,C++;Python;R
+70171,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+70172,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+70173,Bash/Shell/PowerShell;Java;Scala;SQL
+70174,HTML/CSS;JavaScript;PHP;SQL
+70175,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+70176,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Rust;SQL
+70177,C#
+70178,Java
+70179,C++;Erlang;Go;HTML/CSS;JavaScript;TypeScript
+70180,Elixir;Erlang;JavaScript;SQL;Other(s):
+70181,JavaScript;TypeScript
+70182,HTML/CSS;JavaScript
+70183,Assembly;Bash/Shell/PowerShell;C;C#;Java;SQL;VBA
+70184,HTML/CSS;JavaScript;SQL
+70185,C++;HTML/CSS;JavaScript
+70186,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+70187,HTML/CSS;JavaScript;Python
+70188,C#;HTML/CSS;Java;Kotlin;PHP;Python;SQL
+70189,Assembly;C;Java;SQL
+70190,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+70191,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70192,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+70193,Bash/Shell/PowerShell;C;SQL;Other(s):
+70194,C++;C#;JavaScript;Other(s):
+70195,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;SQL
+70196,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+70198,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+70199,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70200,C++;HTML/CSS;Java;JavaScript;SQL
+70201,Go;JavaScript;Python;TypeScript
+70202,Assembly;JavaScript;Other(s):
+70203,C#;R
+70204,C#;HTML/CSS
+70205,C#
+70206,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+70207,Java;Python;SQL
+70208,C;Clojure;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+70209,Bash/Shell/PowerShell;C#
+70210,SQL
+70211,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;Rust;SQL
+70212,HTML/CSS;JavaScript;PHP
+70213,HTML/CSS;JavaScript;PHP;SQL
+70214,C;HTML/CSS;JavaScript;SQL
+70215,C;C++;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+70216,C#;HTML/CSS;JavaScript;SQL
+70217,SQL;Other(s):
+70218,Bash/Shell/PowerShell;Dart;Java;JavaScript;Kotlin;Swift
+70219,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+70220,Python;Scala
+70221,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+70222,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+70223,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+70224,C#;Java;JavaScript;TypeScript
+70225,C;C#;VBA;Other(s):
+70226,JavaScript;Ruby;Rust
+70227,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+70228,HTML/CSS;JavaScript;PHP;SQL
+70229,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala
+70230,C++
+70231,HTML/CSS;JavaScript;PHP;Ruby;SQL
+70232,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+70233,Bash/Shell/PowerShell;Python;Other(s):
+70234,JavaScript;PHP
+70235,C;C++;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+70236,C++;Go;JavaScript;Python;SQL;TypeScript
+70237,JavaScript;Objective-C;Swift
+70238,Java;Python
+70239,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+70240,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70241,HTML/CSS;JavaScript
+70242,Assembly;Bash/Shell/PowerShell;Python
+70243,C;C++;HTML/CSS;Java;JavaScript;Other(s):
+70244,SQL;Other(s):
+70245,Clojure
+70246,C;F#;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+70247,HTML/CSS;JavaScript
+70248,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+70249,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+70250,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+70251,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+70252,C#;HTML/CSS;JavaScript;SQL
+70253,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+70254,C#;HTML/CSS;Python;SQL;VBA
+70255,JavaScript
+70256,HTML/CSS;JavaScript;PHP;SQL
+70257,Dart;Java;Kotlin;Python;SQL
+70259,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+70260,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+70261,HTML/CSS;JavaScript;PHP
+70262,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+70263,C#
+70264,Bash/Shell/PowerShell;C#
+70265,C#;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript;VBA
+70266,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+70267,C#;JavaScript
+70268,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+70269,Bash/Shell/PowerShell;C;C++;C#;SQL
+70270,Java
+70272,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;TypeScript
+70273,HTML/CSS;JavaScript;Python
+70274,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+70275,Go;Python
+70276,HTML/CSS;JavaScript;Python
+70277,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+70278,Bash/Shell/PowerShell;Python
+70279,C#;HTML/CSS;Java
+70280,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70281,Java;Kotlin
+70282,C++;HTML/CSS;Java;JavaScript;SQL
+70283,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL;VBA
+70285,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;SQL
+70286,HTML/CSS;Java;JavaScript;Python
+70287,C#;SQL
+70288,Go;Swift
+70289,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70290,C;HTML/CSS;JavaScript;Python;R;SQL
+70291,HTML/CSS;Java;JavaScript;PHP;Ruby
+70292,HTML/CSS;JavaScript
+70293,C#;HTML/CSS;JavaScript;TypeScript
+70294,HTML/CSS;Java;JavaScript
+70295,HTML/CSS;PHP;SQL
+70296,Elixir;HTML/CSS;JavaScript;Ruby;Swift
+70297,HTML/CSS;JavaScript;PHP;SQL
+70298,Java;SQL
+70299,Java;JavaScript;PHP;SQL
+70300,Python;R;SQL
+70301,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+70302,Bash/Shell/PowerShell;C#;Python;Other(s):
+70303,HTML/CSS;Java;JavaScript;SQL
+70304,C#;JavaScript;Python;SQL
+70305,C++;Java;Python
+70306,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;VBA
+70307,HTML/CSS;Java;Python;R
+70308,C++;HTML/CSS;Java;Kotlin;SQL;Swift
+70309,Java;Kotlin;Scala
+70310,HTML/CSS;JavaScript;PHP;SQL
+70311,Assembly;C
+70312,C#;HTML/CSS;JavaScript;SQL
+70313,C#;HTML/CSS;JavaScript;SQL
+70314,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;Scala
+70315,C;C++;JavaScript;Python
+70316,Java;JavaScript;TypeScript
+70317,Bash/Shell/PowerShell;Java;Python
+70318,JavaScript
+70319,Assembly;C;Elixir;Erlang;Go;HTML/CSS;JavaScript;TypeScript
+70320,JavaScript;Python;R
+70321,Bash/Shell/PowerShell;JavaScript
+70322,C#;HTML/CSS;JavaScript
+70323,C#;HTML/CSS;JavaScript;SQL;VBA
+70324,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+70325,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70326,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70327,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+70328,C#;HTML/CSS;SQL;Other(s):
+70329,HTML/CSS;JavaScript;Python;TypeScript
+70330,HTML/CSS;Python;Ruby;SQL
+70331,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL
+70332,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+70333,C;HTML/CSS;JavaScript;TypeScript
+70334,HTML/CSS;JavaScript;PHP;SQL
+70335,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+70336,Java;JavaScript;Python;SQL
+70337,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70338,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+70339,Assembly;Bash/Shell/PowerShell;C;C++
+70340,Java;SQL
+70341,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70342,C#;Java;Python;Scala;SQL
+70343,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;R;SQL;VBA
+70344,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70345,Java;JavaScript;PHP
+70346,C++;C#;JavaScript;Python;SQL
+70347,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+70348,Bash/Shell/PowerShell;Elixir;Erlang;Python
+70349,C#;HTML/CSS;JavaScript;SQL
+70350,JavaScript;PHP;SQL
+70351,C#;JavaScript;Kotlin
+70352,Python
+70353,HTML/CSS;Python;Other(s):
+70354,C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+70355,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+70356,Bash/Shell/PowerShell;Java;Python
+70357,Bash/Shell/PowerShell;JavaScript;Python
+70358,Bash/Shell/PowerShell;C++;JavaScript;Python
+70359,HTML/CSS
+70360,C#;JavaScript
+70361,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+70362,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+70363,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+70364,C#;HTML/CSS;JavaScript;SQL
+70365,C;C++;Java;Python;R;SQL
+70366,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+70367,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+70368,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;Other(s):
+70369,Bash/Shell/PowerShell;Go;Java;Python
+70370,Bash/Shell/PowerShell;C#;Python;SQL
+70371,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+70372,HTML/CSS;JavaScript;PHP;SQL
+70373,Bash/Shell/PowerShell;Java;Python;Scala
+70374,Java;JavaScript;Python;SQL
+70375,C#;Java;SQL
+70376,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;SQL
+70378,HTML/CSS;JavaScript;PHP
+70379,HTML/CSS;JavaScript;PHP
+70380,C++;Java
+70381,C#
+70382,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+70383,Python
+70384,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Rust;WebAssembly
+70385,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+70386,Ruby
+70387,Python
+70388,HTML/CSS
+70389,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+70390,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+70391,Bash/Shell/PowerShell;C#;Go;JavaScript;PHP;SQL
+70392,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;Objective-C;Swift
+70393,Java;Kotlin;SQL
+70394,Kotlin;Objective-C;Python;Rust;Swift
+70395,C;C++;SQL
+70396,Java;JavaScript;Kotlin;SQL
+70397,C#;Java;SQL;TypeScript
+70398,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+70399,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+70400,HTML/CSS;Java;JavaScript
+70401,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70402,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;Ruby;Rust;SQL;WebAssembly
+70403,Assembly;C;HTML/CSS;Java;JavaScript;Python;SQL
+70404,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+70405,C#;HTML/CSS;JavaScript;SQL
+70406,HTML/CSS;JavaScript;SQL
+70407,Bash/Shell/PowerShell;C#;Go;JavaScript;SQL
+70408,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+70409,C;C++;Dart;HTML/CSS;Java;Python;SQL
+70410,Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70411,Bash/Shell/PowerShell;Java;Python;SQL
+70412,C;C++;C#;Java;PHP;SQL
+70413,Assembly;Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+70414,Bash/Shell/PowerShell;C++;C#;Python
+70415,Clojure;HTML/CSS;JavaScript
+70416,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+70417,HTML/CSS;JavaScript;PHP;SQL
+70418,C#;HTML/CSS;JavaScript;SQL
+70419,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;TypeScript
+70420,HTML/CSS;JavaScript;Swift
+70421,HTML/CSS;JavaScript;SQL;Swift;TypeScript
+70422,Java;JavaScript;TypeScript
+70423,C#;HTML/CSS;JavaScript;SQL
+70424,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70425,C#;Dart;HTML/CSS;SQL;TypeScript
+70426,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+70427,C#;SQL
+70428,C#;HTML/CSS;Java;JavaScript;SQL
+70429,HTML/CSS;JavaScript
+70430,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+70431,C;C++;HTML/CSS;Python
+70432,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+70433,Go;JavaScript;Python;Ruby;SQL;TypeScript
+70434,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+70435,Assembly;Bash/Shell/PowerShell;C;Clojure;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+70436,Go;HTML/CSS;JavaScript;Python;TypeScript
+70437,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+70438,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly;Other(s):
+70439,JavaScript;PHP;SQL
+70440,HTML/CSS;Java;JavaScript;SQL
+70441,Python;R
+70442,HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+70443,HTML/CSS;Java;JavaScript;Python;R;SQL
+70444,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+70445,HTML/CSS;JavaScript;Ruby
+70446,C;C++;Java;Kotlin
+70447,Assembly;Bash/Shell/PowerShell;C;C++;Objective-C;Swift
+70448,C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+70449,C#;JavaScript;SQL;TypeScript
+70450,C#;JavaScript;TypeScript
+70451,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70452,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Swift;TypeScript
+70453,HTML/CSS;JavaScript;Other(s):
+70454,C#;Java
+70455,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+70456,C++;HTML/CSS;Java;Python;Ruby
+70457,C++;HTML/CSS;JavaScript;PHP;SQL
+70458,Java;Python
+70459,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+70460,C;C++;Java;Kotlin;Swift
+70461,Python
+70462,Bash/Shell/PowerShell;Go;HTML/CSS;Objective-C;Python;R;Swift
+70463,HTML/CSS;JavaScript
+70464,C;Dart;JavaScript;SQL
+70465,HTML/CSS;JavaScript;PHP;SQL
+70466,Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL
+70467,HTML/CSS;JavaScript;TypeScript
+70468,Bash/Shell/PowerShell;C#;R;SQL;VBA
+70469,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+70470,Java;Python;R
+70471,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+70472,C;C++;Java;Objective-C;Python
+70473,C#;HTML/CSS;Java;JavaScript;PHP
+70474,C++;C#;HTML/CSS;JavaScript;Python;SQL
+70475,C;HTML/CSS;Java;SQL;VBA
+70476,HTML/CSS;Java;PHP;Python;SQL
+70477,SQL
+70478,HTML/CSS;Java;JavaScript;SQL
+70479,C#;HTML/CSS;JavaScript;PHP;SQL
+70480,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+70481,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70482,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+70483,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+70484,C#;JavaScript
+70485,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+70486,Bash/Shell/PowerShell;C++;C#;PHP;Ruby
+70487,R;SQL;VBA
+70488,Dart;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+70489,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+70490,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+70491,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+70492,Assembly;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+70493,Bash/Shell/PowerShell;C#;Go;JavaScript;Python
+70494,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+70495,HTML/CSS;JavaScript
+70496,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70497,HTML/CSS;JavaScript;Python;Scala
+70498,Java;JavaScript;Kotlin
+70499,Java
+70500,C++;VBA;Other(s):
+70501,HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+70502,HTML/CSS;JavaScript;PHP;Python;R
+70503,Ruby;Other(s):
+70504,Python;Other(s):
+70505,C#;HTML/CSS;SQL;TypeScript;VBA
+70506,C;Objective-C;PHP;Swift
+70507,HTML/CSS;JavaScript;PHP;Ruby;SQL
+70508,Java;SQL
+70509,C;C++;C#;SQL
+70510,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+70511,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+70512,Assembly;Bash/Shell/PowerShell;Python
+70513,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;WebAssembly
+70514,HTML/CSS;JavaScript;Python;SQL
+70515,HTML/CSS;JavaScript
+70516,Bash/Shell/PowerShell;C++;C#;Python;SQL
+70517,Objective-C;Swift
+70518,HTML/CSS;Java;JavaScript;Python;Ruby;Rust;Swift;TypeScript
+70519,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL
+70520,Bash/Shell/PowerShell;C;C++;Python
+70521,Java
+70522,C;Go;HTML/CSS;Java;JavaScript;PHP;Python
+70523,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70524,Java;JavaScript;SQL
+70525,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+70526,Python;R;SQL
+70527,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+70528,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70529,Python
+70530,HTML/CSS;JavaScript;PHP;Python;TypeScript
+70531,JavaScript;PHP;SQL
+70532,C;C++;Objective-C;Swift
+70533,Other(s):
+70534,C#;F#;JavaScript;TypeScript
+70535,C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+70536,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+70537,Bash/Shell/PowerShell;Python;R
+70538,C;C#;Java;JavaScript;Python;SQL;TypeScript
+70539,Bash/Shell/PowerShell;Go;Python
+70540,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70541,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70542,Python;SQL;Other(s):
+70543,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+70544,Other(s):
+70545,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+70546,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+70547,Java;Kotlin;Scala;SQL
+70548,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70549,Go;HTML/CSS;JavaScript
+70550,HTML/CSS;Java;Python;SQL;VBA
+70551,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;PHP;SQL;TypeScript
+70552,Java;Kotlin;Swift
+70553,HTML/CSS;Java;JavaScript;SQL
+70554,HTML/CSS;JavaScript;PHP;SQL
+70555,Bash/Shell/PowerShell;C#;Go;Python;SQL
+70557,C#;HTML/CSS;SQL
+70558,HTML/CSS;JavaScript;Python;R;SQL
+70559,C#;SQL
+70560,HTML/CSS;PHP;Python;SQL
+70561,Objective-C;Swift
+70562,C#;Java
+70563,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;TypeScript
+70564,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+70565,JavaScript;Python
+70566,C#;HTML/CSS;JavaScript;SQL
+70567,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70568,HTML/CSS;JavaScript;PHP
+70569,C#;Go;HTML/CSS;Java;Kotlin;SQL
+70570,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;SQL;VBA;WebAssembly
+70571,Assembly;Bash/Shell/PowerShell;C;C#;Java;Python;Other(s):
+70572,Go;HTML/CSS;Java;PHP;SQL;Swift
+70573,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Swift;TypeScript
+70574,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70575,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+70576,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python
+70577,HTML/CSS;Java;JavaScript;SQL
+70578,Java
+70579,Python
+70580,Scala;SQL;Other(s):
+70581,C#;HTML/CSS
+70582,HTML/CSS;JavaScript;PHP;Python;SQL
+70583,Bash/Shell/PowerShell;C;Java;Python;Rust
+70584,Assembly;Bash/Shell/PowerShell;C;Other(s):
+70585,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+70586,C;C#;HTML/CSS;Java;JavaScript;R;SQL
+70587,Go;HTML/CSS;Java;JavaScript;WebAssembly
+70588,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+70589,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+70590,SQL
+70591,Bash/Shell/PowerShell;C;C++;Java;Python;Scala
+70592,Go;Python;SQL
+70593,C#;HTML/CSS;SQL;TypeScript
+70594,HTML/CSS;Python;SQL
+70595,Assembly;Bash/Shell/PowerShell;C;C++;C#
+70596,JavaScript;PHP;SQL
+70597,HTML/CSS;Java;JavaScript;Python;SQL
+70598,C++;C#;HTML/CSS;JavaScript;SQL
+70599,C#;HTML/CSS;JavaScript;SQL
+70600,HTML/CSS;JavaScript;PHP
+70601,Bash/Shell/PowerShell;C;C++;Python
+70602,Python;R;SQL
+70603,Other(s):
+70604,C;C++;Java;Python
+70605,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+70606,C#;Java;JavaScript
+70607,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+70608,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70609,C#;Java;JavaScript;PHP;SQL
+70611,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+70612,Bash/Shell/PowerShell;Java;Python;Rust
+70613,C#;Java;JavaScript;SQL
+70614,Bash/Shell/PowerShell;Clojure
+70615,HTML/CSS;JavaScript;Python;Ruby;SQL
+70616,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP;Python;Rust
+70617,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+70618,C#;JavaScript;SQL
+70619,C;C++;HTML/CSS;Java;PHP
+70620,C#;HTML/CSS;JavaScript;SQL
+70621,HTML/CSS;JavaScript;PHP;SQL
+70622,HTML/CSS;JavaScript
+70623,HTML/CSS;JavaScript;PHP;Python;SQL
+70624,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL
+70625,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70626,Assembly;Bash/Shell/PowerShell;C;C++;C#;Objective-C;Python;Other(s):
+70627,HTML/CSS;JavaScript;PHP;SQL
+70628,C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+70629,Bash/Shell/PowerShell;Python
+70631,C;HTML/CSS;Python
+70632,C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70633,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+70634,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+70635,Python;R;SQL
+70637,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70638,HTML/CSS;JavaScript;PHP;Python;SQL
+70639,C;HTML/CSS;Java;SQL;Swift
+70640,Go;Objective-C;Python;SQL
+70641,C++;C#;HTML/CSS;SQL;Other(s):
+70642,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;SQL;Swift
+70643,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Swift
+70644,HTML/CSS;JavaScript;PHP;SQL
+70645,C#;JavaScript
+70646,C;HTML/CSS;JavaScript
+70647,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70648,Assembly;Bash/Shell/PowerShell;C++;Java;Kotlin;Python;R;SQL
+70649,HTML/CSS;Java;PHP;Scala;SQL;Swift
+70650,Bash/Shell/PowerShell;JavaScript;Scala;SQL
+70651,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+70652,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+70653,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+70654,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+70655,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+70656,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+70657,HTML/CSS;JavaScript;Python
+70658,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70659,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+70660,C;C++;C#
+70661,HTML/CSS;Java;JavaScript;Python;SQL
+70662,Java;JavaScript;SQL
+70663,C#;SQL
+70664,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+70665,C;HTML/CSS;JavaScript;Python;SQL
+70666,Go;HTML/CSS;JavaScript;Python;SQL
+70667,C#
+70668,Python
+70669,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+70670,Bash/Shell/PowerShell;C
+70671,R
+70672,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Kotlin;PHP;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+70673,C#;HTML/CSS;JavaScript
+70674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+70675,HTML/CSS;JavaScript;PHP;SQL
+70676,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70677,HTML/CSS;Java;JavaScript;SQL
+70678,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;VBA;Other(s):
+70679,C++;Go;Java;JavaScript;PHP;SQL
+70680,C++;HTML/CSS;Java;JavaScript;SQL
+70681,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Scala;SQL
+70682,Java;JavaScript;Python;Scala;SQL
+70683,C#;HTML/CSS;JavaScript
+70684,C#;HTML/CSS;JavaScript;PHP;SQL
+70685,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL
+70686,Bash/Shell/PowerShell;Java;Python;Scala;SQL;TypeScript
+70687,C;C++;Java;Python;SQL
+70688,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+70689,JavaScript;Python;R;SQL;TypeScript
+70690,HTML/CSS;Java;JavaScript;SQL
+70691,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL
+70692,Java;R;SQL
+70693,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+70694,JavaScript;Other(s):
+70695,PHP;Python
+70696,C#;Python;Other(s):
+70697,C++;HTML/CSS;JavaScript;TypeScript
+70698,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70699,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70700,HTML/CSS;JavaScript;Python;SQL
+70701,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+70702,Assembly;C++;C#;Dart;PHP;SQL
+70703,Bash/Shell/PowerShell;JavaScript;SQL;TypeScript
+70704,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+70705,HTML/CSS;JavaScript;Python;SQL
+70706,JavaScript;Ruby;TypeScript;Other(s):
+70707,JavaScript;PHP
+70708,HTML/CSS;JavaScript;PHP
+70709,VBA
+70710,C;HTML/CSS;JavaScript;PHP;Python;SQL
+70711,C;C++;C#;HTML/CSS;Java;Python;R
+70712,Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+70713,HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+70714,C#;HTML/CSS;JavaScript;SQL
+70715,Python;R;SQL;Other(s):
+70716,Bash/Shell/PowerShell;Python;Ruby;SQL
+70717,C#;Ruby
+70718,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70719,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+70720,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70721,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Kotlin;Python;Rust
+70722,C++;HTML/CSS;Java
+70723,HTML/CSS;Java;JavaScript;SQL
+70724,C#;HTML/CSS;JavaScript;SQL
+70725,C;Java
+70726,C;HTML/CSS;JavaScript;PHP;SQL
+70727,Objective-C;Swift
+70728,C;C++;C#;HTML/CSS;Java;SQL
+70729,Objective-C;Swift
+70730,Bash/Shell/PowerShell;Go;Python;SQL
+70731,Assembly;Bash/Shell/PowerShell;C;C++;Python
+70732,Java;Python
+70733,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Other(s):
+70734,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+70735,C#;SQL
+70736,C;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70737,Assembly;C++;HTML/CSS;JavaScript;Python;Other(s):
+70738,C;C++;HTML/CSS;Java;SQL;Swift
+70739,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+70740,C;HTML/CSS;Java;PHP;SQL
+70741,HTML/CSS;JavaScript;PHP
+70742,Assembly;Java;Ruby;SQL
+70743,HTML/CSS;JavaScript;PHP
+70744,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python
+70745,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;F#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+70747,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+70748,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70749,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+70750,HTML/CSS;JavaScript;Python;Scala;WebAssembly
+70751,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+70752,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+70753,HTML/CSS;PHP;Swift;TypeScript
+70754,Bash/Shell/PowerShell
+70755,HTML/CSS;JavaScript;Python
+70756,Python
+70757,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+70758,HTML/CSS;Java;JavaScript
+70759,Bash/Shell/PowerShell;JavaScript;Python;R
+70760,Java
+70761,Go;PHP
+70762,Objective-C;Swift
+70763,Java;Kotlin;Swift
+70764,Assembly;Bash/Shell/PowerShell;C;C++;Python;R;Rust
+70765,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+70766,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+70767,Bash/Shell/PowerShell;C;Python;SQL;VBA
+70768,C#;HTML/CSS;JavaScript;R;SQL
+70769,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+70770,HTML/CSS;Java;JavaScript;VBA
+70771,JavaScript;Ruby
+70772,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+70773,HTML/CSS;JavaScript;PHP
+70774,JavaScript;PHP;TypeScript
+70775,HTML/CSS;Java;JavaScript;SQL
+70776,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+70777,Java
+70778,HTML/CSS;JavaScript;PHP;SQL
+70779,C#;Java;JavaScript;PHP;Python;SQL;TypeScript
+70780,Bash/Shell/PowerShell;Python;SQL
+70781,C#;HTML/CSS;JavaScript;Ruby;TypeScript
+70782,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+70783,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;VBA
+70784,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+70785,C#;HTML/CSS;Java;JavaScript;SQL
+70786,C#
+70787,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+70788,Go;Python;Rust
+70789,C++;C#;HTML/CSS;JavaScript;Ruby;TypeScript;Other(s):
+70790,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+70791,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Objective-C;Python;Rust;Scala;Swift;WebAssembly
+70792,Python
+70793,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+70794,Assembly;C;C++;C#;HTML/CSS;Java;PHP;SQL
+70795,Rust
+70796,HTML/CSS;Java;JavaScript;Python;SQL
+70797,HTML/CSS;JavaScript;PHP;Python
+70798,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+70799,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+70800,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript;Other(s):
+70801,C#;HTML/CSS;JavaScript;SQL
+70802,Bash/Shell/PowerShell;C#;F#;Java;JavaScript;SQL;TypeScript
+70803,C#;HTML/CSS;Java;JavaScript;TypeScript;VBA
+70804,C++;Python
+70805,Bash/Shell/PowerShell;C#;Java
+70806,C;HTML/CSS;Python
+70807,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+70808,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+70809,C#;Python;Other(s):
+70810,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+70811,C++;C#;Python
+70812,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+70813,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;R;Ruby;Rust
+70814,C#;HTML/CSS;JavaScript;SQL;Other(s):
+70815,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+70816,HTML/CSS;Java;JavaScript;Python;R;SQL
+70817,HTML/CSS;Java;JavaScript;R
+70818,C;Clojure
+70819,Bash/Shell/PowerShell;C#;Go;Python;SQL
+70820,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+70821,Assembly;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+70822,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+70823,Java
+70824,C#;HTML/CSS;JavaScript;SQL
+70825,C#;HTML/CSS;JavaScript;SQL
+70826,C;Java;JavaScript;SQL
+70827,Bash/Shell/PowerShell;C#;Python;SQL
+70828,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+70829,C#;HTML/CSS;Java;SQL;Swift;Other(s):
+70830,Bash/Shell/PowerShell;C++;JavaScript;Python;TypeScript
+70831,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70832,HTML/CSS;Java;JavaScript;SQL
+70833,C#;Python;SQL
+70834,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+70835,Elixir;Go;Python
+70836,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+70837,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+70838,Bash/Shell/PowerShell;C#;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+70839,HTML/CSS;JavaScript;Python;SQL;TypeScript
+70840,Bash/Shell/PowerShell;C#;SQL
+70841,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;SQL
+70842,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+70843,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Other(s):
+70844,C#;HTML/CSS;JavaScript;SQL;TypeScript
+70845,HTML/CSS;JavaScript;SQL;Other(s):
+70846,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;TypeScript
+70847,Assembly;C;C++
+70848,Clojure;HTML/CSS;JavaScript;Ruby;TypeScript
+70849,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+70850,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+70851,Java;PHP;TypeScript
+70852,Bash/Shell/PowerShell;Python
+70853,HTML/CSS;Java;JavaScript;TypeScript
+70854,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+70855,Other(s):
+70856,HTML/CSS;JavaScript;PHP;SQL
+70857,Assembly;C;C++;Go;HTML/CSS;JavaScript;PHP;R;Rust;SQL
+70858,C#;Java;JavaScript;Objective-C;Swift
+70859,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Scala;SQL
+70860,C#;Dart;Elixir;JavaScript;Python
+70861,C#;HTML/CSS;JavaScript;SQL
+70862,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+70863,C++;C#
+70864,HTML/CSS;JavaScript;PHP;Ruby;SQL
+70865,Elixir;HTML/CSS;JavaScript;TypeScript
+70866,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+70867,Go;Java;Kotlin;Swift
+70868,Bash/Shell/PowerShell;Java;Python;SQL
+70869,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL;TypeScript
+70870,Python;SQL
+70871,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+70872,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70873,R
+70874,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+70875,Bash/Shell/PowerShell;JavaScript;SQL;VBA
+70876,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+70877,HTML/CSS;JavaScript
+70878,HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+70879,JavaScript;PHP;SQL;TypeScript
+70880,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+70881,HTML/CSS;Java;JavaScript;SQL
+70882,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70883,C;C++;HTML/CSS;Objective-C;PHP;Python;SQL;Swift
+70884,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+70885,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+70886,C#;JavaScript;Python;Ruby;SQL
+70887,HTML/CSS;JavaScript;Python;TypeScript
+70888,HTML/CSS;Java;JavaScript
+70889,Assembly;C++;Go;Python
+70890,C#;Go;HTML/CSS;Java;Python;Scala;SQL
+70891,C;Java;JavaScript;SQL
+70892,C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+70893,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;Other(s):
+70894,C;C++;C#;HTML/CSS;JavaScript;PHP;Swift
+70895,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;R;SQL
+70896,HTML/CSS;Java;JavaScript
+70897,Bash/Shell/PowerShell;C#;HTML/CSS;VBA
+70898,HTML/CSS;PHP;Python;SQL
+70899,Bash/Shell/PowerShell;C#;HTML/CSS;VBA;Other(s):
+70900,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+70901,Go;HTML/CSS;Java;JavaScript;Objective-C
+70902,HTML/CSS;JavaScript;PHP;Python;SQL
+70903,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+70904,C#
+70905,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;TypeScript
+70906,Bash/Shell/PowerShell;Dart;Java;JavaScript;SQL
+70907,C#;Java;Python
+70908,C++;HTML/CSS;JavaScript;PHP;SQL
+70909,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+70910,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+70911,HTML/CSS;JavaScript;PHP
+70912,C;C++
+70914,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+70915,C++;HTML/CSS;JavaScript;PHP;SQL
+70916,Bash/Shell/PowerShell;JavaScript;Objective-C
+70917,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+70918,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+70919,Bash/Shell/PowerShell;C++;C#;Java;Python;SQL;Other(s):
+70920,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+70921,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+70922,HTML/CSS;JavaScript;PHP
+70923,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+70924,HTML/CSS;JavaScript;PHP
+70925,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift
+70926,Go;HTML/CSS;Java;JavaScript
+70927,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+70928,HTML/CSS;JavaScript;PHP;Python;SQL
+70929,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70930,HTML/CSS;JavaScript;Python
+70931,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+70932,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;PHP;Python;SQL;VBA
+70933,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+70934,C#;JavaScript;SQL;TypeScript
+70935,C#;Dart;HTML/CSS;Java;JavaScript;PHP;Other(s):
+70936,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+70937,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+70938,HTML/CSS;JavaScript
+70939,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+70940,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+70941,Python;SQL
+70942,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+70943,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+70944,HTML/CSS;Java;PHP;SQL;TypeScript;Other(s):
+70945,HTML/CSS;JavaScript
+70946,C#;HTML/CSS;JavaScript;Python
+70947,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;Python;R;SQL;Other(s):
+70948,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;TypeScript
+70949,C#;HTML/CSS;JavaScript
+70950,Bash/Shell/PowerShell;Python
+70951,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+70952,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+70953,HTML/CSS;Java;JavaScript;SQL
+70954,HTML/CSS;JavaScript;PHP;Ruby
+70956,C;C++;C#;Python
+70957,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+70958,C#;JavaScript;SQL
+70959,HTML/CSS;JavaScript;PHP;SQL
+70960,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+70961,C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+70962,C#;Python;VBA
+70963,C#;HTML/CSS;JavaScript;TypeScript
+70964,Java
+70965,Java;JavaScript;SQL
+70966,C++;HTML/CSS;Java
+70967,HTML/CSS;PHP
+70968,HTML/CSS;Java;JavaScript;PHP;SQL
+70969,Bash/Shell/PowerShell;C;C#;Java;PHP;Python;SQL
+70970,HTML/CSS;JavaScript;PHP;SQL
+70971,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+70972,C#;HTML/CSS
+70973,Bash/Shell/PowerShell;Python;R;SQL
+70974,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+70975,Java;Python;Scala;SQL
+70976,HTML/CSS;Java;JavaScript;SQL
+70977,Java
+70978,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+70979,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+70980,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+70981,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL
+70982,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;VBA
+70983,C#;HTML/CSS;JavaScript;SQL
+70984,HTML/CSS;JavaScript;PHP;SQL
+70986,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+70987,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+70988,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+70989,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+70990,C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+70991,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Python;Swift;TypeScript
+70992,HTML/CSS;JavaScript;Python;SQL
+70993,C;HTML/CSS;JavaScript;Python
+70994,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+70995,C;C++;Java;JavaScript;Rust;Scala
+70996,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+70997,C;C++;HTML/CSS;Java;JavaScript;Kotlin
+70998,Bash/Shell/PowerShell;C++;C#;Java;Python;Other(s):
+70999,HTML/CSS;JavaScript;SQL;Other(s):
+71000,HTML/CSS;Java;JavaScript
+71001,Bash/Shell/PowerShell;C++;C#;VBA
+71002,HTML/CSS
+71003,C++;Python
+71004,Clojure;Dart;JavaScript;Python;Rust;SQL;Swift
+71005,C#
+71007,Bash/Shell/PowerShell;Java
+71008,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;R;SQL
+71009,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+71010,C#;Other(s):
+71011,C#;HTML/CSS;Java
+71012,Python
+71013,HTML/CSS;JavaScript;Python;SQL
+71014,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+71015,Bash/Shell/PowerShell;C++;JavaScript;Objective-C;Python;SQL;Swift
+71016,Java;JavaScript
+71017,Dart;HTML/CSS;Java;JavaScript;Python
+71018,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+71019,C++;C#;Go;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+71020,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+71021,Bash/Shell/PowerShell;C;C++;Go;Java
+71022,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+71023,C;C++;Java;Ruby;SQL
+71024,HTML/CSS;JavaScript;Python;SQL;TypeScript
+71025,Assembly;C;C++
+71026,Java
+71027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+71028,HTML/CSS;JavaScript
+71029,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+71030,Bash/Shell/PowerShell;Python;Other(s):
+71031,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL;Swift;TypeScript
+71032,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+71033,HTML/CSS;JavaScript;PHP;SQL
+71034,Bash/Shell/PowerShell;Java;Scala
+71035,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+71036,C#;HTML/CSS;JavaScript;Python
+71037,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+71038,C;C++;Java
+71039,C;C++;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+71040,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+71041,C#;HTML/CSS;JavaScript;SQL
+71042,HTML/CSS;JavaScript;TypeScript
+71043,HTML/CSS;JavaScript;PHP
+71044,C++;HTML/CSS;Python
+71045,C;Java;Objective-C;Ruby;SQL;Swift
+71046,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;SQL
+71047,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;TypeScript
+71048,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71049,HTML/CSS;JavaScript;PHP;TypeScript
+71050,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Rust;SQL
+71051,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+71052,C#;HTML/CSS;Python;SQL
+71053,HTML/CSS;JavaScript;Python;SQL
+71054,C#;Java;JavaScript;SQL
+71056,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+71057,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;Other(s):
+71058,Clojure;HTML/CSS;Other(s):
+71059,JavaScript;Ruby
+71060,Assembly;Bash/Shell/PowerShell;C;Python;R;Other(s):
+71061,HTML/CSS;JavaScript;PHP;VBA
+71062,Go;HTML/CSS;JavaScript;Python;SQL
+71063,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;SQL
+71064,Python;SQL
+71065,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;Swift
+71066,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+71067,Java;Objective-C;Python;Ruby;Swift
+71068,Bash/Shell/PowerShell;C#;JavaScript
+71069,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71070,C#;HTML/CSS
+71071,C;HTML/CSS;JavaScript;PHP;SQL
+71072,HTML/CSS;JavaScript;SQL
+71073,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+71074,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+71075,HTML/CSS;JavaScript;Python;TypeScript
+71076,Other(s):
+71077,HTML/CSS;JavaScript;PHP;SQL
+71078,Bash/Shell/PowerShell;Java;Python;R;Scala;SQL;Other(s):
+71079,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71080,Java;JavaScript;Python;SQL
+71081,Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP
+71082,C#;HTML/CSS;JavaScript;SQL;VBA
+71083,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+71084,Java
+71085,C++;Java;JavaScript;Other(s):
+71086,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+71087,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+71088,C#;Go;HTML/CSS;SQL;TypeScript
+71089,C#;Python
+71090,HTML/CSS;JavaScript;PHP
+71091,Java
+71092,Go;HTML/CSS;JavaScript;SQL;TypeScript
+71093,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+71094,Go;HTML/CSS;Java;JavaScript;Python;R
+71095,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+71096,C#;HTML/CSS;JavaScript;SQL
+71097,C++;Python
+71098,HTML/CSS;Java;SQL;TypeScript
+71099,C#;Go;HTML/CSS;R;SQL
+71100,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+71101,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Scala;TypeScript
+71102,HTML/CSS;JavaScript;SQL;TypeScript
+71103,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+71104,C++;C#;HTML/CSS;JavaScript
+71105,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+71106,Bash/Shell/PowerShell;JavaScript;PHP;Python
+71107,C;C++;Java;JavaScript;Python
+71108,HTML/CSS;JavaScript
+71109,Bash/Shell/PowerShell;Go;PHP;Python;Ruby
+71110,HTML/CSS;Java;JavaScript;Ruby;Swift;TypeScript
+71111,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+71112,C;Java;VBA
+71113,C;C++;HTML/CSS;PHP;SQL
+71114,C;C++;Python;R
+71115,Assembly;Bash/Shell/PowerShell;C;C++;Objective-C
+71116,C#;HTML/CSS;JavaScript;PHP;SQL
+71118,Java;JavaScript;PHP;Python;SQL
+71119,C#;HTML/CSS;JavaScript;SQL
+71120,C#;HTML/CSS;JavaScript;SQL
+71121,HTML/CSS;Java;JavaScript;SQL
+71122,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+71123,HTML/CSS;PHP;SQL
+71124,Assembly;Java;Other(s):
+71125,HTML/CSS;JavaScript;PHP;TypeScript
+71126,HTML/CSS;Java;JavaScript;PHP;SQL
+71127,HTML/CSS;Java;Python;SQL
+71128,C#;Java;JavaScript;TypeScript
+71129,C#;HTML/CSS;JavaScript;SQL
+71130,C#;HTML/CSS;JavaScript;SQL
+71131,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+71132,C;HTML/CSS;JavaScript;Python;TypeScript
+71133,Assembly;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+71134,Bash/Shell/PowerShell;JavaScript;Python;SQL
+71135,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71136,Bash/Shell/PowerShell;C;C++;Go;Python;Ruby;Rust;SQL
+71137,HTML/CSS;JavaScript;PHP;SQL
+71138,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+71139,C#;HTML/CSS;JavaScript;SQL;VBA
+71140,C#;HTML/CSS;Python;R;Scala;SQL
+71141,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+71142,Java;Scala;SQL
+71143,C;C++;C#;HTML/CSS;Java;JavaScript
+71144,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71145,HTML/CSS;JavaScript;Python;Ruby
+71146,HTML/CSS;Java;JavaScript;Python;SQL
+71147,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+71148,Assembly;C;C++;C#;Java;JavaScript;PHP;SQL;VBA;Other(s):
+71149,Python
+71150,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Other(s):
+71151,HTML/CSS;JavaScript;Python;SQL
+71152,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Kotlin;Rust;Scala
+71153,C;HTML/CSS;Java;JavaScript;PHP;SQL
+71154,C#;HTML/CSS;JavaScript;PHP;SQL
+71155,C++;HTML/CSS;Java;JavaScript;Python
+71156,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+71157,HTML/CSS;Java;JavaScript;SQL;TypeScript
+71158,Python;R
+71159,Bash/Shell/PowerShell;C;Java;Python;R;Scala;Other(s):
+71161,C#;Python;SQL
+71162,C;C++;Dart;HTML/CSS;Java;PHP;Python;R;Ruby;SQL;VBA
+71163,HTML/CSS;JavaScript;SQL
+71164,C#;HTML/CSS;TypeScript
+71165,JavaScript;Python;SQL
+71166,C#
+71167,C#;HTML/CSS;JavaScript;PHP
+71168,Python;SQL
+71169,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;TypeScript
+71170,C;HTML/CSS;JavaScript;Python
+71171,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+71172,Bash/Shell/PowerShell;Java;Kotlin
+71174,C;C++;JavaScript;PHP;Python;SQL
+71175,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+71176,C#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+71177,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71179,HTML/CSS;Java;JavaScript;PHP;WebAssembly
+71180,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+71181,HTML/CSS;Java;JavaScript;PHP
+71182,JavaScript;PHP;TypeScript
+71183,C#;HTML/CSS;JavaScript;SQL
+71184,HTML/CSS;JavaScript;PHP;Python
+71185,C#
+71186,Java;SQL
+71187,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+71188,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+71190,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;SQL
+71191,HTML/CSS;JavaScript;PHP;SQL
+71192,C;Java
+71193,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71194,C;C++;HTML/CSS
+71195,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+71196,JavaScript;Python
+71197,PHP
+71198,HTML/CSS;Java;JavaScript
+71199,HTML/CSS;Java;JavaScript;SQL
+71200,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;R;SQL
+71201,Assembly;Bash/Shell/PowerShell;C#;Rust
+71202,Bash/Shell/PowerShell;HTML/CSS;Python
+71203,JavaScript
+71204,Java;Kotlin;Objective-C;Swift
+71205,C#;HTML/CSS;JavaScript
+71206,C#;HTML/CSS;JavaScript;SQL
+71207,Bash/Shell/PowerShell;C;C++
+71208,Java;Kotlin;Python;SQL
+71209,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+71210,C#;JavaScript;SQL
+71211,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Scala;TypeScript
+71212,C++;C#;Other(s):
+71213,HTML/CSS;JavaScript;PHP;Ruby;SQL
+71214,Go;Python;R
+71215,Bash/Shell/PowerShell;Clojure;Java;Ruby;SQL
+71216,C;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+71217,Python;Swift
+71218,Bash/Shell/PowerShell;Go;PHP
+71219,HTML/CSS;JavaScript
+71220,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+71221,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+71222,Python;VBA
+71223,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;Objective-C;PHP;SQL;Swift;TypeScript;VBA;WebAssembly
+71224,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+71225,Assembly;C;C++;C#;Java;Python
+71226,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+71227,C;C++;HTML/CSS
+71228,JavaScript;PHP
+71229,C#;HTML/CSS;JavaScript;SQL
+71230,JavaScript;PHP;SQL
+71231,HTML/CSS;JavaScript
+71232,Assembly;Bash/Shell/PowerShell;C;C++;C#;Ruby;SQL
+71233,HTML/CSS;JavaScript
+71234,Bash/Shell/PowerShell;Python;R;SQL
+71235,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+71236,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+71237,C#;HTML/CSS;JavaScript;Rust;TypeScript;VBA
+71238,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+71239,Bash/Shell/PowerShell;Java;Objective-C;SQL;Swift
+71240,C++;C#;HTML/CSS;JavaScript;TypeScript
+71241,C;C++;HTML/CSS;Python
+71242,HTML/CSS;JavaScript;SQL
+71243,HTML/CSS;JavaScript;Python;Swift
+71244,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;Python
+71245,HTML/CSS;JavaScript;Python;Other(s):
+71246,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+71247,C#;JavaScript;SQL;TypeScript;WebAssembly
+71248,Bash/Shell/PowerShell;C++;C#;Elixir;HTML/CSS;JavaScript;Python;Ruby;Rust;Swift;WebAssembly
+71249,C++;C#;Dart;Java;JavaScript
+71250,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+71251,Bash/Shell/PowerShell;C;Python;SQL;VBA
+71252,C++;Java
+71253,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;SQL;Swift
+71254,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;SQL;TypeScript
+71255,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71256,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+71257,Java;JavaScript
+71258,C++;C#;Objective-C;Swift
+71259,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+71260,HTML/CSS;JavaScript
+71261,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+71262,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+71263,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+71264,Bash/Shell/PowerShell;SQL;Other(s):
+71265,Bash/Shell/PowerShell;Python;Other(s):
+71267,HTML/CSS;Java;Kotlin;SQL;TypeScript
+71268,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+71269,Bash/Shell/PowerShell;Python;R
+71270,Java
+71271,C;C#;Java;JavaScript;PHP;SQL
+71272,C#;HTML/CSS;JavaScript;SQL
+71273,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+71274,C;C++;HTML/CSS;JavaScript;Python;SQL
+71275,C;C++;Python
+71276,C#;HTML/CSS
+71277,C#;HTML/CSS;JavaScript;PHP
+71278,Assembly;C;Python
+71279,Python;R;SQL
+71280,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+71281,HTML/CSS;JavaScript;TypeScript
+71283,C++;Java;Python
+71284,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+71285,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+71287,HTML/CSS;JavaScript;TypeScript
+71288,HTML/CSS;JavaScript;Python;R;SQL
+71289,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+71290,Bash/Shell/PowerShell;C#;Go;Java;Python
+71291,C++;C#;Python
+71292,C#;HTML/CSS;SQL;TypeScript;VBA
+71293,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+71294,Bash/Shell/PowerShell;Elixir;Erlang;Go;JavaScript;Ruby
+71295,Assembly;C++;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+71296,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71297,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;Rust;SQL
+71298,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+71299,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+71300,Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+71301,Bash/Shell/PowerShell;Java;Kotlin;PHP
+71302,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+71303,C;C++;C#;JavaScript;SQL
+71304,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+71305,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+71306,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+71307,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python;Ruby
+71308,Assembly;Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL
+71309,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin
+71310,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71311,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+71312,Bash/Shell/PowerShell;C++;Python;SQL
+71313,HTML/CSS;JavaScript
+71314,HTML/CSS;JavaScript;SQL
+71315,C++;C#;HTML/CSS;SQL
+71316,HTML/CSS;JavaScript;R
+71317,C++;C#
+71318,Bash/Shell/PowerShell;C;HTML/CSS;Python;R;Ruby;Rust;SQL
+71319,C++;C#;Java;Kotlin;Python
+71320,Bash/Shell/PowerShell;Python
+71321,Python;TypeScript
+71322,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+71323,C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+71324,C;C++;C#;HTML/CSS;Java;Objective-C;PHP;SQL;Swift
+71325,Python;R;SQL
+71326,HTML/CSS;Java;JavaScript;Python;SQL
+71327,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+71328,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+71329,Bash/Shell/PowerShell;C++;Python;SQL
+71330,PHP;Python
+71332,C#;JavaScript
+71333,Bash/Shell/PowerShell;C;Go;HTML/CSS;PHP;Python;Ruby
+71334,C#;Java;JavaScript;Objective-C;Ruby;SQL;Swift
+71335,C;C++;HTML/CSS;JavaScript
+71336,Java;JavaScript;Kotlin;SQL;Swift
+71337,HTML/CSS;Java
+71338,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+71339,Assembly;Bash/Shell/PowerShell;C#;Python
+71340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+71341,JavaScript;Ruby;SQL
+71343,Java;JavaScript;Python
+71344,C;C++
+71345,C#;Go;HTML/CSS;JavaScript;Python
+71346,Assembly;C;C++;Clojure;Elixir;HTML/CSS;Java;JavaScript;PHP;Python
+71347,Bash/Shell/PowerShell;Go;JavaScript;TypeScript
+71348,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+71349,C#;Java;JavaScript;Kotlin;Swift;TypeScript
+71351,C#;SQL;Other(s):
+71352,Java;JavaScript;Objective-C;Python;SQL;Swift
+71353,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;SQL
+71354,C#;JavaScript;SQL;TypeScript
+71355,C#;HTML/CSS;Java;JavaScript;TypeScript
+71356,Bash/Shell/PowerShell;C;JavaScript;Python;R;TypeScript
+71357,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Rust;Swift
+71358,Bash/Shell/PowerShell;JavaScript;TypeScript
+71359,HTML/CSS;JavaScript;Python;TypeScript
+71360,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+71361,C;HTML/CSS;Java;PHP;TypeScript
+71362,C;HTML/CSS;Java;JavaScript;PHP;SQL
+71363,Bash/Shell/PowerShell;C#;Go;Python;Ruby;SQL
+71364,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+71365,Bash/Shell/PowerShell
+71366,HTML/CSS;Java;JavaScript;PHP;Ruby
+71367,Python
+71368,HTML/CSS;JavaScript;PHP;SQL
+71369,C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+71370,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+71371,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+71372,C;HTML/CSS;JavaScript;Python
+71373,Java
+71374,JavaScript;Python;SQL
+71375,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL
+71376,HTML/CSS;JavaScript;Ruby
+71377,Java;JavaScript;R;TypeScript;VBA
+71378,Bash/Shell/PowerShell;Java;JavaScript;SQL
+71379,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+71380,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+71381,HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;TypeScript
+71382,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+71383,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71384,Bash/Shell/PowerShell;HTML/CSS;Python;VBA;Other(s):
+71385,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Objective-C;Python;SQL;Swift
+71386,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71387,Bash/Shell/PowerShell;Python;SQL
+71388,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+71389,SQL;Other(s):
+71390,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71391,C;C++;Java;Python;SQL;VBA
+71392,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+71393,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+71394,C++;HTML/CSS;Java;JavaScript;PHP
+71395,Java;Ruby
+71396,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python
+71397,Objective-C;Python;Swift
+71398,C;C++;C#;Java;Objective-C;Python
+71399,C#;JavaScript;SQL
+71400,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+71401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;TypeScript
+71402,C#;Java;Python
+71403,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+71404,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+71405,Bash/Shell/PowerShell;PHP;Python;SQL
+71406,Elixir;Go;HTML/CSS;JavaScript;SQL;TypeScript
+71407,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+71408,Bash/Shell/PowerShell;Java;Python;R;Other(s):
+71409,HTML/CSS;Java;Python;R;SQL
+71410,Bash/Shell/PowerShell;C++;C#;SQL
+71411,C#;HTML/CSS;JavaScript;PHP;SQL
+71412,Bash/Shell/PowerShell;C#;Erlang;JavaScript;SQL;Other(s):
+71413,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+71414,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;R;SQL
+71416,HTML/CSS;JavaScript;PHP;SQL
+71417,C;C++
+71418,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+71419,C++;HTML/CSS;JavaScript;Python;Rust
+71420,Java;Python
+71421,C#;JavaScript;Python
+71422,HTML/CSS;Java;JavaScript;PHP;Ruby;TypeScript
+71423,Bash/Shell/PowerShell;Java;JavaScript;Python;Swift;TypeScript
+71424,Python;VBA
+71425,JavaScript;PHP;SQL;Other(s):
+71426,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+71427,Bash/Shell/PowerShell;C;Python;SQL;Swift;Other(s):
+71428,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;VBA
+71429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+71430,Assembly;C++;Java;JavaScript;Python
+71431,C#;Python
+71432,C#;HTML/CSS;SQL
+71433,Python
+71434,HTML/CSS;Java;JavaScript
+71435,C#;HTML/CSS;JavaScript;SQL
+71436,C++;Java;JavaScript;Python
+71437,C++;C#;HTML/CSS;Java;Objective-C;PHP;Python;SQL;VBA
+71438,HTML/CSS;JavaScript;Rust;SQL
+71439,SQL
+71440,C;C++;Java;JavaScript;Kotlin
+71441,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+71442,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Swift
+71443,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+71444,HTML/CSS;JavaScript;Python;R;VBA
+71445,Java;Python
+71446,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+71447,Bash/Shell/PowerShell;Python
+71448,Python;R;Ruby;VBA
+71449,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+71450,HTML/CSS;JavaScript;Other(s):
+71451,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+71452,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+71453,HTML/CSS;JavaScript;SQL;TypeScript
+71454,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+71455,C;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71456,HTML/CSS;JavaScript
+71457,C#;HTML/CSS;Java;Kotlin;SQL
+71458,C++;Python
+71459,Java;Kotlin
+71460,Bash/Shell/PowerShell;C;C++;SQL
+71461,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+71462,HTML/CSS;Java;JavaScript
+71463,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala
+71464,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+71465,Bash/Shell/PowerShell;Java;JavaScript;SQL
+71466,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;VBA
+71467,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+71468,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+71469,HTML/CSS;JavaScript;PHP
+71470,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+71471,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+71472,HTML/CSS;JavaScript;Python;TypeScript
+71473,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71474,C
+71475,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+71476,JavaScript;TypeScript;Other(s):
+71477,Java;JavaScript;SQL;Swift
+71478,HTML/CSS
+71479,C#;HTML/CSS;JavaScript;SQL;VBA
+71480,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL;Swift;TypeScript
+71481,HTML/CSS;Java;PHP;SQL
+71482,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust;Swift;WebAssembly
+71483,C;C++;Objective-C;Rust;Swift
+71484,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+71485,C;C#;JavaScript
+71486,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+71487,Bash/Shell/PowerShell;Kotlin;Python;R;SQL
+71488,Java;Kotlin
+71489,Bash/Shell/PowerShell;Java
+71490,C#;JavaScript;PHP;Python;SQL
+71491,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+71492,HTML/CSS;JavaScript;Ruby
+71493,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+71494,Elixir;JavaScript;Ruby;SQL
+71495,C#;HTML/CSS;JavaScript;SQL
+71496,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+71497,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+71498,C#;HTML/CSS;JavaScript;Swift;TypeScript
+71499,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP;Python;R
+71500,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+71501,C++;Python;Ruby
+71502,Python;R;SQL
+71503,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+71504,HTML/CSS;JavaScript
+71505,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+71506,C++;HTML/CSS;Java;Python;R;VBA
+71507,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+71508,Python;SQL
+71509,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+71510,Bash/Shell/PowerShell;JavaScript;Python;SQL
+71511,C#;SQL;TypeScript
+71512,C++;JavaScript;PHP;SQL
+71513,Objective-C;Swift
+71514,C#;Dart;HTML/CSS;JavaScript;PHP;Ruby;SQL
+71515,C#;Go;Java;Python;Ruby
+71516,C;C++;Python;SQL
+71517,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL
+71518,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71519,Bash/Shell/PowerShell;C++;Python;SQL
+71520,Assembly;Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+71521,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;Other(s):
+71522,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Python;Rust;SQL;TypeScript;WebAssembly
+71523,C#;HTML/CSS;JavaScript;R;SQL;VBA
+71524,C#;HTML/CSS;JavaScript;SQL
+71525,Bash/Shell/PowerShell;C++;SQL
+71526,HTML/CSS;JavaScript;Ruby;SQL
+71527,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+71528,Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL
+71529,C++;HTML/CSS;Java;Python
+71530,HTML/CSS;Java;JavaScript;SQL
+71531,JavaScript
+71532,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+71533,C#;VBA
+71534,HTML/CSS;JavaScript;SQL
+71535,Bash/Shell/PowerShell;C;C++;Java;Rust;Scala
+71536,C#
+71537,Assembly;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+71538,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Python;SQL
+71539,Assembly;C++;C#;SQL
+71540,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+71541,Bash/Shell/PowerShell;JavaScript;Kotlin;Python;Swift;TypeScript
+71542,C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+71543,Python
+71544,HTML/CSS;JavaScript;Python;TypeScript
+71545,C;C#;Rust
+71546,C#;HTML/CSS;JavaScript;TypeScript
+71547,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+71548,JavaScript;Python;SQL
+71550,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+71551,Bash/Shell/PowerShell;Erlang;Go;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly
+71552,Java;JavaScript;SQL
+71553,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+71554,C;C++;C#;HTML/CSS;Python
+71555,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+71556,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+71557,C;C#;Python;R;Other(s):
+71558,HTML/CSS;JavaScript;Ruby;SQL
+71559,HTML/CSS;Java;JavaScript;PHP
+71560,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL
+71561,HTML/CSS;JavaScript;PHP;Python
+71562,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+71563,HTML/CSS;Java;JavaScript;Kotlin;PHP;Scala;SQL
+71564,HTML/CSS;JavaScript;Python;SQL
+71565,HTML/CSS;JavaScript;PHP
+71566,Bash/Shell/PowerShell;C;JavaScript;Python;Rust
+71567,C;Java;Python
+71568,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift
+71569,C#;HTML/CSS;JavaScript;SQL
+71570,Java;Python
+71571,C#;Python;SQL
+71572,C++;C#;F#;HTML/CSS;JavaScript;SQL
+71573,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+71574,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71575,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+71576,C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+71577,JavaScript;Python;R
+71578,Java;JavaScript;SQL;TypeScript
+71579,C#;HTML/CSS;JavaScript;SQL
+71580,HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+71581,Bash/Shell/PowerShell;Python;SQL;VBA
+71582,C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+71583,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+71584,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+71585,Bash/Shell/PowerShell;C;C++;Python;R;Other(s):
+71586,Bash/Shell/PowerShell;C;C++;Python;Rust
+71587,C#;Go;HTML/CSS;R;SQL
+71588,HTML/CSS;JavaScript;PHP;Ruby;SQL
+71589,C;C++;Java;JavaScript
+71590,HTML/CSS;JavaScript;PHP;SQL
+71591,C;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+71592,C#;HTML/CSS;JavaScript;SQL
+71593,Java;JavaScript;Kotlin;PHP;Python;R;SQL;Other(s):
+71594,C++;C#
+71595,Java;JavaScript;Kotlin;SQL
+71596,Bash/Shell/PowerShell;C;Python;SQL
+71597,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;VBA
+71598,Go;JavaScript;Python
+71599,Python
+71600,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+71601,Go;JavaScript;Python;TypeScript
+71602,HTML/CSS;JavaScript;Scala;TypeScript
+71603,C++;C#;Dart;HTML/CSS;JavaScript;Kotlin;Python;Ruby;Scala;SQL;Swift
+71604,HTML/CSS;Java;JavaScript;SQL
+71605,C;C++;C#;HTML/CSS;Java;Python;SQL
+71606,HTML/CSS;Java;JavaScript;PHP;SQL
+71607,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Scala;SQL
+71608,HTML/CSS;Java;JavaScript;SQL
+71609,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+71610,Go;Python;SQL
+71611,C;C++;HTML/CSS;Java;JavaScript;Python
+71612,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71613,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R
+71614,C++;HTML/CSS;JavaScript;Kotlin;PHP;Python;TypeScript
+71615,HTML/CSS;Java;JavaScript;SQL;TypeScript
+71616,HTML/CSS;JavaScript;PHP
+71617,C++;C#;HTML/CSS;JavaScript;Python;SQL
+71618,Assembly;HTML/CSS;JavaScript
+71619,C;HTML/CSS;JavaScript;Python
+71620,Clojure;Java
+71622,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+71623,C;C++;Java;PHP;Python;SQL
+71624,Dart;HTML/CSS;Java;JavaScript;SQL
+71625,Python
+71626,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+71627,Objective-C;Swift
+71628,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+71629,C#;HTML/CSS;JavaScript;TypeScript
+71630,HTML/CSS;JavaScript;Python;Ruby
+71631,Java;JavaScript;TypeScript
+71632,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+71633,C#;HTML/CSS;JavaScript;SQL
+71634,Java;JavaScript;Python;Scala;SQL
+71635,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R
+71636,Bash/Shell/PowerShell;C#;F#;SQL
+71637,Bash/Shell/PowerShell;Java
+71638,C#;HTML/CSS;JavaScript;Python
+71639,C;C++;HTML/CSS;Python
+71640,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+71641,Java;JavaScript;Python;Ruby
+71642,C#;Scala;SQL
+71643,HTML/CSS;JavaScript;PHP
+71644,Bash/Shell/PowerShell;Go;Python;TypeScript;Other(s):
+71645,Bash/Shell/PowerShell;Java;Python;R;Ruby;Rust;Swift
+71646,HTML/CSS;Python;VBA
+71647,HTML/CSS;JavaScript;PHP;SQL;Swift
+71648,Assembly;Bash/Shell/PowerShell;C;C#;JavaScript
+71649,HTML/CSS;Java;JavaScript;TypeScript
+71650,Elixir;Python
+71651,HTML/CSS;Java;PHP;Python;SQL
+71652,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;Swift;Other(s):
+71653,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL
+71654,Assembly
+71655,Bash/Shell/PowerShell;C;C++;Go;Python;Rust
+71656,Bash/Shell/PowerShell;C++;Rust
+71657,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python
+71658,C;C++;HTML/CSS;JavaScript;Swift
+71659,Bash/Shell/PowerShell;HTML/CSS;Python;Rust
+71660,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71661,C#;JavaScript;Python;TypeScript
+71662,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71663,C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+71664,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71665,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+71666,Java
+71667,Assembly;C++;HTML/CSS;Java;JavaScript;Python
+71668,Java
+71669,HTML/CSS;PHP
+71670,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71671,Assembly;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Rust;SQL;TypeScript;WebAssembly
+71672,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+71673,Bash/Shell/PowerShell;C;HTML/CSS;SQL;VBA
+71674,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+71675,Bash/Shell/PowerShell;C;C++;PHP;Other(s):
+71676,Assembly;C;C++;Java;Python;R;Rust;Scala;Other(s):
+71677,Java
+71678,Bash/Shell/PowerShell;C;C++;JavaScript
+71679,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71680,Objective-C;Python;Swift
+71681,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+71682,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+71683,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+71684,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71685,JavaScript;PHP;SQL;TypeScript
+71686,C#;HTML/CSS;JavaScript;PHP;Other(s):
+71687,Bash/Shell/PowerShell;Dart;Go;Java;Kotlin;Python
+71688,Bash/Shell/PowerShell;C#;SQL
+71689,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;TypeScript
+71690,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+71691,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+71692,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+71693,Bash/Shell/PowerShell;C#;Python;R;SQL;VBA
+71694,Dart;Go;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+71695,Bash/Shell/PowerShell;C;Python
+71696,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71697,Python
+71698,C++;C#;Go;HTML/CSS;JavaScript;SQL
+71699,Java;Python;Scala
+71700,Assembly;C;C++;C#;HTML/CSS;JavaScript;SQL
+71701,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+71702,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+71703,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+71704,C#;HTML/CSS;JavaScript;SQL
+71705,C#;HTML/CSS;JavaScript;Python
+71706,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;VBA
+71707,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+71709,C#;HTML/CSS;JavaScript;SQL
+71710,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+71711,Java;JavaScript;Kotlin;Objective-C;Swift
+71712,JavaScript;Python
+71713,HTML/CSS;JavaScript;SQL
+71714,HTML/CSS;JavaScript;Python;SQL
+71716,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+71717,Go;HTML/CSS;JavaScript
+71718,Assembly;C;C++;C#;HTML/CSS;SQL;VBA
+71719,HTML/CSS;JavaScript;PHP;Python;SQL
+71720,Java;JavaScript;SQL
+71721,JavaScript;Python
+71722,HTML/CSS;PHP;TypeScript
+71723,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+71724,C#;SQL
+71725,R;Other(s):
+71726,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+71727,Dart;R;Scala;Other(s):
+71728,Bash/Shell/PowerShell;Java;R;Scala;SQL
+71729,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL;TypeScript
+71730,JavaScript
+71731,Bash/Shell/PowerShell;Kotlin;Scala;Swift
+71732,HTML/CSS;PHP;SQL
+71733,Java;Python
+71734,Java;JavaScript;PHP;SQL
+71735,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+71736,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Ruby;SQL;Other(s):
+71737,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+71738,HTML/CSS;JavaScript;TypeScript
+71739,Assembly;C;C++;C#;Python
+71740,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71741,Bash/Shell/PowerShell;C;C++;Python
+71742,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71743,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+71744,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+71745,C;C++;Java;Python;Other(s):
+71746,Bash/Shell/PowerShell;Python;R;SQL
+71747,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+71748,Bash/Shell/PowerShell;C++;Python;SQL;Other(s):
+71749,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+71750,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Ruby
+71751,Java;JavaScript;SQL
+71752,Bash/Shell/PowerShell;JavaScript;Other(s):
+71753,Other(s):
+71754,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+71755,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+71756,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71757,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71758,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;JavaScript;Python;R;Swift
+71759,HTML/CSS;JavaScript;PHP;SQL
+71760,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+71761,HTML/CSS;Java;JavaScript;SQL
+71762,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;VBA
+71763,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+71764,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71765,HTML/CSS;Java;JavaScript;TypeScript
+71766,Go;HTML/CSS;Python;Ruby;SQL
+71767,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+71768,Bash/Shell/PowerShell;Java;JavaScript;Ruby
+71769,HTML/CSS;Java;JavaScript;Python
+71770,HTML/CSS;JavaScript
+71771,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+71772,C#;Dart;Java;Objective-C;SQL;Swift
+71773,C#;PHP;SQL
+71774,JavaScript;TypeScript
+71775,C#;Objective-C;Swift
+71776,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL
+71777,Java;SQL
+71778,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+71779,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71780,Python;R;SQL
+71781,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+71783,C#;JavaScript;Python;SQL;TypeScript
+71785,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL;TypeScript
+71786,HTML/CSS
+71787,C#;JavaScript;SQL
+71788,HTML/CSS;Java;JavaScript;PHP;Ruby;Scala;SQL;TypeScript
+71789,C;C++;C#;HTML/CSS;PHP;Python
+71790,Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+71791,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+71792,C++;HTML/CSS;JavaScript;Python;R;SQL
+71793,Java;Kotlin;Other(s):
+71794,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+71795,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+71796,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+71797,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+71798,Bash/Shell/PowerShell;Python;R;SQL;VBA;Other(s):
+71799,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+71800,Bash/Shell/PowerShell;Java;Python
+71801,C#;HTML/CSS;JavaScript;SQL
+71802,Bash/Shell/PowerShell;C;C++;C#
+71803,Java;JavaScript;Objective-C
+71804,Bash/Shell/PowerShell;Python
+71805,Python;SQL
+71806,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Swift;TypeScript
+71807,C++;HTML/CSS;JavaScript;Ruby;TypeScript
+71808,C;C++;C#;Java;Other(s):
+71809,Bash/Shell/PowerShell;C;C++;C#
+71810,Bash/Shell/PowerShell;Python
+71811,HTML/CSS;Java;Kotlin;PHP;SQL
+71812,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71813,HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+71814,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+71815,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+71816,C++;Java;PHP;SQL
+71817,C#
+71818,C;C#;HTML/CSS;JavaScript;Python;SQL
+71819,C#;PHP;SQL
+71820,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+71821,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+71822,HTML/CSS;JavaScript
+71823,Bash/Shell/PowerShell;Other(s):
+71824,HTML/CSS;JavaScript;Python;Ruby;SQL
+71825,Go;Java
+71826,C#;Python;SQL;VBA
+71827,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+71828,Python;Scala
+71829,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+71830,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+71831,Bash/Shell/PowerShell;C;Java;Python;R
+71832,Bash/Shell/PowerShell;Java;SQL
+71833,C#;HTML/CSS;JavaScript;PHP;SQL
+71834,C#;HTML/CSS;JavaScript;SQL
+71835,Go;HTML/CSS;JavaScript;Python
+71836,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71837,C#;HTML/CSS;JavaScript;SQL;VBA
+71838,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71839,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+71840,C#;HTML/CSS;JavaScript;SQL;TypeScript
+71841,HTML/CSS;JavaScript;PHP;Python
+71842,HTML/CSS;JavaScript;Ruby;SQL
+71843,HTML/CSS;Java;JavaScript;TypeScript
+71844,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;Scala;SQL
+71845,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+71846,Bash/Shell/PowerShell;C#;JavaScript;Python
+71847,C++;C#;HTML/CSS;JavaScript;SQL
+71848,C;Python
+71849,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+71850,C#;HTML/CSS;JavaScript;Python;SQL
+71851,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71852,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+71853,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+71854,JavaScript;Python;SQL
+71855,HTML/CSS;JavaScript;TypeScript
+71856,C#;HTML/CSS;JavaScript
+71857,C++;Java;SQL
+71858,C#;Java;JavaScript;Python;SQL;VBA
+71859,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+71860,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Rust
+71861,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+71862,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+71863,Bash/Shell/PowerShell;C++;Python;Other(s):
+71864,Bash/Shell/PowerShell;Python;Other(s):
+71865,HTML/CSS;JavaScript;Python;TypeScript
+71866,JavaScript;PHP
+71867,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+71868,C#;HTML/CSS;JavaScript;SQL
+71869,C;C++;C#;Java;Python
+71870,Assembly;C;C++;C#;HTML/CSS;Objective-C;Python;Swift
+71871,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+71872,HTML/CSS;Java;JavaScript;SQL;TypeScript
+71873,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+71875,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python
+71876,Bash/Shell/PowerShell;C#;JavaScript;SQL
+71877,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+71878,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+71879,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+71880,HTML/CSS;Java;PHP;Python;SQL;Swift;Other(s):
+71881,Bash/Shell/PowerShell;Go;Java;Kotlin;Objective-C;Rust;SQL;Swift
+71882,Dart;Java;Kotlin
+71883,Java;TypeScript
+71884,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+71885,C;Java;SQL
+71886,C#;HTML/CSS;JavaScript;PHP;Python
+71888,C;C++;Java;JavaScript;Python
+71889,HTML/CSS;JavaScript;TypeScript
+71890,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+71891,HTML/CSS;Java;JavaScript;SQL;TypeScript
+71892,C#;SQL
+71893,Assembly;C;C++;Java;JavaScript;TypeScript
+71894,C;C++;Go;Python
+71895,C#;HTML/CSS;JavaScript;SQL;VBA
+71896,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71897,Bash/Shell/PowerShell;C#;F#;JavaScript;PHP;Python;SQL;TypeScript
+71898,Bash/Shell/PowerShell;Python;Ruby
+71899,HTML/CSS;JavaScript;Python
+71900,C#;Java;Swift
+71901,Java;JavaScript
+71902,C;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+71903,Java;JavaScript;Python;Swift
+71904,Java
+71905,HTML/CSS;Java;JavaScript
+71906,C#;HTML/CSS;JavaScript;Python;SQL
+71907,HTML/CSS;JavaScript
+71908,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+71909,Bash/Shell/PowerShell;JavaScript;Python;Rust;SQL;TypeScript
+71910,HTML/CSS;SQL
+71911,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;VBA
+71912,HTML/CSS;Java;JavaScript;SQL;Other(s):
+71913,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+71914,HTML/CSS;JavaScript;PHP;SQL
+71915,C;C#;Go;HTML/CSS;Python;R;Rust;SQL;Other(s):
+71916,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;WebAssembly
+71917,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript;Other(s):
+71918,C;C++;C#;HTML/CSS;Java;SQL
+71919,C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+71920,C++;HTML/CSS;JavaScript;WebAssembly
+71921,HTML/CSS;JavaScript
+71922,Bash/Shell/PowerShell;Java;JavaScript;Other(s):
+71923,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+71924,Java;Python
+71925,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+71926,Bash/Shell/PowerShell;JavaScript;Python
+71927,HTML/CSS;Java;JavaScript;SQL
+71928,HTML/CSS;Java;JavaScript;TypeScript
+71929,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Rust;SQL;Swift;TypeScript
+71930,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+71931,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+71932,HTML/CSS;JavaScript;SQL
+71933,C#;F#;HTML/CSS;JavaScript
+71934,Java;Python
+71935,Bash/Shell/PowerShell;C++;C#;Java;Python;TypeScript
+71936,Bash/Shell/PowerShell;Python;SQL
+71937,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+71938,C;C++;Python
+71939,Bash/Shell/PowerShell;JavaScript;Python;SQL
+71940,Dart;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+71941,Bash/Shell/PowerShell;Python;R;SQL
+71942,Clojure
+71943,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+71944,C;C++;Python
+71945,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;VBA
+71946,HTML/CSS;JavaScript;TypeScript
+71947,HTML/CSS;JavaScript;PHP;SQL
+71948,PHP;SQL;Other(s):
+71949,C#;HTML/CSS;JavaScript;SQL
+71950,Bash/Shell/PowerShell;C#;Erlang;SQL
+71951,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+71952,PHP;Python
+71953,Java;Objective-C;Swift
+71954,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby
+71955,C;C++;C#;Go;Java;JavaScript;Python;Ruby
+71956,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+71957,HTML/CSS;JavaScript;Python
+71958,HTML/CSS;Java;JavaScript;Python;SQL
+71959,HTML/CSS;JavaScript;TypeScript
+71961,Bash/Shell/PowerShell;Go;HTML/CSS;SQL
+71962,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+71963,R
+71964,C#;HTML/CSS;Java;JavaScript;Python;SQL
+71965,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript
+71966,Assembly;C;C++;HTML/CSS;JavaScript;PHP
+71967,HTML/CSS;JavaScript
+71968,HTML/CSS;Java;JavaScript;SQL;TypeScript
+71969,HTML/CSS;JavaScript;PHP;SQL
+71970,HTML/CSS;JavaScript;PHP
+71971,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+71972,JavaScript;Python;SQL;VBA
+71973,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+71974,C++;C#;HTML/CSS;JavaScript;SQL
+71976,Bash/Shell/PowerShell;C#;Go;Java;Scala
+71977,HTML/CSS;JavaScript;Kotlin;PHP;TypeScript
+71978,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+71979,Java
+71980,HTML/CSS;JavaScript;SQL;VBA
+71981,C#;HTML/CSS;JavaScript;SQL
+71982,C;C++;Go;Java;Objective-C;Python;Scala;Swift
+71983,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+71984,Bash/Shell/PowerShell;Java;JavaScript;Ruby;SQL
+71985,Bash/Shell/PowerShell;C#;SQL
+71986,C;C++;C#;Java;JavaScript;Objective-C
+71987,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+71988,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+71989,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+71990,HTML/CSS;JavaScript;PHP;Ruby;SQL
+71991,C;C++;C#;Go;Java;JavaScript;Python
+71992,C;C#;HTML/CSS;JavaScript;SQL;Other(s):
+71993,C;C#;HTML/CSS;Java;JavaScript;SQL
+71994,C++;HTML/CSS;JavaScript;Python
+71995,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Other(s):
+71996,C;Objective-C;Swift
+71997,PHP
+71998,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+71999,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+72000,JavaScript
+72001,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript;VBA
+72002,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+72003,C#;HTML/CSS;Java;JavaScript;TypeScript
+72004,HTML/CSS;Java;SQL
+72005,HTML/CSS;JavaScript;PHP;Python;SQL
+72006,C;HTML/CSS;JavaScript;Python;SQL
+72007,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+72008,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+72009,HTML/CSS;JavaScript;PHP
+72010,Bash/Shell/PowerShell;C;HTML/CSS;PHP
+72011,HTML/CSS;Java;JavaScript;SQL
+72012,HTML/CSS;Java;Python;R;SQL
+72013,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+72014,PHP;SQL;Other(s):
+72015,HTML/CSS;SQL;Other(s):
+72016,C;C++;C#;HTML/CSS;JavaScript;Python;Rust
+72017,JavaScript;TypeScript
+72018,Go;Java;JavaScript;Objective-C
+72019,Java
+72020,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+72021,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+72022,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72023,HTML/CSS;JavaScript
+72024,JavaScript
+72025,Go;JavaScript;Python;Ruby;SQL
+72026,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+72027,C
+72028,HTML/CSS;JavaScript;Ruby;Swift
+72029,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+72030,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+72031,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+72032,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+72033,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+72034,C#;HTML/CSS;JavaScript;SQL
+72035,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+72036,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+72037,HTML/CSS;JavaScript;Other(s):
+72038,Assembly;C;C++;Python;Other(s):
+72039,Bash/Shell/PowerShell;HTML/CSS
+72040,C;C++;Other(s):
+72041,C#;HTML/CSS;Java;JavaScript
+72042,Scala
+72043,HTML/CSS;VBA
+72044,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72045,Java;JavaScript;SQL
+72046,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+72047,C;C++;SQL;Other(s):
+72048,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72049,Go;HTML/CSS;JavaScript;PHP
+72050,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+72051,HTML/CSS;Java;JavaScript;SQL;TypeScript
+72052,Python
+72053,Bash/Shell/PowerShell;Go;Python
+72054,Go;HTML/CSS;Java;JavaScript;PHP;R;Ruby;SQL;TypeScript
+72055,HTML/CSS;Java;JavaScript;Python
+72056,Bash/Shell/PowerShell;C;C++;C#;Other(s):
+72057,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;PHP;Python;SQL;VBA;Other(s):
+72058,C;Go;HTML/CSS;Java;JavaScript;TypeScript
+72059,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+72060,Bash/Shell/PowerShell;C++;Java;PHP;Python;Scala;SQL
+72061,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+72062,HTML/CSS;JavaScript;PHP;TypeScript
+72063,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+72064,C++;Python
+72065,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;SQL;Other(s):
+72066,C#;Python;Rust
+72067,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+72068,C;Java
+72069,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Rust;SQL;Other(s):
+72070,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+72071,HTML/CSS;Java;Other(s):
+72072,Bash/Shell/PowerShell;HTML/CSS;Ruby;SQL
+72073,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+72074,Python;R
+72075,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72076,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72077,HTML/CSS;Java;JavaScript;Python;R;SQL
+72078,Bash/Shell/PowerShell;C;C++;C#
+72079,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72080,HTML/CSS;JavaScript;PHP
+72081,HTML/CSS;JavaScript;SQL;TypeScript
+72082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72083,C;Erlang;HTML/CSS;Java;JavaScript;PHP;SQL
+72084,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+72085,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Rust;Swift;TypeScript;WebAssembly
+72086,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+72087,Objective-C;Swift
+72088,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+72089,HTML/CSS;JavaScript;Python;TypeScript
+72090,HTML/CSS;JavaScript
+72091,C++;C#;HTML/CSS;Java;SQL
+72092,HTML/CSS;JavaScript;VBA
+72093,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+72095,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72096,Bash/Shell/PowerShell;C#;Python;SQL
+72097,C;C#;Python;SQL
+72098,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+72099,Java;PHP;SQL
+72100,Java;Python;SQL
+72101,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+72102,HTML/CSS;JavaScript
+72103,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72104,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+72105,C++;JavaScript;Python
+72106,JavaScript
+72107,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+72109,Assembly;C;C++;HTML/CSS;JavaScript;SQL
+72110,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+72112,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+72113,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+72114,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+72115,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+72116,Bash/Shell/PowerShell;C;C++;Python
+72117,HTML/CSS;Java;JavaScript;PHP;SQL
+72118,C#;TypeScript
+72119,C#;HTML/CSS;JavaScript;TypeScript
+72120,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72121,HTML/CSS;Java;JavaScript
+72122,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+72123,C;C++;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;Scala;SQL
+72124,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+72125,C#;HTML/CSS;JavaScript;SQL
+72126,Go;HTML/CSS;JavaScript;PHP
+72127,HTML/CSS;Python
+72128,C#;HTML/CSS;JavaScript;TypeScript
+72129,C#;Python;SQL
+72130,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+72131,Objective-C;Swift
+72132,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift;TypeScript
+72133,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Kotlin;Python;Other(s):
+72134,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+72135,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+72136,Assembly;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;WebAssembly
+72137,C#;Python
+72138,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+72139,Python;SQL
+72140,Swift
+72141,Python;R
+72142,C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+72143,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+72144,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+72145,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+72146,C#;HTML/CSS;Java;JavaScript;Python;SQL
+72147,C#;HTML/CSS;Python;SQL;TypeScript
+72148,HTML/CSS;JavaScript;Python
+72150,C++;Java;Python
+72151,HTML/CSS;JavaScript;TypeScript
+72152,Python;Other(s):
+72153,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+72154,HTML/CSS;Java;JavaScript
+72155,C;C++;HTML/CSS;Java;JavaScript
+72156,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+72157,HTML/CSS;JavaScript
+72158,C#;HTML/CSS;JavaScript;SQL
+72159,C;HTML/CSS;JavaScript
+72160,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+72161,C;Java
+72162,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+72163,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Python
+72164,Python;R;SQL
+72165,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72166,Java
+72167,C++;C#;Rust;WebAssembly
+72168,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+72169,C++;C#;Dart;F#;HTML/CSS;Java;JavaScript;Python;Rust;Scala
+72170,HTML/CSS;JavaScript;Python;Swift
+72171,HTML/CSS;JavaScript;PHP
+72172,HTML/CSS;Java;JavaScript;SQL
+72173,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+72174,Assembly;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72175,HTML/CSS;JavaScript;PHP;Python
+72176,HTML/CSS;JavaScript;TypeScript
+72177,Bash/Shell/PowerShell;C;C++;Ruby
+72178,C++;C#;JavaScript;SQL
+72179,C++;JavaScript;PHP;SQL
+72180,JavaScript;PHP;SQL
+72181,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72182,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Python;SQL;TypeScript
+72183,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Ruby
+72184,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+72185,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72186,C#;HTML/CSS;JavaScript;Other(s):
+72187,C#
+72188,HTML/CSS;JavaScript;PHP;SQL
+72189,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+72190,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;Python;Scala;SQL
+72191,HTML/CSS;JavaScript;PHP;SQL
+72193,HTML/CSS;JavaScript;Other(s):
+72194,Bash/Shell/PowerShell;C;Java;Python;Scala;SQL
+72195,Python;SQL;Other(s):
+72196,C++;HTML/CSS;Java;Objective-C;PHP;SQL
+72197,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+72198,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift
+72199,Bash/Shell/PowerShell;C;C++;Python;Ruby;Rust
+72200,HTML/CSS;JavaScript;Python
+72201,JavaScript;SQL;Other(s):
+72202,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+72203,C#;HTML/CSS;JavaScript;SQL
+72204,Dart;Elixir;HTML/CSS;Java;PHP;Python
+72205,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72206,HTML/CSS;JavaScript;PHP
+72207,HTML/CSS;JavaScript;TypeScript
+72208,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+72209,C;C++;HTML/CSS;PHP;Python
+72210,HTML/CSS;Java;JavaScript;SQL
+72211,C;C++;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+72212,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+72213,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+72214,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;VBA
+72215,HTML/CSS;JavaScript
+72216,HTML/CSS;JavaScript;PHP;SQL
+72217,HTML/CSS;Java;JavaScript;PHP;SQL
+72218,C;C++;HTML/CSS;Python;SQL
+72219,C;C++;C#;Dart
+72220,Go;HTML/CSS;Java;JavaScript
+72221,C#
+72222,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+72223,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72225,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+72226,HTML/CSS;Java;JavaScript;Python
+72227,C++;C#;HTML/CSS;Objective-C;PHP;Python;SQL;Swift
+72228,Elixir;HTML/CSS;PHP;SQL;TypeScript
+72229,C#;HTML/CSS;SQL
+72230,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Rust
+72231,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+72232,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+72233,HTML/CSS;Java;JavaScript;TypeScript
+72234,C#;HTML/CSS;JavaScript
+72235,C#;HTML/CSS;JavaScript;SQL
+72236,Python;R;VBA
+72237,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+72238,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+72239,Java;Python
+72240,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+72241,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72242,C#;HTML/CSS;Java;JavaScript;PHP
+72243,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+72244,HTML/CSS;JavaScript;PHP;TypeScript
+72245,Bash/Shell/PowerShell;C;Python
+72246,Assembly;Bash/Shell/PowerShell;C;Python;R;Other(s):
+72247,HTML/CSS;Java;JavaScript;SQL
+72248,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+72249,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+72250,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+72251,C;HTML/CSS;JavaScript;PHP;Rust;SQL
+72252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+72253,C#;Python;SQL
+72254,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript;VBA
+72255,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+72256,C;C++;Python;SQL
+72257,Java;Ruby
+72258,C++
+72259,C;C#
+72260,C#;HTML/CSS;SQL;TypeScript;Other(s):
+72261,Java
+72262,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+72263,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72264,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;SQL
+72265,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;VBA
+72266,C#
+72267,C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R
+72268,C++;Java;Python
+72269,HTML/CSS;Java;JavaScript;Python
+72270,HTML/CSS;JavaScript
+72271,HTML/CSS;JavaScript
+72272,Bash/Shell/PowerShell;C;Python;Other(s):
+72273,JavaScript;Ruby;SQL
+72274,HTML/CSS;JavaScript
+72275,Java
+72276,Java;JavaScript;SQL;TypeScript
+72277,HTML/CSS;JavaScript;PHP;Python;SQL
+72278,HTML/CSS;PHP;SQL
+72279,Go;HTML/CSS;JavaScript
+72280,HTML/CSS;JavaScript;Python;R;SQL
+72281,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+72282,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;SQL;Other(s):
+72283,C#;HTML/CSS;JavaScript;PHP;Python
+72284,Bash/Shell/PowerShell;HTML/CSS;Java
+72285,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72286,HTML/CSS;Java;JavaScript;PHP;SQL
+72287,Java;JavaScript;Kotlin
+72288,HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+72289,C#;SQL
+72290,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+72291,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+72292,Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+72293,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+72294,Java
+72295,Bash/Shell/PowerShell;Python;SQL
+72296,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+72297,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+72298,HTML/CSS;JavaScript
+72299,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72300,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72301,C++;Java;Python;SQL
+72303,HTML/CSS;JavaScript;TypeScript
+72304,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;TypeScript
+72305,C#;Clojure;Go;HTML/CSS;JavaScript;Python;TypeScript
+72306,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+72307,Python
+72308,JavaScript;Other(s):
+72309,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+72310,Assembly;C;Go;HTML/CSS;Java;Python;Other(s):
+72311,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+72312,C;Python;SQL
+72313,HTML/CSS;Java;JavaScript;SQL;TypeScript
+72314,JavaScript;SQL
+72315,C;Elixir;Erlang;Java;JavaScript
+72316,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+72317,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+72318,HTML/CSS;Java;SQL
+72319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+72320,C#;HTML/CSS;Java;JavaScript;SQL
+72321,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Swift;Other(s):
+72322,C#;SQL
+72323,HTML/CSS;JavaScript
+72324,C#;HTML/CSS;Java;JavaScript;Ruby;Other(s):
+72326,C;C#;HTML/CSS;JavaScript;Python;SQL
+72327,HTML/CSS;JavaScript;PHP
+72328,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+72329,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+72330,C#;HTML/CSS;Java;JavaScript;PHP
+72331,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+72332,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+72333,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+72335,C++;C#;Java;JavaScript;PHP;R;SQL
+72336,HTML/CSS;JavaScript;Ruby;SQL
+72337,C;Python
+72338,C#;HTML/CSS;JavaScript;SQL
+72339,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72340,Bash/Shell/PowerShell;C++;Python
+72341,C++;HTML/CSS
+72342,HTML/CSS;Java;JavaScript;Python;Scala;SQL;Other(s):
+72343,HTML/CSS;Java;JavaScript;PHP;SQL
+72344,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+72345,Assembly;C;Java;Python;R;SQL
+72346,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72347,HTML/CSS;JavaScript
+72348,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+72349,HTML/CSS;Java;JavaScript;PHP;SQL
+72350,HTML/CSS;JavaScript;SQL;TypeScript
+72351,Assembly
+72352,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+72353,HTML/CSS;JavaScript;PHP;SQL
+72354,C#;Go;JavaScript;Python;SQL
+72355,HTML/CSS;Java;JavaScript
+72356,C;C#;HTML/CSS;JavaScript;SQL
+72357,Elixir;HTML/CSS;JavaScript
+72358,Bash/Shell/PowerShell;Java;SQL
+72359,Bash/Shell/PowerShell;Clojure
+72360,HTML/CSS;JavaScript
+72361,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+72362,C#;HTML/CSS;Python;Scala;SQL;TypeScript
+72363,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+72364,Python
+72365,Bash/Shell/PowerShell;Python;SQL
+72366,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+72367,HTML/CSS;Java;JavaScript;SQL
+72368,HTML/CSS;JavaScript;PHP
+72369,Assembly;C;C++;Go;HTML/CSS;Java;Python;Rust
+72370,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+72371,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Rust;TypeScript
+72372,Bash/Shell/PowerShell;C;Clojure;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+72373,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Scala;SQL;Swift
+72374,Objective-C;Swift
+72375,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+72376,C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+72377,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Rust
+72378,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+72379,Java;JavaScript;SQL;Other(s):
+72380,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+72381,HTML/CSS;JavaScript;SQL
+72382,Bash/Shell/PowerShell;Java;JavaScript;SQL
+72383,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+72384,C#;HTML/CSS;Java;Python;SQL;VBA
+72385,Assembly;C;C++;HTML/CSS;JavaScript;Python
+72386,VBA
+72387,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+72388,HTML/CSS;Java;JavaScript;SQL;TypeScript
+72389,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72390,C#;HTML/CSS;JavaScript;SQL;VBA
+72391,Python
+72392,Go;Java
+72393,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;R;Rust;SQL
+72394,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72395,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72396,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+72397,Java;JavaScript;Python
+72398,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+72399,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+72400,Bash/Shell/PowerShell;C;C#;JavaScript;SQL;TypeScript
+72401,C#;Java;SQL
+72402,Bash/Shell/PowerShell;C#;Java;Python;Scala;SQL
+72403,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+72404,Bash/Shell/PowerShell;Go;Rust;Scala
+72405,Bash/Shell/PowerShell;SQL
+72406,HTML/CSS;JavaScript;PHP;SQL
+72407,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72408,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Scala;SQL
+72409,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;VBA
+72410,C++;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+72411,Bash/Shell/PowerShell;Python;R;SQL
+72412,Java
+72413,HTML/CSS;JavaScript;PHP;SQL
+72414,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+72415,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+72416,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+72417,PHP
+72418,Assembly;C;C#;HTML/CSS;Java;PHP;SQL;Other(s):
+72419,Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala
+72420,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+72421,C;HTML/CSS;Java;JavaScript;PHP;SQL
+72422,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+72423,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Objective-C;PHP;Python;SQL
+72424,HTML/CSS;JavaScript;Python
+72425,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+72426,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+72427,C;Clojure;HTML/CSS;Java;JavaScript;Objective-C;Python;WebAssembly
+72428,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72429,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+72430,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+72431,Java;Other(s):
+72432,Java;SQL;VBA
+72433,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+72434,HTML/CSS;JavaScript
+72435,HTML/CSS;Java;JavaScript;SQL;TypeScript
+72436,HTML/CSS;Java;JavaScript;Other(s):
+72437,JavaScript;Python;SQL
+72438,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72439,Objective-C;Swift
+72440,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+72441,C#;SQL;VBA
+72442,HTML/CSS;JavaScript;Ruby
+72443,C#;HTML/CSS;JavaScript;SQL
+72444,Bash/Shell/PowerShell;Java;Python;SQL
+72445,C#;HTML/CSS;PHP;SQL
+72446,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+72447,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+72448,Assembly;Bash/Shell/PowerShell;C
+72449,Bash/Shell/PowerShell;C;C#;F#;HTML/CSS;JavaScript;PHP;SQL
+72450,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+72451,Assembly;Bash/Shell/PowerShell;C;C++;Java;Objective-C;Other(s):
+72452,Clojure;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+72453,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72454,Java;Kotlin;Objective-C
+72455,HTML/CSS;Java;JavaScript
+72456,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+72457,Bash/Shell/PowerShell;C;Dart;Java;JavaScript;Python;R;SQL
+72458,C++;Python
+72459,Clojure;HTML/CSS;Java;JavaScript
+72460,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+72461,C#;SQL;VBA;Other(s):
+72462,Bash/Shell/PowerShell;C;C++;Python
+72463,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+72464,Assembly;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72465,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+72466,Bash/Shell/PowerShell;Python;R;SQL
+72467,C++;C#;Java;Python;SQL
+72468,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+72469,Assembly;Java;Kotlin;Python
+72470,Java;JavaScript
+72471,Assembly;Bash/Shell/PowerShell;C;Python
+72472,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Other(s):
+72473,C#;HTML/CSS;JavaScript;Python;SQL
+72474,Java;SQL
+72475,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+72476,C;Java;Python;Scala;SQL
+72477,Other(s):
+72478,JavaScript;TypeScript
+72479,C++;C#;HTML/CSS;Java;PHP;SQL
+72480,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+72482,HTML/CSS;JavaScript
+72483,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72484,C#;HTML/CSS;JavaScript;TypeScript
+72485,C#;JavaScript;SQL;Other(s):
+72486,C++;Java;TypeScript
+72487,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;SQL;VBA
+72488,C#
+72489,C;C++;C#;HTML/CSS;JavaScript;SQL
+72490,Bash/Shell/PowerShell;C;C++;Python;Ruby;Swift
+72491,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+72493,C#
+72494,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP
+72495,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Ruby;SQL
+72496,Java;Scala
+72497,C++;C#;Java;JavaScript;PHP;Python
+72498,Bash/Shell/PowerShell;C;C++;Python;Rust
+72499,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72500,HTML/CSS;JavaScript;PHP;SQL
+72501,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+72502,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72503,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+72504,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;SQL
+72505,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+72506,Bash/Shell/PowerShell;Java;JavaScript;Python
+72507,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+72508,HTML/CSS;JavaScript;PHP
+72509,C++;HTML/CSS;Python;Rust
+72510,HTML/CSS;JavaScript;SQL
+72511,HTML/CSS;Java;JavaScript;PHP;SQL
+72512,HTML/CSS;Java;JavaScript;SQL
+72513,C;C++;HTML/CSS;Rust
+72514,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+72515,Java;JavaScript;SQL
+72516,C#;HTML/CSS;Python;SQL;VBA
+72517,HTML/CSS;Java;JavaScript;SQL;Other(s):
+72518,C++;HTML/CSS;Python;Other(s):
+72519,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+72520,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+72521,Assembly;C;C#;HTML/CSS;Java;JavaScript;Python
+72522,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Swift
+72523,C#;HTML/CSS;JavaScript;SQL
+72524,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+72525,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72526,C#;HTML/CSS;JavaScript;TypeScript
+72527,C++;C#;JavaScript
+72528,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+72529,HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+72530,C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+72531,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+72532,C;C++;Objective-C;Swift
+72533,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+72534,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72535,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+72536,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72537,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+72538,Java;Objective-C
+72539,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+72540,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+72541,Bash/Shell/PowerShell;JavaScript;Python;SQL
+72542,C#;Kotlin
+72543,HTML/CSS;JavaScript;PHP;SQL
+72544,Assembly;C;C++;JavaScript
+72545,Bash/Shell/PowerShell;Python;SQL
+72546,Scala;Other(s):
+72547,HTML/CSS;JavaScript
+72548,HTML/CSS;JavaScript;TypeScript
+72549,Bash/Shell/PowerShell;C++;Java;Python;Scala;SQL
+72550,Assembly;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+72551,C++;C#;HTML/CSS;SQL
+72552,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72553,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+72554,HTML/CSS;Java;JavaScript;Swift
+72555,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+72556,Assembly;C#;Java;Python;Swift
+72557,JavaScript;PHP
+72558,C++;C#;JavaScript;Python;SQL
+72559,Java;Python
+72560,Java;JavaScript;Python
+72561,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+72562,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+72563,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72564,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+72565,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+72566,C#;HTML/CSS;JavaScript;SQL
+72567,C#;Java;Kotlin;Python;SQL
+72568,HTML/CSS;JavaScript;PHP;SQL
+72569,Java;JavaScript;Python;Scala;SQL
+72570,HTML/CSS;JavaScript;PHP;Python;TypeScript
+72571,Java;JavaScript;Objective-C;Ruby;TypeScript
+72572,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+72573,C#
+72574,HTML/CSS;JavaScript;PHP
+72575,C#;Python;R
+72576,HTML/CSS;JavaScript
+72577,Bash/Shell/PowerShell;C++;Python;Ruby;SQL
+72578,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+72579,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;Other(s):
+72580,Bash/Shell/PowerShell;C#;SQL;VBA
+72581,HTML/CSS;JavaScript;PHP;SQL
+72582,Java;SQL
+72583,Bash/Shell/PowerShell;C;JavaScript;Python
+72584,C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+72585,C++;HTML/CSS;Java;JavaScript;PHP;Python;Swift
+72586,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72587,Bash/Shell/PowerShell;Java
+72588,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+72589,HTML/CSS;PHP;Python;SQL
+72590,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+72591,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72592,HTML/CSS;JavaScript
+72593,Bash/Shell/PowerShell;C++;Go;Java;Python
+72594,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Objective-C;PHP;SQL;Swift
+72595,C#;HTML/CSS;JavaScript;Kotlin;Other(s):
+72596,C++;HTML/CSS;JavaScript;Python
+72597,C#;HTML/CSS;JavaScript;SQL;VBA
+72598,HTML/CSS;JavaScript;PHP
+72599,Bash/Shell/PowerShell;Go;JavaScript;Python
+72600,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72601,HTML/CSS;JavaScript;PHP;Python
+72602,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+72603,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+72604,HTML/CSS;JavaScript;PHP;Python;SQL
+72605,C#;HTML/CSS;Python;SQL;VBA
+72606,Java;JavaScript;Python;TypeScript
+72607,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+72608,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+72609,Bash/Shell/PowerShell;C#;JavaScript;PHP
+72610,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+72611,C;C++;C#;HTML/CSS;JavaScript;Python;Swift
+72612,Java;Objective-C;Scala;Swift;TypeScript
+72613,Bash/Shell/PowerShell;C++;C#;Elixir;Go;Java;JavaScript;Kotlin;TypeScript
+72614,Bash/Shell/PowerShell;Go;JavaScript;Python
+72615,Java
+72616,C++;JavaScript;Python;Other(s):
+72617,C;C++;HTML/CSS;JavaScript;Python
+72618,Java
+72619,JavaScript;TypeScript
+72620,HTML/CSS;JavaScript;PHP;Python;Swift
+72621,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL;TypeScript
+72622,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;Other(s):
+72623,Python
+72624,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+72625,C++;Java;JavaScript;SQL
+72626,Objective-C;Swift
+72627,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72628,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72629,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72630,HTML/CSS;JavaScript;PHP;SQL
+72631,C#;HTML/CSS;JavaScript;Python
+72632,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+72633,C;HTML/CSS;Python;R;SQL;VBA;Other(s):
+72634,HTML/CSS;Java;JavaScript;PHP;Python
+72635,C#;HTML/CSS;JavaScript;SQL
+72636,HTML/CSS;PHP;TypeScript
+72637,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+72638,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;VBA
+72639,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+72640,Bash/Shell/PowerShell;HTML/CSS;Java;Python;TypeScript
+72641,Python;Scala;Other(s):
+72642,C++;C#;HTML/CSS;Java;JavaScript
+72643,HTML/CSS;JavaScript;PHP;SQL
+72644,Bash/Shell/PowerShell;Java;JavaScript;Python;Rust;TypeScript
+72645,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+72646,HTML/CSS;JavaScript;TypeScript
+72647,Clojure;HTML/CSS;JavaScript
+72648,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72649,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;Swift;Other(s):
+72650,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72651,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+72652,HTML/CSS;Java;JavaScript;Python
+72653,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+72654,Bash/Shell/PowerShell;PHP;SQL
+72655,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;WebAssembly
+72656,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+72657,C++;Dart;Java;Kotlin
+72658,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+72659,JavaScript;Python;SQL
+72660,JavaScript;PHP
+72661,Bash/Shell/PowerShell;Python;R
+72662,Java;Kotlin;Python
+72663,C;HTML/CSS;JavaScript;Python;SQL
+72664,HTML/CSS;JavaScript;PHP;SQL
+72665,HTML/CSS;JavaScript;SQL;Swift
+72666,HTML/CSS;Java;JavaScript;SQL
+72667,Java;JavaScript;Other(s):
+72668,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72669,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+72670,C++;HTML/CSS;JavaScript;Python;VBA
+72671,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+72672,HTML/CSS;JavaScript;PHP
+72673,HTML/CSS;Java;JavaScript;PHP;SQL
+72674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+72675,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;Ruby;SQL;Other(s):
+72676,HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+72677,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+72678,C;C++;C#;F#;HTML/CSS
+72679,Bash/Shell/PowerShell;Java
+72680,HTML/CSS;Java;JavaScript;TypeScript
+72681,C++;Java;JavaScript;Objective-C;Python;Swift
+72682,C#;HTML/CSS;Java;JavaScript;Objective-C;Swift;VBA
+72683,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+72684,JavaScript;Python;TypeScript
+72685,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72686,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+72687,Java
+72688,Java;SQL;Other(s):
+72689,C#;HTML/CSS;JavaScript;Python;TypeScript
+72690,HTML/CSS;JavaScript;PHP;SQL
+72691,Go;HTML/CSS;Objective-C;Swift
+72692,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+72693,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+72694,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72695,HTML/CSS;JavaScript
+72696,Java;JavaScript;Kotlin;Objective-C;Swift
+72697,HTML/CSS;Java;JavaScript;PHP;SQL
+72698,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Objective-C;PHP;Rust;SQL;Swift;TypeScript;WebAssembly;Other(s):
+72699,Java
+72700,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+72701,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+72702,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72703,HTML/CSS;JavaScript;Python
+72704,C;C++;Java;SQL
+72705,Bash/Shell/PowerShell;Python;SQL
+72706,Python;R;VBA
+72707,HTML/CSS;JavaScript;PHP;TypeScript
+72708,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+72709,Bash/Shell/PowerShell;C#;JavaScript;PHP;SQL
+72710,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+72711,HTML/CSS;JavaScript;Python;SQL
+72712,C#;F#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+72713,C#;HTML/CSS;JavaScript;SQL
+72714,Bash/Shell/PowerShell;Java;Python;Scala
+72715,Bash/Shell/PowerShell;JavaScript
+72716,HTML/CSS;JavaScript;Python
+72717,C;Java;Python
+72719,JavaScript;PHP;SQL
+72720,C++;C#;Java;Kotlin;Python;SQL
+72721,Java
+72722,Dart;Elixir;HTML/CSS;Java;JavaScript
+72723,C#;HTML/CSS;JavaScript;TypeScript
+72724,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72725,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+72726,C#;HTML/CSS;JavaScript;SQL
+72727,HTML/CSS;JavaScript;Ruby
+72728,C#;HTML/CSS;JavaScript;TypeScript
+72729,HTML/CSS;Kotlin;Python;TypeScript
+72730,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+72731,Python;VBA
+72732,Java;Python;SQL
+72733,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Python;Other(s):
+72734,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72735,Bash/Shell/PowerShell;C++;Java;Python
+72736,HTML/CSS;JavaScript;Ruby
+72737,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+72738,Bash/Shell/PowerShell;C++;C#;Java;Objective-C
+72739,HTML/CSS;Java;PHP;SQL;TypeScript
+72740,Python;R;SQL
+72741,JavaScript;Scala;TypeScript
+72742,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+72743,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin
+72744,C;HTML/CSS;JavaScript;PHP;Python;SQL
+72745,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+72746,C#;JavaScript;SQL
+72747,HTML/CSS;JavaScript;Other(s):
+72748,C#;HTML/CSS;JavaScript
+72749,HTML/CSS;JavaScript;PHP;SQL
+72750,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+72751,C;VBA
+72752,C#;HTML/CSS;JavaScript;SQL
+72753,Bash/Shell/PowerShell;C#;Go;JavaScript;SQL
+72754,C#;HTML/CSS;JavaScript;PHP;TypeScript
+72755,C++
+72756,C#;Java;JavaScript;SQL
+72757,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72758,Elixir;JavaScript
+72759,C;HTML/CSS
+72761,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+72762,Assembly;HTML/CSS;JavaScript;Python;Rust;Scala;SQL
+72763,HTML/CSS;Java;Kotlin;SQL
+72764,C#;Dart
+72765,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+72766,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72767,HTML/CSS;Java;Python;SQL
+72768,Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+72769,C++;C#;HTML/CSS;PHP;SQL
+72770,Bash/Shell/PowerShell;C;C++;Python
+72771,Swift
+72772,Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+72773,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+72774,HTML/CSS;JavaScript;Python
+72777,C#;SQL
+72778,JavaScript;VBA
+72779,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP
+72780,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+72782,C++;HTML/CSS;JavaScript;TypeScript
+72783,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;SQL;VBA
+72784,Java;JavaScript;Python;R;Scala;SQL;Other(s):
+72785,Go;HTML/CSS;JavaScript;Kotlin;Swift;TypeScript
+72786,C;C++;C#;Java;JavaScript;Python;SQL
+72787,Assembly;Bash/Shell/PowerShell;C;C++;Python
+72788,Python;SQL
+72789,Java
+72790,C++;C#;HTML/CSS;JavaScript
+72791,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;Ruby;Scala;SQL
+72792,Java;JavaScript;Other(s):
+72793,C#;Java;JavaScript;SQL;TypeScript
+72794,HTML/CSS;JavaScript
+72795,C#;F#
+72796,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+72797,C#;HTML/CSS;Java;JavaScript;SQL
+72798,HTML/CSS;JavaScript;SQL
+72799,C#;HTML/CSS;Java;JavaScript;SQL
+72800,Bash/Shell/PowerShell;C;C++;C#;Python;SQL;WebAssembly
+72801,HTML/CSS;Java;JavaScript;SQL;TypeScript
+72802,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+72803,HTML/CSS;TypeScript
+72804,Java;SQL;Swift
+72805,C#;HTML/CSS;JavaScript;SQL
+72806,C#;HTML/CSS;JavaScript;PHP;SQL
+72807,Java;Kotlin
+72808,Java;Kotlin
+72809,Bash/Shell/PowerShell;JavaScript;Python
+72810,HTML/CSS;Java;JavaScript;PHP;SQL
+72811,C++;C#;HTML/CSS;JavaScript
+72812,C;C++;C#;HTML/CSS;JavaScript;SQL
+72813,C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;Swift;TypeScript
+72814,C++;C#;SQL
+72815,HTML/CSS;JavaScript;PHP;VBA
+72816,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+72817,HTML/CSS;JavaScript
+72818,Objective-C
+72819,Bash/Shell/PowerShell;Python
+72820,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+72821,Bash/Shell/PowerShell;C#;Dart;Java;JavaScript;Objective-C;SQL
+72822,C;C++;C#;JavaScript;Python
+72823,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+72824,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+72825,Bash/Shell/PowerShell;C;C#;Python;Other(s):
+72826,HTML/CSS;Java;JavaScript;TypeScript
+72827,HTML/CSS;Java;Kotlin;Python;SQL
+72828,Bash/Shell/PowerShell;C;Dart;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+72829,C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+72830,C;Go;Python
+72831,C#;HTML/CSS;SQL;TypeScript
+72832,Bash/Shell/PowerShell;HTML/CSS;Objective-C;Python;Ruby;Swift
+72833,Java;JavaScript;Python
+72834,C;C++;C#;Go;TypeScript
+72835,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+72836,C;C++;C#;Java;Python;SQL
+72837,C++;Go;HTML/CSS;JavaScript;Python;Ruby
+72838,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+72839,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+72840,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+72841,Java;Kotlin
+72842,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;Other(s):
+72843,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;Ruby;SQL;TypeScript
+72844,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Python;R;Other(s):
+72845,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+72846,C#;HTML/CSS;JavaScript;PHP;SQL
+72847,C;C++;Go;Kotlin;PHP
+72848,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+72849,Bash/Shell/PowerShell;Clojure;Rust
+72850,Java;Python;Scala
+72851,Java
+72852,Java;JavaScript
+72853,Objective-C;Swift
+72854,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+72855,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+72856,Java;Scala
+72857,C;HTML/CSS;Java;JavaScript;Python
+72858,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;Other(s):
+72859,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;SQL;Other(s):
+72860,Bash/Shell/PowerShell;Python
+72861,JavaScript;Kotlin;PHP;TypeScript
+72862,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript
+72863,Dart;Java;Kotlin;Python;SQL
+72864,C#;Java
+72865,C#;HTML/CSS;Kotlin;Python;TypeScript
+72866,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+72867,Objective-C;Swift
+72868,Bash/Shell/PowerShell;C;C++;Python
+72869,Bash/Shell/PowerShell;C;C++;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Swift;Other(s):
+72870,C#;HTML/CSS;JavaScript
+72871,C#;HTML/CSS;SQL;Other(s):
+72873,Java;JavaScript
+72874,Bash/Shell/PowerShell;C++;C#;Java
+72875,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+72876,Bash/Shell/PowerShell;Clojure;HTML/CSS;Other(s):
+72877,Java;Kotlin
+72878,HTML/CSS;Java;JavaScript;SQL
+72879,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+72880,HTML/CSS;JavaScript
+72881,Bash/Shell/PowerShell;C;C++;Python
+72882,C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+72883,C#;HTML/CSS;Other(s):
+72884,HTML/CSS;JavaScript
+72885,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL
+72886,C++
+72887,HTML/CSS;JavaScript
+72888,HTML/CSS;Java;JavaScript;SQL;TypeScript
+72889,Bash/Shell/PowerShell;C++;Python;Scala
+72890,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Ruby
+72891,C++;HTML/CSS;Java;JavaScript;Python;SQL
+72892,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+72893,Bash/Shell/PowerShell;C++;Go;Python;SQL
+72894,Java
+72895,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;SQL
+72896,HTML/CSS;JavaScript;TypeScript
+72897,C;C++;C#
+72898,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+72899,HTML/CSS;PHP;Python;SQL
+72900,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Rust;SQL;TypeScript
+72901,Java;SQL
+72902,HTML/CSS;JavaScript;TypeScript
+72903,HTML/CSS;JavaScript
+72904,HTML/CSS;JavaScript
+72905,C#
+72906,Bash/Shell/PowerShell;Kotlin;Python;SQL
+72907,C#;HTML/CSS;JavaScript;PHP;SQL
+72908,HTML/CSS;Java;JavaScript;Scala;SQL
+72909,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+72910,C;C++;HTML/CSS;JavaScript;Python
+72911,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+72912,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;TypeScript
+72913,C#;Rust;Swift;TypeScript;WebAssembly
+72914,Bash/Shell/PowerShell;JavaScript
+72915,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+72916,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+72917,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;WebAssembly
+72918,Assembly;Bash/Shell/PowerShell;C;HTML/CSS
+72919,Assembly;C;C++;C#
+72920,Elixir;HTML/CSS;JavaScript;PHP;Ruby
+72921,Java;JavaScript;Objective-C;Python;Swift
+72922,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+72923,C;Java;JavaScript;PHP;Python;SQL
+72924,HTML/CSS;JavaScript;PHP;Python;SQL
+72925,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+72926,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+72927,HTML/CSS;JavaScript
+72928,HTML/CSS;JavaScript;VBA;Other(s):
+72929,C#;SQL;VBA
+72930,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+72931,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+72932,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+72933,C#
+72934,Java;JavaScript;SQL
+72935,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+72936,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+72937,Assembly;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+72938,C++;HTML/CSS;JavaScript;PHP;SQL
+72939,Java;JavaScript;PHP;Python
+72940,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+72941,C#;Java;Objective-C;Swift
+72942,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;VBA
+72943,HTML/CSS;JavaScript;SQL;TypeScript
+72944,C#;HTML/CSS;PHP;SQL
+72945,Java;JavaScript;Kotlin;PHP;Python;R
+72946,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+72947,C;C++;HTML/CSS;JavaScript;PHP;SQL
+72948,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+72949,Bash/Shell/PowerShell;C#;JavaScript
+72950,C;C++;Go;JavaScript;SQL;TypeScript
+72951,Assembly;Bash/Shell/PowerShell;C;JavaScript;TypeScript;Other(s):
+72952,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;JavaScript;Objective-C;Python;R;SQL;Swift;TypeScript;WebAssembly
+72953,C++;C#;Rust
+72954,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+72955,C;C++;Go;Java;Python
+72956,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+72957,C;C++;JavaScript;Python;R
+72958,Bash/Shell/PowerShell;Python;VBA
+72959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+72960,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+72961,C#;HTML/CSS;Java;JavaScript
+72962,C#;HTML/CSS;JavaScript;Other(s):
+72963,C#;HTML/CSS;JavaScript;SQL;TypeScript
+72964,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+72965,C#;HTML/CSS;SQL
+72966,Go;HTML/CSS;Java;JavaScript;TypeScript
+72967,C#;HTML/CSS;JavaScript;PHP;SQL
+72968,Java;JavaScript;Kotlin
+72969,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+72970,Go;Python
+72971,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+72972,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+72973,JavaScript;Python;TypeScript
+72974,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+72975,C++
+72976,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+72977,Bash/Shell/PowerShell;C;C++;C#;Java;PHP;Python
+72978,C#;Python
+72979,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Python
+72980,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+72981,C#;HTML/CSS;JavaScript
+72982,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+72983,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+72984,C#;HTML/CSS;JavaScript
+72985,HTML/CSS;JavaScript;PHP;SQL
+72986,Java;Kotlin
+72987,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;SQL
+72988,Bash/Shell/PowerShell;C;C++;Java;Python
+72989,C;HTML/CSS;PHP
+72990,HTML/CSS;JavaScript;PHP;SQL
+72991,Bash/Shell/PowerShell;HTML/CSS;Java;Scala;TypeScript
+72992,Objective-C;Swift
+72993,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+72994,Java;JavaScript;Objective-C;Other(s):
+72995,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+72996,HTML/CSS;Java;JavaScript
+72997,Objective-C;Swift
+72998,HTML/CSS;PHP;SQL
+72999,Bash/Shell/PowerShell;C++;Python
+73000,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL
+73001,C++;C#;Java;Python
+73002,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+73003,Bash/Shell/PowerShell;Java;JavaScript;Python
+73004,C#;HTML/CSS;JavaScript;SQL
+73005,HTML/CSS;Java;JavaScript
+73006,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+73007,Bash/Shell/PowerShell;C;C++
+73008,C++;HTML/CSS;JavaScript;Python
+73009,Bash/Shell/PowerShell;SQL;Other(s):
+73010,C#;JavaScript;SQL
+73011,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+73012,JavaScript;PHP;SQL
+73013,C#;HTML/CSS;Java;JavaScript;PHP;Swift
+73014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+73015,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73016,C#;HTML/CSS;JavaScript;SQL;Other(s):
+73017,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+73018,C;C++;Objective-C;Swift
+73019,HTML/CSS;JavaScript;PHP;Ruby;SQL
+73020,C;C++;HTML/CSS;Java;Kotlin;Python;SQL;TypeScript
+73021,Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73022,Clojure;Java;JavaScript;Ruby
+73024,Bash/Shell/PowerShell;C;C++;HTML/CSS
+73025,HTML/CSS;JavaScript;VBA
+73026,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+73027,Java;Kotlin;Python
+73028,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+73029,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+73030,Java;JavaScript;SQL
+73031,HTML/CSS;JavaScript
+73033,Python;Scala
+73034,C#
+73035,HTML/CSS;JavaScript;Ruby;TypeScript
+73036,C;C++
+73037,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript
+73038,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73039,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+73040,HTML/CSS;Java;JavaScript;PHP;SQL
+73041,HTML/CSS;Java;JavaScript;SQL;TypeScript
+73042,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;SQL
+73043,HTML/CSS;Java;JavaScript;SQL;TypeScript
+73044,Java;Kotlin
+73045,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;Other(s):
+73046,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+73047,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+73048,Java;TypeScript
+73049,JavaScript
+73050,C;C++;Python;SQL
+73051,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;Scala;SQL;TypeScript;WebAssembly;Other(s):
+73052,HTML/CSS;JavaScript;Python
+73053,Java;JavaScript;SQL
+73054,Objective-C;Swift
+73055,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+73056,Bash/Shell/PowerShell;Java;JavaScript;Other(s):
+73057,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73058,C;Go;HTML/CSS;JavaScript;Rust
+73059,C;C++;Dart;Java;Kotlin;Python;R
+73060,Bash/Shell/PowerShell;JavaScript;Python
+73061,C#;JavaScript;TypeScript
+73062,Bash/Shell/PowerShell;Java;SQL
+73063,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;Other(s):
+73064,C++;C#;F#;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+73065,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+73066,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;Swift
+73067,C;C#;Go;JavaScript;Python;SQL
+73068,HTML/CSS;JavaScript
+73069,HTML/CSS;Java;JavaScript;SQL
+73070,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73071,Bash/Shell/PowerShell;Python;SQL
+73072,Bash/Shell/PowerShell;Python;SQL
+73073,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73074,Assembly
+73075,JavaScript;PHP
+73076,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+73077,C#;HTML/CSS;SQL
+73078,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+73079,Bash/Shell/PowerShell;C;HTML/CSS;PHP;SQL;Other(s):
+73080,C#;HTML/CSS;JavaScript;SQL
+73081,Java;JavaScript;Kotlin;Python;Ruby;SQL
+73082,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+73083,HTML/CSS;JavaScript;Kotlin;R;SQL
+73084,Python;SQL
+73085,Java;JavaScript;Python;Other(s):
+73086,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript
+73087,HTML/CSS;JavaScript;PHP;Python
+73088,Java
+73089,C++;C#;JavaScript;Rust
+73090,Bash/Shell/PowerShell;Go;Python
+73091,Python;SQL;Other(s):
+73092,C++;Kotlin;Objective-C;Ruby;Swift
+73093,HTML/CSS;Java;JavaScript;SQL
+73094,HTML/CSS;JavaScript;TypeScript
+73095,Bash/Shell/PowerShell;C
+73096,Java;JavaScript;Python
+73097,C;C++;PHP;Python;R;SQL
+73098,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+73099,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73100,C++;C#
+73101,HTML/CSS;JavaScript;Other(s):
+73102,C#;SQL;VBA
+73103,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73104,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73105,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73106,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;R;Ruby;SQL;Other(s):
+73107,HTML/CSS;Java;SQL;VBA
+73108,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+73109,HTML/CSS;JavaScript;PHP;TypeScript
+73110,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;SQL;TypeScript
+73111,C;HTML/CSS;JavaScript;PHP;SQL
+73112,Go;Java;JavaScript;SQL;VBA
+73113,C++;C#;Python
+73114,HTML/CSS;JavaScript;Python
+73115,Bash/Shell/PowerShell;C;Python;Other(s):
+73116,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+73117,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+73118,C++;C#;SQL
+73119,SQL;Other(s):
+73120,Dart;Java;JavaScript;Kotlin;SQL
+73121,Bash/Shell/PowerShell;C++;C#;Dart;Java;JavaScript;Kotlin;PHP;Python;SQL
+73122,HTML/CSS;JavaScript;Python
+73123,HTML/CSS;Java;JavaScript;PHP;SQL
+73124,C;C++;C#;HTML/CSS;JavaScript;SQL
+73125,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;TypeScript
+73126,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+73127,C++;HTML/CSS;JavaScript;Ruby;SQL
+73128,C#;Java;Python
+73129,Java;JavaScript
+73130,C#;Go;HTML/CSS;JavaScript;PHP
+73131,C#;HTML/CSS;JavaScript;SQL
+73132,C++;C#
+73133,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript
+73134,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+73135,C#;HTML/CSS;SQL;VBA
+73136,C#;JavaScript;Other(s):
+73137,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+73138,HTML/CSS;Python;R;SQL
+73139,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+73140,C;Java;JavaScript;Python;TypeScript
+73141,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+73142,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73143,C;C#;HTML/CSS;JavaScript;PHP;SQL
+73144,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java
+73145,C#;HTML/CSS;JavaScript;Python;SQL
+73146,JavaScript;Ruby
+73147,C++;HTML/CSS;Java;JavaScript;Ruby;SQL
+73148,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+73149,Python;R
+73150,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73151,C#;HTML/CSS;SQL;TypeScript
+73152,Python
+73153,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+73154,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+73155,HTML/CSS;JavaScript;PHP;SQL
+73156,C#;HTML/CSS;JavaScript;SQL
+73157,PHP;Ruby
+73158,Bash/Shell/PowerShell;R;Other(s):
+73159,Bash/Shell/PowerShell;Python;R;SQL
+73160,C#;HTML/CSS;JavaScript;PHP
+73161,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+73162,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+73163,HTML/CSS;Java;JavaScript;Python;SQL
+73164,Bash/Shell/PowerShell;Java
+73165,Java;JavaScript;Python;SQL
+73166,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73167,HTML/CSS;Java;JavaScript;Python;R
+73168,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73169,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+73170,HTML/CSS;JavaScript
+73171,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+73172,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73173,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA;Other(s):
+73174,Bash/Shell/PowerShell;Java;SQL;Swift
+73175,JavaScript
+73176,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+73177,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73178,Bash/Shell/PowerShell;SQL
+73179,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73180,Bash/Shell/PowerShell;C#;Java;Python;R;SQL
+73181,C#;HTML/CSS;JavaScript;Python;SQL
+73182,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python
+73183,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+73184,HTML/CSS;Java;JavaScript;PHP
+73185,HTML/CSS;JavaScript;TypeScript
+73186,C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+73187,C#;HTML/CSS;JavaScript;Python;SQL
+73188,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+73189,Bash/Shell/PowerShell;Clojure
+73190,Go;JavaScript;PHP;Python;Ruby;SQL
+73191,Python
+73192,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+73193,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+73194,C#;HTML/CSS;JavaScript;Python;SQL
+73195,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73197,HTML/CSS;Java;JavaScript;SQL
+73198,Bash/Shell/PowerShell;C++;C#;Go;Java;Kotlin;Python
+73199,HTML/CSS;JavaScript;Python
+73200,HTML/CSS;JavaScript;SQL
+73201,C#;HTML/CSS;Java;JavaScript;Python
+73202,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+73203,Assembly;Bash/Shell/PowerShell;C;C++;Java;PHP;Python;R;SQL
+73204,HTML/CSS;Java;JavaScript;PHP;SQL
+73205,HTML/CSS;JavaScript;SQL;VBA
+73206,Java;JavaScript
+73207,Bash/Shell/PowerShell;C++;C#;Java
+73208,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby
+73209,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+73210,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+73211,Bash/Shell/PowerShell;C++;C#;Python;SQL
+73212,C;Java;Kotlin;Python
+73213,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+73214,C;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+73215,Java;Python
+73216,C#;Java;Objective-C;SQL;Swift
+73217,Java;Kotlin
+73218,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+73219,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+73220,PHP;SQL
+73221,HTML/CSS;Java;JavaScript
+73222,C#
+73223,C++
+73224,Objective-C;Python;Swift
+73225,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+73226,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73227,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;WebAssembly;Other(s):
+73228,Assembly;C;C++;C#;HTML/CSS;Java;SQL
+73229,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby
+73230,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL
+73231,Bash/Shell/PowerShell;Python;SQL
+73232,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+73234,C;Dart;Java;Kotlin;PHP;Python;SQL
+73235,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+73236,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73237,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+73238,Bash/Shell/PowerShell;C;Python
+73239,C;C++;HTML/CSS;Java
+73240,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+73241,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+73242,Java
+73243,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+73244,Bash/Shell/PowerShell;C#;Python;Other(s):
+73245,HTML/CSS;JavaScript;PHP;SQL
+73246,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+73247,C#;HTML/CSS;JavaScript;SQL
+73248,C;C++;C#;Java;PHP;Python
+73249,JavaScript;Other(s):
+73250,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+73251,C#;Dart;HTML/CSS;SQL;TypeScript
+73252,Bash/Shell/PowerShell;C++;Python;R;Other(s):
+73253,HTML/CSS;Java;JavaScript;Python
+73254,HTML/CSS;JavaScript
+73255,HTML/CSS;JavaScript;TypeScript
+73256,C#;HTML/CSS;JavaScript;SQL
+73257,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+73258,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+73259,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+73260,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73261,Java;JavaScript;Kotlin
+73262,HTML/CSS;Java;JavaScript;Python
+73263,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+73264,HTML/CSS;JavaScript;Python;SQL
+73265,HTML/CSS;JavaScript
+73266,HTML/CSS;JavaScript;TypeScript;Other(s):
+73267,C++;JavaScript;Python
+73268,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+73269,Python;SQL
+73271,Elixir;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+73272,C;JavaScript;Python;SQL
+73273,Assembly;C;C++;HTML/CSS;Java;Objective-C;PHP;Python
+73274,Bash/Shell/PowerShell;Java;SQL
+73275,Bash/Shell/PowerShell;C;C++;Go;JavaScript;PHP;Python;SQL;Other(s):
+73276,C#
+73277,Java;JavaScript;SQL
+73278,Bash/Shell/PowerShell;C#;PHP;SQL
+73279,Bash/Shell/PowerShell
+73280,Java;JavaScript;SQL
+73281,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73282,HTML/CSS;JavaScript;PHP;Ruby;SQL
+73283,HTML/CSS;Java;JavaScript
+73284,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+73285,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+73286,HTML/CSS;Java;JavaScript;PHP
+73287,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+73288,Bash/Shell/PowerShell;JavaScript;Ruby
+73289,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+73290,Bash/Shell/PowerShell;Elixir;Go;JavaScript;Ruby;SQL
+73291,C;C++;C#;Java;Python;SQL
+73292,HTML/CSS;JavaScript;SQL
+73293,Bash/Shell/PowerShell;C;C++;VBA
+73294,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript
+73295,Assembly;HTML/CSS;Java;JavaScript;PHP;SQL
+73296,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+73297,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+73298,C#;Python
+73299,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+73300,R
+73301,C++;C#;JavaScript;TypeScript;WebAssembly
+73302,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73303,Bash/Shell/PowerShell;C;C++;Go;WebAssembly
+73304,Assembly;C;Java;Python;R;SQL
+73305,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+73306,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript;Other(s):
+73307,JavaScript;PHP;SQL
+73308,Bash/Shell/PowerShell;C;C++;Python;R
+73309,C;C++;Go;Java;Python;Ruby
+73310,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73311,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+73312,HTML/CSS;JavaScript;TypeScript
+73313,JavaScript;Python;SQL
+73314,HTML/CSS;JavaScript;Python
+73315,Bash/Shell/PowerShell;Java;JavaScript
+73316,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+73317,C;C++;Ruby
+73318,HTML/CSS;Java;JavaScript;PHP;SQL
+73319,C#;HTML/CSS;JavaScript;SQL
+73320,Java;JavaScript;Kotlin;SQL;WebAssembly
+73321,C#;Dart;HTML/CSS;Java;Kotlin;Python;SQL;Swift
+73322,HTML/CSS;Java;SQL
+73323,Assembly
+73324,HTML/CSS;JavaScript;Ruby
+73325,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+73326,Python;VBA
+73327,HTML/CSS;Java;JavaScript
+73328,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+73329,Bash/Shell/PowerShell;C++;C#;Python
+73330,Java;Python;SQL
+73331,JavaScript;Ruby
+73332,C#;HTML/CSS;Java;JavaScript;SQL
+73333,Elixir;Go;Java;JavaScript;Python;Scala
+73334,C#;HTML/CSS;SQL
+73335,HTML/CSS;JavaScript;PHP;SQL
+73336,C#;HTML/CSS;JavaScript;SQL
+73337,C#;JavaScript;PHP;Python;Ruby
+73338,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73339,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+73340,Bash/Shell/PowerShell;C#;HTML/CSS;VBA
+73341,HTML/CSS;Java;Python
+73342,C#;HTML/CSS;Java;Kotlin;SQL
+73343,Clojure;Dart;Java;JavaScript;SQL
+73344,Bash/Shell/PowerShell;Python
+73345,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+73346,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+73347,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+73348,Assembly;Bash/Shell/PowerShell;C;C++;Python
+73349,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+73350,C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73351,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+73352,JavaScript;Ruby
+73353,Elixir;Go;Python;R;Ruby
+73354,Bash/Shell/PowerShell;Objective-C;Swift
+73355,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+73356,Java;SQL
+73357,Java;Scala
+73358,HTML/CSS;JavaScript;PHP
+73359,HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+73360,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+73361,Java;Scala
+73362,Bash/Shell/PowerShell;SQL;Other(s):
+73363,HTML/CSS;JavaScript;PHP;TypeScript
+73364,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+73365,Other(s):
+73366,C++;HTML/CSS;Java;Python;R
+73367,HTML/CSS;JavaScript;TypeScript
+73368,HTML/CSS;JavaScript
+73369,JavaScript;Python
+73370,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+73371,C++;Java;Python;Other(s):
+73372,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73373,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+73374,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Swift;TypeScript;Other(s):
+73375,Go;Java;Ruby
+73376,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+73377,HTML/CSS;Java;SQL
+73378,Python
+73379,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Other(s):
+73380,C#;HTML/CSS;Java;JavaScript;TypeScript
+73381,C;HTML/CSS;JavaScript;Python;SQL
+73382,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+73383,C#
+73384,Go;Python
+73385,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+73386,HTML/CSS;Java;JavaScript;PHP
+73387,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+73388,Bash/Shell/PowerShell;Java;Kotlin;Python
+73389,Dart;Java;Kotlin;Swift
+73391,HTML/CSS;Java;JavaScript
+73392,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C
+73393,Java
+73394,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+73395,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+73396,HTML/CSS;PHP
+73397,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73398,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+73399,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+73400,C#;HTML/CSS;JavaScript;SQL
+73401,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+73402,HTML/CSS;R;SQL;VBA
+73403,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+73404,Bash/Shell/PowerShell;Java;SQL;Other(s):
+73405,C++;C#;SQL
+73406,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Other(s):
+73407,C++;HTML/CSS;JavaScript;Python
+73409,HTML/CSS;JavaScript;PHP
+73410,C;C++;C#;HTML/CSS;SQL
+73411,Java
+73412,C#;JavaScript;PHP
+73413,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+73414,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+73415,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+73416,HTML/CSS;JavaScript;PHP;SQL
+73417,Java;Kotlin;SQL
+73418,C++;JavaScript;Python;TypeScript
+73419,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+73420,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+73421,HTML/CSS;JavaScript;SQL;Other(s):
+73422,Bash/Shell/PowerShell;C;C++;Java
+73423,C#;Java;Kotlin;Objective-C;Swift
+73424,Python;Other(s):
+73425,Bash/Shell/PowerShell;Java;SQL
+73426,R
+73427,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Scala;SQL;VBA
+73428,HTML/CSS;Java;JavaScript;SQL;TypeScript
+73429,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python
+73430,C;Go;JavaScript;Rust;SQL
+73431,HTML/CSS;Java;JavaScript;Python
+73432,C#;HTML/CSS;JavaScript;SQL
+73433,Go;Python
+73434,C++;HTML/CSS;Java;JavaScript;PHP;Ruby
+73435,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;PHP;SQL
+73436,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+73437,HTML/CSS;JavaScript;Other(s):
+73438,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+73439,Java;JavaScript;PHP
+73440,HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+73441,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+73442,C;C++
+73443,Bash/Shell/PowerShell;R
+73444,C++;C#
+73445,JavaScript
+73446,C;Java;Rust;Scala
+73447,Bash/Shell/PowerShell;Go;Python;SQL
+73448,Other(s):
+73449,JavaScript;SQL
+73450,Java;Python;Scala;SQL
+73451,C;C++;HTML/CSS;Java;JavaScript;SQL
+73452,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;Other(s):
+73453,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;Swift
+73454,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73455,Bash/Shell/PowerShell;C;Java
+73456,Objective-C
+73457,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+73458,JavaScript;TypeScript
+73459,Java;Python;R;Other(s):
+73460,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+73461,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Kotlin;Python;R;SQL
+73462,C#;HTML/CSS;JavaScript;SQL
+73463,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+73464,HTML/CSS;Java;JavaScript;Ruby
+73465,Dart;Java;JavaScript;Python;Scala
+73466,HTML/CSS;JavaScript;PHP;SQL
+73467,Bash/Shell/PowerShell;Java;Kotlin;Scala
+73468,Java;Swift
+73469,C#;HTML/CSS;JavaScript;SQL
+73470,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala
+73471,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73473,C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+73474,Assembly;Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+73475,C;C++;JavaScript
+73476,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+73477,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+73478,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+73479,Bash/Shell/PowerShell;C++;C#;Java;JavaScript
+73480,C#;HTML/CSS;Java;JavaScript;TypeScript
+73481,Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+73482,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Other(s):
+73483,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73484,C;C++
+73485,Bash/Shell/PowerShell;Python;R;SQL
+73487,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+73488,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Rust;TypeScript
+73489,C#;HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL
+73490,Elixir;Erlang
+73491,Java;Kotlin;Objective-C;PHP;Python;Ruby;SQL
+73492,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+73493,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript;VBA;Other(s):
+73494,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+73495,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+73496,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73497,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73498,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript;VBA
+73499,HTML/CSS;JavaScript;TypeScript
+73500,HTML/CSS;JavaScript;Python;TypeScript
+73501,C#
+73502,C#;HTML/CSS;SQL;Swift
+73503,C#;Go;Java;Python;SQL
+73504,C#;HTML/CSS;JavaScript;SQL
+73505,Java
+73506,C#;JavaScript;SQL
+73507,C#;HTML/CSS;JavaScript;PHP;SQL
+73508,HTML/CSS;JavaScript;PHP;Other(s):
+73509,HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+73510,Python
+73511,Python;Other(s):
+73512,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+73513,C;C++;Python;Other(s):
+73514,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+73515,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73516,Bash/Shell/PowerShell;C++;C#;SQL;Other(s):
+73517,Go;Python;SQL
+73518,C#;Elixir;Go;HTML/CSS;JavaScript;Rust;TypeScript;WebAssembly
+73519,Objective-C;Swift
+73520,C;C++;HTML/CSS;JavaScript;PHP;SQL
+73521,C;HTML/CSS;Java;JavaScript;SQL
+73523,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+73524,Python;SQL;Swift
+73525,C#;JavaScript;SQL
+73526,C#;HTML/CSS;JavaScript;Python
+73527,C++;HTML/CSS;Python
+73528,HTML/CSS;JavaScript;Ruby;SQL
+73529,HTML/CSS;JavaScript
+73530,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+73531,Python;SQL
+73532,C#;HTML/CSS;JavaScript;PHP;SQL
+73533,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+73534,C;C++
+73535,Java;Python;R;Rust
+73536,Java;TypeScript
+73537,C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+73538,HTML/CSS;JavaScript;TypeScript
+73539,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+73540,Assembly;C;C++;Go;Python;Ruby;Rust;Swift
+73541,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+73542,Bash/Shell/PowerShell;Elixir;F#;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+73543,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+73544,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+73545,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+73546,Bash/Shell/PowerShell;C;Python
+73547,HTML/CSS;JavaScript;PHP;Python;SQL
+73548,Java;SQL
+73549,Java;JavaScript;PHP;Python;TypeScript
+73550,Assembly;Bash/Shell/PowerShell;Python
+73551,C#;JavaScript;SQL
+73552,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+73553,Bash/Shell/PowerShell;Java;JavaScript;Python
+73554,Java
+73555,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+73556,Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP;Python;SQL
+73557,C;Other(s):
+73558,C;C++;HTML/CSS;JavaScript
+73559,Go;HTML/CSS;Java;JavaScript;SQL
+73560,HTML/CSS;Java;PHP;Other(s):
+73561,HTML/CSS;JavaScript;Python;TypeScript
+73562,Bash/Shell/PowerShell;C++;Other(s):
+73563,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+73564,C#;JavaScript;Python
+73565,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+73566,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;R;Ruby;SQL
+73567,C;C++;HTML/CSS;Java;JavaScript;SQL
+73568,Other(s):
+73569,C;C++;HTML/CSS;JavaScript;SQL
+73570,C#;HTML/CSS;Java;JavaScript;TypeScript
+73571,JavaScript;Python;Rust
+73572,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript;VBA
+73573,HTML/CSS;Java
+73574,HTML/CSS;JavaScript;Python;SQL
+73575,C#;HTML/CSS;JavaScript;SQL;Other(s):
+73576,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+73577,C#;Java
+73578,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;R;SQL
+73579,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+73580,HTML/CSS;JavaScript;PHP;Python;Ruby
+73581,Java
+73582,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+73583,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+73584,C#;R;SQL;VBA
+73585,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;TypeScript
+73586,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+73587,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+73588,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;TypeScript
+73589,C;C++
+73590,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+73591,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+73592,C#;SQL
+73593,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73594,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+73595,HTML/CSS;JavaScript;Rust;Swift;TypeScript;WebAssembly
+73596,HTML/CSS;JavaScript;PHP;Python
+73598,C#;HTML/CSS
+73599,HTML/CSS;JavaScript;Python
+73600,HTML/CSS;Java;JavaScript;SQL;TypeScript
+73601,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+73602,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+73603,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+73604,Python;SQL
+73605,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;Python;Ruby;Scala
+73606,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+73607,HTML/CSS;JavaScript;SQL;Other(s):
+73608,HTML/CSS;Python;R;SQL
+73609,HTML/CSS;JavaScript;Python;SQL
+73610,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript;WebAssembly;Other(s):
+73611,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+73612,C;C++;Java;JavaScript
+73613,Rust
+73614,HTML/CSS;JavaScript;PHP;SQL
+73615,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+73616,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;TypeScript
+73617,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Rust
+73618,HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+73619,HTML/CSS;JavaScript;TypeScript
+73620,C#;SQL
+73621,Go;HTML/CSS;JavaScript;Python;TypeScript
+73622,Go;HTML/CSS;JavaScript;Python
+73623,Bash/Shell/PowerShell;C;C++;Go;Java;Kotlin;Python;SQL
+73624,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73625,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73627,C++;Python
+73628,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+73629,JavaScript;PHP
+73630,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+73631,C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+73632,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+73633,C#
+73634,Bash/Shell/PowerShell;C;C++;C#;Clojure;F#;Java;JavaScript;Kotlin;TypeScript;Other(s):
+73635,Java;Kotlin;PHP;SQL
+73636,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+73637,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+73638,C
+73639,C++;C#;JavaScript;Python;SQL;TypeScript
+73640,C;Go;HTML/CSS;Java;Ruby;Rust
+73641,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+73642,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+73643,HTML/CSS;JavaScript;PHP
+73644,C#;Scala;SQL
+73645,HTML/CSS;JavaScript;Python;SQL
+73646,C++;C#;HTML/CSS;Java;JavaScript;Other(s):
+73647,HTML/CSS;JavaScript;PHP
+73648,Java;JavaScript;Kotlin;PHP;SQL;Swift
+73649,C#;HTML/CSS;Java;JavaScript;SQL
+73650,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Other(s):
+73651,Bash/Shell/PowerShell;JavaScript
+73652,Python;R;SQL
+73653,Bash/Shell/PowerShell;Go;SQL
+73654,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+73655,C#;HTML/CSS;JavaScript;PHP;SQL
+73656,HTML/CSS;JavaScript;Python;SQL
+73657,HTML/CSS;JavaScript;SQL;Swift;TypeScript
+73658,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+73659,Bash/Shell/PowerShell;C++;Python
+73660,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+73661,Bash/Shell/PowerShell;C;Go;Python;SQL
+73662,HTML/CSS;Java;JavaScript;PHP
+73663,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+73664,JavaScript;Kotlin;Objective-C;Swift
+73665,HTML/CSS;JavaScript;Python;R;SQL
+73666,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73667,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+73668,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+73669,Swift
+73672,HTML/CSS;Java;JavaScript;Python;SQL
+73673,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Python;SQL
+73674,Java;JavaScript;Scala
+73675,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+73676,HTML/CSS;JavaScript;PHP;SQL
+73677,HTML/CSS;JavaScript;Python
+73678,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73679,Java;Kotlin;SQL
+73680,Dart;Java;Python;SQL
+73681,Python
+73682,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+73683,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+73684,C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+73685,HTML/CSS;Java;Python;R;SQL;TypeScript
+73686,HTML/CSS;JavaScript;Python
+73687,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+73688,C#;HTML/CSS;JavaScript
+73689,C#;HTML/CSS;Java;JavaScript;SQL
+73690,Java;Kotlin
+73691,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+73692,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+73693,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73694,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python
+73696,HTML/CSS;Python;SQL
+73697,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+73698,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+73699,Go;HTML/CSS;Python
+73700,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73701,C#;JavaScript;PHP;Python;Other(s):
+73702,HTML/CSS;JavaScript
+73703,JavaScript;PHP;SQL
+73704,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;SQL
+73705,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73706,Java;JavaScript
+73707,JavaScript;Python;Other(s):
+73708,C;HTML/CSS;Java;JavaScript;SQL
+73709,Python;SQL
+73710,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+73711,HTML/CSS;JavaScript;PHP
+73712,HTML/CSS;Java;TypeScript
+73713,HTML/CSS;JavaScript;SQL
+73714,HTML/CSS;Java;JavaScript;SQL;TypeScript
+73715,HTML/CSS;PHP;Python
+73716,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73717,Java
+73718,C#;HTML/CSS;JavaScript
+73719,HTML/CSS;Java;JavaScript;SQL
+73720,Bash/Shell/PowerShell;JavaScript;Python
+73721,R;SQL
+73722,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+73723,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+73724,C#;Java;SQL
+73725,Assembly;C;C++;Python
+73726,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+73727,Java;Kotlin;TypeScript
+73728,C;C++;C#;HTML/CSS;Java;PHP
+73729,Bash/Shell/PowerShell;C#;Python
+73730,C#;HTML/CSS;Java;JavaScript;SQL
+73731,C#;Python
+73732,C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+73733,JavaScript;Ruby
+73734,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+73735,R
+73736,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73737,JavaScript;Python
+73738,Assembly;Bash/Shell/PowerShell;C#;Python;SQL
+73739,C;C++
+73740,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+73741,HTML/CSS;Java;JavaScript;PHP;SQL
+73742,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+73743,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+73744,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;TypeScript
+73745,Java;SQL
+73746,C++;HTML/CSS;PHP;Python;R
+73747,HTML/CSS;Java;JavaScript;SQL
+73748,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+73749,Python;SQL
+73750,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+73751,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73752,Bash/Shell/PowerShell;C;C++;C#;Go;SQL
+73753,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+73754,C#;HTML/CSS;SQL
+73755,JavaScript;PHP;SQL;TypeScript;VBA
+73756,Java
+73757,Swift
+73758,JavaScript;PHP;Ruby;SQL
+73759,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+73760,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73761,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Kotlin;Scala;SQL;TypeScript
+73762,C#;JavaScript;PHP;SQL
+73763,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73764,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Ruby;Rust;SQL
+73765,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73766,C++;C#;HTML/CSS;Java;SQL
+73767,C++;Java
+73768,HTML/CSS;JavaScript;PHP
+73769,Go;JavaScript;Ruby
+73770,Java;JavaScript
+73771,Java;Kotlin;Python;SQL
+73772,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73773,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;PHP;WebAssembly;Other(s):
+73774,C;C++;Java;JavaScript;PHP
+73775,HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript;VBA
+73776,C#
+73777,HTML/CSS;Java;JavaScript
+73778,C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+73779,Bash/Shell/PowerShell;C;C++;Go;SQL
+73780,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+73781,C#;HTML/CSS;JavaScript
+73782,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby
+73783,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+73784,HTML/CSS;JavaScript;PHP;SQL
+73785,Python
+73786,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+73787,HTML/CSS;JavaScript
+73788,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;JavaScript;Kotlin;Python
+73789,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+73790,HTML/CSS;JavaScript;PHP;SQL
+73791,C++;HTML/CSS;JavaScript;Kotlin;SQL;Swift
+73792,C#;HTML/CSS;SQL
+73793,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+73794,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+73795,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+73796,C#;HTML/CSS;Java;JavaScript
+73797,C#;F#;HTML/CSS;JavaScript;SQL
+73798,C#;HTML/CSS;Java;Python;Ruby;SQL
+73799,HTML/CSS;Java;JavaScript;PHP;SQL
+73800,HTML/CSS;JavaScript;Ruby
+73801,Elixir;JavaScript
+73802,HTML/CSS;JavaScript;PHP
+73803,R
+73804,Objective-C;Swift
+73805,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+73806,C;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+73807,Bash/Shell/PowerShell;JavaScript;Python
+73808,C++;F#;Go;HTML/CSS;Java
+73809,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+73810,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+73811,C++;C#;Java;JavaScript;Python;SQL
+73812,HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+73813,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+73814,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+73815,Bash/Shell/PowerShell;C++;Python
+73816,Java;Python
+73817,C#;HTML/CSS;JavaScript;SQL
+73818,Bash/Shell/PowerShell;C;C++;C#;JavaScript
+73819,Elixir;HTML/CSS;JavaScript;Ruby
+73820,HTML/CSS;Java;JavaScript;Python;SQL
+73821,C#;HTML/CSS;JavaScript;SQL
+73822,C#;Go;Java;SQL;TypeScript
+73823,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+73824,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+73825,C;C++;SQL
+73826,C;C++;HTML/CSS;Java;JavaScript;Python
+73827,PHP
+73828,JavaScript;Python
+73829,C#;HTML/CSS;JavaScript;PHP;SQL
+73830,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+73831,HTML/CSS;JavaScript;PHP;SQL
+73832,HTML/CSS;Java;JavaScript;PHP;SQL
+73833,Java;Python
+73834,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+73835,HTML/CSS;Java;JavaScript;PHP;SQL
+73836,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73837,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;SQL
+73838,Bash/Shell/PowerShell;C;C++;C#;Clojure;F#;HTML/CSS;Python;R;Rust;SQL;Other(s):
+73839,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+73840,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;Other(s):
+73841,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+73842,JavaScript;Python;TypeScript
+73843,C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73844,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+73845,C;C++;Java;JavaScript;Python;Other(s):
+73846,C++;Java;Python
+73847,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+73848,C#;PHP;SQL
+73849,Bash/Shell/PowerShell;C;Elixir;JavaScript;Ruby;SQL;Other(s):
+73850,Bash/Shell/PowerShell;R;SQL
+73851,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73852,Java;Python;Swift
+73853,C;C++;C#;HTML/CSS;JavaScript;PHP;Scala;SQL
+73854,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+73855,Bash/Shell/PowerShell;C#;Dart;Go;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+73856,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+73857,Assembly;HTML/CSS;JavaScript;PHP;SQL
+73858,Bash/Shell/PowerShell;C#;SQL;Other(s):
+73859,C#;HTML/CSS;JavaScript;Python;R;SQL
+73860,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;SQL;VBA;WebAssembly
+73861,C#;HTML/CSS;JavaScript;SQL;VBA
+73862,Bash/Shell/PowerShell;Go;Python
+73863,C#;HTML/CSS;JavaScript;SQL;TypeScript
+73864,C#;HTML/CSS;JavaScript;SQL
+73865,HTML/CSS;Ruby;SQL
+73866,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73867,HTML/CSS;JavaScript
+73868,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Swift
+73869,Bash/Shell/PowerShell;Python
+73870,C;C++;JavaScript;PHP;SQL
+73871,Assembly;C;C++
+73872,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+73873,C#;HTML/CSS;JavaScript;TypeScript
+73874,SQL
+73875,Java;JavaScript;Kotlin;SQL
+73876,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Scala
+73877,HTML/CSS;JavaScript;PHP
+73878,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;PHP;Python
+73879,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+73880,C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+73881,C#;HTML/CSS;JavaScript;PHP;SQL
+73882,Assembly;Java
+73883,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+73884,C;HTML/CSS;Java;JavaScript;Python
+73885,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python;SQL
+73886,Python;R;SQL
+73887,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+73888,C#;VBA
+73889,C#;TypeScript
+73890,C#;HTML/CSS;Java;JavaScript
+73891,C;C++;Java;Python;Other(s):
+73892,Bash/Shell/PowerShell;Java;JavaScript;SQL;Swift
+73893,C#;SQL
+73894,C#;HTML/CSS;JavaScript;SQL;Other(s):
+73895,Java;JavaScript;SQL
+73896,HTML/CSS;JavaScript;PHP;Python;TypeScript;VBA
+73897,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;TypeScript
+73898,HTML/CSS;JavaScript
+73899,HTML/CSS;JavaScript;PHP;SQL
+73900,C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73901,HTML/CSS;Java;JavaScript;SQL;TypeScript
+73902,HTML/CSS;JavaScript;TypeScript
+73903,Python;R
+73904,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+73905,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python;Ruby;Swift
+73906,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+73907,HTML/CSS;JavaScript;PHP;SQL
+73908,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+73909,C;HTML/CSS;Java;JavaScript;PHP
+73910,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+73912,Java;Kotlin;Rust;Scala
+73913,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;R;Ruby;SQL
+73914,Swift
+73915,C;C++;C#;HTML/CSS;Java;Python
+73916,Java
+73917,HTML/CSS;JavaScript;PHP;SQL
+73918,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+73919,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+73920,HTML/CSS;JavaScript
+73921,HTML/CSS;Python
+73922,HTML/CSS;JavaScript;PHP;SQL
+73923,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+73924,C++;C#
+73925,C;C++;HTML/CSS;Java;SQL
+73926,R;VBA
+73927,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+73928,Assembly;C#;HTML/CSS
+73929,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+73930,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+73931,C#;HTML/CSS;SQL;TypeScript
+73932,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+73933,Java;Other(s):
+73934,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+73935,Bash/Shell/PowerShell;C++;Java;SQL;Other(s):
+73936,Bash/Shell/PowerShell;C;C++;C#;Python
+73937,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+73938,HTML/CSS;JavaScript;PHP;SQL
+73939,HTML/CSS;JavaScript;PHP;SQL
+73940,C#;HTML/CSS;JavaScript;SQL
+73941,HTML/CSS;JavaScript;PHP;SQL
+73942,JavaScript;PHP;SQL
+73943,C++;C#;HTML/CSS;Objective-C;SQL
+73944,C++;R
+73945,Java
+73946,JavaScript;Python
+73947,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+73948,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Ruby;TypeScript;Other(s):
+73949,Assembly;HTML/CSS;JavaScript;Python
+73950,C++;Java
+73951,Java
+73952,Bash/Shell/PowerShell;C#;Go;Java;SQL
+73953,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+73954,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL;TypeScript
+73955,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+73956,C;PHP;Python
+73957,Bash/Shell/PowerShell;C;C++;Go;SQL
+73958,JavaScript;PHP
+73959,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+73960,Bash/Shell/PowerShell;C;C#;Python;SQL
+73961,Bash/Shell/PowerShell;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+73962,C++;HTML/CSS;JavaScript;Python;R;SQL
+73963,Bash/Shell/PowerShell;C;C++;Go;Python;Other(s):
+73964,HTML/CSS;Java;Python;SQL
+73965,HTML/CSS;JavaScript;PHP
+73966,Bash/Shell/PowerShell;C#
+73967,Bash/Shell/PowerShell;Java;JavaScript
+73968,C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+73969,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+73970,Assembly;JavaScript;PHP
+73971,Scala
+73972,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+73973,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+73974,C#;Java;JavaScript;Kotlin;SQL
+73975,HTML/CSS;JavaScript;PHP;Python;SQL
+73976,C++;C#;HTML/CSS;JavaScript;PHP
+73977,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+73978,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;TypeScript
+73979,Bash/Shell/PowerShell;Java;Scala;SQL
+73980,HTML/CSS;PHP;SQL;Swift
+73981,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+73982,C;C++;Python;Other(s):
+73983,HTML/CSS;JavaScript;Python;R
+73984,Java;JavaScript;SQL;Other(s):
+73985,C++;C#;Java;JavaScript;Objective-C;SQL
+73986,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+73987,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+73988,C#;HTML/CSS;JavaScript;SQL
+73989,C#;Java;Python
+73990,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+73991,Bash/Shell/PowerShell;C++;Go;Python
+73992,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+73993,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+73994,C#;HTML/CSS;Java;JavaScript;SQL
+73995,C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+73996,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+73997,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;Other(s):
+73998,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+73999,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+74000,HTML/CSS;JavaScript
+74001,C++;C#;HTML/CSS;JavaScript;SQL
+74002,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;TypeScript
+74003,C#;Erlang;HTML/CSS;JavaScript;SQL
+74004,HTML/CSS;JavaScript
+74005,C;C++;C#
+74006,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+74007,JavaScript;TypeScript
+74008,HTML/CSS;Java;JavaScript;TypeScript
+74009,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74010,C#;HTML/CSS;JavaScript;SQL
+74011,HTML/CSS;JavaScript;Ruby
+74012,HTML/CSS;Java;JavaScript;SQL
+74013,Go;HTML/CSS;JavaScript;Ruby;TypeScript
+74014,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Rust;Swift;TypeScript
+74015,HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+74016,C;C++;Elixir;HTML/CSS;Java;JavaScript;Python
+74017,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+74018,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+74019,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+74020,C;C#;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74021,C#;HTML/CSS;R;SQL;Other(s):
+74022,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+74023,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74024,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74025,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+74026,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+74027,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74028,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+74029,C#;VBA
+74030,Java;JavaScript;Kotlin
+74031,Java;SQL
+74032,Clojure;Java
+74033,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+74034,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Swift
+74035,C#;HTML/CSS;JavaScript;SQL;VBA
+74036,HTML/CSS;Java;JavaScript;SQL;TypeScript
+74037,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74038,Objective-C;Other(s):
+74039,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+74040,C#;HTML/CSS;Java;JavaScript
+74041,C#;Java;JavaScript
+74042,HTML/CSS;JavaScript;PHP;SQL
+74043,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74044,HTML/CSS;Java;JavaScript
+74045,C;C#;Other(s):
+74046,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+74047,Go;HTML/CSS;JavaScript;Python;TypeScript
+74048,Elixir;JavaScript;Ruby;Scala;SQL;Other(s):
+74049,Python;SQL
+74050,C++;C#;Python;SQL
+74051,Python
+74052,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python
+74053,C;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+74054,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python
+74055,HTML/CSS;JavaScript;PHP;SQL
+74056,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+74057,R
+74058,Java
+74059,HTML/CSS;JavaScript;Ruby;Rust
+74060,Other(s):
+74061,Bash/Shell/PowerShell;C++;JavaScript
+74062,HTML/CSS;JavaScript;Ruby
+74064,HTML/CSS;Java;Python;VBA
+74065,C++;C#
+74066,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+74067,C++;Objective-C;Other(s):
+74068,Go;HTML/CSS;JavaScript;TypeScript
+74069,Assembly;Java;JavaScript;Python
+74070,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74071,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+74072,HTML/CSS;JavaScript;Python
+74073,C;C++;HTML/CSS
+74074,HTML/CSS;Python
+74075,HTML/CSS;JavaScript;SQL
+74076,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Scala
+74077,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;VBA
+74078,HTML/CSS;JavaScript;Python;R;SQL
+74079,Go;JavaScript;SQL
+74080,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+74081,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+74082,C++;HTML/CSS;Python;SQL
+74083,HTML/CSS;JavaScript;Python;R
+74084,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+74085,HTML/CSS;JavaScript;PHP;Python;SQL
+74086,C++;C#;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript;VBA
+74087,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+74088,C;C#;Java;Kotlin;Python;Swift
+74089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74090,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+74091,HTML/CSS;Java;JavaScript;PHP
+74092,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74093,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+74094,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+74095,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+74096,HTML/CSS;Java;Ruby;TypeScript
+74097,HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+74098,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+74099,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL
+74100,C++;C#;HTML/CSS;JavaScript;SQL
+74101,Bash/Shell/PowerShell;C#;Python;SQL
+74102,C++;Java;Kotlin;PHP
+74104,Java;Objective-C;Swift
+74105,Java;PHP;Python;SQL
+74106,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74107,Bash/Shell/PowerShell
+74108,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Ruby;Scala;SQL;Swift;TypeScript
+74109,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+74110,C;C++
+74111,C#;HTML/CSS;SQL;Other(s):
+74112,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL
+74113,C#;JavaScript;SQL;TypeScript
+74115,Bash/Shell/PowerShell;JavaScript;Python
+74116,Go;JavaScript;Ruby
+74117,C;C++
+74118,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala;TypeScript
+74119,C++;HTML/CSS;Java;JavaScript;Python
+74120,C#;HTML/CSS;JavaScript;SQL
+74121,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+74122,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+74123,JavaScript;PHP;SQL;VBA
+74124,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+74125,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+74126,HTML/CSS;JavaScript;PHP
+74127,Go;Python
+74128,Python
+74129,Bash/Shell/PowerShell;C++;Python
+74130,Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;Ruby;Swift;TypeScript
+74131,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+74132,C#;HTML/CSS;JavaScript
+74133,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python
+74134,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+74135,C;C++;C#;HTML/CSS;Java;Python
+74136,C#;SQL
+74137,HTML/CSS;JavaScript;PHP;Python
+74138,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;Ruby
+74139,C;C++;Python
+74140,Assembly;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Scala;Swift;TypeScript;VBA;WebAssembly
+74141,Assembly;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+74142,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+74143,Assembly;Bash/Shell/PowerShell;C;Java
+74144,Bash/Shell/PowerShell;C;Python;Other(s):
+74145,C;C++;C#;Java;SQL
+74146,HTML/CSS;JavaScript;PHP;SQL
+74147,HTML/CSS;JavaScript;PHP;TypeScript
+74148,JavaScript;SQL
+74149,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+74150,C#;Java;VBA
+74151,Java;Python
+74152,Bash/Shell/PowerShell;C;Java;JavaScript;PHP;Ruby;SQL
+74153,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+74154,C;C#;HTML/CSS;JavaScript;PHP;SQL
+74155,C++;HTML/CSS;Java;JavaScript;TypeScript
+74156,HTML/CSS;JavaScript;Python
+74157,Java;Kotlin;Swift
+74158,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+74159,HTML/CSS;JavaScript;Python
+74160,Java;Swift
+74161,C;C++;C#;Java;JavaScript;Objective-C
+74162,Python
+74163,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Rust;SQL;TypeScript
+74164,Java;JavaScript;Python;SQL
+74165,C#;PHP;Python;VBA
+74166,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;VBA
+74167,HTML/CSS;JavaScript;PHP;Python;SQL
+74168,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+74169,C;SQL;Swift;Other(s):
+74170,Kotlin;Scala;Other(s):
+74171,C#;SQL
+74172,Bash/Shell/PowerShell;C;C++
+74173,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74174,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;R;Scala;SQL
+74175,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+74176,HTML/CSS;JavaScript;PHP;Python
+74177,Assembly
+74178,Bash/Shell/PowerShell;Java;JavaScript;Ruby
+74179,C#;Go
+74180,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+74181,HTML/CSS;JavaScript;PHP;SQL
+74182,Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+74183,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74184,Assembly;Bash/Shell/PowerShell;C++;Python
+74185,C#;HTML/CSS;SQL;TypeScript
+74186,Assembly;Java
+74187,HTML/CSS;JavaScript;PHP;SQL
+74188,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+74189,Bash/Shell/PowerShell;Python;Ruby
+74190,C#;Python
+74191,Java;Python;SQL
+74192,HTML/CSS;Java;JavaScript;PHP;SQL
+74193,HTML/CSS;Java;JavaScript;Python;SQL
+74194,C#;Python
+74195,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74196,C++;JavaScript;SQL
+74197,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+74198,Python
+74199,Java;JavaScript
+74200,C;C++;PHP;Python;R;SQL
+74201,JavaScript;TypeScript
+74202,C#;HTML/CSS;Java;SQL
+74203,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;Python
+74204,C;C++
+74205,Bash/Shell/PowerShell;Dart;Go;JavaScript;TypeScript
+74206,Python;R;SQL
+74207,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74208,Java;Python;R;SQL
+74209,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+74210,Java;PHP
+74211,C;C++;HTML/CSS;Java;JavaScript;Python
+74212,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+74213,Bash/Shell/PowerShell;C#;SQL
+74214,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+74215,HTML/CSS;JavaScript
+74216,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74217,C#;JavaScript;SQL;TypeScript
+74218,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+74219,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+74220,C++;C#
+74221,HTML/CSS;JavaScript;PHP;SQL
+74222,Java;JavaScript;Python;TypeScript
+74223,Java;Python
+74224,C++;Go;Java;JavaScript;Kotlin;Python
+74225,HTML/CSS;Python
+74226,C#;Java;SQL
+74227,HTML/CSS;JavaScript;Ruby;SQL
+74228,C#;HTML/CSS;JavaScript;Python
+74229,Bash/Shell/PowerShell;C#;HTML/CSS
+74230,JavaScript;TypeScript
+74231,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74232,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Python;R;SQL
+74233,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+74234,Other(s):
+74235,C;HTML/CSS;JavaScript;Ruby
+74236,HTML/CSS;JavaScript
+74237,Clojure;HTML/CSS;JavaScript;Python;SQL;TypeScript
+74238,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+74239,Python
+74240,Java
+74241,C#;HTML/CSS;Java;JavaScript;Python;SQL
+74242,Bash/Shell/PowerShell;C#
+74243,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+74244,C;C++;Go;HTML/CSS;JavaScript;Python
+74245,HTML/CSS;Java;Scala;SQL
+74246,C#;HTML/CSS;JavaScript;Python;SQL
+74247,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+74248,Bash/Shell/PowerShell;JavaScript;Python;Ruby
+74249,Dart;HTML/CSS;Java;JavaScript;Objective-C
+74250,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+74251,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+74252,C++
+74253,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+74254,Assembly;Bash/Shell/PowerShell;C;Go;JavaScript;Kotlin;Rust
+74255,Bash/Shell/PowerShell;Go;JavaScript
+74256,HTML/CSS;JavaScript;PHP
+74257,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74258,Clojure;HTML/CSS;Java;JavaScript;TypeScript
+74259,SQL
+74260,HTML/CSS;Java;JavaScript;PHP
+74261,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+74262,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+74263,Go;HTML/CSS;JavaScript;SQL;TypeScript
+74264,C;C++;C#;Dart;HTML/CSS;Python;SQL
+74266,HTML/CSS;JavaScript;PHP;Python;TypeScript
+74267,Bash/Shell/PowerShell;Python;Other(s):
+74268,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+74269,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+74270,Bash/Shell/PowerShell;C++;Go;Python
+74271,HTML/CSS;PHP
+74272,C#;HTML/CSS;JavaScript;SQL
+74273,Bash/Shell/PowerShell;C;C++;Python
+74274,Java;SQL;VBA
+74275,C;C++;C#;Java;JavaScript;PHP;Python;Scala;SQL;VBA
+74276,HTML/CSS;JavaScript;PHP;SQL
+74277,Bash/Shell/PowerShell;C;Erlang;Scala;SQL;Other(s):
+74278,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;WebAssembly
+74279,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+74280,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+74281,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+74282,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+74283,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+74284,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+74285,JavaScript;Python
+74286,JavaScript;PHP;Python;SQL
+74287,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+74288,Bash/Shell/PowerShell;Java;JavaScript;Kotlin
+74289,HTML/CSS;JavaScript;Python;SQL;TypeScript
+74290,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74291,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+74292,Java;JavaScript;Other(s):
+74293,C;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift
+74294,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+74295,C;C#;Go;HTML/CSS;Java;JavaScript;TypeScript
+74296,HTML/CSS;Java;JavaScript;PHP;SQL
+74297,C#;Python
+74298,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+74299,C;HTML/CSS;Java;JavaScript;Python
+74300,HTML/CSS;Java;PHP;Python;SQL;Swift
+74301,Java;Kotlin;Other(s):
+74302,Bash/Shell/PowerShell;Java
+74303,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+74304,C++;PHP;SQL
+74305,HTML/CSS;JavaScript;PHP;Python;SQL
+74306,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL;Other(s):
+74307,Java
+74308,Bash/Shell/PowerShell;C;Python;Rust
+74309,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74310,C;HTML/CSS;Java;JavaScript;Python;R;SQL
+74311,C#;Go;Java;Kotlin;Python;Scala
+74312,HTML/CSS;Java
+74313,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+74314,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;Other(s):
+74315,C;C++;C#;Java;JavaScript;Python
+74316,C;C++;HTML/CSS;JavaScript;Ruby;SQL
+74317,HTML/CSS;Java;JavaScript;Python;TypeScript
+74318,HTML/CSS;Java;JavaScript;PHP;SQL
+74319,HTML/CSS;JavaScript
+74320,Elixir;HTML/CSS;JavaScript;Ruby;SQL
+74321,C#;HTML/CSS;JavaScript;PHP;Ruby
+74322,C#;SQL;Other(s):
+74323,HTML/CSS;JavaScript;Rust
+74324,Assembly;C++;Python;SQL
+74325,C;Go;JavaScript;Python
+74326,Assembly;Bash/Shell/PowerShell;Clojure;Dart;Elixir;Erlang;Objective-C;PHP;SQL;WebAssembly
+74327,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+74328,HTML/CSS;JavaScript;PHP;R;SQL;VBA
+74329,C#;Python
+74330,C++;Java;JavaScript;SQL
+74331,Python;TypeScript
+74332,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74333,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+74334,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+74335,HTML/CSS;JavaScript;PHP;TypeScript
+74336,C#;HTML/CSS;JavaScript;SQL
+74337,JavaScript;PHP;SQL;TypeScript;VBA
+74338,Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+74339,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+74340,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74341,C#;SQL
+74342,Python
+74343,HTML/CSS;JavaScript;PHP;Python;SQL
+74344,C++;HTML/CSS;JavaScript
+74345,HTML/CSS
+74346,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;Scala;SQL;Swift;TypeScript;WebAssembly
+74347,HTML/CSS;Java;JavaScript;SQL;Other(s):
+74348,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+74349,Bash/Shell/PowerShell;C#;Python;SQL
+74350,HTML/CSS;JavaScript;Rust;SQL;TypeScript
+74351,Clojure
+74352,Python;SQL
+74353,Java
+74354,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;VBA;Other(s):
+74355,C#;HTML/CSS;Java;JavaScript;Python;SQL
+74356,Go;Java;Kotlin;Python;Scala;SQL
+74357,Java;Kotlin;Python
+74358,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+74359,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python
+74360,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python;SQL
+74361,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74362,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+74363,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+74364,C++;C#;HTML/CSS;SQL;TypeScript
+74365,Bash/Shell/PowerShell;C#;Java;Python;SQL
+74366,C++;Go;Java;JavaScript;Kotlin;PHP;SQL;Swift
+74367,C++;Go;Python
+74368,C#;Java;JavaScript;PHP;TypeScript
+74369,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+74370,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+74371,Assembly;Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+74372,HTML/CSS;JavaScript;PHP
+74373,HTML/CSS
+74374,C;C++;Java
+74375,Java;TypeScript
+74376,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+74377,JavaScript;Ruby;Swift
+74378,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+74379,Bash/Shell/PowerShell;C#;SQL
+74380,C#;F#;HTML/CSS;Java;JavaScript;TypeScript
+74381,HTML/CSS;JavaScript;PHP;SQL
+74382,Objective-C;Swift
+74383,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+74384,Python;Other(s):
+74385,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;R
+74386,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+74387,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;Ruby;SQL;TypeScript
+74388,C;C++;SQL
+74389,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+74390,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;SQL;Swift
+74391,Bash/Shell/PowerShell;C#;Dart;F#;HTML/CSS;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+74392,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+74393,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+74394,HTML/CSS;JavaScript;PHP;SQL
+74395,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+74396,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+74397,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+74398,HTML/CSS;JavaScript;PHP;Python;SQL
+74399,C;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+74400,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74401,Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+74402,Bash/Shell/PowerShell;Java;JavaScript;SQL
+74403,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+74404,C++;C#;Go;Java;Python;Scala
+74405,C#;JavaScript;Python;TypeScript
+74406,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74407,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+74408,C#;HTML/CSS;R;SQL;VBA
+74409,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+74410,Bash/Shell/PowerShell;Java;JavaScript
+74411,C;C++;Python;SQL
+74412,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+74413,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+74414,JavaScript;Python;SQL;VBA;Other(s):
+74415,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala
+74416,Go;HTML/CSS;JavaScript
+74417,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+74418,C;C#;HTML/CSS;Java;Swift
+74419,C++;C#;Java;JavaScript;VBA;Other(s):
+74420,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+74421,JavaScript;TypeScript
+74422,C;C++;Dart;Java;JavaScript;Kotlin;SQL
+74423,Objective-C;PHP
+74424,Python;R;Scala
+74425,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+74426,C;C++
+74427,C;Java
+74428,Bash/Shell/PowerShell;Python;R;SQL
+74429,C;C++;Dart;HTML/CSS;Objective-C;PHP;Swift
+74430,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+74431,HTML/CSS;JavaScript;PHP;SQL
+74432,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74433,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+74434,C#;HTML/CSS;JavaScript
+74435,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+74436,C++
+74437,Go;HTML/CSS;JavaScript;Python;Scala;SQL
+74438,HTML/CSS;Java;JavaScript
+74439,HTML/CSS;JavaScript;SQL
+74440,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+74441,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+74442,Go;HTML/CSS;Java;Objective-C;Python;Ruby;SQL
+74443,C#;Dart;HTML/CSS;JavaScript
+74444,C#;HTML/CSS;JavaScript
+74445,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+74446,HTML/CSS;JavaScript;Ruby;Other(s):
+74447,C;C#;Go;HTML/CSS;Java;JavaScript;Python
+74448,Bash/Shell/PowerShell;Dart;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+74449,C++;C#;HTML/CSS;JavaScript;SQL
+74450,Bash/Shell/PowerShell;C;C++;Python;SQL
+74451,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA
+74452,C#;HTML/CSS;JavaScript;SQL
+74453,Dart;JavaScript;Kotlin;Python;Scala;Swift
+74454,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+74455,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+74456,HTML/CSS;JavaScript;PHP;SQL
+74457,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+74458,Assembly;Bash/Shell/PowerShell;C;C++
+74459,HTML/CSS;JavaScript;Python
+74460,C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+74461,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74462,Java;JavaScript;Objective-C;PHP;Swift
+74463,Python;R;SQL;VBA
+74464,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74465,Bash/Shell/PowerShell;C;Java;JavaScript;Python;R;SQL;Other(s):
+74466,C#;HTML/CSS
+74467,Go
+74468,Python;SQL
+74469,Java;Other(s):
+74470,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+74471,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+74472,JavaScript;Ruby;SQL
+74473,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+74474,C++
+74475,Assembly;C#
+74476,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+74477,C;C++;Python
+74478,HTML/CSS;JavaScript;TypeScript
+74479,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;VBA
+74480,Java;JavaScript;Kotlin;Scala;TypeScript
+74481,WebAssembly
+74482,C;C++;Python
+74483,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+74484,C#;HTML/CSS;JavaScript;SQL
+74485,HTML/CSS;JavaScript
+74486,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+74487,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+74488,Java;JavaScript;TypeScript
+74489,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;Java;Python;R;SQL
+74490,Bash/Shell/PowerShell;JavaScript;Ruby;SQL;TypeScript
+74491,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+74492,Elixir;JavaScript;Python
+74493,C;C++;C#;Java
+74494,HTML/CSS;JavaScript;SQL
+74495,C;HTML/CSS;Java;JavaScript;TypeScript
+74496,Bash/Shell/PowerShell;C#;Java;Objective-C
+74497,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+74498,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;PHP;Rust;SQL
+74499,C#;HTML/CSS;JavaScript;SQL;VBA
+74500,C#;Java;Kotlin
+74501,HTML/CSS;JavaScript;Python;R;SQL;TypeScript;VBA
+74502,Bash/Shell/PowerShell;Dart;Java;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+74503,Bash/Shell/PowerShell;Python;SQL;Other(s):
+74504,HTML/CSS;JavaScript;Swift;TypeScript
+74505,HTML/CSS;JavaScript;PHP
+74506,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74507,Bash/Shell/PowerShell;C#;Go;Ruby
+74508,Java;Kotlin;Swift
+74509,HTML/CSS;JavaScript;PHP
+74510,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+74511,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74512,SQL;Other(s):
+74513,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R
+74514,C++;R
+74515,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+74516,HTML/CSS;JavaScript
+74517,HTML/CSS;JavaScript;PHP;SQL
+74518,HTML/CSS;JavaScript;PHP;SQL
+74519,Java;Kotlin
+74520,R
+74521,Bash/Shell/PowerShell;C;C++;Go;PHP;Python;SQL;Other(s):
+74522,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+74523,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+74524,Java;SQL
+74525,Java;Kotlin;Swift
+74526,C++;HTML/CSS;JavaScript;PHP;Python
+74527,C#;HTML/CSS;JavaScript;TypeScript
+74528,HTML/CSS;Java;JavaScript
+74529,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Rust;Other(s):
+74530,C#;HTML/CSS;Java;TypeScript
+74531,C#;Clojure;HTML/CSS;Java;JavaScript;Other(s):
+74532,C#;HTML/CSS;JavaScript;SQL
+74533,HTML/CSS;Java;JavaScript;PHP
+74534,C;C++;Java
+74535,HTML/CSS;JavaScript;Python;Scala
+74536,Elixir;JavaScript
+74537,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+74539,JavaScript;PHP;SQL
+74540,C;C++;HTML/CSS;Java;JavaScript;Python
+74541,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74542,C#;HTML/CSS
+74543,Java;JavaScript;Kotlin;Swift
+74544,Bash/Shell/PowerShell;Java;JavaScript;Ruby;TypeScript
+74545,HTML/CSS;JavaScript;Python
+74546,C;C#;HTML/CSS;JavaScript
+74547,Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Objective-C;Python;SQL
+74548,HTML/CSS;Java;JavaScript;Python
+74549,C#;HTML/CSS;JavaScript;PHP;SQL
+74550,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala
+74551,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+74552,Clojure;HTML/CSS;Java;JavaScript
+74553,HTML/CSS;JavaScript;Python;SQL
+74555,Bash/Shell/PowerShell;C;C#;PHP;Python;Ruby
+74556,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby
+74557,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+74558,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+74559,HTML/CSS;Java;Kotlin;PHP;SQL
+74560,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74561,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+74562,Assembly;C;C++;Python
+74563,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+74564,C++;C#;HTML/CSS;Java;JavaScript
+74565,HTML/CSS;Java;JavaScript;Objective-C;SQL
+74566,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+74567,Bash/Shell/PowerShell;Go;HTML/CSS;Ruby;TypeScript
+74568,HTML/CSS;JavaScript
+74569,C#;SQL;VBA
+74570,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+74571,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+74572,C;C++;C#;Erlang;Python;SQL
+74573,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+74574,C++;Python;SQL
+74575,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+74576,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+74577,C#;HTML/CSS;JavaScript;SQL
+74578,C++;HTML/CSS;Java;JavaScript;Python;SQL
+74579,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;SQL;TypeScript
+74580,Bash/Shell/PowerShell;C#;HTML/CSS;Kotlin;PHP;Python;Rust;SQL;TypeScript;Other(s):
+74581,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+74582,HTML/CSS;JavaScript
+74583,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+74584,C#;HTML/CSS;Java;JavaScript;TypeScript
+74585,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74586,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL
+74587,C++;HTML/CSS;JavaScript;Python;Swift
+74588,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+74589,HTML/CSS;Objective-C;Swift
+74590,HTML/CSS;JavaScript
+74591,C++;Python;R;SQL;Swift;VBA
+74592,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+74594,C++;HTML/CSS;Java;JavaScript;SQL
+74595,C#;HTML/CSS;Java;PHP;SQL;Swift;VBA
+74596,Bash/Shell/PowerShell;Java;JavaScript;Scala
+74597,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+74598,Java;SQL
+74599,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Ruby;SQL
+74600,Bash/Shell/PowerShell;C;C++;Python;Rust;Scala
+74601,JavaScript
+74602,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Other(s):
+74603,C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+74604,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;Other(s):
+74605,HTML/CSS;Java;JavaScript;PHP;TypeScript
+74606,Bash/Shell/PowerShell;Clojure;JavaScript
+74607,HTML/CSS;JavaScript;PHP;SQL
+74608,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+74609,HTML/CSS;JavaScript;Python;SQL
+74610,Java;Python;Rust
+74611,JavaScript;Python
+74612,JavaScript;PHP;R;Scala;SQL
+74613,Bash/Shell/PowerShell;HTML/CSS;R
+74614,Bash/Shell/PowerShell;Python
+74615,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+74616,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74617,Bash/Shell/PowerShell;Python
+74618,Assembly;Java;Python;SQL
+74619,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+74620,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+74621,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+74622,HTML/CSS;Java;JavaScript;SQL;Other(s):
+74623,C;C++;HTML/CSS;Java;JavaScript;SQL
+74624,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74625,HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+74626,C;C++
+74627,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+74628,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Scala;SQL
+74629,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+74630,Assembly;Bash/Shell/PowerShell;C;JavaScript;Python;Swift
+74631,HTML/CSS;JavaScript;Python
+74632,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Other(s):
+74633,HTML/CSS;JavaScript;PHP;SQL
+74634,C#;HTML/CSS;Java;JavaScript;SQL
+74635,C#;F#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+74636,HTML/CSS;JavaScript
+74637,JavaScript;PHP;SQL
+74638,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+74639,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+74640,C#;HTML/CSS;Java;JavaScript;SQL
+74641,Java;Objective-C;SQL
+74642,Other(s):
+74643,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python
+74644,Bash/Shell/PowerShell;Go;Java;Kotlin;Python
+74645,Bash/Shell/PowerShell;C++;Java;JavaScript
+74646,JavaScript;PHP
+74647,C#;JavaScript;Kotlin;Objective-C;Swift
+74648,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74649,Bash/Shell/PowerShell;C#;SQL
+74651,C#
+74652,C;C++;C#;HTML/CSS;SQL
+74653,C;Go;HTML/CSS;PHP;SQL
+74654,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+74655,Assembly;Bash/Shell/PowerShell;C;C++;SQL
+74656,HTML/CSS;JavaScript;Python;R;Scala;SQL
+74657,HTML/CSS;Java
+74658,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+74659,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+74660,HTML/CSS;JavaScript;Ruby
+74661,C;C++;JavaScript;Python
+74662,Java;Kotlin
+74663,Bash/Shell/PowerShell;Java
+74664,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+74665,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+74666,Bash/Shell/PowerShell;C#
+74667,C++
+74668,Bash/Shell/PowerShell;C;C++
+74669,Clojure;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Scala;SQL
+74670,JavaScript
+74671,PHP
+74672,C#;HTML/CSS;SQL;Other(s):
+74673,C;C++;Java;Other(s):
+74674,Java;Kotlin
+74675,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74677,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+74678,C;C++;C#;HTML/CSS;JavaScript;SQL
+74679,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby;TypeScript
+74680,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+74681,Clojure;Python;SQL;Swift
+74682,HTML/CSS;Java;JavaScript;TypeScript
+74683,HTML/CSS;Java;JavaScript;Kotlin;Ruby
+74684,HTML/CSS;JavaScript;PHP;TypeScript
+74685,Python
+74686,Bash/Shell/PowerShell;HTML/CSS;Python;Rust
+74687,HTML/CSS;JavaScript;Other(s):
+74688,C#;Erlang
+74689,C#
+74690,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74691,HTML/CSS;Java;TypeScript
+74692,Bash/Shell/PowerShell;HTML/CSS;Python;Swift
+74693,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+74694,C++;Java;Python
+74695,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74696,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74697,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+74698,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+74699,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;Python;TypeScript
+74700,HTML/CSS;JavaScript;PHP;SQL;Swift
+74701,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+74702,C;HTML/CSS;JavaScript;Python;TypeScript
+74703,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+74704,C#;HTML/CSS;JavaScript;PHP
+74705,JavaScript;Python
+74706,HTML/CSS;Java
+74707,Bash/Shell/PowerShell;Go;Python
+74708,Bash/Shell/PowerShell;C;C++;Python;R;SQL
+74709,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+74710,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+74711,C;C++;Dart;Java;Kotlin;Python
+74712,Objective-C;Swift
+74713,HTML/CSS;JavaScript;PHP
+74714,Elixir;Erlang;HTML/CSS;JavaScript;Ruby;SQL
+74715,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+74716,HTML/CSS;JavaScript;TypeScript
+74717,C#;HTML/CSS;JavaScript;SQL
+74718,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74719,HTML/CSS;JavaScript;TypeScript
+74720,C#;JavaScript;Python;SQL;TypeScript
+74721,HTML/CSS;Java;JavaScript;SQL
+74722,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP
+74723,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74724,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;VBA
+74725,C#;HTML/CSS;JavaScript;PHP
+74726,C++;HTML/CSS;JavaScript;SQL
+74727,JavaScript;Python;Other(s):
+74728,Java;SQL;Swift
+74729,PHP;Python
+74730,C#;HTML/CSS;JavaScript;Other(s):
+74731,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+74732,C#;Go;HTML/CSS;JavaScript;TypeScript
+74733,HTML/CSS;JavaScript;SQL
+74734,Go;HTML/CSS;Java;JavaScript;Python;SQL
+74735,HTML/CSS;JavaScript;PHP;SQL;VBA
+74736,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+74737,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74738,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Scala
+74739,C++;C#;Java;SQL
+74740,C++;C#
+74741,C;C++;C#;SQL
+74742,C#;HTML/CSS;JavaScript;R;TypeScript
+74743,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+74744,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+74745,HTML/CSS;JavaScript;PHP;SQL
+74746,Kotlin
+74747,Bash/Shell/PowerShell;Java;Kotlin;SQL
+74748,Java
+74749,C++;HTML/CSS;SQL
+74750,Bash/Shell/PowerShell;HTML/CSS;Objective-C;Python;Swift
+74751,C++;Java;JavaScript;PHP;SQL
+74752,C#;HTML/CSS;JavaScript;Python;Other(s):
+74753,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift;TypeScript
+74754,HTML/CSS;JavaScript
+74755,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+74756,Java;Swift
+74758,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+74759,C#;HTML/CSS;JavaScript;SQL
+74760,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+74761,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+74762,Java;SQL
+74763,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+74764,C#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+74765,Bash/Shell/PowerShell;HTML/CSS;SQL
+74766,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74767,Bash/Shell/PowerShell;C;C++;Python
+74768,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+74769,Bash/Shell/PowerShell;Python;SQL
+74770,C#;Clojure;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+74771,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+74772,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Rust;SQL;TypeScript
+74773,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA;Other(s):
+74774,C#;Go;HTML/CSS;Java;JavaScript
+74775,R;Other(s):
+74776,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+74777,Python;R;SQL
+74778,C#;Java
+74779,C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+74780,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74781,Assembly;C;C++
+74782,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+74783,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+74784,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+74785,Bash/Shell/PowerShell;Java;Python;SQL
+74786,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+74787,C#;SQL;VBA
+74788,HTML/CSS;Java;JavaScript;SQL;TypeScript
+74789,Go;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+74790,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C;SQL;Swift
+74791,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+74792,C;C++;SQL
+74793,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Scala;SQL;Swift
+74794,Bash/Shell/PowerShell;Go;Python
+74795,C#;JavaScript;Python;SQL
+74796,HTML/CSS;JavaScript;Swift
+74797,HTML/CSS;Java;JavaScript;PHP;SQL
+74798,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+74799,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+74801,Bash/Shell/PowerShell;Java;SQL
+74802,C#;HTML/CSS;Java;JavaScript;PHP
+74803,C++
+74804,C#;HTML/CSS;JavaScript;SQL
+74805,Java;Scala
+74806,C#;HTML/CSS;JavaScript;SQL
+74807,Assembly;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+74808,C++;C#
+74809,Bash/Shell/PowerShell;C++;Python
+74810,Bash/Shell/PowerShell;Dart;Go;Java;Python
+74811,Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+74812,HTML/CSS;Java;JavaScript;Python;R
+74813,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+74814,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+74815,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+74816,C;C++;JavaScript;TypeScript
+74817,Bash/Shell/PowerShell;C;C#;Go;JavaScript;TypeScript
+74818,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74819,Dart;Go;Java;Kotlin
+74821,Ruby
+74822,Swift
+74823,Assembly;C;HTML/CSS;Java;Python
+74824,Java;Python
+74825,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+74826,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+74827,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+74828,Java;JavaScript;Python;Scala;SQL;TypeScript
+74829,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+74830,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74831,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+74832,HTML/CSS;JavaScript;PHP;SQL
+74833,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+74834,HTML/CSS;JavaScript;PHP;SQL
+74835,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+74836,C;Go
+74837,C#
+74838,Bash/Shell/PowerShell;Clojure;JavaScript;Python;Other(s):
+74839,Bash/Shell/PowerShell;C++;Java;Python
+74840,C#;SQL
+74841,Clojure;HTML/CSS;JavaScript
+74842,HTML/CSS;JavaScript;R;SQL
+74843,Bash/Shell/PowerShell;C;C++
+74844,Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+74845,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74846,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL;TypeScript
+74847,C;C#;SQL
+74848,C;HTML/CSS;Java;SQL
+74849,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Ruby;SQL;TypeScript;VBA;Other(s):
+74850,Java;Other(s):
+74851,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+74852,Bash/Shell/PowerShell;F#;HTML/CSS;JavaScript;TypeScript
+74853,PHP;SQL;VBA
+74854,Python;Other(s):
+74856,C#;HTML/CSS;JavaScript
+74857,HTML/CSS;JavaScript;PHP;TypeScript
+74858,C#;R;SQL
+74859,Rust
+74860,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+74861,Java;JavaScript;Kotlin
+74862,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+74863,HTML/CSS;JavaScript;PHP
+74864,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+74865,C#;F#;Go;Kotlin;Scala;Swift;TypeScript
+74866,Java;SQL
+74867,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;JavaScript;Python
+74868,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python;SQL
+74869,HTML/CSS;JavaScript
+74870,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+74871,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+74872,Bash/Shell/PowerShell;Python;Ruby
+74873,Bash/Shell/PowerShell;Java;Python;SQL;TypeScript
+74874,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+74875,Assembly;Bash/Shell/PowerShell;Go;Java;Python;SQL;Swift
+74876,Go;Objective-C;PHP
+74877,Bash/Shell/PowerShell;Ruby;SQL;Other(s):
+74878,Java
+74879,Java;Python
+74880,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+74881,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;TypeScript
+74882,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+74883,Assembly;C++;Java
+74884,Java
+74885,C#;HTML/CSS;JavaScript;TypeScript
+74886,C;HTML/CSS;JavaScript
+74887,Other(s):
+74888,Objective-C;Swift
+74889,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+74890,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;Ruby
+74891,C++;HTML/CSS;Objective-C;Swift
+74892,Java
+74893,C#;JavaScript;SQL
+74894,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+74895,C#;Clojure;Java;JavaScript;PHP;SQL;VBA
+74896,Java
+74897,Assembly;C;C++;C#;F#;HTML/CSS;Java;SQL
+74898,C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript;VBA
+74899,C;HTML/CSS;Java;PHP;Python;SQL
+74900,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+74901,C#;JavaScript
+74902,Python
+74903,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+74904,Elixir;Erlang;HTML/CSS;JavaScript
+74905,Java;JavaScript;Python;Rust;SQL
+74906,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL
+74907,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+74908,C
+74909,Go;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+74910,HTML/CSS;Java;Kotlin;PHP
+74911,Bash/Shell/PowerShell;C++;Python
+74912,HTML/CSS;JavaScript;PHP;SQL
+74913,C#;HTML/CSS;JavaScript;SQL;TypeScript
+74914,Assembly;Java
+74915,Bash/Shell/PowerShell;Python;Ruby;SQL
+74916,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+74917,C++;C#;JavaScript
+74918,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+74919,JavaScript;Other(s):
+74920,C++;Java;Python
+74921,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;VBA
+74922,C#
+74923,C#;Elixir;Go;SQL;TypeScript
+74924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+74925,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+74926,Assembly;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;Other(s):
+74927,Bash/Shell/PowerShell;C#;Java
+74928,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL
+74929,Bash/Shell/PowerShell;Java;Ruby
+74930,R
+74931,Java;JavaScript
+74932,Python
+74933,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+74934,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+74935,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+74936,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+74937,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+74938,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+74939,HTML/CSS;JavaScript;PHP
+74940,C#;HTML/CSS;JavaScript;SQL
+74941,C#;HTML/CSS;JavaScript
+74942,C#;TypeScript
+74943,PHP;Other(s):
+74944,C;C#;Java;Python
+74945,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+74946,C++;Java;Kotlin;Python
+74947,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+74948,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+74949,HTML/CSS;Java;JavaScript;SQL;TypeScript
+74950,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+74951,C
+74952,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+74953,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+74954,C;C++;C#;Java;Python;TypeScript
+74955,C#;Java;JavaScript;SQL;VBA
+74956,C;C++;C#;HTML/CSS;PHP;SQL
+74957,HTML/CSS;JavaScript;R;SQL
+74959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+74960,Assembly;C;C++;HTML/CSS;JavaScript
+74961,C#;HTML/CSS;JavaScript;SQL
+74962,Bash/Shell/PowerShell;C;C++;Python;R
+74963,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+74964,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+74965,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+74966,HTML/CSS
+74967,Assembly;C;C++;Java;Python
+74968,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+74969,Python
+74970,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+74971,C++;C#;HTML/CSS;JavaScript;SQL
+74972,Java
+74973,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+74974,C;C++;HTML/CSS;JavaScript;Python
+74975,Java;Kotlin
+74977,Objective-C;Swift
+74978,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+74979,Bash/Shell/PowerShell;C++;C#;Java;Swift
+74980,Bash/Shell/PowerShell;PHP;Python;Scala;SQL
+74981,C;C#;HTML/CSS;Java;JavaScript;Python
+74982,C++;C#;Java;Python
+74983,C++
+74984,Bash/Shell/PowerShell;JavaScript
+74985,C++;Python;Rust;Other(s):
+74986,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+74987,Assembly;Bash/Shell/PowerShell;C;C++;Python;Scala;Other(s):
+74988,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+74989,Bash/Shell/PowerShell;Java;Python;R
+74990,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+74991,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+74992,C++;Python
+74994,C#;Python;SQL
+74996,HTML/CSS;Java;Kotlin;TypeScript
+74997,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+74998,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+74999,C;C++;Python;R
+75000,C#;HTML/CSS;SQL
+75001,HTML/CSS;JavaScript;TypeScript
+75002,HTML/CSS;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+75003,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+75004,JavaScript;PHP;SQL;TypeScript
+75005,HTML/CSS;JavaScript;Python;SQL;TypeScript
+75006,C#;SQL
+75007,C#;HTML/CSS;JavaScript;Python;SQL;VBA;Other(s):
+75008,Go
+75009,HTML/CSS;JavaScript
+75010,HTML/CSS;JavaScript
+75011,C#;HTML/CSS;Java;JavaScript;SQL
+75012,C#;Python;SQL
+75013,Bash/Shell/PowerShell;C;HTML/CSS;Java
+75014,Bash/Shell/PowerShell;JavaScript;Kotlin;Objective-C;Swift
+75015,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+75016,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+75017,Clojure;HTML/CSS;Java;JavaScript;PHP;Python
+75018,Bash/Shell/PowerShell;C#;Python
+75019,C++;HTML/CSS;JavaScript;TypeScript
+75020,Bash/Shell/PowerShell;C;Python;VBA
+75021,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+75022,Python;R;SQL
+75023,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;TypeScript;Other(s):
+75025,JavaScript;PHP
+75026,C#;HTML/CSS;JavaScript;SQL;VBA
+75027,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+75028,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+75029,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+75030,HTML/CSS;JavaScript;TypeScript
+75031,C;C++;HTML/CSS;Java;PHP;SQL
+75032,HTML/CSS;JavaScript;PHP
+75033,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+75034,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+75035,Assembly;Bash/Shell/PowerShell;C;Go;Java;Ruby;SQL
+75036,C#;Java;SQL
+75037,Python;Rust
+75038,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+75039,HTML/CSS;JavaScript;PHP;TypeScript
+75040,C#;HTML/CSS;JavaScript
+75041,C++;C#;Python
+75042,JavaScript
+75043,C++;Python
+75044,C++;HTML/CSS;JavaScript;Python
+75045,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;R;SQL
+75046,HTML/CSS;Java;Python
+75047,Bash/Shell/PowerShell;C++;C#;Java;TypeScript
+75048,Python
+75049,C++;Java;JavaScript
+75050,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+75051,JavaScript
+75052,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+75053,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+75054,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+75055,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL;WebAssembly
+75056,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+75057,C#;HTML/CSS;JavaScript
+75058,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+75059,Bash/Shell/PowerShell;C++;C#;Java;JavaScript
+75060,C#;HTML/CSS;JavaScript;TypeScript
+75061,HTML/CSS;JavaScript;PHP
+75062,Bash/Shell/PowerShell;Elixir;Go;Java;PHP;Rust
+75063,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+75064,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP
+75065,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+75066,C;C++;Rust;SQL
+75067,R;SQL
+75068,C++
+75069,Java;JavaScript;Python
+75070,HTML/CSS;Java;JavaScript;SQL
+75071,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+75072,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+75073,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+75074,Go;HTML/CSS;JavaScript;Python;Swift
+75075,C#;HTML/CSS;JavaScript;SQL
+75076,PHP
+75077,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+75078,C;Java;Kotlin;Python
+75079,C#;HTML/CSS;JavaScript;Other(s):
+75080,C++;Go;JavaScript;Swift;TypeScript
+75081,Bash/Shell/PowerShell;Java;Python;SQL
+75082,C#;HTML/CSS;JavaScript;SQL
+75083,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript;VBA
+75084,Bash/Shell/PowerShell;Go;JavaScript;Python;TypeScript
+75086,Bash/Shell/PowerShell;Swift
+75087,HTML/CSS;JavaScript
+75088,Bash/Shell/PowerShell;C++;C#;SQL
+75089,Bash/Shell/PowerShell;Go;PHP;Python
+75090,C++;HTML/CSS;JavaScript;Python
+75091,Java;Python;SQL
+75092,HTML/CSS;JavaScript;PHP;SQL
+75093,Bash/Shell/PowerShell;Python
+75094,C++;JavaScript;SQL
+75095,Kotlin;Python
+75096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+75097,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75098,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+75099,Java;Kotlin;SQL
+75100,C;C++;HTML/CSS;JavaScript;PHP;SQL
+75101,C;Java;JavaScript;Objective-C;Swift;TypeScript
+75102,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+75104,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+75105,C#;HTML/CSS;Java;JavaScript;Swift
+75106,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;SQL
+75107,Bash/Shell/PowerShell;Python;Other(s):
+75108,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75109,C++;Java;SQL
+75110,HTML/CSS;JavaScript;PHP;Python;SQL
+75111,HTML/CSS;JavaScript;PHP;SQL
+75112,Python;Scala;SQL
+75113,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+75114,C#;JavaScript;TypeScript
+75115,C;C++;HTML/CSS;JavaScript;PHP
+75116,Java;Python
+75117,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75118,Java;JavaScript
+75119,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+75120,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript
+75121,Bash/Shell/PowerShell;C#
+75122,C#;HTML/CSS;JavaScript;SQL
+75123,Go
+75124,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+75125,C;C++;HTML/CSS;Java;Python;SQL
+75126,HTML/CSS;JavaScript
+75127,Python;R
+75128,Python
+75129,C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+75130,HTML/CSS;JavaScript;Ruby
+75131,HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+75133,Java;JavaScript
+75134,Java;Python
+75135,Assembly;C;C#;HTML/CSS;Python;VBA
+75136,HTML/CSS;JavaScript;PHP;SQL
+75137,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75138,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+75139,C;F#;HTML/CSS;Java;JavaScript;Python
+75140,C;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+75141,C;C++;HTML/CSS;JavaScript;R;SQL
+75142,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+75143,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly
+75144,Java
+75145,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+75146,C#;HTML/CSS;JavaScript
+75147,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+75148,C#;Dart;Java;JavaScript;Kotlin
+75149,HTML/CSS;JavaScript;PHP;SQL;Swift
+75150,C++;Python
+75151,Assembly;C#;HTML/CSS;JavaScript
+75152,Bash/Shell/PowerShell;C;C#;Java;JavaScript;PHP;Python;SQL
+75153,Java;SQL
+75154,HTML/CSS;JavaScript;Python;TypeScript
+75155,C#;HTML/CSS;JavaScript;SQL
+75156,C++;C#
+75157,Bash/Shell/PowerShell;Java;Objective-C;Python;Swift
+75158,C#;PHP;SQL
+75159,Python
+75160,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Ruby
+75161,C;C++;C#;HTML/CSS;PHP;SQL
+75162,C;HTML/CSS;JavaScript;PHP;Python;SQL
+75163,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+75164,Java;Scala
+75165,C#;Python;SQL
+75166,HTML/CSS;JavaScript;Python;Scala;SQL
+75167,HTML/CSS;JavaScript;PHP
+75168,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+75169,Java;Kotlin
+75170,Java;JavaScript;Objective-C;Python
+75171,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+75172,Assembly;C;C++;HTML/CSS;SQL
+75173,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75174,Python;Other(s):
+75175,HTML/CSS;JavaScript;PHP;Python;SQL
+75176,C++;PHP;Python
+75177,JavaScript;Python
+75178,HTML/CSS;Java;JavaScript;PHP;Swift
+75179,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+75180,C++;C#;HTML/CSS;JavaScript;VBA
+75181,C#;TypeScript
+75182,C++;C#;Java
+75184,JavaScript;Python
+75185,HTML/CSS;JavaScript
+75186,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Swift
+75187,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+75188,HTML/CSS;JavaScript;Python
+75189,C#;HTML/CSS;Java;JavaScript;Python;SQL
+75190,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+75191,Java;JavaScript;Python;TypeScript
+75193,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+75194,HTML/CSS;Python;SQL
+75195,HTML/CSS;JavaScript;Other(s):
+75196,C#;HTML/CSS;SQL;Other(s):
+75197,HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;Swift;TypeScript
+75198,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+75199,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+75200,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+75201,Bash/Shell/PowerShell;Java;Python
+75202,C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL
+75203,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+75204,Elixir;HTML/CSS;JavaScript;TypeScript
+75205,Java;SQL
+75206,HTML/CSS;JavaScript;PHP;Python;SQL
+75207,C#;Java;JavaScript;SQL
+75208,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+75209,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+75210,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+75211,Bash/Shell/PowerShell;Java;JavaScript;SQL
+75212,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+75213,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+75214,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+75215,Bash/Shell/PowerShell;HTML/CSS;SQL
+75216,C#;HTML/CSS;JavaScript
+75218,Java;Python
+75219,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+75220,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+75221,C;C++;Go;Java;Kotlin;Python;Rust
+75222,Java
+75223,Java;JavaScript;Python;SQL
+75224,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+75225,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+75226,JavaScript;TypeScript
+75227,C;HTML/CSS;JavaScript;Swift
+75228,HTML/CSS;JavaScript
+75229,Java;Python
+75230,Python;SQL
+75231,HTML/CSS;JavaScript
+75232,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+75233,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Ruby;SQL
+75234,C#;SQL
+75235,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+75236,Swift
+75237,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75238,C++
+75239,C;C++;Java;SQL
+75240,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Other(s):
+75241,C#;Other(s):
+75242,Go;JavaScript;Python
+75243,Go;HTML/CSS;JavaScript;Python
+75244,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+75245,HTML/CSS;JavaScript;Python;SQL
+75246,HTML/CSS;JavaScript;Objective-C
+75247,C;HTML/CSS;JavaScript;SQL;TypeScript
+75248,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75249,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+75250,C#
+75251,C;HTML/CSS;JavaScript;PHP;Python;SQL
+75252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+75253,HTML/CSS;Java;JavaScript;Python;Swift
+75254,C#;HTML/CSS;JavaScript;Python;SQL
+75255,HTML/CSS;Java;JavaScript;SQL
+75256,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+75257,Python
+75258,Bash/Shell/PowerShell;C#;Java;Kotlin;Python;Rust;Scala;SQL
+75260,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+75261,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+75262,HTML/CSS;Java;JavaScript
+75263,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+75264,Assembly
+75265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+75266,JavaScript;PHP;Python;SQL
+75267,C++;C#;HTML/CSS;JavaScript
+75268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75269,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75270,Java;JavaScript;Kotlin;Python
+75271,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+75272,HTML/CSS;JavaScript;TypeScript
+75273,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;WebAssembly
+75274,Bash/Shell/PowerShell;Python;R;SQL
+75275,Java
+75276,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;WebAssembly
+75277,Java;JavaScript;Python;Scala;SQL
+75278,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+75279,Java;JavaScript;PHP;Python;SQL;TypeScript
+75280,C#;F#;HTML/CSS;JavaScript;Python;Scala;TypeScript
+75281,HTML/CSS;JavaScript
+75282,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+75283,HTML/CSS;JavaScript
+75284,Bash/Shell/PowerShell;C;Java;Python;R;Scala;SQL;Other(s):
+75285,HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript
+75286,PHP;SQL
+75287,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+75288,Java
+75289,C++;Kotlin
+75290,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;TypeScript
+75291,Java;SQL
+75292,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+75293,HTML/CSS;Java;JavaScript;PHP;Python
+75294,HTML/CSS;Java;JavaScript;PHP;SQL
+75295,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+75296,C#;Java;Kotlin;Python;SQL
+75297,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+75298,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+75299,C#
+75300,Bash/Shell/PowerShell;Go;Ruby
+75301,Assembly;Bash/Shell/PowerShell;C;C++;Python
+75302,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+75303,HTML/CSS;JavaScript;PHP
+75304,Dart;HTML/CSS;JavaScript;PHP;SQL
+75305,HTML/CSS;Java;JavaScript;Python;SQL
+75306,HTML/CSS;JavaScript;Python;TypeScript
+75307,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+75308,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75309,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+75310,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+75311,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75312,C#;HTML/CSS;JavaScript;SQL
+75313,C;Go;Java;Python;SQL
+75315,C#;Go;Python;SQL
+75316,Bash/Shell/PowerShell;C;C++;C#;Python;Other(s):
+75317,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python;Scala;SQL
+75318,C;HTML/CSS;Java;Python
+75319,C;C#;HTML/CSS;JavaScript;SQL;WebAssembly
+75320,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+75321,Python;TypeScript
+75322,C#;HTML/CSS;JavaScript;PHP;SQL
+75323,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+75324,Bash/Shell/PowerShell;Python;SQL
+75325,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75326,HTML/CSS;Java;JavaScript;SQL
+75327,C;Clojure;Erlang;HTML/CSS;JavaScript;PHP;Python
+75328,Java;JavaScript
+75329,HTML/CSS;JavaScript;Python
+75330,HTML/CSS;JavaScript;PHP;Python;R;SQL
+75331,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+75332,R;SQL
+75333,HTML/CSS;Java;JavaScript
+75334,Bash/Shell/PowerShell;C#;JavaScript;PHP;Python
+75335,Dart;HTML/CSS;Java;Kotlin;TypeScript
+75336,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+75337,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+75338,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+75339,HTML/CSS;JavaScript;SQL;Other(s):
+75340,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+75341,HTML/CSS;Java;JavaScript;SQL
+75342,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75343,Assembly;C;C++;C#;Dart;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+75344,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+75346,Go;Java;JavaScript;Python;SQL;TypeScript
+75347,Bash/Shell/PowerShell;C;C++
+75348,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+75349,Bash/Shell/PowerShell;PHP;Python;SQL
+75350,Java
+75351,Java;Kotlin
+75352,C;C++;C#;Elixir;HTML/CSS;Java;Python;SQL
+75353,C++;C#;F#;HTML/CSS;JavaScript;SQL
+75354,HTML/CSS
+75355,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+75356,Python
+75357,Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+75358,Java;SQL
+75359,Swift
+75360,HTML/CSS;Java;JavaScript
+75361,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75362,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75363,C;C++;C#;Python
+75364,Bash/Shell/PowerShell;Java;Python
+75365,C;C#;Dart;HTML/CSS;Java;Kotlin;Python;Other(s):
+75366,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75367,Python;Other(s):
+75368,Java;Kotlin
+75369,Bash/Shell/PowerShell;C++;JavaScript;Python
+75370,Assembly;C;C++;C#;HTML/CSS;Java;Python;SQL
+75371,HTML/CSS;JavaScript;PHP;SQL
+75372,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+75373,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Other(s):
+75374,HTML/CSS;Java;JavaScript;Objective-C;PHP;Scala
+75375,Assembly;HTML/CSS;JavaScript
+75376,Assembly;Bash/Shell/PowerShell;C;C++;Java;Rust
+75377,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75378,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Python;Rust;Scala
+75379,C;C++;Python
+75380,HTML/CSS;JavaScript;TypeScript
+75381,C#;HTML/CSS;JavaScript;SQL
+75382,HTML/CSS;JavaScript
+75383,C#;HTML/CSS;JavaScript;PHP;SQL
+75384,Assembly;Bash/Shell/PowerShell;Java;SQL
+75385,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python
+75386,C++;C#;HTML/CSS;SQL
+75387,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+75388,Bash/Shell/PowerShell;Java;Python;SQL
+75389,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+75390,C++;C#;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75391,C++;C#;HTML/CSS;Python
+75392,HTML/CSS;JavaScript;TypeScript
+75393,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75394,C++;Java;Python
+75395,HTML/CSS;JavaScript;PHP;SQL
+75396,JavaScript
+75397,Python;R
+75398,Assembly;HTML/CSS;JavaScript;Python;TypeScript
+75399,C++;HTML/CSS;JavaScript;PHP;SQL
+75400,Bash/Shell/PowerShell;C++;Java
+75401,PHP
+75402,C;C++;Java;Python;SQL
+75403,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+75404,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;WebAssembly
+75405,C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL;Swift
+75406,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75407,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+75408,HTML/CSS;Java;JavaScript;SQL
+75409,C#
+75410,Other(s):
+75411,Python;R;Scala;SQL
+75412,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+75413,HTML/CSS;Java;JavaScript
+75414,C++;Java
+75415,HTML/CSS;Java;JavaScript;SQL
+75416,Java;JavaScript;Kotlin;Swift
+75417,HTML/CSS;Java;JavaScript;SQL;TypeScript
+75419,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+75420,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;F#;Java;R;WebAssembly
+75421,Java;JavaScript;Rust;TypeScript
+75422,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+75423,C#;Java;SQL
+75424,Go;JavaScript;Python
+75425,C#;JavaScript;TypeScript
+75426,C
+75427,HTML/CSS;Java;JavaScript;Scala
+75428,Bash/Shell/PowerShell;C#;JavaScript;Python;Scala;TypeScript
+75429,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+75430,C++;C#;HTML/CSS;Java;JavaScript;Python;VBA
+75431,HTML/CSS;Java;JavaScript;PHP;SQL
+75432,Clojure;HTML/CSS;JavaScript;Python;SQL
+75433,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+75434,C#;HTML/CSS;JavaScript;SQL
+75435,C;C++;Objective-C;PHP;Swift
+75436,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+75437,Bash/Shell/PowerShell;C;Java;Python;R;Rust
+75438,C++;JavaScript;Python;Rust;TypeScript;WebAssembly
+75439,Assembly;Java;Python
+75440,C#;HTML/CSS;Python
+75441,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+75442,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;TypeScript
+75443,HTML/CSS;JavaScript;PHP;SQL
+75444,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75445,C#;HTML/CSS;Java;JavaScript;SQL
+75446,C#;Java;JavaScript;Kotlin;Python;SQL
+75447,HTML/CSS;Other(s):
+75448,C;C++;Java;JavaScript;Rust;WebAssembly
+75449,Java;JavaScript
+75450,HTML/CSS;JavaScript;PHP;SQL
+75451,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75452,C;C++;C#;HTML/CSS;JavaScript
+75453,HTML/CSS;Java;JavaScript;SQL;TypeScript
+75454,HTML/CSS;JavaScript;PHP
+75455,C#;JavaScript;Ruby;SQL;VBA
+75456,Bash/Shell/PowerShell;C++;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+75458,Python;SQL;Other(s):
+75459,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+75460,HTML/CSS;JavaScript;Python;SQL;TypeScript
+75461,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+75462,C;C++;HTML/CSS;Java;PHP;SQL
+75463,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+75464,C++;C#;HTML/CSS;JavaScript;TypeScript
+75465,Java
+75467,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+75468,Bash/Shell/PowerShell;JavaScript;Objective-C;Swift;TypeScript
+75469,C++;HTML/CSS;Java;PHP;SQL
+75470,JavaScript;Objective-C;Swift
+75471,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+75472,HTML/CSS;JavaScript;PHP;SQL
+75473,C#;HTML/CSS;JavaScript;SQL
+75474,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;Other(s):
+75475,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+75476,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75477,C#;SQL
+75478,Go;JavaScript;Objective-C;Ruby;SQL;Swift;TypeScript
+75479,C;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+75480,Java
+75481,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+75482,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;Other(s):
+75483,Objective-C;Swift
+75484,C;Other(s):
+75485,Bash/Shell/PowerShell;C++;Elixir;Go;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+75486,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+75487,HTML/CSS;JavaScript;Python;Ruby;SQL
+75488,Java;Python;Ruby
+75489,HTML/CSS;JavaScript;PHP;SQL
+75490,Bash/Shell/PowerShell;C#;Java;SQL
+75491,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+75492,C#;JavaScript;SQL
+75493,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+75494,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+75495,Clojure;HTML/CSS;JavaScript;SQL
+75497,Python;R
+75498,HTML/CSS;JavaScript;PHP;TypeScript
+75499,C;C++;C#;HTML/CSS;Java
+75500,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+75501,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;SQL
+75502,C#;Java;JavaScript;SQL
+75503,HTML/CSS;Java;JavaScript
+75504,HTML/CSS;JavaScript;PHP
+75505,Bash/Shell/PowerShell;HTML/CSS;Kotlin;Objective-C;PHP;Ruby;Swift
+75506,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+75507,Java;Kotlin;Python
+75508,C#;HTML/CSS;JavaScript;Kotlin;SQL
+75509,Go;HTML/CSS;JavaScript;Kotlin;Python;SQL
+75510,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+75511,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+75512,Java;Kotlin
+75513,C#;HTML/CSS;Java;JavaScript;TypeScript
+75514,C#;HTML/CSS;JavaScript;PHP;SQL
+75515,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+75516,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+75517,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75518,HTML/CSS;Java;JavaScript
+75519,C;C++;C#;Python
+75520,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;HTML/CSS
+75521,C#;HTML/CSS;Java;JavaScript;Python
+75522,HTML/CSS;JavaScript;Scala;TypeScript
+75523,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;Swift;TypeScript
+75524,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL;Swift
+75525,C#;HTML/CSS;JavaScript;SQL
+75526,Bash/Shell/PowerShell;C;C++;Python
+75527,Bash/Shell/PowerShell;C;C++;C#;Go;JavaScript;Ruby;SQL
+75528,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby
+75529,HTML/CSS;Java;JavaScript;SQL;TypeScript
+75531,C#;HTML/CSS;JavaScript;SQL
+75532,Bash/Shell/PowerShell;C#;JavaScript;Python;Ruby;SQL
+75533,HTML/CSS;JavaScript;PHP;SQL
+75534,C++;C#;HTML/CSS;JavaScript;SQL
+75535,C++;JavaScript;TypeScript
+75536,HTML/CSS;JavaScript
+75537,C#;Java;Python;Ruby;SQL
+75538,HTML/CSS;JavaScript;Ruby
+75539,Bash/Shell/PowerShell;C++;C#;Dart;JavaScript;Objective-C;Python;TypeScript
+75540,C++;C#;SQL
+75541,C++;Python;Other(s):
+75542,C++;C#;Python
+75543,C#;PHP;Swift
+75544,C++;C#;Other(s):
+75545,Assembly;HTML/CSS;PHP;Python;Other(s):
+75546,C++;HTML/CSS;Java;JavaScript;Python;SQL
+75547,C++;C#
+75548,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+75549,C;C++;Java
+75550,C#;HTML/CSS;JavaScript;TypeScript
+75551,HTML/CSS;JavaScript
+75552,HTML/CSS;JavaScript;PHP;SQL
+75553,Bash/Shell/PowerShell;C#;JavaScript;SQL
+75554,C#;Go;JavaScript;Python;TypeScript
+75555,Bash/Shell/PowerShell;C++;C#;Objective-C;PHP;Python;Other(s):
+75556,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript;Other(s):
+75557,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+75558,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+75559,HTML/CSS;Java;JavaScript
+75560,HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+75561,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+75562,HTML/CSS;Java;JavaScript;Python
+75563,HTML/CSS;Java;JavaScript;SQL;VBA
+75564,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+75565,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript
+75566,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+75567,Bash/Shell/PowerShell;C;Java;Python
+75568,Bash/Shell/PowerShell;Python;Scala;SQL
+75569,HTML/CSS;JavaScript;PHP;SQL
+75570,HTML/CSS;Java;JavaScript;TypeScript
+75571,C#;Ruby;SQL
+75572,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Ruby;Other(s):
+75573,HTML/CSS;Java;Kotlin;Python;Rust;SQL
+75574,C#;HTML/CSS;JavaScript
+75575,C#;HTML/CSS;Java;JavaScript;TypeScript
+75576,HTML/CSS;JavaScript;SQL
+75577,Java;Python
+75578,Bash/Shell/PowerShell;HTML/CSS;Python;R
+75579,HTML/CSS;Java;JavaScript;Python;TypeScript
+75580,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+75581,HTML/CSS;Java;JavaScript;Ruby;SQL
+75582,Java;Kotlin
+75583,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+75584,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Scala;SQL;TypeScript
+75585,Bash/Shell/PowerShell;Python;Other(s):
+75586,Bash/Shell/PowerShell;HTML/CSS;SQL
+75587,HTML/CSS;JavaScript;PHP;TypeScript
+75588,C#;HTML/CSS;Python;SQL
+75589,HTML/CSS;JavaScript;PHP;TypeScript
+75590,Bash/Shell/PowerShell;C++;Python
+75591,HTML/CSS;JavaScript;PHP
+75592,HTML/CSS;JavaScript
+75593,TypeScript
+75594,Bash/Shell/PowerShell;Go;HTML/CSS;Java;PHP;Python;R;SQL
+75595,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+75596,R;SQL
+75597,Assembly;Bash/Shell/PowerShell;C;C++;Python
+75598,HTML/CSS;Java;JavaScript;Kotlin;Other(s):
+75599,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+75600,Java;Python;R;SQL
+75601,Assembly;C;Objective-C;Python;SQL;Swift
+75602,Java
+75603,C;HTML/CSS;JavaScript;PHP
+75604,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+75605,HTML/CSS;Java;JavaScript
+75606,HTML/CSS;JavaScript;Python;R;SQL
+75607,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75608,HTML/CSS;Java;JavaScript;PHP;SQL
+75609,C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL
+75610,HTML/CSS;JavaScript;PHP;Ruby
+75611,HTML/CSS;JavaScript;TypeScript
+75612,C++;Go;JavaScript
+75613,HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+75614,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+75615,C;C#;Java;JavaScript;SQL
+75616,Bash/Shell/PowerShell;C++;Go;Kotlin;SQL
+75617,Go;JavaScript;Swift
+75618,HTML/CSS;Java;JavaScript;PHP;SQL
+75619,Assembly;Java;SQL
+75620,C;C++;JavaScript;Python;Other(s):
+75621,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+75622,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+75623,C++;HTML/CSS;JavaScript;Swift
+75624,C;HTML/CSS;Java;JavaScript
+75625,C++;Go;SQL
+75626,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+75627,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+75628,Go;Java;Scala;Other(s):
+75629,JavaScript
+75630,C;C++;JavaScript
+75631,HTML/CSS;JavaScript;Python;R
+75632,C#;HTML/CSS;SQL
+75633,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+75634,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+75635,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+75636,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+75637,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+75638,C#;Other(s):
+75639,Java
+75640,JavaScript;Python;TypeScript
+75641,C;Java;JavaScript;Kotlin;TypeScript
+75642,Bash/Shell/PowerShell;Python;Ruby;Scala;Other(s):
+75643,C#;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+75644,C#;Java;R;SQL;VBA
+75645,JavaScript
+75646,C;C++;Python;Other(s):
+75647,HTML/CSS;JavaScript;Swift;TypeScript
+75648,Other(s):
+75650,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+75651,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+75652,C#;Java
+75653,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;JavaScript;Python;SQL
+75654,C#;HTML/CSS;JavaScript;SQL
+75655,HTML/CSS;JavaScript
+75656,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+75657,C#;Dart;HTML/CSS;JavaScript;Objective-C;TypeScript
+75658,Bash/Shell/PowerShell;HTML/CSS;Java
+75659,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+75660,C++;HTML/CSS;Java;Kotlin;PHP;SQL
+75661,Bash/Shell/PowerShell;Python;SQL
+75662,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75663,C++;Java;Kotlin
+75664,HTML/CSS;SQL;Other(s):
+75665,Bash/Shell/PowerShell;Python
+75666,Bash/Shell/PowerShell;C;HTML/CSS;Java;Kotlin;Python;Scala
+75667,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75668,HTML/CSS;JavaScript;PHP;Python;VBA
+75669,HTML/CSS;JavaScript;PHP;SQL
+75670,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA
+75671,C#;HTML/CSS;SQL
+75672,JavaScript
+75673,C++;Java;JavaScript;Kotlin;Swift
+75674,C++;C#;HTML/CSS;JavaScript;Python;R;VBA;Other(s):
+75675,HTML/CSS;JavaScript
+75676,Bash/Shell/PowerShell;Java;SQL
+75677,HTML/CSS;JavaScript;PHP;Swift
+75678,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+75679,Assembly;C;C++;Go;Java;JavaScript;Python
+75680,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Scala;SQL;TypeScript
+75681,HTML/CSS;JavaScript;Python;TypeScript
+75682,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;SQL;Swift;TypeScript
+75683,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+75684,Java
+75685,Bash/Shell/PowerShell;C#;Java;Python;SQL;Other(s):
+75686,C;C++;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+75687,Bash/Shell/PowerShell;C;Java;JavaScript;Python;Ruby;SQL;Swift
+75688,C++
+75689,HTML/CSS;JavaScript;SQL;Other(s):
+75690,HTML/CSS;Java;JavaScript;Swift
+75691,Bash/Shell/PowerShell;Python;Ruby;Rust
+75692,Assembly;Bash/Shell/PowerShell;C;C++;Java
+75693,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+75694,HTML/CSS;JavaScript;PHP
+75695,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript;WebAssembly
+75696,Python;Rust;SQL
+75697,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;SQL
+75698,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+75699,HTML/CSS;JavaScript
+75700,HTML/CSS;JavaScript;SQL;TypeScript
+75701,Assembly;C;C#;Java;PHP;SQL
+75702,HTML/CSS;JavaScript;Python
+75703,Bash/Shell/PowerShell;C;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;VBA
+75704,Assembly;C;HTML/CSS;Java;Python
+75705,C;C++;JavaScript;PHP
+75706,HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL
+75707,Bash/Shell/PowerShell;C++;C#;JavaScript;SQL
+75708,HTML/CSS;JavaScript
+75709,HTML/CSS;Java;JavaScript;Rust;SQL
+75710,C;C++
+75711,Bash/Shell/PowerShell;C;C++;PHP;SQL
+75712,C#;PHP;Python;SQL
+75713,HTML/CSS;Java;JavaScript;PHP;SQL
+75714,HTML/CSS;Java;JavaScript;Python
+75715,HTML/CSS;JavaScript
+75716,C++;C#;SQL
+75717,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+75718,Java;Python;Swift
+75719,Bash/Shell/PowerShell;Go;Java;JavaScript;Other(s):
+75720,Bash/Shell/PowerShell;HTML/CSS;SQL;VBA
+75721,HTML/CSS;JavaScript;Ruby;SQL
+75722,C++;HTML/CSS;JavaScript
+75723,HTML/CSS;JavaScript;PHP;SQL
+75724,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+75725,HTML/CSS;JavaScript;PHP;SQL;Swift
+75726,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+75727,C;C++;HTML/CSS;Java;JavaScript;SQL
+75728,Bash/Shell/PowerShell;Python;SQL
+75729,C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+75730,Bash/Shell/PowerShell;C;C++;Java
+75731,Bash/Shell/PowerShell;JavaScript;Python;SQL
+75732,Python;R;SQL
+75734,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+75735,HTML/CSS;Java;SQL;Swift
+75736,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+75737,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+75738,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Rust;WebAssembly
+75739,HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+75740,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75741,Bash/Shell/PowerShell;C#;Kotlin;Python;SQL
+75742,Bash/Shell/PowerShell;C;C++;C#;Java;Swift
+75743,Dart;Java;Kotlin
+75744,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+75745,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Ruby;SQL
+75746,Java;Python;Rust;SQL
+75747,Java;JavaScript;Objective-C;Swift
+75748,Bash/Shell/PowerShell;HTML/CSS;SQL;Other(s):
+75749,C#;JavaScript
+75750,C#;HTML/CSS;JavaScript;SQL
+75751,C#;SQL
+75752,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL
+75753,Java;Kotlin
+75754,HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+75755,Bash/Shell/PowerShell;JavaScript
+75756,HTML/CSS;JavaScript;PHP
+75758,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+75759,Bash/Shell/PowerShell;C;JavaScript;Python;Rust;TypeScript
+75760,C#;Go;Java;Kotlin;Python
+75761,C;C++;Python;Scala;SQL
+75762,C;JavaScript;PHP;SQL;VBA
+75763,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75764,C++;C#;HTML/CSS;SQL;Other(s):
+75765,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+75766,Python
+75767,Erlang;HTML/CSS;JavaScript;Python
+75768,Java
+75769,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+75770,C;JavaScript;Python;Swift
+75771,C#;Python;SQL;Other(s):
+75772,Assembly;Bash/Shell/PowerShell;C;Dart;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+75773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+75774,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+75775,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+75776,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+75777,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+75778,Assembly;C;PHP;Ruby;SQL;VBA
+75779,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+75780,HTML/CSS;Java;JavaScript;SQL;TypeScript
+75781,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+75782,HTML/CSS;JavaScript;Ruby;SQL
+75783,C++;Java;JavaScript;SQL
+75784,Bash/Shell/PowerShell;C#;JavaScript;Ruby;SQL
+75785,C;Go;Java;JavaScript;PHP;Python
+75786,R;SQL;Other(s):
+75787,HTML/CSS;JavaScript;PHP;TypeScript
+75788,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+75789,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+75790,Bash/Shell/PowerShell;C#;Python;SQL
+75791,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+75792,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+75793,C;C++;Java
+75794,Assembly;Bash/Shell/PowerShell;C;C++;Python
+75795,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+75796,C#;HTML/CSS;JavaScript;SQL
+75797,HTML/CSS;JavaScript;Python;SQL;WebAssembly
+75798,Bash/Shell/PowerShell;Java;Python;SQL
+75799,Bash/Shell/PowerShell;Go;Python;SQL;Other(s):
+75800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+75801,Bash/Shell/PowerShell;JavaScript;PHP;Python;TypeScript
+75802,HTML/CSS;Java;SQL
+75803,Bash/Shell/PowerShell;C;Go;JavaScript;Kotlin;PHP;Python;Ruby;Rust;Scala;SQL
+75804,HTML/CSS;Python;SQL;VBA
+75805,C#;HTML/CSS;JavaScript;PHP;SQL
+75806,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL;Swift
+75807,C;HTML/CSS;JavaScript;PHP;SQL
+75808,HTML/CSS;JavaScript;Python;SQL
+75809,HTML/CSS;Java;JavaScript;SQL;TypeScript
+75810,C;JavaScript;Swift
+75811,C++;C#;Go;Java;Python;Ruby;SQL
+75812,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+75813,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+75814,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+75815,Java;JavaScript;SQL
+75816,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;JavaScript;SQL
+75817,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+75818,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+75819,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+75820,HTML/CSS;Java;JavaScript;TypeScript
+75821,HTML/CSS;Java
+75822,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;Python;SQL
+75823,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+75824,C++;HTML/CSS;JavaScript;Python
+75825,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP
+75826,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+75827,Bash/Shell/PowerShell;C#;Java;SQL
+75828,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+75829,Bash/Shell/PowerShell;C++;Java;Python;R;SQL
+75830,HTML/CSS;JavaScript
+75831,Bash/Shell/PowerShell;SQL
+75832,HTML/CSS;JavaScript;Python
+75833,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+75834,C#;Elixir;HTML/CSS;JavaScript;SQL
+75835,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+75836,Dart;Python;Rust
+75837,Go;HTML/CSS;JavaScript;Kotlin;PHP;Ruby;TypeScript
+75838,Bash/Shell/PowerShell;C#;Other(s):
+75839,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75840,C++;Python
+75841,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+75843,Bash/Shell/PowerShell;C#;SQL
+75845,Bash/Shell/PowerShell;R;Other(s):
+75846,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+75847,Objective-C;Swift
+75848,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+75849,C;HTML/CSS;JavaScript;Python
+75850,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+75851,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+75852,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust
+75853,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+75854,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+75855,HTML/CSS;JavaScript
+75856,Objective-C;Swift;Other(s):
+75857,C++;HTML/CSS;Python;SQL
+75858,Bash/Shell/PowerShell;C;C++;Python;SQL
+75859,Bash/Shell/PowerShell;Clojure;JavaScript;PHP;SQL;TypeScript
+75860,C++;C#
+75861,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;R;Ruby;SQL
+75862,Java;Kotlin;SQL
+75863,HTML/CSS;Java;PHP;Python;SQL
+75864,Java
+75865,HTML/CSS;Java;JavaScript;Python;SQL
+75866,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+75867,Bash/Shell/PowerShell;Java;Kotlin;Ruby;SQL
+75868,C#;HTML/CSS;Java;JavaScript;SQL
+75869,Java;SQL;Other(s):
+75870,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+75871,HTML/CSS;JavaScript;PHP;Python;SQL
+75872,Dart;HTML/CSS;Java;JavaScript;PHP;Python
+75873,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+75874,C#;JavaScript;Python;Other(s):
+75875,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+75876,C;C++;Java;JavaScript;SQL
+75877,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+75878,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+75879,HTML/CSS;JavaScript
+75880,HTML/CSS;Java;JavaScript;Other(s):
+75881,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75882,C#;JavaScript;SQL;TypeScript
+75883,C++;C#;Clojure;F#;JavaScript;TypeScript;Other(s):
+75884,HTML/CSS;Java;PHP;SQL
+75885,HTML/CSS;JavaScript;Other(s):
+75886,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA;WebAssembly
+75887,C++;C#;HTML/CSS;JavaScript;Python
+75889,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+75890,C#;HTML/CSS;Java;JavaScript;SQL
+75891,HTML/CSS;Java;JavaScript;Python;SQL;VBA
+75892,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+75893,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+75894,Assembly;C#;SQL
+75895,C;C++;C#;HTML/CSS;Objective-C
+75896,C#;JavaScript
+75897,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+75898,C#;SQL;VBA
+75899,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+75900,C++;C#;JavaScript;SQL
+75901,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+75902,C#;Java;PHP;Ruby
+75903,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+75904,C#;Java;JavaScript;PHP;SQL
+75905,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75906,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+75907,C#;Other(s):
+75908,Bash/Shell/PowerShell;C;Java
+75909,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+75910,HTML/CSS;Java;R;SQL
+75911,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75912,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+75913,HTML/CSS;JavaScript;PHP;SQL;Swift
+75915,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+75916,C++;C#;HTML/CSS;JavaScript;Python;Rust;SQL;Swift;TypeScript
+75917,Other(s):
+75918,Clojure;JavaScript;Ruby
+75919,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+75920,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+75921,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75922,Java
+75923,HTML/CSS;JavaScript
+75924,C#;HTML/CSS;SQL;TypeScript
+75925,C#;HTML/CSS;Python;TypeScript
+75926,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+75927,C#;HTML/CSS;Java;Kotlin;Scala
+75928,Python;R;SQL
+75929,C;Python
+75930,C#;HTML/CSS;JavaScript;TypeScript
+75931,C;C++;Python;R;SQL;Other(s):
+75932,C++;C#;JavaScript;SQL
+75933,HTML/CSS;JavaScript;PHP;SQL
+75934,HTML/CSS
+75935,HTML/CSS;JavaScript
+75936,HTML/CSS;JavaScript;PHP;SQL
+75937,HTML/CSS;JavaScript
+75938,HTML/CSS;JavaScript;PHP
+75939,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+75940,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+75941,Objective-C;Swift
+75942,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+75943,Assembly;Bash/Shell/PowerShell;C;C++;Java;SQL;VBA;Other(s):
+75944,Bash/Shell/PowerShell;C#;JavaScript
+75945,HTML/CSS;Java;JavaScript;PHP;SQL
+75946,HTML/CSS;Java;JavaScript;SQL
+75947,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+75948,C#;HTML/CSS;JavaScript;SQL
+75949,C#;HTML/CSS;JavaScript;TypeScript
+75950,C#;Python
+75951,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby
+75952,HTML/CSS;Java;JavaScript;PHP;SQL
+75953,C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+75954,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+75955,Assembly;JavaScript;PHP;SQL
+75956,HTML/CSS;JavaScript;Ruby;SQL
+75957,C++;Python;Rust
+75958,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+75959,C#;JavaScript;Python;SQL
+75960,Java;Kotlin
+75961,Bash/Shell/PowerShell;Python
+75962,C++;JavaScript;TypeScript
+75963,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift
+75964,C;C++;HTML/CSS;Java;JavaScript;SQL
+75965,Bash/Shell/PowerShell;C++;HTML/CSS;Java;SQL
+75966,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript
+75967,Bash/Shell/PowerShell;Java;PHP
+75968,C;C++;JavaScript;Python;R;SQL;VBA;Other(s):
+75969,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+75971,Python;SQL
+75972,HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+75973,Bash/Shell/PowerShell;C#;Python;Other(s):
+75975,HTML/CSS;JavaScript
+75976,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+75977,JavaScript;Ruby;TypeScript
+75978,C#;HTML/CSS;JavaScript;SQL
+75979,Go;HTML/CSS;JavaScript;PHP;SQL
+75980,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+75981,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+75982,HTML/CSS;Java;JavaScript;SQL
+75983,Java;JavaScript;Kotlin;Python;Scala;SQL
+75984,JavaScript;Python
+75985,C++;C#;SQL
+75986,C#;HTML/CSS;JavaScript;SQL;TypeScript
+75987,C;C++;C#;HTML/CSS;PHP;SQL;Other(s):
+75988,Go;HTML/CSS;Java;JavaScript;Objective-C
+75989,Bash/Shell/PowerShell;C++;Java;JavaScript;SQL;TypeScript
+75990,Bash/Shell/PowerShell;HTML/CSS;Python
+75991,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+75992,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+75993,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+75994,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;SQL;TypeScript
+75995,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+75996,Python;Other(s):
+75997,C;C#;Rust
+75998,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+75999,Java;JavaScript;Kotlin;SQL;TypeScript
+76000,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+76001,Dart;Java
+76002,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76003,Go;HTML/CSS;Java;JavaScript;PHP
+76004,C;C++
+76005,HTML/CSS;Java;JavaScript
+76006,HTML/CSS;JavaScript
+76007,C++;JavaScript;Python;TypeScript
+76008,C;C#;Python;SQL
+76009,C++
+76010,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+76011,Java
+76012,C#;HTML/CSS;SQL;TypeScript
+76013,C;C++;HTML/CSS;Java;SQL
+76014,C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift;TypeScript
+76015,Assembly;HTML/CSS;Java;JavaScript;Python;TypeScript
+76016,HTML/CSS;Java;JavaScript;SQL
+76017,C#;Java;Kotlin;SQL
+76018,HTML/CSS;Java;JavaScript;Python
+76019,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;JavaScript;SQL
+76020,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;VBA;Other(s):
+76021,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+76022,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;Swift;TypeScript
+76023,Go;HTML/CSS;Java;JavaScript;SQL
+76024,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+76025,Assembly;C;C#;HTML/CSS;JavaScript;Kotlin;Python;Swift;TypeScript
+76026,C;C#;HTML/CSS;JavaScript;Python
+76027,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+76028,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76029,C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+76030,HTML/CSS;JavaScript;PHP
+76031,C#;HTML/CSS;JavaScript;SQL
+76032,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+76033,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+76034,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+76035,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL
+76036,HTML/CSS;PHP;SQL
+76037,HTML/CSS;Java;JavaScript;Python;SQL
+76038,Elixir
+76039,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+76040,Bash/Shell/PowerShell;C++;C#;F#;Java;JavaScript;Python;SQL
+76041,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;TypeScript
+76042,HTML/CSS;JavaScript;PHP;Swift
+76043,Bash/Shell/PowerShell;C;Go;JavaScript;PHP;SQL
+76044,Bash/Shell/PowerShell;C++;C#;SQL;Other(s):
+76045,Java;JavaScript;Python
+76046,C#
+76047,Bash/Shell/PowerShell;C++;Python;SQL;Other(s):
+76048,Java;JavaScript;Python;R;SQL;Other(s):
+76049,Go;HTML/CSS;JavaScript;Ruby;SQL
+76050,HTML/CSS;Java;JavaScript;PHP;SQL
+76051,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+76052,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76053,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+76054,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76055,Bash/Shell/PowerShell;Objective-C;SQL;Swift
+76056,C#;Java;Python;SQL;Other(s):
+76057,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+76058,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+76059,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;SQL
+76060,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+76061,HTML/CSS;JavaScript;Python;SQL
+76062,C;C++;Rust
+76063,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+76064,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+76065,C#;SQL;TypeScript
+76066,C++;C#;Java
+76067,HTML/CSS;Java;JavaScript;PHP;Python;R
+76068,Bash/Shell/PowerShell;Elixir;Go;JavaScript;Python;Rust
+76069,C#;HTML/CSS;JavaScript;SQL;VBA
+76070,Go;HTML/CSS;Java;JavaScript;Python;SQL
+76071,Bash/Shell/PowerShell;C;Elixir;Go;JavaScript;Python;SQL
+76072,Bash/Shell/PowerShell;PHP;Python;SQL
+76073,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+76074,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+76075,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+76076,Assembly;C#;SQL;Other(s):
+76077,C#;HTML/CSS;Python;SQL
+76078,Java;SQL;TypeScript
+76079,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+76080,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+76081,Bash/Shell/PowerShell;C;Java;TypeScript
+76082,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+76083,C;Objective-C;Swift
+76084,HTML/CSS;JavaScript;PHP
+76085,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+76086,C;C++;C#;Java;Python;SQL
+76087,C#;Python
+76088,JavaScript;Ruby
+76089,HTML/CSS;Java;JavaScript;PHP;SQL
+76090,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;Rust;Scala;SQL
+76091,Bash/Shell/PowerShell;C;C#;Python;Scala
+76092,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;R;Scala;SQL;TypeScript
+76093,C#;HTML/CSS;JavaScript;PHP;Python
+76094,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;PHP;SQL
+76095,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+76096,HTML/CSS;JavaScript;Ruby
+76097,HTML/CSS;JavaScript;TypeScript
+76098,C;Java;Python
+76100,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;SQL;TypeScript;VBA
+76101,Bash/Shell/PowerShell;HTML/CSS;R
+76102,Assembly;C++;C#;HTML/CSS;JavaScript
+76103,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+76104,HTML/CSS;JavaScript;PHP;SQL
+76105,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+76106,HTML/CSS;PHP;SQL
+76107,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;VBA
+76108,Bash/Shell/PowerShell;SQL;Other(s):
+76109,Java;Kotlin
+76110,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;TypeScript
+76111,JavaScript;Ruby
+76112,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL;TypeScript
+76113,C#;HTML/CSS;JavaScript;Python
+76114,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+76115,C#;HTML/CSS;JavaScript;SQL
+76116,HTML/CSS;JavaScript;TypeScript
+76117,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76118,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+76119,Python
+76120,Assembly;C;C++;HTML/CSS;JavaScript;PHP
+76121,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+76122,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+76123,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+76124,Bash/Shell/PowerShell;Java;SQL;Other(s):
+76125,Java;JavaScript;Swift
+76126,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+76127,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+76128,C#;SQL;VBA
+76129,HTML/CSS;JavaScript;PHP;Python
+76130,C#;HTML/CSS;JavaScript;TypeScript
+76131,Java;VBA
+76132,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python
+76133,C++;C#;SQL;Other(s):
+76134,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python;Swift
+76135,Go;HTML/CSS;JavaScript;Python;SQL
+76136,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+76137,Go;HTML/CSS;Java;JavaScript;SQL
+76138,C;C++;HTML/CSS;JavaScript;PHP;SQL
+76139,HTML/CSS;Java;JavaScript;Python
+76140,Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Python;Ruby;Swift
+76141,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76142,JavaScript;PHP
+76143,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+76144,HTML/CSS;JavaScript;PHP;SQL
+76145,HTML/CSS;Java;JavaScript;SQL
+76146,Bash/Shell/PowerShell;C;Python
+76147,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+76148,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;VBA;Other(s):
+76149,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+76150,Java;Python
+76151,Elixir;JavaScript;Ruby
+76152,Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+76153,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+76154,C;C++;JavaScript;Ruby;Other(s):
+76155,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+76156,C;C#;Go;HTML/CSS;JavaScript;TypeScript
+76157,Java;Python;Scala
+76158,C#;HTML/CSS;Java;JavaScript;Python
+76159,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+76160,C#;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+76161,Bash/Shell/PowerShell;C++;SQL
+76162,JavaScript;Python;Other(s):
+76163,Bash/Shell/PowerShell;JavaScript;Python;SQL
+76164,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+76165,C;C++
+76166,Java;JavaScript;Kotlin;Ruby;Scala;Swift
+76167,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76168,Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+76169,C++;HTML/CSS;JavaScript;Python;R;VBA
+76170,HTML/CSS;JavaScript;TypeScript
+76171,Go;JavaScript
+76172,C;C++;Python
+76173,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+76174,JavaScript;Other(s):
+76175,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76176,C++;PHP;TypeScript
+76177,Java;SQL
+76178,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+76179,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+76180,C#;Dart;HTML/CSS;JavaScript
+76181,Bash/Shell/PowerShell;C;C++;JavaScript;Python;SQL
+76182,Bash/Shell/PowerShell;C++;HTML/CSS;Java;VBA
+76183,HTML/CSS;JavaScript
+76184,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;TypeScript
+76186,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+76187,Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+76188,Bash/Shell/PowerShell;C#;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+76189,JavaScript;Python
+76190,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+76191,Bash/Shell/PowerShell;Java;Python
+76192,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76193,Go;HTML/CSS;Python;Rust;VBA;Other(s):
+76194,HTML/CSS;JavaScript;PHP
+76195,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+76196,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+76197,HTML/CSS;JavaScript;TypeScript
+76198,C#;JavaScript
+76199,C;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+76200,HTML/CSS;Java;JavaScript;Rust;Scala;SQL;TypeScript
+76201,Bash/Shell/PowerShell;C;C++;Python
+76202,C#;PHP;VBA
+76203,HTML/CSS;Java;JavaScript;SQL;TypeScript
+76204,Java;JavaScript;SQL
+76205,C#
+76206,JavaScript
+76207,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76208,HTML/CSS;JavaScript;Python;TypeScript
+76209,HTML/CSS;JavaScript;PHP;Python;SQL
+76210,HTML/CSS;JavaScript;PHP;Ruby;SQL
+76211,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Python
+76212,HTML/CSS;Java;JavaScript
+76213,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+76214,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;Other(s):
+76215,C#;SQL
+76216,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+76217,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76218,C;C++;Java
+76219,HTML/CSS;JavaScript;PHP;SQL
+76220,HTML/CSS;Java;JavaScript;Python
+76221,Java
+76222,C;HTML/CSS;JavaScript;PHP;SQL
+76223,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+76224,C#;HTML/CSS;JavaScript;SQL;VBA
+76225,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76226,HTML/CSS;JavaScript;PHP;Ruby
+76227,Bash/Shell/PowerShell;HTML/CSS;Python;Rust
+76228,C;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+76229,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+76230,Java;JavaScript;Ruby;Scala;SQL
+76231,HTML/CSS;Java;JavaScript;Swift
+76232,C++;C#;HTML/CSS;JavaScript
+76234,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+76235,Bash/Shell/PowerShell;C;Go;Other(s):
+76236,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;SQL;Swift;TypeScript;WebAssembly
+76237,Assembly;C++;HTML/CSS;JavaScript
+76238,HTML/CSS;JavaScript;PHP;TypeScript
+76239,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+76240,Python;R
+76241,C
+76242,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76243,C++;Java;SQL
+76244,C#;HTML/CSS;Java;JavaScript;Python;Scala
+76245,HTML/CSS;JavaScript;TypeScript
+76246,C;C++;Kotlin;Swift
+76247,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76248,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+76249,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+76250,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+76251,Bash/Shell/PowerShell;C;Java
+76252,Assembly;Bash/Shell/PowerShell;Python;SQL
+76253,C;HTML/CSS;JavaScript;PHP;SQL
+76254,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+76255,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+76256,C++;JavaScript;Python
+76257,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+76258,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+76259,HTML/CSS;JavaScript;Python;SQL;TypeScript
+76260,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+76261,SQL
+76262,Objective-C;Swift
+76263,Bash/Shell/PowerShell;C#;HTML/CSS;Python;R;SQL
+76264,HTML/CSS;Java;PHP;SQL
+76265,C#;HTML/CSS;JavaScript;Swift
+76266,HTML/CSS;JavaScript;PHP
+76267,HTML/CSS;Java;JavaScript;R;SQL
+76268,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+76269,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+76270,Python
+76271,C;C++
+76272,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Ruby;TypeScript
+76273,HTML/CSS;JavaScript;Python;SQL
+76274,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;PHP;SQL
+76275,Bash/Shell/PowerShell;Java;Rust
+76276,Bash/Shell/PowerShell;Java;Scala;SQL
+76277,R;SQL
+76278,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76279,C++;Python;SQL
+76280,Bash/Shell/PowerShell;C;C++;Python;VBA;Other(s):
+76281,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript;VBA
+76282,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+76283,Bash/Shell/PowerShell;C++;Python;SQL;VBA;Other(s):
+76284,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;Other(s):
+76285,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76286,C++;C#;SQL
+76288,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+76289,Bash/Shell/PowerShell;Clojure;Java;Python
+76290,Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP
+76291,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+76292,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+76293,HTML/CSS;JavaScript
+76294,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76295,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;Kotlin;TypeScript
+76297,Assembly;C;C++;Java;JavaScript;Python;SQL
+76298,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76299,HTML/CSS;Java;JavaScript;SQL
+76300,C#;JavaScript;Python;VBA
+76301,C#;JavaScript
+76302,Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+76303,C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+76304,HTML/CSS;Java;JavaScript
+76305,Java;JavaScript;SQL;TypeScript
+76306,Java;Objective-C
+76307,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+76308,C++;HTML/CSS;JavaScript;PHP;SQL
+76309,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+76310,HTML/CSS;JavaScript;PHP;SQL;Swift
+76311,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+76312,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+76313,HTML/CSS;JavaScript;Python;SQL;TypeScript
+76314,HTML/CSS;PHP
+76315,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+76316,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+76317,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+76318,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+76319,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+76320,R;SQL
+76321,Java;JavaScript;SQL
+76322,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+76323,HTML/CSS;JavaScript;SQL
+76324,HTML/CSS;Java;JavaScript;SQL
+76325,HTML/CSS;Java;JavaScript;Python;SQL
+76326,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+76327,R;SQL;Other(s):
+76328,Bash/Shell/PowerShell;HTML/CSS;Ruby
+76329,C#;HTML/CSS;R;SQL
+76330,C++;HTML/CSS;JavaScript;TypeScript
+76331,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;PHP;SQL;Swift
+76332,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+76333,HTML/CSS;JavaScript
+76334,C;C++;C#
+76335,HTML/CSS;JavaScript;Python
+76336,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76337,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76338,HTML/CSS;JavaScript;PHP;Ruby
+76339,C#;Python;R;SQL
+76340,Objective-C;Swift
+76341,Bash/Shell/PowerShell;HTML/CSS;PHP;Ruby;SQL
+76342,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Rust;SQL
+76343,Bash/Shell/PowerShell;Go;JavaScript;Rust;SQL;Swift
+76344,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+76345,JavaScript;Ruby;SQL
+76346,C++;Java
+76347,Bash/Shell/PowerShell;Python;SQL
+76348,JavaScript;PHP
+76349,HTML/CSS;JavaScript;PHP;SQL
+76350,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript
+76351,Java;Python;SQL
+76352,Java;Python
+76353,C#;Dart;Go;Java;SQL
+76354,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76355,C;C++;C#;HTML/CSS;Java;SQL;VBA
+76356,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+76357,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+76358,HTML/CSS;JavaScript;PHP;Other(s):
+76359,Bash/Shell/PowerShell;Python;R;Scala;SQL
+76360,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76361,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+76362,C#;HTML/CSS;JavaScript;Python;Ruby
+76363,C#;HTML/CSS;JavaScript;SQL
+76364,C;Python
+76365,C#;JavaScript;Python;TypeScript
+76366,Swift;TypeScript
+76367,HTML/CSS;Java;JavaScript
+76368,Java;JavaScript;Scala
+76369,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+76370,HTML/CSS;JavaScript;Kotlin;Objective-C;Swift;VBA
+76371,JavaScript;Python;Ruby
+76372,HTML/CSS;Java;JavaScript;SQL
+76373,JavaScript
+76374,Java;PHP;Python;R;SQL
+76375,C;C++
+76376,C#;HTML/CSS;JavaScript;Python;SQL
+76377,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76378,Java;JavaScript;TypeScript
+76379,Python
+76380,Bash/Shell/PowerShell;C#;SQL;Other(s):
+76381,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;PHP;Python;Scala;SQL
+76382,Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C
+76383,C;C++;Go;Java;JavaScript;Python;R;SQL
+76384,JavaScript;PHP
+76385,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+76386,Bash/Shell/PowerShell;JavaScript;Python
+76387,Assembly;JavaScript;Python
+76388,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+76389,JavaScript;Objective-C;Swift
+76390,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+76391,HTML/CSS;JavaScript;TypeScript
+76392,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Scala;SQL
+76393,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+76394,C#;SQL;VBA
+76395,HTML/CSS;Java;SQL
+76396,Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift
+76397,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+76398,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+76399,C#;Dart;Java;Kotlin
+76400,Bash/Shell/PowerShell;Java;SQL
+76401,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+76402,HTML/CSS;JavaScript;PHP;SQL
+76403,Assembly;Bash/Shell/PowerShell;C;C++;Java;PHP;Python;SQL;Other(s):
+76404,HTML/CSS;JavaScript
+76405,Assembly;C;C++;C#;Java;SQL
+76406,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76407,Bash/Shell/PowerShell;Java;Python
+76408,Bash/Shell/PowerShell;Java;SQL
+76409,HTML/CSS;JavaScript;Other(s):
+76410,C;C++;C#;Java;JavaScript;Rust
+76411,C;HTML/CSS;Python;Ruby
+76412,HTML/CSS;JavaScript;PHP;TypeScript
+76413,C#;HTML/CSS;JavaScript;Python;SQL
+76414,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76415,C++;C#;Python
+76416,Erlang
+76417,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76418,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+76419,C#;JavaScript;SQL;Swift;TypeScript
+76420,C;C++;C#;Java;JavaScript;Python
+76421,Ruby
+76422,C#;HTML/CSS;JavaScript;TypeScript
+76423,C++;C#;HTML/CSS;Java;Python;SQL
+76424,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+76425,Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;WebAssembly
+76426,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+76427,HTML/CSS;R;SQL
+76428,C#;HTML/CSS;Java;JavaScript;Python;Ruby
+76429,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;TypeScript;Other(s):
+76430,Java;JavaScript
+76431,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+76432,C++;Java;Kotlin;Python
+76433,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;TypeScript
+76434,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+76435,Clojure
+76436,Bash/Shell/PowerShell;Java;JavaScript;R;Scala;SQL;TypeScript
+76437,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift;VBA
+76438,Java;Kotlin;Python;SQL
+76439,HTML/CSS;JavaScript;Python
+76440,R
+76441,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+76442,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Scala;SQL
+76443,Bash/Shell/PowerShell;Java;Scala;Other(s):
+76445,Bash/Shell/PowerShell;C#;JavaScript;SQL;VBA
+76446,C;C++;Go;HTML/CSS;Java;JavaScript;Python
+76447,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+76448,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76449,HTML/CSS;JavaScript;Python;TypeScript
+76450,HTML/CSS;JavaScript;SQL
+76451,Go;JavaScript;PHP
+76452,HTML/CSS;JavaScript;Python;SQL;VBA
+76453,Java;Kotlin
+76454,Swift
+76456,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;VBA
+76457,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP
+76458,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift;TypeScript
+76460,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+76461,Elixir;Erlang;Go;JavaScript;Kotlin;Ruby;SQL
+76462,C;C++;C#;Clojure;Elixir;Erlang;Go;Java;JavaScript;Kotlin;Objective-C;Ruby;Rust;Swift;TypeScript
+76463,HTML/CSS;Java;JavaScript;Python;R;SQL
+76464,Python
+76465,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+76466,Java;Kotlin;Python;SQL
+76467,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL;TypeScript;VBA
+76468,C++;F#
+76469,HTML/CSS;JavaScript
+76470,Assembly;C;C++;C#;Java;JavaScript;PHP;Python;SQL;Other(s):
+76471,Java
+76472,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+76473,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+76474,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+76475,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+76476,HTML/CSS;Java;JavaScript
+76477,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+76478,C#;HTML/CSS;Java;JavaScript;Python;SQL
+76479,C#;SQL
+76480,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+76481,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76482,Assembly;C;C++;Java;Kotlin;SQL
+76483,Elixir;HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+76484,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP
+76485,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+76486,C++
+76487,Java;JavaScript;SQL
+76488,C#;HTML/CSS;JavaScript
+76489,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+76490,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+76492,Assembly;C;HTML/CSS;JavaScript;Python;Rust;Swift;WebAssembly
+76493,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+76494,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+76495,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76496,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+76497,HTML/CSS;Java;JavaScript;PHP;SQL
+76498,Scala
+76499,C#;SQL;Other(s):
+76500,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+76501,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL
+76502,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+76503,JavaScript;PHP;SQL
+76504,C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+76505,C;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python
+76506,Objective-C
+76507,HTML/CSS;JavaScript;PHP;Ruby;SQL
+76508,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+76509,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76510,HTML/CSS;JavaScript;PHP;SQL
+76511,HTML/CSS;Java;SQL
+76512,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript;Other(s):
+76513,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+76514,C;C++
+76515,Java
+76516,HTML/CSS;JavaScript;Ruby;SQL
+76517,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+76518,HTML/CSS;Python;Scala;TypeScript
+76519,HTML/CSS;JavaScript;Python;SQL
+76520,Bash/Shell/PowerShell;Python
+76521,HTML/CSS;PHP;Python;SQL
+76522,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+76523,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+76524,HTML/CSS;Java;JavaScript
+76525,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+76526,HTML/CSS;Java;JavaScript;Python;SQL
+76527,Bash/Shell/PowerShell;Java;Kotlin;Python
+76528,Bash/Shell/PowerShell;Java;JavaScript;Python
+76529,Bash/Shell/PowerShell;Go;Python
+76530,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+76531,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76532,C++;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+76533,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python
+76534,C#;HTML/CSS;SQL;TypeScript
+76535,C#;HTML/CSS
+76536,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76537,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76538,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76539,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+76540,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+76541,C#;Java;JavaScript;SQL
+76542,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+76543,C++;HTML/CSS;Java;JavaScript;Python;VBA
+76544,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+76545,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76546,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+76547,JavaScript;TypeScript
+76548,C;C++;Python
+76549,HTML/CSS;Java;SQL
+76550,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;Other(s):
+76551,HTML/CSS;JavaScript
+76552,HTML/CSS;JavaScript;PHP
+76553,C#;SQL
+76554,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+76555,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+76556,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76557,JavaScript;TypeScript
+76558,C;HTML/CSS;Java;PHP;Python;SQL;TypeScript
+76559,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;VBA
+76560,HTML/CSS;Java;Kotlin;SQL;TypeScript
+76561,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+76562,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Python
+76563,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly
+76564,C++;HTML/CSS;Java;JavaScript;Python;SQL
+76565,C;C++;HTML/CSS;JavaScript;Ruby;SQL
+76566,C++;HTML/CSS;PHP;SQL
+76568,C;C#;HTML/CSS;Java;JavaScript;Kotlin
+76569,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Ruby;SQL
+76570,C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+76571,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;JavaScript;Python;SQL;Other(s):
+76572,C++;C#;HTML/CSS;JavaScript;TypeScript
+76573,Assembly;C;C++;C#;Elixir;Python
+76574,Assembly;Python
+76576,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+76577,JavaScript;Objective-C;Swift
+76578,Bash/Shell/PowerShell;C#;JavaScript;Scala;SQL;Swift
+76579,HTML/CSS;JavaScript;PHP;SQL
+76580,Java;Kotlin
+76581,Assembly;Bash/Shell/PowerShell;C;C++;Python
+76582,C;C++
+76583,Bash/Shell/PowerShell;C;Ruby;SQL
+76584,C++;C#
+76585,C#;Dart;Java;Kotlin
+76586,Bash/Shell/PowerShell;C#;JavaScript
+76587,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;TypeScript
+76588,HTML/CSS;JavaScript
+76589,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+76590,Python;SQL
+76591,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin
+76592,Assembly;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+76593,HTML/CSS;JavaScript;PHP
+76594,Java;SQL
+76595,Bash/Shell/PowerShell;C;C++;Go;Python
+76596,Bash/Shell/PowerShell;Java;Scala;SQL
+76597,HTML/CSS;JavaScript;PHP;Python;SQL
+76598,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76599,C++;C#;Python
+76600,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+76601,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+76602,HTML/CSS;JavaScript;Python
+76603,Bash/Shell/PowerShell;HTML/CSS;Python;R
+76604,HTML/CSS;JavaScript;PHP;SQL
+76605,HTML/CSS;Java;JavaScript;SQL
+76606,Java;JavaScript;Python
+76607,Go;HTML/CSS;JavaScript;TypeScript
+76608,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+76609,C#;HTML/CSS;Java;JavaScript;TypeScript
+76610,Java;Rust;SQL
+76611,Java;Kotlin
+76612,Java;JavaScript;Objective-C;Swift
+76613,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+76614,Bash/Shell/PowerShell;C;Python
+76615,Java;Kotlin
+76616,C;C++;C#;JavaScript;Python
+76617,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Other(s):
+76618,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76619,Python;R;VBA
+76620,C;C++;HTML/CSS;JavaScript;PHP;Scala;SQL
+76621,Java;Kotlin
+76622,Assembly;C;C++;C#;HTML/CSS;JavaScript;R;SQL;Other(s):
+76623,Bash/Shell/PowerShell;Go
+76624,Go;HTML/CSS;JavaScript;Python
+76625,HTML/CSS;JavaScript;PHP;TypeScript
+76626,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+76627,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76628,C#;JavaScript
+76629,Java
+76630,Bash/Shell/PowerShell;C++;Java
+76631,HTML/CSS;JavaScript;Ruby
+76632,HTML/CSS;JavaScript;PHP
+76633,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+76634,Java
+76635,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL
+76636,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+76637,Other(s):
+76638,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;VBA
+76639,JavaScript
+76640,C;HTML/CSS;Java;JavaScript;PHP;SQL
+76641,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+76642,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76643,C++;C#;HTML/CSS;JavaScript;R;SQL;TypeScript;WebAssembly
+76644,HTML/CSS;JavaScript;TypeScript
+76645,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+76646,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL
+76647,C;C++;C#;JavaScript;Python;Other(s):
+76648,Bash/Shell/PowerShell;C;Python;Other(s):
+76649,C++;C#
+76650,HTML/CSS;Java;JavaScript;Python;SQL;Swift;VBA
+76651,C;C++;Clojure;Java;Rust
+76652,C++;C#;Go;Python
+76653,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+76654,C#;HTML/CSS;JavaScript;SQL
+76655,C#;F#;Java
+76656,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+76657,C;C++;C#;HTML/CSS;Java;Python;Swift
+76658,C++;HTML/CSS;JavaScript;PHP;SQL
+76659,Bash/Shell/PowerShell;Java;SQL
+76660,C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+76661,Java;JavaScript;Python;SQL
+76662,SQL
+76663,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+76664,HTML/CSS;JavaScript;SQL;TypeScript
+76665,Assembly;HTML/CSS;Java;JavaScript;Python
+76666,C;C++;Python;Rust
+76667,HTML/CSS;JavaScript;Other(s):
+76668,C#;HTML/CSS;JavaScript;SQL;Other(s):
+76669,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+76670,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+76671,C;Python;Rust
+76672,C#;HTML/CSS;Java;JavaScript;SQL
+76673,HTML/CSS;PHP;SQL
+76674,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76675,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76676,Java
+76677,C#;HTML/CSS;JavaScript;TypeScript
+76678,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Kotlin;Python;SQL
+76679,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust;SQL
+76680,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+76681,HTML/CSS;JavaScript;PHP;TypeScript
+76682,Java
+76683,Go;Python;Other(s):
+76684,C;C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+76685,C#;Java;SQL
+76686,C++;C#;HTML/CSS;JavaScript
+76687,Objective-C;Swift;Other(s):
+76688,C#;HTML/CSS;JavaScript;Python;SQL
+76689,C#;JavaScript;SQL;TypeScript
+76690,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Python;SQL
+76691,Bash/Shell/PowerShell;Java;Kotlin;PHP;SQL
+76692,C#;HTML/CSS;JavaScript;SQL
+76693,C++;C#;HTML/CSS;JavaScript;Python;TypeScript;VBA;Other(s):
+76694,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;Other(s):
+76695,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL;TypeScript
+76696,Bash/Shell/PowerShell;Java
+76697,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76698,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+76699,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+76700,Java;Kotlin;Python;Swift
+76701,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+76702,Go;Java;Kotlin;Objective-C;SQL;Swift
+76704,C#;HTML/CSS;JavaScript;Ruby;SQL
+76705,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;R;SQL
+76706,HTML/CSS;JavaScript;PHP;Python
+76707,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+76708,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Kotlin;PHP;Python;Rust;SQL;TypeScript
+76709,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+76710,Python
+76711,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;Python
+76712,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+76713,C;HTML/CSS;Java;JavaScript;PHP
+76714,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Rust
+76715,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+76716,C#;Python
+76717,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;SQL
+76718,HTML/CSS;JavaScript;PHP;SQL
+76719,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Other(s):
+76720,Swift
+76721,Bash/Shell/PowerShell;C;C++;Java;Python
+76722,C#;HTML/CSS;JavaScript;TypeScript
+76723,C++;C#;HTML/CSS;Java;JavaScript;Python;Rust
+76724,C#;HTML/CSS;JavaScript;SQL
+76725,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76726,C++;C#;HTML/CSS;JavaScript;Python;R;SQL;Swift
+76727,Bash/Shell/PowerShell;Other(s):
+76728,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76729,Dart;HTML/CSS;JavaScript
+76730,C#;Java;SQL
+76731,Bash/Shell/PowerShell;C#;JavaScript;Python;Scala;SQL;TypeScript
+76732,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;TypeScript;VBA
+76733,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+76734,C++;C#;Python
+76735,C#;Go;HTML/CSS;Java;JavaScript;PHP;Scala
+76736,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+76737,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+76738,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+76739,Python
+76740,SQL;VBA
+76741,C++;C#;Python;SQL
+76742,HTML/CSS;JavaScript;Python;Swift
+76743,C#;HTML/CSS;Java;JavaScript;TypeScript;VBA;Other(s):
+76745,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript
+76746,HTML/CSS;JavaScript;PHP;Python;R;SQL
+76747,HTML/CSS;Python;SQL
+76748,C;C++;C#;Java;JavaScript;Kotlin;PHP;Python;Swift
+76749,Dart;Java;JavaScript;Kotlin;Python;Swift
+76750,C#;HTML/CSS;Java;JavaScript;R;SQL
+76751,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+76752,C#;HTML/CSS;JavaScript;Python;SQL
+76753,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Erlang;Go;Python
+76754,Python
+76755,C#;HTML/CSS;JavaScript;PHP
+76756,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+76757,Bash/Shell/PowerShell;Elixir;Go;JavaScript;PHP;Python
+76758,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+76759,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+76760,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76761,Bash/Shell/PowerShell;C#;Python;TypeScript
+76762,C;C++;C#;HTML/CSS;Java;JavaScript
+76763,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+76764,HTML/CSS;Java;JavaScript
+76765,C++;C#;Java;TypeScript
+76766,C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+76767,Bash/Shell/PowerShell;Go;Java;JavaScript;Ruby
+76768,HTML/CSS;JavaScript;PHP;TypeScript
+76769,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+76770,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift
+76771,Java;Python
+76772,HTML/CSS;Java;JavaScript
+76773,Go;Python;SQL
+76774,Java
+76776,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+76777,HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+76778,C;Python
+76779,C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76780,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+76781,HTML/CSS;JavaScript;PHP;SQL
+76782,C;C++;HTML/CSS;Java;Python;SQL;Swift
+76783,C#
+76784,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+76785,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+76786,Assembly;Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+76787,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+76788,C;C++;Objective-C;Swift
+76789,Java;SQL
+76790,HTML/CSS;JavaScript;Python;SQL;TypeScript
+76791,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+76792,Java
+76793,Assembly;Bash/Shell/PowerShell;C;C++;C#
+76794,Bash/Shell/PowerShell;C;C++;Java;Python;Ruby;Scala;SQL
+76795,HTML/CSS;JavaScript;TypeScript
+76796,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+76797,Java;JavaScript;Objective-C;Python;Ruby;Swift
+76798,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust
+76799,Elixir;Erlang;Java;Rust
+76800,HTML/CSS;JavaScript;Swift;TypeScript
+76801,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+76802,C#;JavaScript;SQL
+76803,C++;Java;JavaScript;Python;SQL;Other(s):
+76804,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76805,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76806,C#
+76807,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Other(s):
+76808,Bash/Shell/PowerShell;C#
+76809,JavaScript;Python
+76810,Java;Python;SQL
+76811,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+76812,Bash/Shell/PowerShell;C;C++;C#;Objective-C
+76813,Other(s):
+76814,C
+76815,Go
+76816,Bash/Shell/PowerShell;C++;HTML/CSS;Java;SQL
+76817,Clojure;HTML/CSS;JavaScript;Python
+76818,C#;HTML/CSS;JavaScript;SQL;VBA
+76819,Java
+76821,C#;SQL
+76823,C++;Clojure;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+76824,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Rust;SQL
+76825,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+76826,Java;Kotlin;Python
+76827,Swift
+76828,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+76829,Bash/Shell/PowerShell;C;C++;Go;JavaScript;PHP;Ruby;SQL
+76830,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+76831,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76832,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Ruby;Rust;TypeScript
+76833,Go;HTML/CSS;JavaScript;PHP;SQL
+76834,C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+76835,C;Java;Kotlin
+76836,JavaScript;PHP;SQL
+76837,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76838,Bash/Shell/PowerShell;Python;TypeScript
+76839,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76840,HTML/CSS;JavaScript
+76841,Bash/Shell/PowerShell;C++;Python;SQL
+76842,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+76843,HTML/CSS;JavaScript;PHP
+76844,HTML/CSS;JavaScript;PHP;SQL
+76845,HTML/CSS;JavaScript;Python;SQL
+76846,C++;HTML/CSS;JavaScript;Python;R;SQL
+76847,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76848,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+76849,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76850,Java;JavaScript;SQL
+76851,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+76852,HTML/CSS;JavaScript;Ruby;TypeScript
+76853,C++;Java;JavaScript;Python
+76854,HTML/CSS;JavaScript;Ruby;SQL
+76855,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+76856,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+76857,HTML/CSS;JavaScript;PHP;SQL
+76858,HTML/CSS;JavaScript;PHP;SQL
+76859,Elixir;Erlang;Java;JavaScript;Kotlin;Rust
+76860,Assembly;C;C++
+76861,HTML/CSS;JavaScript;Python
+76862,C;Python
+76863,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76864,SQL;VBA
+76865,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+76866,C#;HTML/CSS;Java;JavaScript
+76867,HTML/CSS;JavaScript;PHP;Python;SQL
+76868,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76869,C;C++;HTML/CSS;JavaScript;PHP
+76870,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76871,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+76872,SQL
+76873,HTML/CSS;JavaScript;PHP;SQL
+76874,Java;VBA;Other(s):
+76875,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+76876,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+76877,Python;Other(s):
+76878,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76879,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76880,HTML/CSS;JavaScript;PHP;Ruby;SQL
+76881,C++;C#;HTML/CSS;Java;JavaScript
+76882,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76883,C;C++;C#;HTML/CSS;Java;PHP;SQL
+76884,Bash/Shell/PowerShell;C;Java;Python;Ruby
+76885,HTML/CSS
+76886,Bash/Shell/PowerShell;Python;SQL
+76887,C;C++;HTML/CSS;Java;JavaScript;Python
+76888,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+76889,C;C++;Go;Java;JavaScript
+76890,Java;JavaScript
+76891,HTML/CSS;JavaScript;PHP;SQL
+76892,C++
+76893,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+76894,C;C++;C#;Python
+76895,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Rust;Swift;TypeScript
+76896,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;SQL;TypeScript
+76897,HTML/CSS;Java;JavaScript;Python;SQL
+76898,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+76899,Java;JavaScript;Kotlin;Objective-C;Swift
+76900,Assembly;Bash/Shell/PowerShell;C;Java;Kotlin;Swift
+76901,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+76902,HTML/CSS;JavaScript;PHP;Python;SQL
+76903,HTML/CSS;Python
+76904,C;C#
+76905,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+76906,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+76907,PHP;Python;SQL
+76908,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+76909,HTML/CSS;Python;SQL
+76910,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76911,C#;HTML/CSS;JavaScript;PHP;SQL
+76912,Elixir;Java
+76913,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;VBA;WebAssembly
+76914,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+76915,Objective-C;Swift
+76916,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+76917,C#;HTML/CSS;JavaScript;SQL
+76918,Bash/Shell/PowerShell;Java;Python;SQL
+76919,Python
+76920,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+76921,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin
+76922,Python
+76923,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+76924,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+76925,HTML/CSS;Java;JavaScript;Python
+76926,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+76927,C;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+76928,Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+76929,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript;VBA
+76930,Objective-C;Python;Swift
+76931,C#;Python
+76932,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+76933,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+76934,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+76935,HTML/CSS;Java;PHP;SQL
+76936,Bash/Shell/PowerShell;PHP;Python
+76937,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+76938,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+76939,C;SQL
+76940,HTML/CSS;Java;JavaScript;PHP;SQL
+76941,C#;HTML/CSS;Python;R;WebAssembly
+76942,Assembly;Bash/Shell/PowerShell;C;Python
+76943,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+76944,C;HTML/CSS;JavaScript;PHP;Python;TypeScript;VBA
+76945,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;SQL;TypeScript
+76946,Go;JavaScript;Python;Ruby;Rust
+76947,C#;HTML/CSS;JavaScript;SQL;TypeScript
+76948,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;R;Scala;SQL
+76949,C#;Java;JavaScript;Python;Scala
+76950,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Python;VBA
+76951,Bash/Shell/PowerShell;C;C++;Python
+76952,Bash/Shell/PowerShell;C;C++;Elixir;F#;Go;Python;R;Other(s):
+76953,C#;HTML/CSS;Java;JavaScript;SQL
+76954,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76955,Bash/Shell/PowerShell;C#;Dart;Java;JavaScript;PHP;TypeScript
+76956,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+76957,C#
+76958,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript
+76959,HTML/CSS;JavaScript
+76961,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+76962,Objective-C;Swift
+76963,C++;C#
+76964,HTML/CSS;JavaScript;PHP;Python;SQL
+76965,Java;Kotlin
+76966,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;Other(s):
+76967,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+76968,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+76969,Bash/Shell/PowerShell;Go;Java;Python;Ruby
+76970,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Rust;SQL
+76971,Bash/Shell/PowerShell;Elixir;JavaScript;Scala;SQL;TypeScript
+76972,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+76973,HTML/CSS;Java;SQL
+76974,C++;HTML/CSS;JavaScript;SQL
+76975,HTML/CSS;JavaScript;TypeScript
+76976,C;C++;Java;Python
+76977,Assembly;C#;HTML/CSS;Java
+76978,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL
+76979,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+76980,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+76981,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+76982,C#;JavaScript;SQL;Other(s):
+76983,HTML/CSS;JavaScript;Other(s):
+76984,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+76986,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+76987,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+76988,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+76989,C;HTML/CSS;PHP
+76992,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+76993,HTML/CSS;Java;JavaScript;SQL
+76994,HTML/CSS;JavaScript;PHP;SQL
+76995,HTML/CSS;JavaScript;SQL
+76996,JavaScript
+76997,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+76998,Java;JavaScript
+76999,C#;HTML/CSS;JavaScript;SQL;VBA
+77000,HTML/CSS;Java;JavaScript;SQL;Other(s):
+77001,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+77002,Python
+77003,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+77004,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+77005,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+77006,C;C++;Java
+77007,C#;PHP;Python;Ruby;SQL
+77008,C;C++;C#;JavaScript;Python
+77009,C#;HTML/CSS;JavaScript;TypeScript
+77010,HTML/CSS;JavaScript;PHP;SQL
+77011,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+77012,C++;C#;SQL;TypeScript
+77013,C;C++;HTML/CSS;Java;JavaScript
+77014,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77015,Bash/Shell/PowerShell;C;C++;Python
+77016,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77017,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+77018,HTML/CSS;Java;SQL;Swift
+77019,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+77020,C;Go;JavaScript;Other(s):
+77021,Bash/Shell/PowerShell;JavaScript
+77022,Java;Kotlin;Objective-C;Ruby;Swift
+77023,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+77024,HTML/CSS;JavaScript;PHP;SQL
+77025,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;SQL
+77026,C++;C#;HTML/CSS;JavaScript;Ruby;SQL
+77027,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+77028,HTML/CSS;Java;JavaScript;SQL
+77029,C#;HTML/CSS;JavaScript;R;SQL
+77030,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA;WebAssembly
+77031,Python;SQL
+77032,Java;Python;Ruby
+77033,C#;F#;SQL
+77034,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+77035,Java;JavaScript;Kotlin;Python
+77036,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+77037,C#;HTML/CSS;JavaScript;SQL
+77038,C#;HTML/CSS;JavaScript
+77039,HTML/CSS;JavaScript
+77040,C#;Java;Kotlin;Swift
+77041,Java
+77042,Assembly;Bash/Shell/PowerShell;C;C++;PHP;Python
+77043,Bash/Shell/PowerShell;Go;Python;SQL
+77044,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+77045,SQL
+77046,C++;Python;Ruby
+77047,JavaScript;TypeScript
+77048,HTML/CSS;Java;JavaScript;SQL
+77049,Java;JavaScript;Kotlin
+77050,Bash/Shell/PowerShell;C;C++;C#;Python
+77051,Bash/Shell/PowerShell;C++;JavaScript;Python;Other(s):
+77052,C;Swift
+77053,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+77054,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust
+77055,C#;HTML/CSS;JavaScript;SQL;VBA
+77056,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+77057,HTML/CSS;JavaScript;Kotlin;PHP;Ruby
+77058,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77059,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+77060,C#;HTML/CSS;JavaScript
+77061,HTML/CSS;JavaScript;PHP
+77062,Bash/Shell/PowerShell;Java;SQL
+77063,Bash/Shell/PowerShell;C++;Go;Python
+77064,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+77065,HTML/CSS;Ruby
+77066,Bash/Shell/PowerShell
+77067,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+77068,Go;HTML/CSS;JavaScript;PHP;TypeScript
+77069,Java;SQL
+77071,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+77072,Bash/Shell/PowerShell;C;C++
+77073,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Objective-C;Swift
+77074,Bash/Shell/PowerShell;C;C++;Python
+77075,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;SQL
+77076,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+77077,C#;HTML/CSS;SQL
+77078,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77079,HTML/CSS;Java;Kotlin;PHP
+77080,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+77081,Assembly;C++;C#;Java
+77082,HTML/CSS;JavaScript;PHP;SQL
+77083,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+77084,Bash/Shell/PowerShell;C#;HTML/CSS;Java;SQL
+77085,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Java;JavaScript;Python;R;Scala;SQL
+77086,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77087,HTML/CSS;JavaScript;Ruby
+77088,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+77089,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+77090,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+77091,HTML/CSS;Java;JavaScript;Other(s):
+77092,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Objective-C;Python;SQL;Swift
+77093,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+77094,Clojure;HTML/CSS;JavaScript;SQL
+77095,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL;Swift;Other(s):
+77096,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+77097,C;HTML/CSS;Java;JavaScript
+77098,C;C++;HTML/CSS;Java;SQL
+77099,C;C#;HTML/CSS;VBA
+77100,Java;Kotlin
+77101,HTML/CSS;JavaScript;PHP;SQL
+77102,Java
+77103,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+77105,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+77106,Java;Python;Scala;SQL
+77107,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77109,C++;C#
+77110,Bash/Shell/PowerShell;C#;Clojure;F#;HTML/CSS;Java;JavaScript;PHP;Rust;SQL;TypeScript;WebAssembly
+77111,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript;WebAssembly;Other(s):
+77112,C;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+77113,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;TypeScript
+77114,Java;JavaScript;Kotlin;Python
+77115,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R
+77116,Bash/Shell/PowerShell;Java;JavaScript;SQL
+77117,Java;Python;R
+77118,Java;JavaScript;Kotlin;SQL
+77119,C;C++;C#;HTML/CSS;JavaScript;SQL
+77120,HTML/CSS;JavaScript;PHP
+77121,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77122,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python
+77123,Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+77124,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Scala;SQL;Swift;WebAssembly
+77125,HTML/CSS;JavaScript;Python;SQL
+77126,C#;HTML/CSS;JavaScript;PHP;SQL
+77127,HTML/CSS;Java;JavaScript;PHP;SQL
+77128,JavaScript;PHP
+77129,Go;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+77130,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+77131,HTML/CSS;JavaScript;PHP;TypeScript
+77132,C++;Java;SQL
+77133,Bash/Shell/PowerShell;C++;Java;Python
+77134,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+77135,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+77136,C#;Java;Python
+77137,C;C++;Python
+77138,Assembly;Bash/Shell/PowerShell;C;C++;SQL
+77139,C#;Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+77140,PHP
+77141,HTML/CSS;Swift
+77142,C#;HTML/CSS;Java;JavaScript;TypeScript
+77143,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+77144,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+77145,Bash/Shell/PowerShell;C;SQL;Other(s):
+77146,Bash/Shell/PowerShell;Python;SQL
+77147,Other(s):
+77148,C++;C#;Dart;HTML/CSS;JavaScript
+77149,Assembly;C;C++;Java;JavaScript;Kotlin;PHP;Python
+77150,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77151,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL
+77152,Bash/Shell/PowerShell;C++;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77153,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+77154,C#;Java;Kotlin
+77155,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+77156,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+77157,C#;SQL
+77158,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+77159,Java;SQL
+77160,C;C#;HTML/CSS;Java;SQL;Other(s):
+77161,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+77162,C++;Java;JavaScript;Kotlin;Python;SQL
+77163,Python;R;SQL
+77164,C++;HTML/CSS;JavaScript;Python
+77165,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;Python;Scala;TypeScript
+77166,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript;WebAssembly
+77167,HTML/CSS;JavaScript;PHP;SQL
+77168,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+77169,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Objective-C
+77170,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+77171,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+77172,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+77173,C#;F#;HTML/CSS;SQL
+77174,Bash/Shell/PowerShell;Java;JavaScript;SQL
+77175,HTML/CSS;JavaScript
+77176,C++;HTML/CSS;Java;PHP
+77177,Java;SQL
+77178,Bash/Shell/PowerShell;HTML/CSS;PHP
+77179,HTML/CSS;JavaScript;PHP;Python;SQL
+77180,HTML/CSS;JavaScript;PHP;SQL
+77181,HTML/CSS;JavaScript
+77182,HTML/CSS;JavaScript;Python;SQL;TypeScript
+77183,HTML/CSS;Java;JavaScript;Python
+77184,Java;Kotlin
+77185,C#;HTML/CSS;JavaScript;SQL;Other(s):
+77186,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;TypeScript
+77187,Assembly;Go;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;WebAssembly;Other(s):
+77188,Java;Python
+77189,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+77190,C;Java;JavaScript;Python;SQL
+77191,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Python;SQL;Swift
+77192,Bash/Shell/PowerShell;Python
+77193,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+77194,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77195,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+77196,Bash/Shell/PowerShell;Python
+77197,C;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+77198,HTML/CSS;JavaScript;PHP
+77199,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+77200,HTML/CSS;JavaScript;PHP;Python;SQL
+77201,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+77202,HTML/CSS;JavaScript;PHP
+77203,Java;Kotlin;Python
+77204,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+77205,HTML/CSS;JavaScript;Other(s):
+77206,JavaScript;Python;Swift;TypeScript
+77207,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Swift
+77208,C#;HTML/CSS;JavaScript;SQL
+77209,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+77210,C;Java;Other(s):
+77211,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;SQL;VBA
+77212,Java
+77213,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R
+77214,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+77215,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77216,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+77217,C#;SQL;VBA
+77218,HTML/CSS;Java;JavaScript;PHP
+77219,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript
+77220,Bash/Shell/PowerShell;HTML/CSS;Python
+77221,HTML/CSS;Java;JavaScript
+77222,C#;HTML/CSS;Java;JavaScript;Python;SQL
+77223,C#;HTML/CSS;JavaScript;SQL
+77224,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+77225,Python
+77226,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+77227,C#;HTML/CSS;PHP;SQL;Swift
+77228,HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+77229,C++;Java;Kotlin;Python
+77230,C#;JavaScript
+77231,HTML/CSS;JavaScript;SQL;TypeScript
+77232,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77233,HTML/CSS;JavaScript;SQL
+77234,Bash/Shell/PowerShell;Java
+77235,C#;HTML/CSS;JavaScript;SQL
+77236,JavaScript;Python
+77237,HTML/CSS;Java;JavaScript
+77238,HTML/CSS;JavaScript
+77239,Java;Python;R;Scala;SQL
+77240,C#;SQL;VBA;Other(s):
+77241,Bash/Shell/PowerShell;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+77242,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77243,C++;HTML/CSS;Python
+77244,Bash/Shell/PowerShell;Go;Python;Rust;WebAssembly
+77245,C#;HTML/CSS;JavaScript;SQL
+77246,HTML/CSS;Java;JavaScript;SQL
+77247,C++;C#;HTML/CSS;Java;JavaScript;SQL
+77248,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77249,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77250,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP
+77251,Java;SQL;TypeScript;VBA
+77252,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Swift
+77253,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+77254,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;R;Scala;SQL
+77255,C#;HTML/CSS;JavaScript;SQL
+77256,C;C#;Elixir;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+77257,C;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+77258,C#;HTML/CSS;SQL
+77259,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77260,HTML/CSS;JavaScript;PHP
+77261,HTML/CSS;Java;JavaScript;SQL
+77262,HTML/CSS;JavaScript;PHP;SQL
+77263,Bash/Shell/PowerShell;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+77264,HTML/CSS;JavaScript;PHP
+77265,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Rust
+77266,Bash/Shell/PowerShell;C#;Go;JavaScript;PHP;Python;Rust;TypeScript
+77267,Java;SQL
+77268,C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Swift
+77269,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+77270,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+77271,HTML/CSS;Java;JavaScript;Python;Rust;SQL
+77272,JavaScript
+77273,C++;HTML/CSS;JavaScript;PHP;Python;Ruby
+77274,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+77275,C#;HTML/CSS;JavaScript;SQL
+77276,Java;Kotlin
+77278,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+77279,Assembly;Bash/Shell/PowerShell;Clojure;Java;JavaScript;Kotlin
+77280,C#;HTML/CSS;SQL
+77281,Bash/Shell/PowerShell;C++;C#;Go
+77282,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL
+77283,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+77284,JavaScript;Python
+77285,C#;JavaScript;Python
+77286,C++;Java;SQL
+77287,HTML/CSS;Java;JavaScript;PHP;SQL
+77288,C#
+77289,Bash/Shell/PowerShell;C;C++;Go;Python
+77290,C;C++;Other(s):
+77291,Elixir;Erlang;HTML/CSS;JavaScript;SQL
+77292,HTML/CSS;JavaScript;PHP
+77293,Java;Python;TypeScript
+77294,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77295,Java;Kotlin;SQL;Swift
+77296,R;Other(s):
+77298,Bash/Shell/PowerShell;Swift
+77299,Go;JavaScript;Swift
+77300,JavaScript;TypeScript
+77301,HTML/CSS;JavaScript
+77302,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+77303,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77304,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;R;Scala;TypeScript
+77305,R
+77306,C;C++;C#;HTML/CSS;SQL
+77307,HTML/CSS;Python
+77308,PHP;SQL
+77309,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77310,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+77311,C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript;VBA
+77312,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+77313,Bash/Shell/PowerShell;C#;Python;SQL
+77314,HTML/CSS;JavaScript;Ruby
+77315,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+77316,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+77317,C#;Java;Objective-C;Ruby
+77318,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+77319,Java;Kotlin
+77320,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+77321,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;SQL;TypeScript
+77322,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+77323,Java
+77324,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+77325,HTML/CSS;JavaScript;PHP
+77326,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77327,Dart;Go;HTML/CSS;JavaScript;TypeScript
+77328,HTML/CSS;JavaScript;Ruby
+77329,Bash/Shell/PowerShell;JavaScript;Kotlin;Objective-C;Ruby;Swift
+77330,C++;Java;Objective-C;Python;Swift
+77331,C#;JavaScript;SQL
+77332,Java;JavaScript;Python;Ruby;SQL
+77333,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+77334,C#;HTML/CSS;JavaScript;SQL;VBA
+77335,HTML/CSS;JavaScript;PHP;Python;SQL
+77336,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77337,C#;HTML/CSS;JavaScript
+77338,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77340,Java
+77341,HTML/CSS;Java;JavaScript;PHP;Python
+77342,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+77343,C++;C#;R;SQL
+77344,Bash/Shell/PowerShell;C++;Java;Python;Other(s):
+77345,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+77346,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+77347,Python
+77348,HTML/CSS;Java;JavaScript;PHP;SQL
+77349,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+77350,C++;C#;SQL
+77351,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+77352,JavaScript;PHP
+77353,Assembly;C;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Other(s):
+77354,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+77355,C#;HTML/CSS;JavaScript;Python;SQL
+77356,C#;HTML/CSS;JavaScript;SQL
+77357,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+77358,Bash/Shell/PowerShell;C++;JavaScript;Python;Ruby;Rust;SQL;TypeScript
+77359,C#;HTML/CSS;JavaScript;PHP
+77360,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+77361,HTML/CSS;JavaScript;PHP;SQL
+77362,C#;SQL;VBA
+77363,HTML/CSS;JavaScript
+77364,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+77365,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+77366,C++;C#;JavaScript;TypeScript
+77367,Java;JavaScript;Other(s):
+77368,Kotlin;Swift
+77369,Bash/Shell/PowerShell;Java;JavaScript;Scala
+77370,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python;VBA
+77371,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+77372,C#;HTML/CSS;JavaScript
+77373,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+77374,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+77375,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+77376,HTML/CSS;JavaScript
+77377,Bash/Shell/PowerShell;Elixir;JavaScript;Python;R;SQL;TypeScript
+77378,HTML/CSS;JavaScript;TypeScript
+77379,HTML/CSS;JavaScript;PHP
+77380,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+77381,HTML/CSS;JavaScript;Ruby
+77382,HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+77383,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+77384,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+77385,C
+77386,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+77387,Java;JavaScript;Python;SQL
+77388,Assembly;Bash/Shell/PowerShell;C++;Go;Scala;WebAssembly
+77389,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+77390,Python
+77391,Java;SQL
+77392,C;JavaScript;Objective-C;Swift
+77393,HTML/CSS;Java;JavaScript;SQL
+77394,Java;JavaScript;Python
+77395,Bash/Shell/PowerShell;C++;C#;Java;Objective-C;Python;SQL
+77396,C#;Python;SQL
+77397,Java
+77398,Java;JavaScript;Python
+77399,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+77400,Python
+77401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+77402,Bash/Shell/PowerShell;Python;SQL
+77403,HTML/CSS;JavaScript;PHP;SQL
+77404,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+77405,VBA
+77406,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+77407,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+77408,Java;Python
+77409,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+77410,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+77411,C++;C#;Python;SQL
+77412,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+77413,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Objective-C;Python;Scala;Other(s):
+77414,Bash/Shell/PowerShell;Java;JavaScript
+77415,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+77416,Java;Python;Scala;Other(s):
+77417,HTML/CSS;JavaScript;Python;SQL;TypeScript
+77418,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+77419,HTML/CSS;Java;JavaScript;TypeScript
+77420,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+77421,Bash/Shell/PowerShell;C;JavaScript;Python;Scala;TypeScript
+77422,Java;SQL
+77423,C++;Java
+77424,HTML/CSS;Java;JavaScript;PHP;TypeScript
+77425,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77426,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+77427,C++;HTML/CSS;Java;Python;SQL
+77428,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77429,Java
+77430,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+77431,Bash/Shell/PowerShell;C;HTML/CSS;PHP;Ruby;SQL
+77432,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL
+77433,C#;HTML/CSS;Java;JavaScript
+77434,C;C++;HTML/CSS;Java;PHP;Python
+77435,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;Kotlin;Python
+77436,HTML/CSS;Java;JavaScript;Python;SQL
+77437,Java;JavaScript;Kotlin;Python;Scala;SQL
+77438,R
+77439,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77440,Bash/Shell/PowerShell;Dart;JavaScript
+77441,C#;HTML/CSS;Java;JavaScript
+77442,Bash/Shell/PowerShell;C++;Python
+77443,Go;HTML/CSS;JavaScript;Python;Ruby
+77444,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+77445,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+77447,HTML/CSS;Java;JavaScript;SQL
+77448,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77449,Go;Python
+77450,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+77451,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;JavaScript
+77452,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+77453,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;WebAssembly
+77454,C#;HTML/CSS;Java;JavaScript;PHP;Python
+77455,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77456,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python;SQL
+77457,C++;HTML/CSS;Java;JavaScript;PHP;TypeScript
+77458,Java;Ruby
+77459,C;C#;Go;Java;Kotlin
+77460,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;VBA
+77461,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript;VBA
+77462,C#;JavaScript;Objective-C;Swift
+77463,Go;JavaScript;PHP;Python;Rust;Scala;SQL
+77464,C;C++;C#;HTML/CSS;JavaScript;Python
+77465,Go;Python
+77466,Java;PHP;SQL
+77467,HTML/CSS;Java;JavaScript;TypeScript
+77468,Assembly;Bash/Shell/PowerShell;C;C#;Java;Python;Scala
+77469,Bash/Shell/PowerShell;Other(s):
+77470,C;C++;Python;Rust
+77471,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+77472,HTML/CSS;Java;SQL
+77473,HTML/CSS;Java;JavaScript;PHP;SQL
+77474,C++;Java
+77475,C;C#;HTML/CSS;JavaScript;SQL
+77477,C#;SQL;TypeScript
+77478,C;C++;Elixir;Go;Java;JavaScript;Rust;Scala;TypeScript
+77479,HTML/CSS;JavaScript;Python
+77480,C#;HTML/CSS
+77481,C;C++;Java;Objective-C;Swift
+77482,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+77483,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+77484,C#;F#;JavaScript
+77485,Bash/Shell/PowerShell;C;C++;Java;Other(s):
+77486,C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Other(s):
+77487,Java;Python
+77488,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;Rust;SQL;Swift;TypeScript
+77489,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77490,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+77491,Java;JavaScript;Python;SQL
+77492,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+77493,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77494,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+77495,C;Python;R
+77496,C;C++;C#;SQL
+77497,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+77498,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+77499,HTML/CSS;JavaScript;TypeScript
+77500,HTML/CSS;JavaScript;Python
+77501,C++;C#;JavaScript
+77502,Bash/Shell/PowerShell;C;C++;Erlang;Python
+77503,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+77504,HTML/CSS;JavaScript;TypeScript
+77505,HTML/CSS;Java;JavaScript;PHP;SQL
+77506,Bash/Shell/PowerShell;Clojure;Go;Python
+77507,HTML/CSS;Java;JavaScript;SQL
+77508,HTML/CSS;Java;JavaScript;SQL;Other(s):
+77509,Java;Kotlin;Python
+77510,Java;JavaScript;PHP;SQL
+77511,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL
+77512,Bash/Shell/PowerShell;C++;Python;TypeScript
+77513,C#;JavaScript;Python;SQL;TypeScript
+77514,HTML/CSS;Java;JavaScript;SQL;Other(s):
+77515,C;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+77516,Assembly;C#;HTML/CSS;SQL;TypeScript
+77517,C#;Python;SQL
+77518,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Swift
+77519,Bash/Shell/PowerShell;C++;C#;Java;Python;Scala;SQL
+77520,C#;HTML/CSS;JavaScript;SQL;Other(s):
+77521,C#
+77522,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+77523,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77524,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;Scala
+77525,HTML/CSS;JavaScript;SQL;Other(s):
+77526,Java
+77527,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;Swift
+77528,HTML/CSS;Kotlin;Python
+77529,C#;JavaScript
+77530,C++;C#;Python
+77531,C#;HTML/CSS;SQL
+77532,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77533,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;VBA
+77534,C;C++;Java;Objective-C;Rust;Swift
+77535,HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+77536,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+77537,Java
+77538,HTML/CSS;JavaScript;PHP;SQL
+77539,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+77540,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+77541,Clojure;Other(s):
+77542,Assembly;HTML/CSS;JavaScript;PHP
+77543,C++;C#;Python
+77544,HTML/CSS;R;SQL
+77545,Python
+77546,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;Python;R;SQL;Other(s):
+77547,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77548,C++;HTML/CSS;JavaScript;Python;TypeScript;VBA
+77549,C;Dart;Java;R;Ruby;Scala
+77550,C++;HTML/CSS;Python;Other(s):
+77551,Dart;Go;HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;Swift
+77552,C#;JavaScript;TypeScript
+77553,C;HTML/CSS;PHP;VBA
+77554,Python;SQL;TypeScript
+77555,C;JavaScript;PHP
+77556,Python;R
+77557,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+77558,HTML/CSS;JavaScript;Python
+77559,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+77560,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77561,HTML/CSS;JavaScript;PHP
+77562,Java;JavaScript
+77563,C++;C#;Java;PHP;Python;SQL
+77564,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Kotlin;Ruby;SQL;TypeScript
+77565,Java
+77566,JavaScript;Kotlin;PHP;R
+77567,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;VBA
+77568,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+77569,Bash/Shell/PowerShell;Dart;Java;Kotlin;Python;SQL
+77570,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+77571,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL
+77572,HTML/CSS;Java;JavaScript;SQL;TypeScript
+77573,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+77574,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+77575,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+77576,Java;Python
+77577,Go;HTML/CSS;Java;JavaScript;Python
+77578,HTML/CSS;Java;JavaScript;SQL
+77579,R
+77580,C;C++;HTML/CSS;Java;JavaScript
+77581,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+77582,Bash/Shell/PowerShell;C++;Dart;Java;Kotlin;Objective-C;Python;SQL;Swift
+77583,HTML/CSS;JavaScript
+77584,HTML/CSS;JavaScript;PHP
+77585,Bash/Shell/PowerShell;C#;JavaScript;Python
+77586,HTML/CSS;Java;JavaScript;SQL
+77587,HTML/CSS;JavaScript;PHP
+77588,HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+77589,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+77590,Bash/Shell/PowerShell;C;C++;Python
+77591,C;C++;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript;Other(s):
+77592,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+77593,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+77594,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+77595,Java;JavaScript;PHP;TypeScript
+77596,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL
+77597,Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77598,HTML/CSS;JavaScript
+77599,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77600,C;HTML/CSS;JavaScript;SQL;TypeScript
+77601,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+77602,C#;JavaScript;Python;SQL;Other(s):
+77603,Bash/Shell/PowerShell;Java
+77604,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;VBA
+77605,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+77606,C#;HTML/CSS;JavaScript;SQL
+77607,C++;Python;Other(s):
+77608,C;C++;C#;SQL
+77609,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+77610,Assembly;Bash/Shell/PowerShell;C;C++;Java;Other(s):
+77611,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL;TypeScript
+77612,C#;HTML/CSS;JavaScript;TypeScript
+77613,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77614,C#;HTML/CSS;JavaScript;Python;SQL
+77615,Assembly;Bash/Shell/PowerShell;C;C++;Python
+77616,Bash/Shell/PowerShell;HTML/CSS;PHP;Ruby;SQL
+77617,Go;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+77619,Java;JavaScript;Python;SQL
+77620,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77621,Java;Kotlin
+77622,C++;Python;Rust;Other(s):
+77623,Dart;Java;JavaScript;PHP;SQL
+77624,C#;HTML/CSS;JavaScript;SQL
+77625,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77626,Assembly;Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;TypeScript;VBA
+77627,C#;JavaScript
+77628,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+77629,C;HTML/CSS;JavaScript;Python;SQL
+77630,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+77631,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+77632,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+77633,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+77634,Bash/Shell/PowerShell;C++;C#;HTML/CSS;SQL
+77635,C#;HTML/CSS;JavaScript;PHP;SQL
+77636,Bash/Shell/PowerShell;Python;Other(s):
+77637,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+77638,C++;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+77639,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+77640,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77641,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77642,HTML/CSS;JavaScript
+77643,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL
+77644,C#;HTML/CSS;SQL
+77645,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+77646,HTML/CSS;Java;JavaScript;PHP;Scala
+77647,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+77648,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+77649,Bash/Shell/PowerShell;C;Java;Python
+77650,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+77651,HTML/CSS;Java;JavaScript;SQL
+77652,Assembly;C;HTML/CSS;Java;JavaScript;Python
+77653,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;Swift
+77654,Go;HTML/CSS;JavaScript;SQL;TypeScript
+77655,C#;SQL
+77656,JavaScript;Python
+77657,C;Dart;Go;HTML/CSS;JavaScript;Python;TypeScript
+77658,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77659,Bash/Shell/PowerShell;Java
+77660,Python;R;SQL
+77661,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+77662,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+77663,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+77664,C++;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+77665,HTML/CSS;JavaScript;TypeScript
+77666,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+77667,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Swift
+77668,R
+77669,Bash/Shell/PowerShell;HTML/CSS;Python
+77670,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77671,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77672,Bash/Shell/PowerShell;C#;Java;SQL
+77673,C;C++;Objective-C;Python;Swift
+77674,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+77675,Assembly;C;C++;Python
+77676,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+77677,Python;R;Scala
+77678,HTML/CSS;JavaScript;Python
+77679,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+77680,HTML/CSS;Java;JavaScript;PHP;SQL
+77681,C#;Dart;HTML/CSS;JavaScript;Python;SQL;TypeScript
+77682,Java;JavaScript;Kotlin
+77683,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+77684,Java;Kotlin
+77685,C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77686,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL
+77687,Java
+77688,Bash/Shell/PowerShell;C#;Clojure;Java;JavaScript;Python;TypeScript
+77689,Bash/Shell/PowerShell;C;C++;HTML/CSS;Other(s):
+77690,HTML/CSS;Java;JavaScript;SQL
+77691,Java
+77692,C#;HTML/CSS;JavaScript;Python;TypeScript
+77693,C#;F#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+77694,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+77695,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77696,C#;HTML/CSS;JavaScript;SQL;VBA
+77697,C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;R;Swift
+77698,C#;HTML/CSS;Java;JavaScript
+77699,C#;JavaScript;SQL;Other(s):
+77700,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+77701,HTML/CSS;Java;JavaScript;TypeScript
+77702,C;C++;Python;Ruby
+77703,C#
+77704,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python
+77705,Java;JavaScript;SQL
+77706,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+77707,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;TypeScript
+77708,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+77709,HTML/CSS;JavaScript
+77710,HTML/CSS;JavaScript;PHP
+77711,R;SQL
+77712,Bash/Shell/PowerShell;C;C#;Other(s):
+77713,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+77714,Other(s):
+77715,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+77716,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala;SQL
+77717,Bash/Shell/PowerShell;Python
+77718,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust
+77719,F#;Other(s):
+77720,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77721,HTML/CSS;Java;PHP
+77722,C#
+77723,HTML/CSS;JavaScript;PHP;SQL
+77724,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+77725,Bash/Shell/PowerShell;C;C++;Python;Ruby;SQL
+77726,Bash/Shell/PowerShell;C++;C#;JavaScript;Python;SQL
+77727,HTML/CSS;JavaScript;PHP;SQL
+77728,HTML/CSS;Java;JavaScript
+77729,Java;JavaScript;PHP
+77730,Assembly;Bash/Shell/PowerShell;C;C++;Clojure
+77731,C;C++;HTML/CSS;Java;JavaScript;Ruby
+77732,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+77733,C#;JavaScript;SQL
+77734,C++;C#;Python
+77735,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+77736,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+77737,C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+77738,C++;Java;JavaScript;Kotlin;Python;SQL
+77739,C#;HTML/CSS;JavaScript;SQL
+77740,HTML/CSS;Java;JavaScript
+77741,Assembly;Bash/Shell/PowerShell;C;C++;Python
+77742,Bash/Shell/PowerShell;JavaScript;TypeScript
+77743,JavaScript
+77744,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;TypeScript
+77745,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77746,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Swift;VBA
+77747,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77748,HTML/CSS;Java;JavaScript;SQL
+77749,Bash/Shell/PowerShell;C#;Java;SQL;Other(s):
+77750,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77751,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+77752,C++;C#;Java;PHP;SQL
+77753,HTML/CSS;JavaScript
+77754,C;C++;HTML/CSS;JavaScript;Python
+77755,Bash/Shell/PowerShell;C;C++
+77756,C++;Python
+77757,C#;HTML/CSS;JavaScript
+77758,C++;C#;Java;JavaScript;SQL;TypeScript;VBA
+77759,C#;HTML/CSS;JavaScript;SQL
+77760,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77761,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+77762,Java;JavaScript;Kotlin;SQL
+77763,HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+77764,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+77765,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77766,Java;JavaScript;Python;SQL
+77767,Bash/Shell/PowerShell;Ruby;SQL
+77768,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77769,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+77770,JavaScript
+77771,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R
+77772,C#;Go;SQL
+77773,HTML/CSS;JavaScript
+77774,Kotlin;Python;Scala
+77775,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+77776,Elixir;HTML/CSS;JavaScript;Python;SQL
+77777,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+77778,Elixir
+77779,Assembly;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;SQL;Other(s):
+77780,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;SQL;VBA
+77781,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Swift
+77782,C#;Dart;HTML/CSS;Java;JavaScript;Python
+77783,C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+77784,Java;Kotlin;Swift
+77785,C#;HTML/CSS;Java;JavaScript;Python
+77786,C#;HTML/CSS;JavaScript
+77787,C;C++;HTML/CSS;Java;JavaScript;SQL
+77788,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+77789,C
+77790,Assembly;Bash/Shell/PowerShell;C;C++;SQL
+77791,HTML/CSS;JavaScript;PHP;SQL
+77792,HTML/CSS;Java;JavaScript;Kotlin
+77793,C;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL
+77794,HTML/CSS;Java;JavaScript;Ruby;Scala
+77795,C#;JavaScript;Python
+77796,Assembly;Other(s):
+77797,JavaScript;Ruby;TypeScript
+77799,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python
+77800,C;C++;Go;Python
+77801,C++;Go;Python
+77802,HTML/CSS;JavaScript;Kotlin;Objective-C;Swift
+77803,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+77804,C#;HTML/CSS;JavaScript;SQL
+77805,Python;WebAssembly
+77806,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+77807,HTML/CSS;JavaScript;PHP;Ruby
+77808,C#;F#;HTML/CSS;Python
+77809,C;C#;JavaScript;PHP;Python;R;SQL
+77810,JavaScript;Other(s):
+77811,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;JavaScript;Python;SQL;Other(s):
+77812,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;Other(s):
+77813,Objective-C;Python;Swift
+77814,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Ruby;Scala
+77815,HTML/CSS;Java;JavaScript;Python
+77816,Elixir;Ruby
+77817,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+77818,Go;HTML/CSS;Java;JavaScript;PHP
+77819,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+77820,HTML/CSS;JavaScript;Ruby;SQL
+77821,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77822,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+77823,HTML/CSS;Java;JavaScript;PHP;Rust;TypeScript
+77824,HTML/CSS;JavaScript;Python
+77825,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+77826,C;C++;C#;Python;Rust;Other(s):
+77827,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+77828,Python
+77829,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77830,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+77831,C;C++;HTML/CSS;Python
+77832,C#;HTML/CSS;JavaScript;SQL
+77833,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+77834,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Go;HTML/CSS;JavaScript;Objective-C;Python;R;Ruby;SQL;TypeScript
+77835,Java
+77836,JavaScript;PHP
+77837,Elixir;HTML/CSS;PHP;Ruby;TypeScript
+77838,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+77839,Go;HTML/CSS;JavaScript;PHP;SQL
+77840,JavaScript;PHP
+77841,Rust
+77842,Assembly;Bash/Shell/PowerShell;C;C#;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+77843,Bash/Shell/PowerShell;C++
+77844,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+77845,HTML/CSS;Java;JavaScript;SQL
+77846,C#;HTML/CSS;JavaScript;SQL
+77847,Elixir;HTML/CSS;Python;R;SQL;Other(s):
+77848,Java;JavaScript;Python;SQL
+77849,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;Swift
+77850,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+77851,C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+77852,Bash/Shell/PowerShell;C;HTML/CSS
+77853,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+77854,HTML/CSS;JavaScript;Swift
+77855,C#;Python;SQL
+77856,HTML/CSS;Java;JavaScript;SQL
+77857,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+77858,Assembly;C++;Java;Python
+77859,C#;Clojure;Go;HTML/CSS;JavaScript;Scala
+77860,C#;JavaScript;SQL;VBA
+77861,Java;SQL
+77862,C++;Go;Java
+77864,Bash/Shell/PowerShell
+77865,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+77866,C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+77867,Java;JavaScript;SQL
+77868,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+77869,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript;Other(s):
+77870,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript;VBA
+77871,HTML/CSS;Java;JavaScript;SQL;TypeScript
+77872,HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+77873,C++;JavaScript;Python;Other(s):
+77874,C++;Java;Kotlin;Scala
+77875,C#;HTML/CSS;JavaScript;SQL
+77876,C#;JavaScript;Ruby;SQL;TypeScript
+77877,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+77878,Bash/Shell/PowerShell;Python;SQL
+77879,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+77880,JavaScript;Ruby;TypeScript
+77881,Bash/Shell/PowerShell;C++;Swift
+77882,HTML/CSS;JavaScript;PHP;Other(s):
+77883,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+77884,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+77885,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+77886,HTML/CSS;JavaScript;PHP;Python
+77887,C++;HTML/CSS;JavaScript;Python;SQL
+77888,C++;HTML/CSS;Java;JavaScript;Python
+77889,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+77891,Assembly;Bash/Shell/PowerShell;C;C++;C#;Other(s):
+77892,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+77893,HTML/CSS;Java;PHP
+77894,HTML/CSS;Java;JavaScript;TypeScript
+77895,C#;HTML/CSS;JavaScript;SQL
+77896,HTML/CSS;JavaScript;SQL
+77897,Objective-C;Swift
+77898,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;Other(s):
+77899,Bash/Shell/PowerShell;C;Java;Objective-C;PHP;Python;SQL;Swift
+77900,HTML/CSS;JavaScript;PHP;SQL
+77901,Java;Python;R
+77902,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;JavaScript;Python;Swift;TypeScript;WebAssembly
+77903,Assembly;C;C++;HTML/CSS
+77904,C;C++;HTML/CSS;Java;PHP;Python;SQL
+77905,Python
+77906,Bash/Shell/PowerShell;C;C++;Java;Python;SQL;Other(s):
+77907,C#;HTML/CSS;JavaScript;SQL
+77908,HTML/CSS;JavaScript;PHP;Python;SQL
+77909,HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+77910,C++;Python
+77911,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+77912,HTML/CSS;Java;JavaScript;Python
+77913,HTML/CSS;JavaScript
+77914,Bash/Shell/PowerShell;Go;Python;SQL
+77915,Java;Python;SQL
+77916,Dart;Go;Java;JavaScript;R;Scala
+77917,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Other(s):
+77918,Java;JavaScript;Python
+77919,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+77921,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+77922,HTML/CSS;JavaScript
+77923,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+77925,HTML/CSS;Java
+77927,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+77928,HTML/CSS;JavaScript;PHP;SQL
+77929,Bash/Shell/PowerShell;SQL
+77930,HTML/CSS;JavaScript;SQL;Other(s):
+77931,Assembly;C;C++;C#;PHP;SQL
+77932,C#;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+77933,JavaScript;PHP;Python;SQL
+77934,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+77935,C++;SQL;Other(s):
+77936,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+77937,C#;HTML/CSS;JavaScript;SQL
+77938,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+77939,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;Python;R;SQL
+77940,C#;HTML/CSS;JavaScript;SQL;VBA
+77941,HTML/CSS;JavaScript;Python;SQL
+77942,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+77943,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+77944,C++;HTML/CSS;Python;SQL
+77945,Java;JavaScript;Other(s):
+77946,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+77947,Go;JavaScript;Rust;TypeScript;WebAssembly
+77948,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R
+77949,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+77950,C#;HTML/CSS;Java;JavaScript
+77951,Swift
+77952,Java
+77953,HTML/CSS;Java;JavaScript
+77954,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+77955,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+77956,Java;Kotlin
+77957,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+77958,HTML/CSS;Java;JavaScript;Python;SQL
+77959,Assembly;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+77960,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+77961,Assembly;Go;HTML/CSS;JavaScript;PHP;SQL
+77962,Rust;WebAssembly;Other(s):
+77963,C;Python
+77964,Assembly;Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+77965,Java;Kotlin;Other(s):
+77966,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+77967,Elixir;HTML/CSS;JavaScript;Ruby
+77969,C++;Go;HTML/CSS;Java;JavaScript;Python
+77970,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+77971,Python
+77972,HTML/CSS;JavaScript;PHP;SQL
+77973,Bash/Shell/PowerShell
+77974,HTML/CSS;JavaScript;SQL;TypeScript
+77975,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA;Other(s):
+77976,Bash/Shell/PowerShell;Go;Python
+77977,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL;Swift
+77978,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+77979,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+77981,HTML/CSS;Java;JavaScript;PHP;SQL
+77983,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+77984,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+77985,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+77986,Java;Python
+77987,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+77988,C;C++;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+77990,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+77991,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+77992,C#;HTML/CSS;JavaScript;SQL;TypeScript
+77993,Bash/Shell/PowerShell;C++;Python
+77994,C#;HTML/CSS;JavaScript;SQL
+77995,Bash/Shell/PowerShell;Java;Python
+77996,HTML/CSS;Java;JavaScript;SQL;TypeScript
+77997,C;C++;HTML/CSS;JavaScript;Python;SQL
+77998,Java;Kotlin
+77999,C#;HTML/CSS;JavaScript;Python;SQL
+78000,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Rust
+78001,C;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript;Other(s):
+78002,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+78003,Bash/Shell/PowerShell;SQL
+78005,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+78006,C++;Erlang;Go;JavaScript;Python;Swift
+78007,C;C++;HTML/CSS;PHP;Python
+78008,JavaScript;PHP
+78009,PHP
+78010,C#;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+78011,Bash/Shell/PowerShell;Java;JavaScript;Rust;Scala
+78012,Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78013,Elixir;Go;Java;JavaScript;Scala
+78014,C#;Dart;HTML/CSS;JavaScript;Python;TypeScript
+78015,C#;HTML/CSS;JavaScript;TypeScript
+78016,Assembly;C;HTML/CSS;Java;JavaScript;SQL;TypeScript;WebAssembly
+78017,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+78018,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+78019,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+78020,C++
+78021,HTML/CSS;JavaScript;TypeScript
+78022,HTML/CSS;JavaScript;PHP;SQL;WebAssembly;Other(s):
+78023,Bash/Shell/PowerShell;HTML/CSS;Kotlin;Objective-C;Swift
+78024,HTML/CSS;JavaScript;PHP;Python
+78025,Bash/Shell/PowerShell;C;Python
+78026,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+78027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+78028,Go;Python
+78029,JavaScript;SQL;Other(s):
+78030,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78031,C#;Other(s):
+78032,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;TypeScript
+78033,C++;C#;Python;SQL
+78034,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;PHP;Python;Ruby;SQL;TypeScript;VBA;Other(s):
+78035,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78036,Objective-C;SQL;Swift
+78037,C#;HTML/CSS;JavaScript;Swift
+78038,HTML/CSS;Python;Other(s):
+78039,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+78040,Python;SQL
+78041,C;Java;JavaScript
+78042,C;C++;SQL
+78043,Java
+78044,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78045,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+78046,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+78047,Python;SQL
+78048,C#;HTML/CSS;Java;JavaScript;PHP;Swift;TypeScript
+78049,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;R;TypeScript
+78050,Bash/Shell/PowerShell;Java;Scala
+78051,C;HTML/CSS
+78052,HTML/CSS;JavaScript;Ruby;SQL
+78053,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+78054,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;WebAssembly
+78055,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78056,HTML/CSS;JavaScript;PHP;SQL
+78057,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+78058,C;Java;Python
+78059,Bash/Shell/PowerShell;C;C++
+78060,Python;R
+78061,JavaScript;PHP
+78062,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+78063,Bash/Shell/PowerShell;C;Python;R
+78064,HTML/CSS;JavaScript;PHP
+78065,Java;Swift
+78066,Java
+78067,Bash/Shell/PowerShell;C#;Java;Python;SQL
+78068,HTML/CSS;JavaScript
+78069,HTML/CSS;Java;JavaScript;PHP;Scala;SQL
+78070,HTML/CSS;JavaScript;TypeScript
+78071,HTML/CSS;Java;SQL
+78072,HTML/CSS;JavaScript
+78073,C;C#;Java;Python
+78074,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+78075,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R
+78076,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78077,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+78078,HTML/CSS;JavaScript
+78079,C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+78080,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+78081,C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+78082,HTML/CSS;JavaScript
+78083,Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP
+78084,C#;HTML/CSS;JavaScript;PHP;SQL
+78085,C;C++;Objective-C;Python;Swift
+78086,Clojure;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+78087,HTML/CSS;JavaScript;PHP;TypeScript
+78088,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+78089,SQL;VBA;Other(s):
+78090,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+78091,C#;HTML/CSS;JavaScript
+78092,HTML/CSS;JavaScript;PHP;SQL;Swift
+78093,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+78094,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+78095,Bash/Shell/PowerShell;Python;Rust;SQL
+78096,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+78097,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python
+78098,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78099,Bash/Shell/PowerShell;Clojure;Elixir;Erlang;Go;Java;JavaScript;PHP;Ruby;SQL
+78100,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+78101,HTML/CSS;JavaScript;Python;SQL;TypeScript
+78102,Bash/Shell/PowerShell;C;C++;Python
+78104,Assembly;C;C++;C#;Java;JavaScript;PHP
+78105,JavaScript
+78106,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+78107,Bash/Shell/PowerShell;Java;Python
+78108,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java
+78110,Assembly
+78112,Dart;Python
+78113,Bash/Shell/PowerShell;Python;R;SQL
+78114,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+78115,Bash/Shell/PowerShell;Elixir;F#;HTML/CSS;Java;JavaScript;Python
+78116,C;C++;C#;Java;JavaScript;PHP;Ruby
+78117,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+78118,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+78119,Java;Kotlin
+78120,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+78121,C;C#;HTML/CSS;JavaScript;PHP;SQL
+78122,HTML/CSS;JavaScript;PHP;Python;SQL
+78123,Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78124,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+78125,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78126,JavaScript;PHP;SQL
+78127,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+78128,C#;Java;JavaScript;PHP;SQL
+78129,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+78130,Bash/Shell/PowerShell;Python
+78131,Assembly;HTML/CSS;Java;JavaScript;PHP;SQL
+78132,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+78133,C#;Python;Ruby;SQL;VBA
+78134,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78135,Java
+78136,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;SQL;TypeScript
+78137,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+78138,Bash/Shell/PowerShell;C;C++;Other(s):
+78139,Clojure;Elixir;HTML/CSS;Python
+78140,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+78141,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+78142,C;C++;HTML/CSS;Java;JavaScript;PHP
+78143,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;Swift;VBA
+78144,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+78145,Python;Other(s):
+78146,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby
+78147,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+78148,Bash/Shell/PowerShell;C;C++;C#
+78149,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL
+78150,HTML/CSS;JavaScript;PHP;SQL;Swift
+78151,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78152,HTML/CSS;JavaScript;PHP;SQL
+78153,HTML/CSS;JavaScript
+78154,C;C++;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+78155,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+78156,Bash/Shell/PowerShell;C++;Clojure;Elixir;Go;JavaScript;Python;R;Rust;SQL;TypeScript
+78157,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+78158,C#;PHP;SQL
+78159,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;Scala;SQL;TypeScript
+78160,Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+78161,Bash/Shell/PowerShell;Java;Python;Rust;Scala;SQL
+78162,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby
+78163,C++
+78164,Bash/Shell/PowerShell;C;JavaScript;PHP;Python;R;Rust;SQL
+78165,Bash/Shell/PowerShell;Go;JavaScript;Ruby;SQL;Other(s):
+78166,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78167,JavaScript;Python
+78168,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R
+78169,C#;HTML/CSS;JavaScript;Swift
+78170,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+78171,HTML/CSS;JavaScript
+78172,C#;Java
+78173,C#;HTML/CSS;JavaScript;SQL
+78174,C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+78175,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;R;SQL;Swift;TypeScript
+78176,HTML/CSS;JavaScript;Ruby;SQL
+78177,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78178,Go;Java;JavaScript;SQL;TypeScript
+78179,HTML/CSS;JavaScript;Python;TypeScript
+78180,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78182,C#;SQL;TypeScript
+78183,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Scala;SQL;Swift;TypeScript
+78184,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+78185,C++;PHP
+78186,C#;SQL
+78187,Assembly;C;C++;C#;F#;Java;Python;Other(s):
+78188,Java;SQL
+78189,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+78190,C;C#
+78191,C++;HTML/CSS;JavaScript;Python;Rust;Other(s):
+78192,HTML/CSS;JavaScript;Ruby
+78193,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+78194,Bash/Shell/PowerShell;C;Python;Other(s):
+78195,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+78196,C#;Java;PHP;Python;SQL
+78197,HTML/CSS;JavaScript;PHP;SQL
+78199,Assembly;Bash/Shell/PowerShell;C++;C#;Java;Python
+78200,HTML/CSS;JavaScript;PHP;Python;SQL
+78201,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+78202,HTML/CSS;JavaScript;TypeScript
+78203,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+78204,HTML/CSS;Java;JavaScript;Other(s):
+78205,Assembly;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+78206,Bash/Shell/PowerShell;Objective-C;Ruby;Swift
+78207,Java
+78208,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+78209,C#;HTML/CSS;Java;Kotlin;SQL
+78210,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;SQL
+78211,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+78212,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+78213,Go;HTML/CSS;JavaScript;Python
+78214,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+78215,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+78216,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+78218,Dart;HTML/CSS;Java;JavaScript;Python;R
+78219,Java;SQL
+78220,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+78221,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+78222,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;SQL
+78223,HTML/CSS;Java;JavaScript;TypeScript
+78224,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+78225,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;Python;SQL;VBA
+78226,Go;Python
+78227,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+78228,Clojure;Java;JavaScript;Ruby
+78229,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+78230,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby
+78231,Java;Python;R
+78232,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;SQL
+78233,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+78234,HTML/CSS;Java;JavaScript
+78235,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Objective-C;Python;Swift
+78236,Go;Java;Python
+78237,C++;Go;HTML/CSS;JavaScript;Python;WebAssembly
+78238,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78239,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+78240,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+78241,Python;R;SQL
+78242,C#;Java;SQL
+78243,Python;Scala;SQL
+78244,Java
+78245,Assembly;Bash/Shell/PowerShell;C#;F#;Go;Python;SQL;WebAssembly;Other(s):
+78246,C;C++;C#;Python
+78247,HTML/CSS;Java;JavaScript;PHP
+78248,HTML/CSS;Java;JavaScript;SQL
+78249,Assembly;Bash/Shell/PowerShell;C;C++;Python;SQL
+78250,C++;C#;Python;SQL
+78251,C#;HTML/CSS;JavaScript;Python;SQL;Swift
+78252,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+78253,Bash/Shell/PowerShell;C;Go;SQL;Other(s):
+78254,Python;SQL
+78255,C++;HTML/CSS;JavaScript;PHP;Python;Rust
+78256,Python;Scala
+78257,HTML/CSS;JavaScript;TypeScript;Other(s):
+78258,JavaScript
+78259,JavaScript;Python;R;SQL
+78260,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78261,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+78262,HTML/CSS;JavaScript
+78263,Java;JavaScript;Kotlin
+78264,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA;Other(s):
+78265,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+78267,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78268,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python
+78269,Java;JavaScript;SQL
+78270,Java;JavaScript;Python
+78271,Objective-C;Swift
+78272,Bash/Shell/PowerShell;Python
+78273,HTML/CSS;Java;JavaScript
+78274,HTML/CSS;JavaScript;PHP;Python;SQL
+78275,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+78276,SQL;VBA
+78277,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+78278,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python
+78279,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+78280,Assembly;C;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+78281,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78282,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+78283,Bash/Shell/PowerShell;Java;JavaScript;SQL
+78284,C;C++;Python;SQL
+78285,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+78286,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+78287,C;Go;Python;SQL
+78288,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78289,HTML/CSS;JavaScript;PHP;Python
+78290,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;PHP;Python;Ruby;SQL
+78291,Assembly;Python;SQL
+78293,Python;R;SQL
+78294,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;VBA
+78295,HTML/CSS;JavaScript;PHP;SQL
+78296,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+78297,C++;HTML/CSS;Python;Scala;SQL;VBA
+78298,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+78299,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+78300,HTML/CSS;JavaScript;PHP;Ruby;SQL
+78301,Bash/Shell/PowerShell;JavaScript;Python;SQL;VBA
+78302,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+78303,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;WebAssembly
+78304,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78305,HTML/CSS;JavaScript;Python;SQL
+78306,HTML/CSS;Java;JavaScript;SQL;Other(s):
+78307,HTML/CSS;JavaScript;SQL
+78308,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;VBA
+78309,Bash/Shell/PowerShell;C;C++
+78310,C#;HTML/CSS;JavaScript;SQL
+78311,HTML/CSS;JavaScript;Python;Other(s):
+78312,JavaScript
+78313,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+78314,Assembly;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+78315,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;SQL
+78316,Java;Scala;SQL
+78317,Assembly;C;Java
+78318,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+78319,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+78320,Bash/Shell/PowerShell;Java;Scala;SQL
+78321,HTML/CSS;PHP;Ruby
+78322,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java
+78323,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift
+78324,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+78325,C;C++;Java;Python;Scala;SQL
+78327,C++;C#;JavaScript;Kotlin;SQL;Other(s):
+78328,Python;SQL
+78329,HTML/CSS;Python
+78330,Bash/Shell/PowerShell;Erlang;Go;Java;JavaScript;Python;Ruby;SQL
+78331,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;VBA
+78332,Java;Other(s):
+78333,C++;Python;R;Other(s):
+78334,JavaScript;Python
+78335,C#;HTML/CSS;JavaScript;SQL
+78336,Java;SQL
+78337,C++;JavaScript;Python
+78338,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+78339,HTML/CSS;JavaScript;TypeScript
+78340,C;Ruby;Swift
+78341,HTML/CSS;JavaScript
+78342,HTML/CSS;JavaScript
+78343,HTML/CSS;Java;JavaScript;SQL
+78344,Java
+78345,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift
+78346,HTML/CSS;JavaScript;PHP;Python;SQL
+78347,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78348,R
+78349,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+78350,C++;Java
+78351,HTML/CSS;JavaScript;PHP;Python;SQL
+78352,SQL
+78353,C#
+78354,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+78355,Java;Kotlin
+78356,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+78357,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;PHP;Python;Ruby;SQL
+78358,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+78359,C++;Python
+78360,Assembly;C;C++;HTML/CSS;Java
+78361,C#;Java;Python;SQL
+78362,C;C#;Java
+78363,HTML/CSS;JavaScript
+78364,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+78365,C;C#;Java;PHP;SQL
+78366,C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+78367,C#;Elixir;Erlang;F#;SQL
+78368,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+78369,Bash/Shell/PowerShell;Python;SQL
+78370,C#;Kotlin;SQL
+78371,C;Python;Other(s):
+78372,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+78373,C++;HTML/CSS;JavaScript;Python
+78374,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+78375,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby
+78376,Java;Kotlin;Objective-C;Python;Swift
+78377,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;R;TypeScript
+78378,C;C++
+78379,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;Swift;TypeScript
+78380,HTML/CSS;JavaScript;Python;SQL
+78381,Bash/Shell/PowerShell;C#;Python;R;SQL
+78382,C#;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript;Other(s):
+78383,Python;R
+78384,Bash/Shell/PowerShell;C;C++;HTML/CSS
+78385,Ruby
+78386,HTML/CSS;JavaScript;Ruby;SQL
+78387,C#;HTML/CSS;JavaScript;SQL
+78388,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+78389,Assembly;Bash/Shell/PowerShell;C;Python
+78390,JavaScript;Ruby
+78391,Assembly;C;C++;Python;Other(s):
+78392,HTML/CSS;Java;JavaScript;TypeScript
+78393,C;C++;Java;Python;SQL
+78394,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;Swift
+78395,C;HTML/CSS;Java;JavaScript;SQL
+78396,Bash/Shell/PowerShell;C#;Elixir;PHP;SQL
+78397,HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+78398,C++;JavaScript;Python
+78399,C#;HTML/CSS;JavaScript;SQL
+78400,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+78401,C;C++;HTML/CSS;Java;SQL
+78402,Assembly;Bash/Shell/PowerShell;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;Swift;VBA;Other(s):
+78403,C++;C#;Python;SQL
+78405,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+78406,PHP;SQL
+78407,Bash/Shell/PowerShell;C++;C#;SQL
+78408,Bash/Shell/PowerShell;Java;Python
+78409,HTML/CSS;JavaScript;Python;SQL
+78410,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+78411,Bash/Shell/PowerShell;C;C++;Python;Rust
+78412,HTML/CSS;JavaScript;PHP;Ruby
+78413,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+78414,Python;SQL;VBA
+78415,Bash/Shell/PowerShell;C++
+78416,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+78417,Bash/Shell/PowerShell;C++;Elixir;HTML/CSS;JavaScript;Python
+78418,C;C++;HTML/CSS;JavaScript;TypeScript;Other(s):
+78419,C#;HTML/CSS;JavaScript;SQL
+78420,C#;HTML/CSS;JavaScript;PHP;SQL
+78421,C#;Go;HTML/CSS;Python
+78422,HTML/CSS;Java;SQL
+78423,C;C++;C#;Java;JavaScript;Kotlin
+78424,HTML/CSS;Java
+78425,Assembly;Python
+78426,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+78427,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+78428,JavaScript;Python
+78429,C#;Other(s):
+78430,HTML/CSS;Java;JavaScript;SQL
+78431,Python
+78432,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+78433,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL
+78434,C#;HTML/CSS;JavaScript;SQL
+78435,Dart;HTML/CSS;Java;JavaScript
+78436,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+78437,JavaScript;TypeScript
+78438,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+78439,C#;PHP;SQL
+78440,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;SQL;Swift
+78441,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+78442,C#;F#;SQL;TypeScript
+78443,C#;JavaScript;SQL
+78444,C++;C#;HTML/CSS;JavaScript;SQL
+78445,HTML/CSS;JavaScript;Python;R;Swift;TypeScript
+78446,C#;HTML/CSS;JavaScript;PHP;SQL
+78447,C++;Python;Other(s):
+78448,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+78449,C++;C#;Java;JavaScript;PHP;SQL;VBA
+78450,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;Rust;Scala;SQL;Swift
+78451,Go;JavaScript;PHP;SQL;TypeScript
+78452,Bash/Shell/PowerShell;C#;Erlang;Python;Swift
+78453,C++;Python
+78454,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78455,C#;HTML/CSS;JavaScript;TypeScript
+78456,Java;Kotlin
+78457,C#;HTML/CSS;SQL
+78458,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Other(s):
+78459,Objective-C;Swift
+78460,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+78461,HTML/CSS;JavaScript;PHP;SQL
+78462,HTML/CSS;Java;PHP;SQL
+78463,HTML/CSS;JavaScript;TypeScript
+78464,HTML/CSS;Java;JavaScript;SQL
+78465,C;C++;HTML/CSS;Java;Python;SQL
+78466,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78467,C#;HTML/CSS;Swift;TypeScript
+78468,C++;Scala;SQL;VBA
+78469,Bash/Shell/PowerShell;C;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+78470,Bash/Shell/PowerShell;JavaScript
+78471,C;C++;Python
+78472,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78473,Go;JavaScript;Python;Rust;TypeScript
+78475,Java;SQL
+78476,Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+78477,C;Java;Kotlin
+78478,C#;HTML/CSS;JavaScript;PHP;SQL
+78479,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+78480,HTML/CSS;Java;JavaScript;TypeScript
+78481,C++;JavaScript;Python
+78482,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+78483,Bash/Shell/PowerShell;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript
+78484,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+78485,Java
+78486,C;C++;C#;Java;Python;SQL
+78487,C++;C#;HTML/CSS;JavaScript;VBA
+78489,HTML/CSS;JavaScript;PHP
+78490,HTML/CSS;JavaScript;TypeScript
+78491,C;C++;C#;Python;SQL;Other(s):
+78492,C;Python;Rust;TypeScript
+78493,Ruby
+78494,C;C++;C#;Java;VBA
+78495,HTML/CSS;JavaScript;PHP;SQL
+78496,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78497,Bash/Shell/PowerShell;C;HTML/CSS;Python
+78498,C++;Go;Java;Python
+78499,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+78500,HTML/CSS;JavaScript
+78501,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+78502,Clojure;Python;R;SQL
+78503,HTML/CSS;JavaScript;Python
+78504,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+78505,C#;Java;Objective-C;Python;Swift
+78506,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R
+78507,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;VBA;Other(s):
+78508,Java;SQL
+78509,R;SQL;VBA
+78510,C;C++;C#;JavaScript;TypeScript
+78511,HTML/CSS;JavaScript
+78512,HTML/CSS;Java;JavaScript;Scala
+78513,HTML/CSS;Java;SQL
+78514,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+78515,Bash/Shell/PowerShell;Python
+78516,C#;HTML/CSS;JavaScript;SQL
+78517,VBA
+78518,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+78519,HTML/CSS;Java;JavaScript
+78520,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;VBA
+78521,C#;JavaScript;PHP;TypeScript
+78522,C++;HTML/CSS;Java;JavaScript
+78523,C#;SQL;Other(s):
+78524,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78525,Java;Ruby
+78526,C#;TypeScript
+78527,C#;Go;HTML/CSS;Java;JavaScript;Python
+78528,Bash/Shell/PowerShell;C;C++
+78529,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+78530,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+78531,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+78532,Assembly;HTML/CSS;JavaScript;TypeScript
+78533,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL
+78534,Assembly;Bash/Shell/PowerShell;C;Erlang;HTML/CSS;SQL;Other(s):
+78535,HTML/CSS;Java;JavaScript;PHP;Python
+78536,Bash/Shell/PowerShell;C;C++;Python
+78537,HTML/CSS;TypeScript
+78538,Bash/Shell/PowerShell;C++;Python;VBA
+78539,C#;Go;HTML/CSS;JavaScript;PHP
+78540,HTML/CSS;JavaScript;PHP
+78541,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+78542,C++;HTML/CSS;Java;PHP;Python
+78543,C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+78544,Elixir;JavaScript;Ruby;SQL
+78545,C#;JavaScript;SQL;TypeScript
+78546,C#;HTML/CSS;JavaScript;Ruby;TypeScript
+78547,HTML/CSS;JavaScript;PHP;TypeScript
+78548,C++;HTML/CSS;Java;JavaScript
+78549,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+78550,HTML/CSS;Java;JavaScript;SQL
+78551,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Rust;SQL
+78552,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78553,JavaScript
+78554,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+78555,HTML/CSS;JavaScript;PHP;SQL
+78556,Bash/Shell/PowerShell;C++;Python
+78557,HTML/CSS;JavaScript
+78558,C#
+78559,C;HTML/CSS;Java;JavaScript;Python;TypeScript
+78560,HTML/CSS;JavaScript;Python;Ruby;SQL
+78561,C++;Python
+78562,C;Python
+78563,Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;Python;SQL
+78564,C#;HTML/CSS;JavaScript;TypeScript
+78565,Java
+78566,HTML/CSS;Objective-C;Swift
+78567,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+78568,Go;JavaScript;PHP;Python;SQL
+78570,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+78571,Bash/Shell/PowerShell;C#;F#;Rust;Other(s):
+78572,C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+78573,C#;HTML/CSS;JavaScript;Ruby;TypeScript
+78574,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+78575,HTML/CSS;Python
+78576,C#;JavaScript;PHP;SQL;TypeScript
+78577,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+78578,Java;JavaScript;Python;R;Other(s):
+78579,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+78580,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+78581,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript
+78582,C;C++;SQL
+78583,C#;HTML/CSS;JavaScript
+78584,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+78585,Java;JavaScript;Kotlin;PHP
+78586,C#;HTML/CSS;JavaScript;TypeScript
+78587,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+78588,Bash/Shell/PowerShell;Java;JavaScript
+78589,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+78590,Assembly;Other(s):
+78591,Bash/Shell/PowerShell;C;C++;JavaScript;PHP;Python;SQL
+78592,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+78593,Bash/Shell/PowerShell;C#;SQL
+78594,Bash/Shell/PowerShell;Python;R;Ruby;SQL
+78595,JavaScript;PHP;TypeScript
+78596,HTML/CSS;Java;JavaScript
+78597,HTML/CSS;Java;JavaScript;Python;SQL
+78598,HTML/CSS;Java;JavaScript;SQL
+78599,Java;Kotlin
+78600,R
+78601,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+78602,Dart;Java;SQL
+78603,Bash/Shell/PowerShell;Java;Python;R;Scala;SQL;Other(s):
+78604,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+78605,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+78606,C#;SQL
+78607,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+78608,Assembly;Bash/Shell/PowerShell;C;Clojure;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+78609,Bash/Shell/PowerShell;Go;Java;Scala;SQL
+78610,HTML/CSS;Java;JavaScript;SQL;TypeScript
+78611,C#;HTML/CSS;JavaScript;VBA
+78612,SQL
+78613,C#;HTML/CSS;JavaScript;PHP;Scala;TypeScript
+78614,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;Swift
+78615,C#;HTML/CSS;JavaScript;PHP;SQL
+78616,HTML/CSS;JavaScript;PHP;Rust;Swift;TypeScript
+78617,C++;Go
+78618,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+78619,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+78620,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Other(s):
+78621,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;TypeScript
+78622,Bash/Shell/PowerShell;Java;Kotlin
+78623,Java;Objective-C;Swift
+78624,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78625,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL;VBA
+78626,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python
+78627,HTML/CSS;JavaScript;TypeScript
+78628,C#;HTML/CSS;JavaScript;SQL;VBA
+78629,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+78630,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+78631,Assembly;C;C++;Python
+78632,Bash/Shell/PowerShell;Python
+78633,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Rust;SQL
+78634,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Java;Python;Rust;Other(s):
+78635,Java;JavaScript;SQL
+78636,C;C++;HTML/CSS;Java;PHP;Python;Ruby;SQL
+78637,Elixir;HTML/CSS;JavaScript;Ruby
+78638,Java;JavaScript;PHP;SQL
+78639,Java;JavaScript;Kotlin
+78640,C#;HTML/CSS;Java;Python;SQL
+78641,Java;Other(s):
+78642,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+78643,C#;HTML/CSS;JavaScript;SQL
+78644,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78645,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78646,HTML/CSS;JavaScript;PHP
+78647,C#;HTML/CSS;JavaScript;SQL
+78648,HTML/CSS;Java;JavaScript;PHP;SQL
+78649,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+78650,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL
+78651,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+78652,C#;SQL
+78653,HTML/CSS;JavaScript;Python;SQL;Other(s):
+78654,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL
+78655,Assembly;VBA
+78656,C#;HTML/CSS;Java;JavaScript;TypeScript
+78657,C#;HTML/CSS;JavaScript;SQL
+78658,C;C++;HTML/CSS;Java;JavaScript;SQL
+78659,C;C++;Clojure;Dart;HTML/CSS;Java;JavaScript;Swift
+78660,JavaScript;TypeScript
+78661,Scala
+78662,C;C#;PHP;Python;SQL
+78663,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript
+78664,HTML/CSS;Java;JavaScript;Python;Other(s):
+78665,HTML/CSS;Objective-C;Ruby;Swift
+78666,Bash/Shell/PowerShell;C#;Java;JavaScript
+78667,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+78668,HTML/CSS;Python
+78669,HTML/CSS;JavaScript;TypeScript
+78670,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78671,C#;JavaScript;Python;SQL;TypeScript
+78672,Java;JavaScript;SQL
+78673,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+78674,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL
+78675,Java;JavaScript;SQL
+78676,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+78677,Java;JavaScript;Python;SQL
+78678,Bash/Shell/PowerShell;C#;SQL
+78679,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+78680,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+78681,Bash/Shell/PowerShell;Java;JavaScript;Python
+78682,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+78683,Bash/Shell/PowerShell;C;C++;HTML/CSS;Objective-C;Python;Swift
+78684,C#;HTML/CSS;Java;Python;SQL
+78685,JavaScript;PHP;SQL;TypeScript;Other(s):
+78686,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+78687,Bash/Shell/PowerShell;HTML/CSS;PHP;Ruby;SQL
+78688,HTML/CSS;Java;Python;Rust
+78689,HTML/CSS;JavaScript;PHP;SQL
+78690,HTML/CSS;JavaScript;Rust;SQL;Other(s):
+78691,C#;SQL
+78692,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+78693,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;R;TypeScript
+78694,C#;Dart;Go;JavaScript;Ruby;SQL
+78695,C;C++;C#;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+78696,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+78697,Java
+78698,HTML/CSS;JavaScript
+78699,C++;C#;HTML/CSS;JavaScript;Python;Rust
+78700,C++;C#;HTML/CSS;Java;JavaScript;PHP
+78701,C#;Java;JavaScript;Python
+78702,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78703,C;Java;Kotlin;Python;Rust
+78704,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;TypeScript
+78706,C#;HTML/CSS;JavaScript;SQL
+78707,HTML/CSS;JavaScript;PHP;SQL
+78708,Java;JavaScript;Python;SQL
+78709,Bash/Shell/PowerShell;Dart;Java;JavaScript;Python;Ruby;Other(s):
+78710,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+78711,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+78713,HTML/CSS;JavaScript;PHP;SQL
+78714,Java;JavaScript;Python;Other(s):
+78715,HTML/CSS;JavaScript;Ruby
+78716,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+78717,Go
+78718,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78719,C++;HTML/CSS;Java;JavaScript;Python;R;Ruby
+78720,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;TypeScript
+78721,HTML/CSS;JavaScript;Python;Swift;TypeScript
+78722,Go;Other(s):
+78723,Python
+78724,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+78725,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78726,Bash/Shell/PowerShell;Java;Kotlin
+78727,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+78728,Bash/Shell/PowerShell;C;C++;C#;Python
+78729,HTML/CSS;JavaScript;PHP
+78730,HTML/CSS;JavaScript;PHP;Swift
+78731,C#;JavaScript;PHP;Python;SQL;TypeScript
+78732,C#;Java;PHP;SQL
+78733,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;TypeScript
+78734,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+78735,C#;HTML/CSS;JavaScript;SQL
+78736,HTML/CSS;Java;JavaScript;SQL;TypeScript
+78737,Bash/Shell/PowerShell;C++;Python;R
+78738,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;Other(s):
+78739,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R
+78740,Go;PHP;Python
+78742,Bash/Shell/PowerShell;Python;R;SQL;VBA;Other(s):
+78743,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+78744,Elixir;Erlang;JavaScript
+78745,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+78746,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+78747,C;C++;C#
+78748,HTML/CSS;Java;JavaScript;Python;R;SQL
+78749,Objective-C;Swift
+78750,C#;Java;JavaScript
+78751,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+78752,Java;Kotlin;Python
+78753,C;C++;Go;JavaScript;Python;R;Ruby;Rust;Scala
+78754,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+78755,HTML/CSS;Java;SQL
+78756,Other(s):
+78757,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78758,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Swift
+78759,C#;Go;HTML/CSS;JavaScript;SQL
+78760,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78761,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;SQL;Swift;Other(s):
+78762,C++;C#;HTML/CSS;PHP;Python;TypeScript;Other(s):
+78763,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL
+78764,Bash/Shell/PowerShell;C;Python;Scala;SQL;Other(s):
+78765,Bash/Shell/PowerShell;C++;Go;Java;Python;SQL
+78766,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;Rust
+78767,C#;HTML/CSS;JavaScript;SQL
+78768,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+78769,HTML/CSS;Java;JavaScript;Python
+78770,Bash/Shell/PowerShell;Python;R;SQL;VBA
+78771,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+78772,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+78773,Clojure
+78774,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+78775,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78776,C++;Python;SQL;VBA
+78777,Assembly;C#;Java;SQL
+78778,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78779,Java;JavaScript;Kotlin;Python;TypeScript
+78780,HTML/CSS;JavaScript;Python;VBA
+78781,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL
+78782,Java;Python;SQL
+78783,Bash/Shell/PowerShell;C;Java;Python;SQL
+78784,Java;Python
+78785,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+78786,Assembly;Bash/Shell/PowerShell;C
+78787,JavaScript;PHP;Python;Rust;TypeScript
+78788,HTML/CSS;JavaScript;PHP;SQL
+78789,Bash/Shell/PowerShell;Python;R;SQL
+78790,HTML/CSS;JavaScript;PHP;Python
+78791,Java;Python;SQL;Other(s):
+78792,HTML/CSS;JavaScript
+78793,C#;HTML/CSS;JavaScript;TypeScript
+78794,C#
+78795,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+78796,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+78797,C#;SQL
+78798,Java
+78799,C++;HTML/CSS;JavaScript
+78800,Java;Python;SQL;Swift
+78801,R;Other(s):
+78803,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+78804,C;C++;Java;PHP;SQL
+78805,C#;F#;HTML/CSS;JavaScript;SQL
+78806,C#;HTML/CSS;Java;JavaScript;Objective-C;R;SQL
+78807,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+78808,C++;Python
+78809,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78810,C#;HTML/CSS;Java;JavaScript;SQL
+78811,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+78812,C;C#;JavaScript;Python
+78813,C#;HTML/CSS;SQL
+78814,C;Java;JavaScript;Kotlin;Rust;TypeScript
+78815,Bash/Shell/PowerShell;C;C++;Swift;Other(s):
+78816,Bash/Shell/PowerShell;Python;VBA
+78817,C#;HTML/CSS;JavaScript;PHP;SQL
+78818,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78819,C#;JavaScript;SQL
+78820,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Scala;SQL;TypeScript
+78821,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+78822,C#;HTML/CSS;JavaScript;SQL
+78823,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+78824,C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+78825,Java;Objective-C;Swift
+78827,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78828,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+78829,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;VBA
+78830,C#;HTML/CSS;JavaScript
+78831,C;C++;Rust
+78832,HTML/CSS;Java;JavaScript;TypeScript
+78833,HTML/CSS;PHP;Python;SQL
+78834,Bash/Shell/PowerShell;R;Other(s):
+78835,C;C++;Go;Python;Rust
+78836,HTML/CSS;JavaScript;TypeScript
+78837,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript
+78838,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP
+78839,Bash/Shell/PowerShell;C++;Python
+78840,Clojure;HTML/CSS
+78841,HTML/CSS;JavaScript;Python;Ruby
+78842,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+78843,HTML/CSS;Java;JavaScript;SQL
+78844,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python
+78845,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;Ruby;Swift
+78846,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Other(s):
+78847,C;C++;C#;Java;SQL
+78848,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+78849,C;C++;Java;JavaScript;Objective-C;PHP;SQL;TypeScript;Other(s):
+78850,Bash/Shell/PowerShell;Java
+78851,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP
+78852,C#;HTML/CSS;Java;JavaScript;SQL
+78853,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;SQL
+78854,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;SQL;TypeScript
+78855,C++;C#;Java;Kotlin
+78856,C#;SQL
+78857,Objective-C;Swift
+78858,C#
+78859,C++;HTML/CSS;JavaScript;Ruby;SQL
+78860,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+78861,JavaScript;TypeScript;Other(s):
+78862,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78863,HTML/CSS;Java;JavaScript;PHP
+78864,Bash/Shell/PowerShell;C++;Python;SQL
+78865,C;C++;HTML/CSS
+78866,C++;HTML/CSS;Java;Python;SQL
+78867,C;C++;Python
+78868,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+78869,HTML/CSS;Java;JavaScript;PHP;Python
+78870,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+78871,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+78872,C++;Go;HTML/CSS;JavaScript;Python;R;Ruby;SQL;VBA;Other(s):
+78873,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+78874,Bash/Shell/PowerShell;C++;C#;Go;SQL
+78875,HTML/CSS;PHP
+78876,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript;Objective-C;PHP;Ruby;TypeScript
+78877,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+78878,Java;JavaScript
+78879,JavaScript;Python;TypeScript
+78880,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+78881,HTML/CSS;Java;JavaScript;PHP
+78882,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+78883,C;C++;HTML/CSS;Java;Kotlin;Objective-C;PHP;SQL;Swift;VBA
+78884,C#;HTML/CSS;JavaScript;PHP;SQL
+78885,C++;JavaScript;Python;SQL
+78886,Java;Python;SQL
+78888,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+78889,HTML/CSS;JavaScript;SQL
+78890,C#;HTML/CSS;JavaScript;SQL
+78891,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+78892,Bash/Shell/PowerShell;C;C++;Java;Python
+78893,C#;Objective-C;Swift
+78894,HTML/CSS;Python
+78895,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+78896,Bash/Shell/PowerShell;C++;Python;SQL
+78897,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+78898,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+78899,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+78900,C++;C#;HTML/CSS;JavaScript;SQL
+78901,C;C++;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+78902,C++;C#
+78903,Java;JavaScript
+78904,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+78905,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+78906,Assembly;Bash/Shell/PowerShell;C;Java;Python;Other(s):
+78907,C#;HTML/CSS
+78908,HTML/CSS;JavaScript;PHP
+78909,C#;HTML/CSS;Java;SQL;VBA
+78910,HTML/CSS;JavaScript;Python
+78911,C;C++;HTML/CSS;Java;JavaScript;Scala;SQL
+78912,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R
+78913,C#;HTML/CSS;Java;JavaScript;SQL
+78914,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+78915,C;HTML/CSS;Java;JavaScript;SQL
+78916,Bash/Shell/PowerShell;C;C++;Java;R;SQL
+78917,Bash/Shell/PowerShell;JavaScript;Python;R
+78918,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+78919,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+78920,Java
+78921,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+78922,C;C#;JavaScript;Python
+78923,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78924,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+78925,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+78926,C++;VBA
+78927,Bash/Shell/PowerShell;Java;Other(s):
+78928,Bash/Shell/PowerShell;C#;JavaScript;Python;Ruby
+78929,Bash/Shell/PowerShell;JavaScript;Python;SQL
+78930,Bash/Shell/PowerShell;Elixir;F#;Go;HTML/CSS;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+78931,HTML/CSS;JavaScript;TypeScript
+78932,Bash/Shell/PowerShell;Java;Python
+78933,C;HTML/CSS;Java;JavaScript;Ruby;SQL;Swift
+78934,R
+78935,HTML/CSS;Java;Kotlin;PHP;Python
+78936,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+78937,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;R;Rust;Scala;TypeScript;Other(s):
+78938,Java
+78939,HTML/CSS;JavaScript
+78940,C++;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+78941,HTML/CSS;JavaScript;Objective-C;SQL;Swift
+78942,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78943,Assembly;Bash/Shell/PowerShell;C;C++;Python
+78944,Java;Objective-C;Python;Swift
+78945,C++;Python;Swift
+78946,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+78947,Python
+78948,C#;HTML/CSS;JavaScript;SQL;TypeScript
+78949,HTML/CSS;Java;JavaScript;Python;SQL
+78950,Bash/Shell/PowerShell;Java;Python;Ruby;SQL
+78951,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+78952,HTML/CSS;JavaScript;Ruby;SQL
+78953,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+78954,Bash/Shell/PowerShell;C#;Other(s):
+78955,Java;JavaScript;SQL;TypeScript
+78956,Bash/Shell/PowerShell;JavaScript;Python;SQL
+78957,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+78958,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+78959,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;R;SQL;VBA
+78960,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+78961,Java;Python
+78962,Java;PHP
+78963,C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+78964,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+78965,C++;Python;R;SQL
+78966,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+78967,Java;JavaScript;TypeScript
+78968,Bash/Shell/PowerShell;C#;Java;Kotlin;Python;SQL
+78969,Python;R;Scala;SQL
+78970,C#;HTML/CSS;JavaScript;SQL
+78971,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+78972,Bash/Shell/PowerShell;C#
+78973,Java;Python
+78974,JavaScript;Python;SQL
+78975,C;Clojure;HTML/CSS;JavaScript;Python
+78976,HTML/CSS;Java;JavaScript;Kotlin;Python
+78977,R
+78978,HTML/CSS;JavaScript;PHP;SQL
+78979,Java
+78980,C++;C#;HTML/CSS;JavaScript;SQL;VBA
+78981,C;C++;Python;Other(s):
+78982,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+78983,HTML/CSS;JavaScript
+78984,Python
+78985,C#;Java;JavaScript;PHP;SQL;Other(s):
+78986,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+78987,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+78988,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+78989,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+78990,HTML/CSS;JavaScript;Other(s):
+78991,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+78992,JavaScript;Python;SQL
+78993,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+78994,C++;HTML/CSS;Java;JavaScript;Python;SQL
+78995,HTML/CSS;JavaScript;PHP;SQL;VBA
+78996,Assembly;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Rust
+78997,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+78998,C;C++;HTML/CSS;Java;SQL
+78999,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+79000,HTML/CSS;JavaScript
+79001,HTML/CSS;JavaScript;Python
+79002,Assembly;Bash/Shell/PowerShell;C;C++;Python;Scala;Other(s):
+79003,Assembly;Bash/Shell/PowerShell;C;Python
+79004,C#;SQL
+79005,JavaScript;Rust;Other(s):
+79006,C;C++
+79007,Objective-C;Swift
+79008,C;C++;HTML/CSS;Java;PHP;SQL
+79009,C++;C#
+79010,HTML/CSS;JavaScript;PHP;SQL
+79011,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+79012,HTML/CSS;Java;JavaScript;SQL
+79013,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+79014,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+79015,HTML/CSS;JavaScript;PHP;SQL
+79016,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+79017,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript
+79018,C;C++;C#;HTML/CSS;Java;Python
+79019,C#;Java;JavaScript;Python;SQL
+79020,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+79021,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+79022,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript
+79023,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+79024,HTML/CSS;Java;JavaScript;SQL;Other(s):
+79025,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+79026,Java;JavaScript;PHP;Python
+79027,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+79028,C;C++;Java;Kotlin;PHP
+79029,Bash/Shell/PowerShell;C#;Clojure;JavaScript;Ruby;TypeScript
+79030,HTML/CSS;Python;SQL;VBA
+79031,C;HTML/CSS;Java;JavaScript;Python
+79032,C;C#;HTML/CSS;Java;JavaScript;Kotlin
+79033,Java
+79034,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79035,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79036,Java;SQL
+79037,HTML/CSS;JavaScript;Scala;Other(s):
+79038,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+79039,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+79040,Assembly;C;Java;PHP;Python
+79041,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+79042,Bash/Shell/PowerShell;C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL
+79043,C++
+79044,HTML/CSS;JavaScript;Python;TypeScript
+79045,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+79046,C++;HTML/CSS;JavaScript;Python;Rust;TypeScript
+79047,C#;PHP;SQL
+79048,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+79049,Bash/Shell/PowerShell;JavaScript;PHP;Python
+79050,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+79051,Java;VBA
+79052,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+79053,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+79054,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;VBA;Other(s):
+79055,HTML/CSS;Java;JavaScript;SQL
+79056,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+79057,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift;TypeScript
+79058,C;C++;Python
+79059,HTML/CSS;JavaScript;Python;R;SQL;VBA;Other(s):
+79060,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Other(s):
+79061,Assembly;C;C++;HTML/CSS;Java;JavaScript
+79062,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+79063,JavaScript;Objective-C;Swift
+79064,C#;HTML/CSS;JavaScript;PHP;SQL
+79065,HTML/CSS;Java;JavaScript
+79066,C;Java
+79067,Java;Other(s):
+79068,Java;Kotlin;Python;Swift
+79069,C#;JavaScript
+79070,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+79071,HTML/CSS;JavaScript;Python;SQL
+79072,HTML/CSS;Java;JavaScript;SQL
+79073,HTML/CSS;JavaScript;Python;SQL
+79074,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+79075,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79076,C#;HTML/CSS;Java;TypeScript
+79077,Elixir;Erlang;HTML/CSS;JavaScript;Ruby;SQL
+79078,Clojure;HTML/CSS;PHP;SQL
+79080,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+79081,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+79082,Assembly;C;Erlang;HTML/CSS;JavaScript;PHP;Python;R;Ruby;Rust;SQL
+79083,C#;Other(s):
+79084,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+79085,C++;HTML/CSS;Objective-C;Python
+79086,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Other(s):
+79087,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;R;Rust
+79088,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;JavaScript;SQL
+79089,HTML/CSS;JavaScript
+79090,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+79091,C#;JavaScript;SQL;VBA
+79092,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+79093,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+79094,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+79095,C#;HTML/CSS;JavaScript;TypeScript
+79096,HTML/CSS;JavaScript;PHP;Other(s):
+79097,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R
+79098,C;Java
+79099,HTML/CSS;JavaScript;TypeScript
+79100,JavaScript;Python;SQL;TypeScript
+79101,C++;C#;Objective-C;Swift
+79102,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+79103,C;Java;JavaScript;Objective-C;Python;Swift
+79104,Java;Kotlin
+79105,C;C++;Python;R
+79106,Java;JavaScript;SQL;TypeScript
+79108,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79109,Java;JavaScript;Scala
+79110,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;Rust;SQL;TypeScript
+79111,Python
+79112,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+79113,HTML/CSS;Java;PHP;SQL
+79114,Go;HTML/CSS;JavaScript;Python
+79115,HTML/CSS;Java;JavaScript;SQL
+79116,HTML/CSS;Java;JavaScript;PHP
+79117,Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79118,Elixir;JavaScript;Ruby;Other(s):
+79119,C#;HTML/CSS;JavaScript;TypeScript
+79120,C++;C#
+79121,HTML/CSS;Java;JavaScript;Swift
+79122,C#;HTML/CSS;JavaScript
+79123,C;C#;Java;Objective-C;Swift;VBA
+79124,C;C++;Go;HTML/CSS;JavaScript;PHP;SQL
+79125,Java;JavaScript;TypeScript
+79126,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;TypeScript
+79127,C#;HTML/CSS;SQL
+79128,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+79129,C;C++;HTML/CSS;Java;Python;R;SQL;VBA
+79130,Assembly;HTML/CSS;JavaScript;PHP;TypeScript
+79131,HTML/CSS;Python;SQL
+79132,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+79133,HTML/CSS;Python;SQL
+79134,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+79135,C;C++;HTML/CSS;JavaScript;Ruby
+79136,Java;JavaScript;PHP;SQL;Swift;Other(s):
+79137,C++;Java;Python
+79138,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Swift
+79139,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+79140,HTML/CSS;JavaScript;PHP;TypeScript
+79141,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79142,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79143,HTML/CSS;Java
+79144,Python;TypeScript
+79145,C#;Other(s):
+79146,Bash/Shell/PowerShell;C;Python
+79147,HTML/CSS;JavaScript;PHP;SQL
+79148,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79149,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79150,Clojure;JavaScript;PHP;Python;R;SQL
+79151,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R
+79152,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+79153,HTML/CSS;JavaScript;PHP;Python
+79154,JavaScript;Python;SQL
+79155,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+79156,Java;JavaScript;Other(s):
+79157,HTML/CSS;JavaScript;Python;SQL
+79158,JavaScript;Python;SQL
+79159,C#;HTML/CSS;TypeScript
+79160,Bash/Shell/PowerShell;Python
+79161,C#;JavaScript;SQL;VBA
+79162,C++;Python
+79163,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+79164,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+79165,C++;HTML/CSS
+79166,HTML/CSS;JavaScript;PHP;Python;SQL
+79167,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+79168,C;C#;Objective-C;Swift
+79169,Java;Swift
+79170,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+79171,C#;Python
+79172,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79174,Bash/Shell/PowerShell;C#;PHP;TypeScript
+79175,HTML/CSS;JavaScript;Other(s):
+79176,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+79177,Java;Kotlin;Python
+79178,Bash/Shell/PowerShell;Go;Java;JavaScript;SQL
+79179,PHP;SQL
+79180,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust;SQL;Swift
+79181,C;C++;HTML/CSS;Java;JavaScript;Kotlin;SQL
+79182,C++;Erlang;HTML/CSS;JavaScript;Python;Other(s):
+79183,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+79184,HTML/CSS;JavaScript;PHP;Python
+79185,C;Java;Python
+79186,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+79187,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+79188,Go;JavaScript;TypeScript
+79190,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+79191,HTML/CSS;JavaScript;Kotlin;PHP;SQL;TypeScript
+79192,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+79193,HTML/CSS;Java;JavaScript;SQL;TypeScript
+79194,C;C++;Python
+79195,C#;HTML/CSS;JavaScript;SQL
+79196,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+79197,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Rust;TypeScript
+79198,HTML/CSS;JavaScript;PHP;SQL
+79199,Bash/Shell/PowerShell;Java;SQL
+79200,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79201,Java;TypeScript
+79202,Bash/Shell/PowerShell;Python
+79203,C;C++;Java;Python
+79204,C#;HTML/CSS;Java;JavaScript;Python
+79205,JavaScript;PHP
+79206,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+79208,C#;Java;TypeScript
+79209,C++;C#;HTML/CSS;JavaScript;Rust;TypeScript;Other(s):
+79210,C#;HTML/CSS
+79211,Assembly;Bash/Shell/PowerShell;C++;C#;Python;Other(s):
+79212,Bash/Shell/PowerShell;C++;Objective-C;Python;TypeScript
+79213,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+79214,C;HTML/CSS;Java
+79215,HTML/CSS;JavaScript;SQL;TypeScript
+79216,C#;HTML/CSS;JavaScript;PHP;SQL
+79217,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+79218,C#;F#;JavaScript;TypeScript
+79219,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+79220,Bash/Shell/PowerShell;SQL;VBA
+79221,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;SQL
+79222,HTML/CSS;Python
+79223,C#;HTML/CSS;JavaScript;SQL
+79224,Assembly;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+79225,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+79226,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+79227,HTML/CSS;JavaScript;PHP
+79228,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+79229,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+79230,PHP;SQL
+79231,Bash/Shell/PowerShell;C;C++;Python
+79232,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79233,JavaScript;SQL
+79234,HTML/CSS;JavaScript;PHP
+79235,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+79236,Java;JavaScript;PHP;SQL
+79238,C#;HTML/CSS;JavaScript;SQL
+79239,HTML/CSS;Python
+79240,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+79241,C++;HTML/CSS;JavaScript;PHP;R;Scala;SQL;TypeScript
+79242,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79243,Java;Kotlin
+79244,C#;HTML/CSS;SQL;TypeScript
+79245,C#;Java
+79246,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;WebAssembly
+79247,HTML/CSS;Java;JavaScript;SQL;TypeScript
+79248,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+79249,JavaScript;Scala;SQL;TypeScript;Other(s):
+79250,C++;Java;Python
+79251,Bash/Shell/PowerShell;C;C++;Python
+79252,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+79253,C++;HTML/CSS;Java;JavaScript;Python
+79254,Bash/Shell/PowerShell;C;C++;Python
+79255,Bash/Shell/PowerShell
+79256,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL
+79257,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+79258,C#;HTML/CSS;Java;PHP
+79259,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+79260,Java
+79261,Bash/Shell/PowerShell;C;C++;Python;R
+79262,HTML/CSS;JavaScript;PHP;SQL
+79263,C++;Go;Java;JavaScript
+79264,HTML/CSS;JavaScript;Ruby;SQL
+79265,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;Other(s):
+79266,Bash/Shell/PowerShell;JavaScript
+79267,Bash/Shell/PowerShell;C++;Java;Ruby
+79269,C#;JavaScript;SQL
+79270,C#;JavaScript;PHP;SQL;TypeScript
+79271,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Rust;SQL;TypeScript;WebAssembly;Other(s):
+79272,HTML/CSS;JavaScript;PHP
+79273,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+79274,HTML/CSS;JavaScript
+79275,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+79276,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+79277,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+79278,Assembly;Objective-C
+79279,HTML/CSS;JavaScript;PHP
+79280,C#
+79281,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+79282,Java;Python
+79283,C#;JavaScript;Python
+79284,Assembly;Python
+79285,Bash/Shell/PowerShell;C#;SQL
+79286,C++;C#;HTML/CSS;JavaScript
+79287,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+79288,HTML/CSS;JavaScript;PHP
+79289,C++;C#;HTML/CSS;JavaScript;SQL;VBA
+79290,C#;HTML/CSS;Java;SQL;VBA
+79291,Go;HTML/CSS;JavaScript;SQL
+79292,C++;C#;HTML/CSS;Java;JavaScript;SQL
+79293,C++;C#;Java;JavaScript;Python
+79294,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;PHP;SQL
+79295,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Rust;SQL;TypeScript
+79296,C#;HTML/CSS;JavaScript
+79297,HTML/CSS;JavaScript;Ruby
+79298,PHP;Ruby
+79299,Python
+79300,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79301,Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;PHP;Python;R;Rust;Other(s):
+79302,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+79303,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+79304,HTML/CSS;Java;JavaScript;SQL
+79305,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript
+79306,Assembly;C#;Java;Python;VBA;Other(s):
+79307,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79308,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79309,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+79310,HTML/CSS;JavaScript;PHP;SQL;VBA
+79311,JavaScript;Python;TypeScript
+79312,C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Scala;SQL
+79313,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+79314,HTML/CSS;Java;JavaScript
+79315,HTML/CSS;Java;JavaScript;TypeScript
+79316,C++;Java
+79317,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79318,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Kotlin;SQL;TypeScript
+79319,Python
+79320,PHP
+79321,C#;HTML/CSS;JavaScript;SQL
+79322,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+79323,HTML/CSS;JavaScript;Python;SQL
+79324,C;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;Rust
+79325,Bash/Shell/PowerShell;Java
+79326,C++
+79327,C#;Objective-C;SQL;Swift;Other(s):
+79328,Java;JavaScript;Python
+79329,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+79330,HTML/CSS;JavaScript;Swift;TypeScript
+79331,HTML/CSS;JavaScript;PHP
+79332,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+79333,Assembly;C;C++;Go;Python;R;Other(s):
+79334,Java;SQL
+79335,C++;Python;Swift;Other(s):
+79336,Scala
+79337,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+79338,C++;C#;Java;Other(s):
+79339,C;C++;C#;HTML/CSS;Python;Ruby
+79340,C;C++;Python;Other(s):
+79341,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79342,Bash/Shell/PowerShell;C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift
+79343,HTML/CSS
+79344,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+79345,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+79346,C#
+79347,Python
+79348,HTML/CSS;JavaScript;SQL;Other(s):
+79349,C#;HTML/CSS;JavaScript;SQL
+79350,Java;Objective-C
+79351,C;HTML/CSS;Java;JavaScript;TypeScript
+79352,C++;HTML/CSS;Java;JavaScript
+79353,C;C++;C#;HTML/CSS;Java;Kotlin;PHP;SQL
+79355,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;R;SQL
+79356,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+79357,SQL
+79358,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+79359,Bash/Shell/PowerShell;JavaScript;Python;SQL
+79360,C#;HTML/CSS;JavaScript;Swift
+79361,Assembly;Bash/Shell/PowerShell;C;Python
+79362,HTML/CSS;JavaScript;Python;SQL
+79363,Clojure
+79364,C;C++;Python
+79365,Assembly;Bash/Shell/PowerShell;C;C++;C#
+79366,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+79367,HTML/CSS;JavaScript;Python;SQL
+79368,JavaScript;PHP;Python;SQL
+79369,HTML/CSS;JavaScript
+79370,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+79371,Python
+79372,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+79373,Java
+79374,Python;VBA
+79375,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79376,C;C#;HTML/CSS;JavaScript;Python
+79377,Bash/Shell/PowerShell;C#;Java;JavaScript;Scala
+79378,C;C++;C#;Java;JavaScript;Objective-C;SQL
+79379,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL;TypeScript
+79380,Bash/Shell/PowerShell;C#;Python;SQL
+79382,Assembly;HTML/CSS;Java;JavaScript;SQL
+79383,HTML/CSS;JavaScript;SQL
+79384,C#;HTML/CSS;Java;JavaScript;PHP
+79385,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+79386,Bash/Shell/PowerShell;C;Java;Objective-C;Python;SQL
+79387,HTML/CSS;JavaScript;PHP
+79388,HTML/CSS;JavaScript;Ruby;SQL
+79389,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+79390,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+79391,C#;HTML/CSS;JavaScript;Python;SQL
+79392,HTML/CSS;JavaScript;Ruby
+79393,Python;R
+79394,Assembly;Bash/Shell/PowerShell;C;C++;C#;PHP;Python;SQL;TypeScript
+79395,C;HTML/CSS;JavaScript;TypeScript
+79396,Java;JavaScript
+79397,HTML/CSS;JavaScript
+79398,C;HTML/CSS;JavaScript;SQL
+79399,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+79401,Java;JavaScript
+79402,HTML/CSS;Java;JavaScript;PHP;SQL
+79403,C#;HTML/CSS;JavaScript;SQL
+79404,C;C++;C#;Java;Python;VBA
+79405,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+79406,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+79407,C;JavaScript;Ruby
+79408,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+79409,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+79410,HTML/CSS;Java;JavaScript;Python;SQL
+79411,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+79412,C++;HTML/CSS;JavaScript;PHP;Python;R;TypeScript
+79413,C#
+79414,Java;JavaScript;Kotlin;PHP;SQL
+79415,C;C++;Java;Objective-C;Python;SQL;Swift;Other(s):
+79416,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+79417,C#;Clojure;F#;HTML/CSS;JavaScript;TypeScript
+79418,C#;HTML/CSS;Java;JavaScript;SQL
+79419,C++;HTML/CSS;Java;JavaScript;PHP;VBA
+79420,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+79421,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+79422,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+79423,C++;C#
+79424,HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+79425,Bash/Shell/PowerShell;Go;PHP;Python
+79426,Elixir;JavaScript;Ruby
+79427,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+79428,HTML/CSS;JavaScript;TypeScript
+79429,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+79430,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+79431,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+79432,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79433,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79434,C;C#;HTML/CSS;Java;JavaScript;Python
+79435,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+79436,C++
+79437,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+79438,Clojure;HTML/CSS;JavaScript
+79439,HTML/CSS;Java;JavaScript;SQL
+79440,Go;HTML/CSS;JavaScript;Python;Ruby;SQL;Swift;TypeScript
+79441,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+79442,C++;HTML/CSS;JavaScript;Python;Other(s):
+79443,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+79444,C
+79445,Python
+79446,Bash/Shell/PowerShell;Python;Other(s):
+79447,Java;Swift
+79448,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+79449,Bash/Shell/PowerShell;C#
+79450,Python
+79451,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+79452,C;C++;HTML/CSS;Java;Python;SQL
+79453,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;Ruby;Rust
+79454,Bash/Shell/PowerShell;Go
+79455,Go;HTML/CSS;JavaScript;Python;Rust
+79456,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+79457,HTML/CSS;Java;Kotlin;Python
+79458,Bash/Shell/PowerShell;Java;SQL
+79459,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python
+79460,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+79461,C++;Rust;Swift
+79462,C;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+79463,HTML/CSS;JavaScript
+79464,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+79465,C;C++
+79466,Erlang;Java;JavaScript;SQL
+79467,HTML/CSS;JavaScript;PHP;SQL
+79468,C;C++;Java;Python;SQL;Swift
+79469,C#;HTML/CSS;JavaScript;SQL
+79470,Java;Kotlin
+79471,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;VBA;WebAssembly
+79472,C++;C#;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79473,Assembly;C;Java;Python
+79474,Bash/Shell/PowerShell;C++;C#;VBA
+79475,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+79476,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+79477,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;TypeScript
+79478,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+79479,Bash/Shell/PowerShell;C++;Dart;Go;Python;Scala;SQL
+79480,HTML/CSS;JavaScript
+79481,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79482,C#;HTML/CSS;JavaScript;SQL
+79483,C#;TypeScript
+79484,Bash/Shell/PowerShell;C#;SQL
+79485,Bash/Shell/PowerShell;C#;Python;SQL
+79486,C#;HTML/CSS;JavaScript;Rust;TypeScript
+79487,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+79488,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+79489,HTML/CSS;Java;TypeScript
+79490,Bash/Shell/PowerShell;C;C++;Java;JavaScript;TypeScript;Other(s):
+79491,C#;HTML/CSS;JavaScript;TypeScript
+79492,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+79493,Other(s):
+79494,Dart;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+79495,C;Dart;Java;Swift
+79496,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+79497,HTML/CSS;JavaScript;TypeScript
+79498,C#;Java;Kotlin
+79499,Bash/Shell/PowerShell;Go;Java;Python;Other(s):
+79500,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+79501,HTML/CSS;Java;JavaScript;TypeScript
+79502,Bash/Shell/PowerShell;Python;SQL
+79503,C;C++;Java;Kotlin
+79504,Bash/Shell/PowerShell;Java;JavaScript;Python;Rust;Scala;TypeScript
+79505,HTML/CSS;JavaScript;PHP;SQL
+79506,C#;HTML/CSS;JavaScript;SQL
+79507,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79508,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;VBA
+79509,HTML/CSS;JavaScript;TypeScript
+79510,Java;SQL
+79511,C#;Java;Kotlin;Python;SQL;Swift
+79512,C++;Java;Python
+79513,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+79514,Bash/Shell/PowerShell;Python;R;SQL
+79515,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript;VBA
+79516,PHP
+79517,C#;HTML/CSS;JavaScript;TypeScript
+79518,C++;Java;Kotlin;Swift
+79519,Go;Java
+79520,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript;Other(s):
+79521,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+79522,Java;R;SQL
+79523,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+79524,C;C++
+79525,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+79526,Python;SQL
+79527,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL
+79528,Bash/Shell/PowerShell;Java
+79529,HTML/CSS;Kotlin;PHP;TypeScript
+79530,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+79531,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+79532,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL;Other(s):
+79533,HTML/CSS;Java;JavaScript;PHP;SQL
+79534,Bash/Shell/PowerShell;Go;Java;SQL
+79535,Java;JavaScript;TypeScript
+79536,Go;HTML/CSS;JavaScript;Ruby;SQL
+79537,Bash/Shell/PowerShell;C;C++;Python
+79538,HTML/CSS;PHP
+79539,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+79540,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+79541,C++;Python
+79542,Bash/Shell/PowerShell;C#;Java;SQL
+79543,JavaScript
+79544,C#;HTML/CSS;JavaScript;SQL
+79545,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+79546,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Ruby;SQL
+79547,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79548,Java
+79549,Assembly;Bash/Shell/PowerShell;C;Java;Kotlin;Python;SQL
+79551,C++;Python;R;Rust;SQL
+79552,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79553,C++;HTML/CSS;JavaScript;Ruby
+79554,C++;Python
+79555,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL;TypeScript
+79556,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+79557,PHP;Other(s):
+79558,Java;JavaScript
+79559,HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;TypeScript
+79560,Assembly;C++;C#;Python;Other(s):
+79561,Java;Kotlin
+79562,Java;Python;R
+79563,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+79564,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+79565,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79566,Assembly;Bash/Shell/PowerShell;C;C++;F#;Go;Java;JavaScript;Python;Rust
+79567,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+79568,C++;HTML/CSS;JavaScript;PHP;SQL
+79569,Java
+79570,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+79571,Bash/Shell/PowerShell;C;C++;Python
+79572,C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL
+79573,HTML/CSS;Java;JavaScript;TypeScript
+79574,Bash/Shell/PowerShell;C;C++;C#;Go;Python
+79575,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79576,C#;SQL
+79577,C;HTML/CSS;JavaScript;PHP;SQL
+79578,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+79579,HTML/CSS;JavaScript;PHP;Python;SQL
+79580,C;C++;C#;Java;JavaScript;Python;Other(s):
+79581,Bash/Shell/PowerShell;C;HTML/CSS;Python
+79582,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+79583,C++;Java;Objective-C;Swift
+79584,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+79585,HTML/CSS;JavaScript;Python;SQL
+79586,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+79587,C#;HTML/CSS;JavaScript;SQL
+79588,HTML/CSS;Java;JavaScript;SQL
+79589,Bash/Shell/PowerShell;C++;Python
+79590,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+79591,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79592,HTML/CSS;JavaScript;Ruby
+79593,C++;Python;R;SQL;VBA
+79594,C++;Erlang;Java;JavaScript;Python
+79595,Bash/Shell/PowerShell;C++;Python;Ruby;Rust
+79596,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+79597,Bash/Shell/PowerShell;Java;SQL
+79598,HTML/CSS;JavaScript;TypeScript
+79599,C#;HTML/CSS;JavaScript;SQL
+79600,Bash/Shell/PowerShell;C#;Python;Scala
+79601,HTML/CSS;PHP;Swift
+79602,Java;JavaScript
+79603,Bash/Shell/PowerShell;C;C++;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+79604,JavaScript
+79605,Bash/Shell/PowerShell;Clojure;Java
+79606,Java;Kotlin;Objective-C;SQL
+79607,C#;HTML/CSS;JavaScript;SQL
+79608,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+79609,C;C#;Go;HTML/CSS;JavaScript;PHP;SQL
+79610,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Scala;TypeScript
+79611,C#;Other(s):
+79613,Go;HTML/CSS;Java;JavaScript;PHP;SQL
+79614,C#;HTML/CSS;Java;JavaScript;R;TypeScript
+79615,PHP
+79617,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+79618,C;Objective-C;Swift
+79619,C#;Python
+79620,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+79621,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79622,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+79623,Bash/Shell/PowerShell;JavaScript;SQL;Swift;VBA
+79624,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79625,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;R
+79626,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+79627,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;TypeScript;VBA
+79628,JavaScript
+79629,C#;Clojure;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+79630,C#;Clojure;F#;Go;JavaScript;Scala;SQL
+79631,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+79632,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Kotlin;Objective-C;Python;Ruby;SQL;Swift;VBA
+79633,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;TypeScript
+79634,HTML/CSS;Java;JavaScript;PHP;SQL
+79635,Bash/Shell/PowerShell;Python;Rust
+79636,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;WebAssembly
+79637,HTML/CSS;JavaScript;Python
+79638,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79639,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;Python;Swift
+79640,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+79641,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+79642,Bash/Shell/PowerShell;C;C++;C#;Go;Python;Rust
+79643,C#;HTML/CSS;JavaScript;SQL;Other(s):
+79644,VBA
+79645,Assembly;C;C++;JavaScript;Objective-C
+79646,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Scala;SQL
+79647,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+79648,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+79649,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;SQL;Swift
+79650,Assembly;C;C++;C#;Elixir;HTML/CSS;JavaScript;Objective-C;PHP;SQL
+79651,Java;Scala
+79652,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;WebAssembly
+79654,C#;HTML/CSS;JavaScript;SQL;VBA
+79655,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby
+79656,Java;JavaScript;TypeScript
+79657,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+79658,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+79659,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+79660,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+79661,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+79662,Java;Python;SQL
+79663,C;C++;Rust;VBA
+79664,HTML/CSS;Java;JavaScript;Python;VBA
+79665,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+79666,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+79667,HTML/CSS;Java;JavaScript;SQL
+79668,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift;TypeScript
+79670,HTML/CSS;JavaScript;PHP
+79671,C#;SQL
+79672,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+79673,C++;HTML/CSS;Objective-C
+79674,C#;Python;R
+79675,C;C#;HTML/CSS;JavaScript
+79676,C#;HTML/CSS;JavaScript;SQL
+79677,HTML/CSS
+79678,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+79679,HTML/CSS;Java;JavaScript;PHP;Python;VBA
+79680,HTML/CSS;Java;JavaScript
+79681,HTML/CSS;JavaScript;PHP;Python;SQL
+79682,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79683,C#;SQL;TypeScript
+79684,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+79685,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+79686,C;C++;Java;Rust
+79687,C;HTML/CSS;JavaScript;PHP;SQL;Swift
+79688,Bash/Shell/PowerShell;Python;R
+79689,JavaScript;PHP
+79690,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL;VBA;Other(s):
+79691,C#;SQL
+79692,HTML/CSS;JavaScript;SQL;Other(s):
+79694,HTML/CSS;JavaScript;Ruby;SQL
+79695,C#;HTML/CSS;Java;JavaScript;Scala;TypeScript;Other(s):
+79696,Python
+79697,Python;Other(s):
+79698,HTML/CSS;JavaScript;Ruby;SQL
+79699,Java;R
+79700,C++;HTML/CSS;JavaScript
+79701,HTML/CSS;JavaScript;Python;R;SQL
+79702,C#;HTML/CSS;JavaScript;Python
+79703,Java;Other(s):
+79704,HTML/CSS;Java;JavaScript;Python;SQL
+79705,Java;Python;R
+79706,C;C++;Go;Java;JavaScript;Python;SQL
+79707,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+79708,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+79709,Elixir;HTML/CSS;JavaScript;PHP;Swift;TypeScript
+79710,C#;HTML/CSS;JavaScript
+79711,HTML/CSS;JavaScript;TypeScript
+79712,JavaScript;Python
+79713,HTML/CSS;JavaScript
+79714,C#;HTML/CSS;JavaScript;SQL
+79715,Bash/Shell/PowerShell;Python;Ruby;SQL
+79716,Java;JavaScript;Objective-C;SQL
+79717,Bash/Shell/PowerShell;C++;HTML/CSS;Python;Scala;SQL
+79718,JavaScript;Python;R
+79719,Bash/Shell/PowerShell;Java
+79720,JavaScript;Kotlin;Objective-C;Python;Swift
+79721,HTML/CSS;JavaScript;PHP
+79722,Assembly;C;C++;Python
+79723,Bash/Shell/PowerShell;C;Go;JavaScript;PHP;Python;SQL
+79724,C++;HTML/CSS;JavaScript;Kotlin;Other(s):
+79725,Bash/Shell/PowerShell;Java;Python;Scala
+79726,C++;C#;F#;SQL
+79727,Bash/Shell/PowerShell;HTML/CSS;Python;R
+79728,Objective-C;Ruby;SQL;Swift
+79729,HTML/CSS;JavaScript;PHP
+79731,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+79732,C++;Go;Python;SQL
+79733,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+79734,C;JavaScript;SQL
+79735,Bash/Shell/PowerShell;C;Python
+79736,HTML/CSS;R;SQL
+79737,C#;HTML/CSS;Java;JavaScript;Python
+79738,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;R;SQL
+79739,HTML/CSS;JavaScript;PHP;SQL
+79740,Java;Kotlin
+79741,C;JavaScript;SQL;Other(s):
+79742,C#;JavaScript;TypeScript
+79743,Assembly;Bash/Shell/PowerShell;C;C#
+79744,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+79745,C;C#;Dart;Java;Objective-C;SQL;Swift
+79746,HTML/CSS;Java;JavaScript;Python
+79747,JavaScript
+79748,Java;Kotlin
+79749,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+79750,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R
+79751,C;C++;HTML/CSS;Java;JavaScript;PHP
+79752,HTML/CSS;Java;JavaScript;SQL
+79753,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+79754,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+79755,HTML/CSS;JavaScript
+79756,SQL;Other(s):
+79757,HTML/CSS;JavaScript;Python
+79758,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Other(s):
+79759,HTML/CSS;JavaScript
+79761,HTML/CSS;JavaScript
+79762,HTML/CSS;Java;JavaScript;SQL
+79763,Bash/Shell/PowerShell;Java;SQL
+79764,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;SQL;TypeScript
+79765,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+79766,JavaScript;Python
+79767,HTML/CSS;PHP;Ruby;SQL
+79768,HTML/CSS;JavaScript;Other(s):
+79769,C#;HTML/CSS;JavaScript;SQL
+79770,Assembly;HTML/CSS;JavaScript;PHP;SQL
+79771,HTML/CSS;JavaScript;R;SQL;Other(s):
+79772,C;C++;C#;Go;Java;Rust;Scala;TypeScript
+79773,HTML/CSS;JavaScript;PHP
+79774,Assembly;Other(s):
+79775,HTML/CSS;JavaScript;PHP
+79776,C++;C#;Python
+79777,C#;HTML/CSS;SQL
+79778,C#;JavaScript;Python
+79779,Bash/Shell/PowerShell;Dart;JavaScript;Kotlin;Objective-C;Swift
+79780,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+79781,Assembly;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;WebAssembly
+79782,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+79783,Java;JavaScript;Python
+79784,Assembly;C#;HTML/CSS;JavaScript;SQL
+79785,Bash/Shell/PowerShell;C#;HTML/CSS;Python;SQL
+79786,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+79787,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79788,C;C++;Java;JavaScript;Kotlin
+79789,HTML/CSS;JavaScript;PHP
+79790,Other(s):
+79792,Bash/Shell/PowerShell;C++;C#;Erlang;HTML/CSS;Java;JavaScript;R;SQL;TypeScript;Other(s):
+79793,HTML/CSS;PHP;Python;R;SQL;VBA
+79794,Bash/Shell/PowerShell;Go;Python;Rust;SQL
+79796,Assembly;C++;HTML/CSS;Java;Python;R;Rust
+79797,Bash/Shell/PowerShell;C;C++;C#;Python;SQL;VBA
+79800,HTML/CSS;JavaScript
+79801,C#;HTML/CSS;SQL;Other(s):
+79802,Assembly;C#;PHP
+79803,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+79804,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+79805,Bash/Shell/PowerShell;Go;JavaScript;Ruby;Swift
+79806,C#;HTML/CSS;JavaScript;SQL
+79807,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79808,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;TypeScript
+79809,Java;JavaScript;Python;SQL;Other(s):
+79810,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+79811,C++;JavaScript
+79812,C++;C#;HTML/CSS;JavaScript
+79813,JavaScript;Ruby;SQL
+79814,C;C++;Python
+79815,Python
+79816,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript;SQL
+79817,C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+79818,C;Go;Python
+79819,Bash/Shell/PowerShell;Java;JavaScript;Python
+79820,Java;JavaScript
+79821,C#;HTML/CSS;JavaScript
+79822,C;JavaScript;Objective-C;SQL;Swift;TypeScript
+79823,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79824,C;C++;C#
+79825,C#;HTML/CSS;JavaScript;SQL
+79826,Python
+79827,Java;Python
+79828,HTML/CSS;JavaScript;TypeScript
+79829,HTML/CSS;JavaScript;PHP;Python;SQL
+79830,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Other(s):
+79831,HTML/CSS;JavaScript;SQL
+79832,C++;JavaScript;Python;Swift;TypeScript
+79833,C#;HTML/CSS;JavaScript;TypeScript
+79834,C;C++;HTML/CSS;Java;PHP;Python
+79835,HTML/CSS;JavaScript;Kotlin;TypeScript
+79836,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+79837,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+79838,Clojure;Elixir;Go;Scala
+79839,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+79840,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+79841,C++;Python
+79842,C++;C#;Java;Python;Other(s):
+79843,C#;HTML/CSS;PHP;Python;SQL;VBA
+79844,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+79845,Ruby
+79846,HTML/CSS;Java;JavaScript;Python
+79847,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+79848,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;R;SQL
+79849,Assembly;HTML/CSS;Python;R;SQL;Other(s):
+79850,Ruby
+79851,HTML/CSS;Java;JavaScript;Python;R;Swift;Other(s):
+79852,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+79853,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+79854,C;C++;Python;Rust;Scala
+79855,Bash/Shell/PowerShell;C;Python
+79856,C++;C#;HTML/CSS;JavaScript;R;Other(s):
+79857,C#;JavaScript;Python;SQL
+79858,HTML/CSS;JavaScript;PHP;SQL
+79859,C;C++;Java;Kotlin
+79860,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+79861,HTML/CSS;JavaScript;Python
+79862,JavaScript;PHP;SQL
+79863,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79864,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+79865,Assembly;Bash/Shell/PowerShell;C;C++;C#;SQL
+79866,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;SQL
+79867,C#;JavaScript;SQL;TypeScript
+79868,HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+79869,HTML/CSS;Java;JavaScript;SQL
+79870,HTML/CSS;JavaScript;Objective-C;Swift
+79871,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79872,HTML/CSS;JavaScript
+79873,C++;Python;Rust;Scala;SQL
+79874,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+79875,Bash/Shell/PowerShell;JavaScript;Python
+79876,C#;SQL
+79877,HTML/CSS;JavaScript;PHP;SQL
+79878,SQL;Other(s):
+79879,HTML/CSS;JavaScript
+79880,HTML/CSS;JavaScript;PHP;Python
+79881,C#
+79882,JavaScript;TypeScript
+79883,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+79884,Python;Rust
+79885,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79886,Go;Java;Kotlin
+79887,HTML/CSS;Java;JavaScript;PHP;SQL
+79888,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+79889,Bash/Shell/PowerShell;C;Go;Python
+79890,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+79891,C;C++;Clojure;Java
+79892,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL
+79893,Java
+79894,C#;HTML/CSS;JavaScript
+79895,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python
+79896,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79897,HTML/CSS;Java;JavaScript
+79898,HTML/CSS;Java;JavaScript;Python
+79899,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift
+79900,Bash/Shell/PowerShell;Go;Python
+79901,HTML/CSS;Python
+79902,Go;Java;JavaScript;PHP;Python;SQL
+79903,Clojure;Java;JavaScript;Kotlin;SQL
+79904,Java;PHP;Swift
+79905,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+79906,C;Elixir;HTML/CSS;JavaScript;PHP;Rust;Swift;Other(s):
+79907,Java;JavaScript;Kotlin;PHP
+79908,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript
+79909,Bash/Shell/PowerShell;Rust
+79910,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;VBA;Other(s):
+79911,HTML/CSS;Java;JavaScript;Python;SQL
+79912,Bash/Shell/PowerShell;Python
+79913,HTML/CSS;JavaScript;TypeScript
+79914,Java;Python;SQL
+79915,C#;JavaScript
+79916,C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+79917,Python;Other(s):
+79918,C++;Python
+79919,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+79920,HTML/CSS;JavaScript;TypeScript
+79921,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+79922,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+79923,C#;Go;JavaScript;Ruby
+79924,HTML/CSS;Python;SQL
+79925,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+79926,C;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+79927,Java;SQL
+79928,Java;JavaScript;SQL
+79929,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+79930,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin
+79931,C#;HTML/CSS;Java;JavaScript;SQL
+79932,C#;JavaScript
+79933,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+79934,HTML/CSS;JavaScript;PHP;SQL
+79935,Java;JavaScript;SQL
+79936,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+79937,C#;HTML/CSS;JavaScript;SQL
+79938,Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL;TypeScript
+79939,C#
+79940,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+79941,C#;HTML/CSS;Java;JavaScript;SQL
+79942,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL
+79943,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;R;SQL
+79944,Java;Kotlin;Objective-C;Swift
+79945,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP
+79946,HTML/CSS;JavaScript;Python;SQL;TypeScript
+79947,Python;SQL
+79948,Assembly;C;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+79949,Java
+79950,JavaScript;Python;Swift
+79951,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+79952,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+79953,C++;Java;Python
+79954,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+79955,Assembly;Bash/Shell/PowerShell;C;Python
+79956,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;Other(s):
+79957,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+79958,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79959,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+79960,HTML/CSS;JavaScript;TypeScript
+79961,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79962,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+79963,PHP;SQL
+79964,HTML/CSS;JavaScript;Python;TypeScript
+79965,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Python;SQL;WebAssembly;Other(s):
+79966,C#;HTML/CSS;Java;JavaScript
+79967,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+79968,Objective-C;Swift
+79969,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+79970,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+79971,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;Rust
+79972,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+79973,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+79974,HTML/CSS;JavaScript
+79975,Go;HTML/CSS;JavaScript;SQL
+79976,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+79977,C++;C#;HTML/CSS;JavaScript;PHP;Python
+79978,Python;R
+79979,HTML/CSS;Java;JavaScript;SQL
+79980,Python;R
+79981,C;C++;HTML/CSS;Python;Rust;SQL
+79982,HTML/CSS;JavaScript;Objective-C;Swift
+79983,C++;C#;SQL
+79984,C#;HTML/CSS;JavaScript;SQL
+79985,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+79986,C#;HTML/CSS;JavaScript;SQL
+79987,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+79988,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;SQL
+79989,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;PHP
+79990,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+79991,C;C++
+79992,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+79993,Java
+79994,C#;HTML/CSS;JavaScript;SQL;TypeScript
+79995,C#;HTML/CSS;JavaScript;Python;SQL
+79996,C#;Java;Kotlin;Other(s):
+79997,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+79998,HTML/CSS;Java;JavaScript;Objective-C;Ruby;SQL;Other(s):
+79999,Bash/Shell/PowerShell;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;TypeScript
+80000,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;R;Ruby;SQL
+80001,C#;Java;JavaScript;Python
+80002,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+80003,C;C++;C#;Java;Kotlin;SQL
+80004,C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80005,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+80006,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+80007,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80008,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+80009,Bash/Shell/PowerShell;C#;JavaScript;SQL
+80010,HTML/CSS;JavaScript;Python;Ruby;VBA
+80011,Java;JavaScript;SQL
+80012,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80013,Bash/Shell/PowerShell;C++;Python;Other(s):
+80014,C;C++;Dart;HTML/CSS;JavaScript;Python;SQL
+80015,C;HTML/CSS;Java;JavaScript;SQL
+80016,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80017,Bash/Shell/PowerShell;Other(s):
+80018,HTML/CSS;JavaScript;TypeScript
+80019,HTML/CSS;JavaScript;Python;R;Ruby;SQL;TypeScript
+80020,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+80021,C#;HTML/CSS;JavaScript;Python
+80022,Java;SQL
+80023,Kotlin;SQL;Swift
+80024,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+80025,C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+80026,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80027,R;SQL;VBA
+80028,Go;Java;JavaScript;R
+80029,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+80030,Java;Kotlin
+80031,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;WebAssembly;Other(s):
+80032,HTML/CSS;JavaScript;TypeScript
+80033,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+80034,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+80035,HTML/CSS;JavaScript;TypeScript
+80036,C#;HTML/CSS;JavaScript;PHP
+80037,C#;HTML/CSS;JavaScript;R;SQL
+80038,C#;Go;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+80039,Bash/Shell/PowerShell;C;C++;Go;Java;SQL
+80040,JavaScript;Python
+80041,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+80042,Bash/Shell/PowerShell;C#;F#;HTML/CSS;SQL
+80043,Bash/Shell/PowerShell;C++;Python
+80044,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+80045,C;C++;C#;Java;PHP;SQL
+80046,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+80047,C#;HTML/CSS;JavaScript;Python
+80048,HTML/CSS;JavaScript
+80049,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+80050,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+80051,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80052,HTML/CSS;JavaScript;PHP;SQL
+80053,C;Python
+80054,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80055,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;Swift
+80056,Bash/Shell/PowerShell;Java;JavaScript
+80057,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+80058,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+80059,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;TypeScript
+80060,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+80061,Python;R
+80062,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;Ruby
+80063,Bash/Shell/PowerShell;C#;Dart;Go;Kotlin;Python;R;SQL
+80064,Bash/Shell/PowerShell;C++;HTML/CSS;Python;Other(s):
+80065,C
+80066,C#;HTML/CSS;SQL;TypeScript
+80067,Bash/Shell/PowerShell;C;C++;C#;Python;SQL;VBA
+80068,Assembly;Bash/Shell/PowerShell;C;Python;Rust;SQL
+80069,Python;Other(s):
+80070,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+80071,Bash/Shell/PowerShell;C#;SQL
+80072,HTML/CSS;Java;JavaScript;VBA
+80073,Bash/Shell/PowerShell;C;Dart;HTML/CSS;JavaScript;PHP
+80074,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+80075,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+80076,Bash/Shell/PowerShell;JavaScript;Python;R
+80077,C;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python
+80078,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+80079,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80080,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+80081,Bash/Shell/PowerShell;Java;Ruby
+80082,C#;HTML/CSS;Java;JavaScript;Python;SQL
+80083,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;Swift;TypeScript
+80084,C;C++;Python;SQL
+80085,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+80086,C;C++;Java;PHP
+80087,Kotlin
+80088,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80089,C#;JavaScript;TypeScript
+80090,C#;HTML/CSS;SQL
+80091,HTML/CSS;JavaScript;Kotlin;PHP;Python;Ruby;Rust;TypeScript
+80092,C#;Java;JavaScript;Python;TypeScript
+80093,HTML/CSS;JavaScript
+80094,C;PHP;Rust
+80095,C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+80096,Bash/Shell/PowerShell;C;C++;Python
+80097,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+80098,HTML/CSS;Java;JavaScript;PHP;SQL
+80099,Clojure;Ruby;Other(s):
+80101,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+80102,C;HTML/CSS;JavaScript;PHP;TypeScript
+80103,HTML/CSS;Java;JavaScript;PHP;SQL
+80104,Java;JavaScript;Python;SQL;TypeScript
+80105,HTML/CSS;JavaScript;PHP;SQL
+80106,C;C++;Python;Other(s):
+80107,JavaScript;Ruby
+80108,C#;Java;SQL
+80109,HTML/CSS;Kotlin;Scala;TypeScript
+80110,Assembly;Bash/Shell/PowerShell;C;C++;Python;Other(s):
+80111,Bash/Shell/PowerShell;C;C++;Python
+80112,Bash/Shell/PowerShell;C++;C#;Java;SQL
+80113,Go;HTML/CSS;Java;JavaScript;PHP;TypeScript
+80114,Java;Other(s):
+80115,Bash/Shell/PowerShell;Python;R;SQL
+80117,C;C++;Python;Swift
+80119,Bash/Shell/PowerShell;Java;Kotlin;Python
+80120,HTML/CSS;JavaScript;SQL;TypeScript
+80121,HTML/CSS;JavaScript;PHP;SQL
+80122,Bash/Shell/PowerShell;Java;JavaScript;Python;Other(s):
+80123,C;C++;Objective-C;PHP;Python;SQL;Swift
+80124,C#;HTML/CSS;Java;JavaScript;SQL
+80125,HTML/CSS;JavaScript;PHP
+80126,HTML/CSS;JavaScript;PHP;SQL
+80127,HTML/CSS;JavaScript
+80128,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+80129,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+80130,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+80131,Java
+80132,Python
+80133,JavaScript;Python;Scala;SQL
+80134,HTML/CSS;JavaScript
+80135,Bash/Shell/PowerShell;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust;SQL
+80136,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+80137,Bash/Shell/PowerShell;Python;SQL
+80138,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80139,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;VBA
+80140,C#;SQL
+80141,Bash/Shell/PowerShell;C#;Python
+80142,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+80143,Bash/Shell/PowerShell;JavaScript
+80144,C#;HTML/CSS;Java;JavaScript;Other(s):
+80145,C++;C#;Java;Python
+80146,Bash/Shell/PowerShell;C++
+80147,Bash/Shell/PowerShell;Java;JavaScript;SQL
+80148,C;C++;Java;Kotlin
+80149,C#;HTML/CSS;Java;JavaScript;SQL
+80150,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+80151,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL
+80152,HTML/CSS;JavaScript;Ruby;SQL
+80153,C;C++;SQL
+80154,C#;Elixir;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+80155,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+80156,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80157,C#;HTML/CSS;JavaScript;SQL;Other(s):
+80158,Bash/Shell/PowerShell;C;C++;Python;Other(s):
+80159,C;Go;HTML/CSS;JavaScript;Python
+80160,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+80161,Bash/Shell/PowerShell;C;HTML/CSS;Python;SQL
+80162,HTML/CSS;Scala;SQL
+80163,Python
+80164,Clojure;Java;Ruby
+80165,Python;R;SQL;Other(s):
+80166,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby
+80167,C;C++;HTML/CSS;Java;JavaScript;Python
+80168,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+80169,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+80170,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+80171,HTML/CSS;Java;Python
+80172,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+80173,JavaScript
+80174,Bash/Shell/PowerShell;Python;R;SQL
+80175,Bash/Shell/PowerShell;C++;Python;R
+80176,HTML/CSS;JavaScript
+80177,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;R;SQL
+80178,Java;Kotlin
+80180,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+80181,C;C++;Python;SQL
+80182,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby
+80183,C++;C#;HTML/CSS;JavaScript;TypeScript
+80184,HTML/CSS;JavaScript;Python;SQL
+80185,Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+80186,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+80187,C;C++;HTML/CSS;JavaScript;Kotlin;Python;Other(s):
+80188,Bash/Shell/PowerShell;C#;JavaScript;SQL
+80189,Bash/Shell/PowerShell;C;Java;JavaScript;Objective-C;Swift
+80190,HTML/CSS;Java;JavaScript;SQL;Other(s):
+80191,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80192,Java;Kotlin;TypeScript
+80193,PHP;SQL;Other(s):
+80194,Java;JavaScript;R;SQL;VBA
+80195,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+80196,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+80197,HTML/CSS;JavaScript;Python;Ruby
+80198,HTML/CSS;JavaScript;Swift
+80199,Other(s):
+80200,Objective-C;Swift
+80201,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80202,HTML/CSS;JavaScript;Ruby;SQL
+80203,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80204,C#;F#;Go;HTML/CSS;JavaScript;PHP;Python
+80205,Go;JavaScript;PHP;Python;SQL
+80206,HTML/CSS;JavaScript
+80207,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+80208,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+80209,C#;HTML/CSS;JavaScript;SQL
+80210,Bash/Shell/PowerShell;Java;Python
+80211,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+80212,C#;HTML/CSS;Java;JavaScript;PHP
+80213,Python;Other(s):
+80214,Bash/Shell/PowerShell;C;C++;Java;Python
+80215,JavaScript;Swift
+80216,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala
+80217,Java;JavaScript
+80218,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+80219,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+80220,C;R
+80221,C++;HTML/CSS;JavaScript
+80222,Bash/Shell/PowerShell;Java;Scala;SQL
+80223,Python;R;Ruby;SQL
+80224,C#;SQL;TypeScript
+80225,Python;R;SQL;VBA;Other(s):
+80226,JavaScript;Objective-C;Python;Swift;TypeScript
+80227,Python;VBA
+80228,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+80229,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;SQL
+80230,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+80231,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+80232,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Python;SQL
+80233,HTML/CSS;JavaScript;Python;Scala;SQL
+80234,C++
+80235,C#;HTML/CSS;JavaScript;SQL
+80236,C;C++;HTML/CSS;PHP;SQL;VBA
+80237,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+80238,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+80239,Bash/Shell/PowerShell;Java;JavaScript;R;Scala;SQL
+80240,C#;HTML/CSS;JavaScript;SQL;VBA
+80241,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80242,Python
+80243,C;C++;C#
+80244,Bash/Shell/PowerShell;C;HTML/CSS;Python
+80245,HTML/CSS;Java;JavaScript;SQL;TypeScript
+80246,Java;SQL
+80247,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+80248,PHP
+80249,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;R;SQL
+80250,Java;SQL
+80251,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80252,Objective-C;Swift
+80253,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL
+80254,C++;C#;F#
+80255,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;VBA
+80256,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Ruby;Rust
+80257,Bash/Shell/PowerShell;Go;JavaScript;Python
+80258,C#;JavaScript;SQL
+80259,Bash/Shell/PowerShell;C#;F#;JavaScript;TypeScript
+80260,HTML/CSS;Java;JavaScript;PHP
+80261,C;Other(s):
+80262,Assembly;Bash/Shell/PowerShell;C;C++;Python
+80263,Bash/Shell/PowerShell;Python;R;SQL
+80264,Kotlin;Python
+80265,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+80266,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+80267,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+80268,C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+80269,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+80270,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+80271,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+80272,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+80273,SQL
+80274,Bash/Shell/PowerShell;Python
+80275,C++;HTML/CSS;Java;SQL
+80276,Bash/Shell/PowerShell;C++;C#;Python;SQL
+80277,HTML/CSS;Java;JavaScript;Python
+80278,Java;Python;SQL
+80279,Bash/Shell/PowerShell;Python;SQL;Other(s):
+80280,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Objective-C;SQL;Swift
+80281,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+80282,HTML/CSS;Java;SQL
+80283,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+80284,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80285,C#;Java;SQL;Other(s):
+80286,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+80287,Java;SQL
+80288,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Rust;SQL
+80289,HTML/CSS;Python
+80290,HTML/CSS;JavaScript;PHP;SQL
+80291,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL
+80292,R
+80293,C#;Java;Scala
+80294,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+80295,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+80296,C++;HTML/CSS;JavaScript;SQL;Other(s):
+80297,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;R;SQL
+80298,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;R;Scala;SQL
+80299,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby;Rust
+80300,C#;HTML/CSS;JavaScript;PHP;SQL
+80301,C#;JavaScript;SQL
+80302,HTML/CSS;JavaScript;SQL;Other(s):
+80303,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+80304,HTML/CSS;R
+80305,Assembly;Bash/Shell/PowerShell;C;C++;Python
+80306,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+80307,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+80308,JavaScript
+80309,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+80310,HTML/CSS;JavaScript;PHP;Python;SQL
+80311,Bash/Shell/PowerShell;C++;C#;Other(s):
+80312,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+80313,Bash/Shell/PowerShell;C;C#;HTML/CSS;PHP;Python
+80314,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+80315,HTML/CSS;JavaScript;Ruby
+80316,HTML/CSS;JavaScript;PHP
+80317,Java;Kotlin;SQL;Swift
+80318,HTML/CSS;Java;JavaScript;SQL
+80320,C#
+80321,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+80322,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+80323,Bash/Shell/PowerShell;HTML/CSS;Java
+80324,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;Other(s):
+80325,Python;Rust
+80326,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+80327,HTML/CSS;JavaScript
+80328,C++;C#
+80329,C;C++;Java;Other(s):
+80330,C++;C#;HTML/CSS;Java;JavaScript;Python
+80331,Java
+80332,C#
+80333,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80334,Python
+80335,Java;JavaScript;SQL
+80336,HTML/CSS;Java;Python;SQL
+80337,C#;HTML/CSS;JavaScript;SQL
+80338,C#;HTML/CSS;JavaScript;Python;SQL
+80339,Java;SQL
+80340,Assembly;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+80341,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+80342,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80343,JavaScript
+80344,JavaScript;Swift
+80345,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80346,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+80347,C++;C#;SQL
+80348,HTML/CSS;JavaScript
+80349,C;C++;C#;Erlang;HTML/CSS;JavaScript;Python;SQL;TypeScript
+80350,C#
+80351,C#
+80352,Bash/Shell/PowerShell;Python;Ruby
+80353,Bash/Shell/PowerShell;C;C++;Java;Python
+80354,C#;Python;SQL
+80355,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+80356,C#;HTML/CSS;JavaScript;PHP;SQL
+80357,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+80358,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+80359,C;C++;HTML/CSS;JavaScript;Python;TypeScript
+80360,C;C#;HTML/CSS;Java;JavaScript
+80361,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80362,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA;Other(s):
+80363,Python
+80364,C#;F#;HTML/CSS;JavaScript;TypeScript
+80365,Go;HTML/CSS;JavaScript;Other(s):
+80366,Java;JavaScript;Python;SQL
+80367,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+80368,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+80369,C;C#;JavaScript;Python
+80370,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;R;SQL
+80371,Assembly;C++;HTML/CSS
+80372,Bash/Shell/PowerShell;Go;Java;Python
+80373,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+80374,C;C++;HTML/CSS;JavaScript;PHP;SQL
+80375,HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+80376,C#;HTML/CSS;JavaScript;SQL
+80377,C#;HTML/CSS;JavaScript;SQL
+80378,C#;HTML/CSS;JavaScript;SQL
+80379,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+80380,C#;F#;Go;HTML/CSS;TypeScript
+80381,C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+80382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+80383,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Rust;TypeScript
+80384,Bash/Shell/PowerShell;C;Python;Other(s):
+80385,HTML/CSS;Java;JavaScript;Python;SQL
+80386,Python;Scala;SQL
+80387,HTML/CSS;Python;SQL
+80388,Python;SQL
+80389,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80390,HTML/CSS;Java;JavaScript;Swift
+80391,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;Swift
+80392,Bash/Shell/PowerShell;C;C++;PHP;SQL
+80393,HTML/CSS;Java;JavaScript;SQL
+80394,Java;Python;Scala;SQL
+80395,Bash/Shell/PowerShell;C++;HTML/CSS;Python;R;SQL;TypeScript;Other(s):
+80396,HTML/CSS;JavaScript
+80397,Assembly;Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+80398,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript;VBA
+80399,C;C++;C#;HTML/CSS;JavaScript;Python
+80400,C#;HTML/CSS;Java;JavaScript;SQL
+80401,Java;Kotlin
+80402,HTML/CSS;JavaScript;PHP
+80403,C#;HTML/CSS;JavaScript;Other(s):
+80404,Bash/Shell/PowerShell;Go;SQL
+80405,HTML/CSS;Java;JavaScript;Python;SQL
+80406,HTML/CSS;JavaScript;PHP;SQL
+80407,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;SQL
+80408,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+80409,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+80410,HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+80411,C;C++;Java
+80412,Go;Java;Python;SQL
+80413,C++;Objective-C
+80414,HTML/CSS;JavaScript
+80415,Python;R;SQL;VBA;Other(s):
+80416,Python;Ruby;SQL
+80417,C++;C#;HTML/CSS;JavaScript;SQL;Swift
+80418,C#;HTML/CSS;JavaScript;TypeScript
+80419,C#;HTML/CSS;JavaScript;Kotlin;SQL
+80420,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+80421,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+80422,Bash/Shell/PowerShell;JavaScript;Python;SQL;TypeScript
+80423,Java;Scala;SQL
+80424,C;C++;HTML/CSS;Python;Rust
+80425,HTML/CSS;JavaScript;PHP
+80426,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+80427,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+80428,C#;Java;SQL
+80429,Bash/Shell/PowerShell;Python;Scala;SQL
+80430,Go;JavaScript
+80431,Java;JavaScript;Kotlin;Scala
+80432,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80433,Python;R;SQL
+80434,C++;C#;HTML/CSS;Java;SQL;VBA
+80435,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+80436,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+80437,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80438,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80439,Python;SQL;Other(s):
+80440,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+80441,C#;HTML/CSS;JavaScript;PHP;SQL
+80442,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+80443,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;SQL;WebAssembly
+80445,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+80446,C#;HTML/CSS;Java;SQL;VBA;Other(s):
+80447,JavaScript;PHP;Other(s):
+80448,Java;JavaScript;SQL;TypeScript;WebAssembly
+80449,C#;HTML/CSS;JavaScript;SQL
+80450,C++;C#;HTML/CSS;Python
+80451,C;C++;Go;HTML/CSS;Java;JavaScript;PHP
+80452,HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+80453,Assembly;Bash/Shell/PowerShell;C;Dart;Elixir;HTML/CSS;JavaScript;Swift;TypeScript
+80454,C#;HTML/CSS;JavaScript;Rust;SQL
+80455,C;C++;HTML/CSS;JavaScript;Python;SQL
+80456,Objective-C;Swift
+80457,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80458,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;Swift;TypeScript
+80459,Ruby;SQL
+80460,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+80461,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80462,PHP
+80463,HTML/CSS;Python;Ruby;WebAssembly
+80464,C#;HTML/CSS;JavaScript;TypeScript
+80465,JavaScript;PHP;SQL;Swift
+80466,C;C++;Java;JavaScript;Python;TypeScript
+80467,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust
+80468,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+80469,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80470,Java
+80471,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Other(s):
+80472,HTML/CSS;JavaScript;Python;SQL
+80473,Scala
+80474,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+80475,C++;Erlang;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+80476,C++;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+80477,Bash/Shell/PowerShell;Java;Python;SQL
+80478,HTML/CSS;JavaScript;PHP;SQL
+80479,Assembly;C++;Java
+80480,JavaScript;Python
+80481,C++;HTML/CSS;JavaScript
+80482,Java
+80483,C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Rust;TypeScript
+80484,Java;JavaScript
+80485,HTML/CSS;Java;JavaScript;Python
+80486,Java;SQL
+80487,Bash/Shell/PowerShell;Java;Kotlin;Scala;SQL
+80488,Bash/Shell/PowerShell;Python
+80489,Assembly;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;VBA
+80490,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;Java;JavaScript;SQL
+80491,C;C++;C#;HTML/CSS;JavaScript;SQL
+80492,HTML/CSS;Java;JavaScript;SQL
+80493,Bash/Shell/PowerShell;Python
+80494,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+80495,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;Scala
+80496,JavaScript;SQL
+80497,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+80498,Java;Kotlin
+80499,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+80500,Clojure;HTML/CSS
+80501,HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+80502,C#;HTML/CSS;SQL;TypeScript
+80503,Bash/Shell/PowerShell;Python
+80504,Bash/Shell/PowerShell;HTML/CSS;Python
+80505,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+80506,Bash/Shell/PowerShell;Elixir;HTML/CSS;Python;SQL;Other(s):
+80507,HTML/CSS;Java;JavaScript;Ruby;SQL
+80508,C#;F#;JavaScript
+80509,HTML/CSS;JavaScript;Python;TypeScript
+80510,Bash/Shell/PowerShell;Elixir;Erlang;Ruby
+80511,HTML/CSS;JavaScript;Python;R
+80512,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+80513,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80514,Bash/Shell/PowerShell;Elixir;Python
+80515,C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;Other(s):
+80516,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+80517,Bash/Shell/PowerShell;C;C++;C#;Go;Python
+80518,HTML/CSS;JavaScript;PHP;SQL;VBA
+80519,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+80520,C;HTML/CSS;Java;Python
+80521,HTML/CSS;JavaScript;VBA
+80522,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+80523,Python;SQL
+80524,C;C++;HTML/CSS;JavaScript;PHP;TypeScript
+80525,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript
+80526,Assembly;C;C++;Dart;Java;JavaScript;PHP;Python;SQL
+80527,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+80528,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+80529,C;C++;HTML/CSS;Java;PHP;Python;SQL
+80530,Java
+80531,HTML/CSS;JavaScript;PHP;SQL
+80532,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+80533,C#;HTML/CSS;JavaScript;SQL;VBA
+80534,Bash/Shell/PowerShell;Python
+80535,TypeScript;Other(s):
+80537,C++;C#;Go;HTML/CSS;JavaScript
+80538,C;C++;Other(s):
+80539,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;SQL
+80540,Bash/Shell/PowerShell;HTML/CSS
+80541,HTML/CSS;Java;JavaScript;SQL
+80542,C++;SQL
+80543,Bash/Shell/PowerShell;Java;Other(s):
+80544,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80545,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80546,C#;HTML/CSS;JavaScript;PHP;SQL
+80547,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+80548,Assembly
+80549,Bash/Shell/PowerShell;HTML/CSS;Python;Rust;Scala
+80550,Clojure
+80551,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+80552,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80553,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+80554,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;R;Other(s):
+80555,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+80556,Bash/Shell/PowerShell;C;C++;Go;Java;Python;R;Scala
+80557,C#;F#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+80558,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+80559,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+80560,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+80561,HTML/CSS;Java;Python;R;SQL
+80562,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+80563,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+80564,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Scala;SQL
+80565,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+80566,HTML/CSS;Java;Python;R;Other(s):
+80567,C#;Java;JavaScript;SQL;TypeScript
+80568,PHP
+80569,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+80570,HTML/CSS;Java;JavaScript;Python;TypeScript
+80571,Java;Kotlin;Ruby;SQL;Swift
+80572,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+80573,Bash/Shell/PowerShell;Python;SQL;Other(s):
+80574,C++;C#;Clojure;HTML/CSS;JavaScript;PHP;Rust;TypeScript
+80575,Bash/Shell/PowerShell;JavaScript
+80576,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80577,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80578,C;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+80579,C#
+80580,C#;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+80581,Bash/Shell/PowerShell;C;Go;Python;Swift
+80582,JavaScript;Python
+80583,JavaScript;SQL
+80584,C;HTML/CSS;JavaScript;Python
+80585,C#;SQL
+80586,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL;VBA
+80587,HTML/CSS;Java;JavaScript
+80588,Assembly;C++;HTML/CSS;Java
+80589,Assembly;C;C++;HTML/CSS;Java;JavaScript;Other(s):
+80590,HTML/CSS;Java;JavaScript;PHP;SQL
+80591,HTML/CSS;JavaScript;Other(s):
+80592,Bash/Shell/PowerShell;Java
+80593,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+80594,C;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80595,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+80596,HTML/CSS;JavaScript;Ruby
+80597,Assembly;C;C#
+80598,Bash/Shell/PowerShell;Java;JavaScript;Python;R;Ruby;Rust;SQL;TypeScript
+80599,HTML/CSS;Java;JavaScript;SQL
+80600,JavaScript;Python;SQL
+80601,C;HTML/CSS;Java;JavaScript;Python
+80602,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift
+80603,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80604,Bash/Shell/PowerShell;Other(s):
+80605,C;C++;HTML/CSS;Java;JavaScript;SQL
+80606,Bash/Shell/PowerShell;Python;R
+80607,C#;JavaScript;SQL;TypeScript
+80608,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+80609,Assembly;Bash/Shell/PowerShell;C;Java
+80610,Bash/Shell/PowerShell;C++;C#;SQL;Other(s):
+80611,HTML/CSS;JavaScript;PHP;SQL
+80612,HTML/CSS;JavaScript;PHP
+80613,C#;HTML/CSS;JavaScript;SQL
+80614,C++;C#;Java;JavaScript;Python;Swift
+80615,C++;HTML/CSS;Java;JavaScript
+80616,C++;HTML/CSS;JavaScript
+80617,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+80618,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+80619,Bash/Shell/PowerShell;C#;JavaScript;Python;SQL
+80620,C;C#;HTML/CSS;Java;JavaScript;SQL
+80621,C++;C#;HTML/CSS;Java;JavaScript;SQL
+80622,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;TypeScript
+80623,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80624,HTML/CSS;JavaScript;Python;SQL
+80625,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80626,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python
+80627,C++;HTML/CSS;JavaScript;PHP;SQL
+80628,HTML/CSS
+80629,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+80630,C++;C#;SQL;VBA
+80631,C++;HTML/CSS;JavaScript;PHP;Python
+80632,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+80633,Assembly;Bash/Shell/PowerShell;C;Elixir;Erlang;HTML/CSS;Java;JavaScript;SQL
+80634,Java
+80635,C++;Java;Python;Scala;SQL
+80636,Java;JavaScript;SQL;TypeScript
+80637,C#;HTML/CSS;JavaScript
+80638,C#;SQL
+80639,Bash/Shell/PowerShell;Go;Ruby;SQL
+80640,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+80641,C#;HTML/CSS;JavaScript;Python;SQL
+80642,HTML/CSS;Java;Python;SQL
+80643,C#;JavaScript;TypeScript
+80644,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+80645,Dart;JavaScript;TypeScript
+80646,C#;JavaScript;TypeScript
+80647,Python;SQL;VBA
+80648,Assembly;C++;Python;Other(s):
+80649,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+80650,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;SQL
+80651,HTML/CSS;Java;JavaScript
+80652,C;C++;HTML/CSS;Java;JavaScript;TypeScript
+80653,HTML/CSS;PHP;SQL
+80654,Bash/Shell/PowerShell;C#;JavaScript
+80655,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+80656,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+80657,C++;C#;Python
+80658,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+80659,C#;JavaScript;SQL;TypeScript
+80660,Java
+80661,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;VBA
+80662,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80663,C#;HTML/CSS;Java;JavaScript
+80664,C#;JavaScript;TypeScript
+80665,C#
+80666,C;C++;C#;Java
+80667,C#;HTML/CSS;JavaScript;SQL;VBA
+80668,Python
+80669,C#;Java;Kotlin
+80670,C#;HTML/CSS;JavaScript;SQL
+80672,HTML/CSS;Java;JavaScript;Scala
+80673,HTML/CSS;Java;JavaScript;PHP
+80674,C++;HTML/CSS;Python
+80675,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+80676,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+80677,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+80678,C;F#;R;Other(s):
+80679,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+80680,Go;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+80681,C++;Python
+80682,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;R
+80683,C++;C#;Java;JavaScript
+80684,C;C++;Java;Kotlin;Python;Ruby;Scala;SQL
+80685,JavaScript
+80686,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R
+80687,HTML/CSS;JavaScript;Python;SQL
+80688,HTML/CSS;JavaScript;PHP;Python
+80689,Bash/Shell/PowerShell;Java;SQL
+80690,HTML/CSS;JavaScript;Python;SQL
+80691,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+80692,Java
+80693,C#;SQL;Other(s):
+80694,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+80695,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80696,Bash/Shell/PowerShell;Java;SQL
+80697,HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+80698,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+80699,HTML/CSS;JavaScript;PHP
+80700,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+80701,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+80702,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+80703,Java;Objective-C;Python;SQL
+80704,C++;HTML/CSS;Java;JavaScript;Python;Ruby
+80705,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+80706,C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+80707,Java;PHP;SQL
+80708,HTML/CSS;JavaScript;SQL
+80709,C#;Java;JavaScript;Python;SQL
+80710,HTML/CSS;JavaScript;PHP;SQL
+80711,C++;Java;Python;R
+80712,Java;Kotlin
+80713,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80714,C#;HTML/CSS;Java;JavaScript;Python;SQL
+80715,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+80716,Bash/Shell/PowerShell;Go;Java;JavaScript;PHP;WebAssembly
+80717,C#;JavaScript;Other(s):
+80718,Java;JavaScript;PHP;TypeScript
+80719,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;R;Ruby;SQL;TypeScript;Other(s):
+80720,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Rust;SQL
+80721,Bash/Shell/PowerShell;Scala
+80722,Bash/Shell/PowerShell;C;C++;Python
+80723,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+80724,Bash/Shell/PowerShell;C;JavaScript;Python;R;TypeScript
+80725,HTML/CSS;JavaScript;PHP;Python
+80726,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+80727,C#;HTML/CSS;Python;SQL;Other(s):
+80728,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Other(s):
+80729,Assembly;HTML/CSS;JavaScript;Python;TypeScript
+80730,JavaScript;Ruby;SQL
+80731,C++;C#;F#;Java
+80732,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+80733,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+80734,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+80735,Assembly;C;C++;HTML/CSS;Java;Python;Ruby
+80736,HTML/CSS;JavaScript;Python;SQL;Other(s):
+80737,C#;HTML/CSS;JavaScript
+80738,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+80739,Assembly;C;C#;Other(s):
+80740,Bash/Shell/PowerShell;C++;Python;SQL
+80741,C#;HTML/CSS;JavaScript
+80742,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+80743,C#;HTML/CSS;JavaScript;SQL
+80744,HTML/CSS;Java;JavaScript;SQL
+80745,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Swift
+80746,JavaScript;PHP
+80747,C#;Other(s):
+80748,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Scala
+80749,Elixir;Go;HTML/CSS;JavaScript;Kotlin;Other(s):
+80750,HTML/CSS;Java;JavaScript;Kotlin;PHP
+80751,Java;JavaScript;Python;SQL
+80752,HTML/CSS;JavaScript
+80753,C;C++
+80754,C++;C#;Java;Kotlin
+80755,HTML/CSS;JavaScript;PHP;Ruby
+80756,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL
+80757,HTML/CSS;PHP
+80758,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+80759,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+80760,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;TypeScript
+80761,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+80762,HTML/CSS;JavaScript;PHP;SQL;VBA
+80763,HTML/CSS;JavaScript
+80764,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+80765,HTML/CSS;JavaScript
+80766,HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;WebAssembly;Other(s):
+80767,HTML/CSS;Swift
+80768,Bash/Shell/PowerShell;Go;Java;JavaScript;Python
+80769,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80770,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+80771,C#;Python
+80772,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+80773,Bash/Shell/PowerShell;C#;Go;JavaScript;Ruby;SQL
+80774,Assembly;C;C++;Python;VBA;Other(s):
+80775,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+80776,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+80777,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;VBA
+80778,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+80779,C;HTML/CSS;JavaScript;Python;SQL;Swift
+80780,C;C++;Go;HTML/CSS;Java;JavaScript;SQL
+80781,C#;HTML/CSS;JavaScript;SQL
+80782,C#;HTML/CSS;JavaScript;Python;SQL
+80783,Java;JavaScript;PHP;SQL
+80784,HTML/CSS;Java;JavaScript;SQL
+80785,C;C++;Java
+80786,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+80787,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+80788,Java;Python
+80789,Bash/Shell/PowerShell;Ruby;Other(s):
+80790,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80791,C#;Java;Python
+80792,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80793,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+80794,Java;Kotlin
+80795,C
+80796,Bash/Shell/PowerShell;C;C++;Python
+80797,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+80799,C;C++
+80800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP;Python;TypeScript
+80801,HTML/CSS;JavaScript;PHP
+80802,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+80803,Bash/Shell/PowerShell;C#;JavaScript;Python
+80804,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+80805,Java
+80806,C#;JavaScript;SQL
+80807,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+80808,Python;R;SQL
+80809,Java;Kotlin
+80810,C;JavaScript;SQL;Other(s):
+80811,Bash/Shell/PowerShell;C#;Python;SQL
+80812,Bash/Shell/PowerShell;C;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+80813,C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;Other(s):
+80814,HTML/CSS;JavaScript
+80815,Bash/Shell/PowerShell;C;Python;Other(s):
+80816,C++;HTML/CSS;JavaScript;TypeScript
+80817,Python;SQL
+80818,HTML/CSS;JavaScript;PHP;SQL;VBA
+80819,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python
+80820,Bash/Shell/PowerShell;Java;JavaScript;Scala;TypeScript
+80821,C++;C#;HTML/CSS;JavaScript;Python;SQL
+80822,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+80823,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+80824,Bash/Shell/PowerShell;Java;SQL
+80825,C;HTML/CSS;JavaScript;PHP;SQL
+80826,C#;Swift
+80827,C#;HTML/CSS;JavaScript;SQL
+80828,C#;SQL
+80829,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+80830,C#;Java;JavaScript;Python;SQL;TypeScript
+80831,Bash/Shell/PowerShell;Go;HTML/CSS;SQL
+80832,C++;Java;Swift
+80833,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript
+80834,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+80835,Objective-C;Swift
+80836,C#;SQL
+80837,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Ruby
+80838,HTML/CSS;JavaScript;Python;Ruby;SQL
+80839,Python;R;Scala;SQL
+80840,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+80841,Java;Python
+80842,C#;HTML/CSS;JavaScript;TypeScript
+80843,C++;JavaScript;Python
+80844,C;C++;HTML/CSS;JavaScript;Python;SQL
+80845,Go;HTML/CSS;Java;JavaScript;TypeScript
+80846,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+80847,C#;Java;JavaScript;Kotlin;Rust
+80848,HTML/CSS;JavaScript;PHP
+80849,PHP
+80850,Bash/Shell/PowerShell;C++;Python;SQL
+80851,C#;Java
+80852,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+80853,C++
+80854,C#;HTML/CSS;Objective-C
+80855,Bash/Shell/PowerShell;C++
+80857,R;SQL
+80858,Assembly;C;HTML/CSS;Java;Python
+80859,C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+80860,PHP;Python;SQL
+80861,Java;JavaScript
+80862,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+80863,HTML/CSS;JavaScript;Python
+80864,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80865,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Swift;TypeScript
+80866,HTML/CSS;JavaScript;Rust;TypeScript
+80867,HTML/CSS;JavaScript
+80868,Bash/Shell/PowerShell;C#;F#;JavaScript;Python;SQL;VBA
+80869,PHP;Swift
+80870,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80871,HTML/CSS;JavaScript;Python;VBA
+80872,Bash/Shell/PowerShell;C;Java;Python;SQL;Other(s):
+80874,C#;HTML/CSS;JavaScript;PHP;SQL
+80875,Python;R
+80876,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript
+80877,Bash/Shell/PowerShell;Java;Python;Ruby
+80878,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+80879,Java;SQL
+80880,C;C++;Java;Python
+80881,HTML/CSS;JavaScript;Python
+80882,C;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+80883,Bash/Shell/PowerShell;C#;Objective-C;Swift
+80884,Bash/Shell/PowerShell;Java;SQL
+80885,R
+80886,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;VBA;WebAssembly
+80887,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;Swift
+80888,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+80889,Java;Kotlin
+80890,Bash/Shell/PowerShell;Go;Python;R;Ruby;SQL
+80891,Java;JavaScript
+80892,Assembly;C;C++;HTML/CSS;Java;SQL
+80893,Bash/Shell/PowerShell;JavaScript;PHP
+80894,Java;Kotlin
+80895,JavaScript;PHP
+80896,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+80897,HTML/CSS;JavaScript;PHP;SQL
+80898,C#;HTML/CSS;JavaScript;TypeScript
+80899,Bash/Shell/PowerShell;C#;F#;JavaScript;SQL
+80900,Java;Kotlin
+80901,C;C++;Java;Python
+80902,Bash/Shell/PowerShell;Python;R;SQL
+80903,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Python;SQL
+80904,HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+80905,HTML/CSS;JavaScript;TypeScript
+80906,C++;C#;Java;JavaScript;Python
+80907,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;TypeScript
+80908,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80909,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+80910,C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+80911,HTML/CSS;Java;JavaScript;SQL
+80912,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+80913,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+80914,C#;HTML/CSS;SQL;TypeScript
+80915,HTML/CSS;JavaScript;Python
+80916,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80917,HTML/CSS;JavaScript
+80918,Java;SQL
+80919,HTML/CSS;Java;JavaScript
+80920,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+80921,HTML/CSS;JavaScript;Ruby;SQL
+80922,Python;SQL
+80923,C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+80924,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+80925,HTML/CSS;JavaScript;SQL;TypeScript
+80926,Python
+80927,Bash/Shell/PowerShell;C
+80928,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL
+80929,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80930,HTML/CSS;PHP;Python;SQL
+80931,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+80932,HTML/CSS;Ruby
+80933,Bash/Shell/PowerShell;C;C#;Clojure;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+80934,HTML/CSS;Java;JavaScript;Python;SQL
+80935,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+80936,JavaScript;Python;SQL
+80937,Objective-C;Swift
+80938,C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+80939,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+80940,Bash/Shell/PowerShell;Elixir;JavaScript;Ruby;SQL;TypeScript
+80941,C;HTML/CSS;Java;JavaScript;PHP;SQL
+80942,C;C++;Other(s):
+80943,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+80944,HTML/CSS;JavaScript;Python;Ruby
+80945,C#;HTML/CSS;Java;JavaScript;Scala;SQL
+80947,C#;HTML/CSS;JavaScript;SQL;TypeScript
+80948,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+80949,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+80950,Python
+80951,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+80952,JavaScript;Python
+80953,Assembly;HTML/CSS;Java;JavaScript;SQL
+80954,HTML/CSS;JavaScript;TypeScript
+80955,SQL;VBA
+80956,JavaScript;Python;SQL
+80957,Bash/Shell/PowerShell;C;Java
+80958,C++;HTML/CSS;JavaScript;PHP;SQL
+80959,JavaScript;PHP;SQL;TypeScript
+80960,HTML/CSS;JavaScript;PHP;SQL
+80961,HTML/CSS;Java;JavaScript;PHP;SQL
+80962,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+80963,JavaScript;Python
+80964,C#;Elixir;Go;HTML/CSS;Java;JavaScript;PHP
+80965,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+80966,C#;HTML/CSS;SQL
+80967,C;C++;C#;HTML/CSS;Python
+80968,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+80969,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;SQL;Swift
+80970,C++;HTML/CSS;JavaScript
+80971,HTML/CSS;JavaScript
+80972,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+80973,HTML/CSS;Java;SQL
+80974,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+80975,Assembly;C;C++;JavaScript;Other(s):
+80976,Java;Kotlin
+80977,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+80978,C#;JavaScript;PHP;R;SQL
+80979,HTML/CSS;JavaScript;PHP;SQL
+80980,C#
+80981,Go;Java;R;SQL
+80982,C#;HTML/CSS;JavaScript;Python
+80983,Bash/Shell/PowerShell;Java;SQL
+80984,C#
+80985,JavaScript
+80986,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+80987,HTML/CSS;JavaScript;PHP;SQL
+80988,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+80989,Java;Kotlin
+80990,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+80991,Assembly;Bash/Shell/PowerShell;C;HTML/CSS
+80992,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+80993,C++;Go;JavaScript;Python;Ruby;SQL;WebAssembly
+80994,HTML/CSS;Java;JavaScript;Python;SQL
+80995,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+80996,C++;HTML/CSS;Java;JavaScript;Python;R
+80997,Java
+80998,R
+80999,HTML/CSS;JavaScript;PHP;SQL
+81000,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+81001,Bash/Shell/PowerShell;Go;Java
+81002,C#
+81003,C#;JavaScript;Objective-C;Swift;TypeScript
+81004,C#
+81005,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+81006,C;C++;HTML/CSS;Java;Python;SQL
+81007,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+81008,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81009,Bash/Shell/PowerShell
+81010,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+81011,C;HTML/CSS;Java;JavaScript;SQL
+81012,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+81013,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+81014,Clojure
+81015,HTML/CSS;Java;JavaScript
+81016,Python;SQL
+81017,Bash/Shell/PowerShell;Java;JavaScript;Scala
+81018,C#;HTML/CSS;JavaScript
+81019,HTML/CSS;JavaScript;PHP;SQL
+81020,Bash/Shell/PowerShell;C;Java
+81021,HTML/CSS;JavaScript
+81022,C#;HTML/CSS;Java;JavaScript
+81023,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+81024,Python;R;SQL
+81025,HTML/CSS;JavaScript;PHP;SQL
+81026,C;C++;Go;Java;Kotlin;Python
+81027,HTML/CSS;Java;JavaScript;SQL
+81028,C#;HTML/CSS;SQL
+81029,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+81030,HTML/CSS;JavaScript;PHP;SQL
+81031,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+81032,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL;TypeScript
+81033,C#
+81034,C#
+81035,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Other(s):
+81036,C#;F#;HTML/CSS;JavaScript;TypeScript
+81037,Swift
+81038,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;Other(s):
+81039,HTML/CSS;JavaScript;Python;SQL
+81040,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+81041,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;JavaScript;TypeScript;Other(s):
+81042,C#;R;SQL
+81043,Bash/Shell/PowerShell;Java
+81044,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+81045,C++;Clojure;Dart;Elixir;Go;JavaScript;Rust;SQL;TypeScript;Other(s):
+81046,HTML/CSS;Python
+81048,HTML/CSS;JavaScript
+81049,C#;HTML/CSS;Java;JavaScript;PHP;Ruby
+81050,C#;JavaScript;SQL
+81051,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Other(s):
+81052,C#
+81053,Swift
+81054,C;C++
+81055,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+81056,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+81057,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Swift
+81058,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81059,Objective-C;Swift
+81060,HTML/CSS;JavaScript;PHP
+81061,HTML/CSS;JavaScript;PHP
+81062,HTML/CSS;Java;JavaScript
+81064,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81065,HTML/CSS;JavaScript;Ruby
+81066,Java;SQL
+81067,C#;HTML/CSS;Java;JavaScript;Python;SQL
+81068,C#;SQL;VBA
+81069,JavaScript
+81070,Objective-C;Swift
+81071,Java;JavaScript;Kotlin;TypeScript
+81072,Bash/Shell/PowerShell;C++;Java;JavaScript;Python
+81073,HTML/CSS;PHP;SQL
+81074,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+81075,JavaScript;Rust
+81076,C#;F#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+81077,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81078,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81079,C++;C#;Rust
+81080,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+81081,C#;HTML/CSS;Java;JavaScript;PHP;Python;VBA
+81082,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+81083,Assembly;C;C++;C#;Java;JavaScript;Objective-C;Swift
+81084,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+81085,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;VBA;Other(s):
+81086,Bash/Shell/PowerShell;Erlang;Other(s):
+81087,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+81088,C++;Python
+81089,C++;C#;HTML/CSS;JavaScript;Python;R;SQL
+81090,C++;Dart;Java;Kotlin;Scala
+81091,Bash/Shell/PowerShell;C;JavaScript;Python;Swift
+81092,Bash/Shell/PowerShell;C#
+81094,C;C++;HTML/CSS;Java;PHP;SQL;Other(s):
+81095,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+81096,Swift
+81097,HTML/CSS;Java;JavaScript;TypeScript
+81098,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81099,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+81100,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;SQL;Swift
+81101,Python;SQL
+81102,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+81103,HTML/CSS;Java;JavaScript;PHP;Python
+81104,Java;JavaScript;Kotlin;Python;SQL
+81105,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81106,HTML/CSS;Java;JavaScript;SQL
+81107,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+81108,Bash/Shell/PowerShell;Java;PHP
+81109,Bash/Shell/PowerShell;C#;Python;VBA;Other(s):
+81110,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+81111,C#;HTML/CSS;SQL;TypeScript
+81112,JavaScript;Ruby
+81113,C#;HTML/CSS;JavaScript;Python;SQL
+81114,Bash/Shell/PowerShell;C;C++;SQL
+81115,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+81116,Assembly;C;C++;HTML/CSS;JavaScript;Python
+81117,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python
+81118,Java;Python;Other(s):
+81119,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript;VBA;WebAssembly
+81120,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+81121,C++;Python
+81122,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+81123,HTML/CSS;JavaScript;TypeScript
+81124,Go;HTML/CSS;JavaScript;SQL
+81125,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81126,Bash/Shell/PowerShell;HTML/CSS;Java;SQL;TypeScript
+81127,HTML/CSS;JavaScript
+81128,Bash/Shell/PowerShell;Python
+81129,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+81130,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81131,Java;Python;R
+81132,HTML/CSS;JavaScript;PHP;SQL
+81133,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS
+81134,Java;JavaScript;SQL
+81135,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Other(s):
+81136,HTML/CSS;Python;SQL
+81137,C;C++;HTML/CSS;JavaScript;Python
+81138,C;C#;HTML/CSS;JavaScript;Python;TypeScript
+81139,Java
+81140,C#;JavaScript;TypeScript
+81141,Java;JavaScript;Kotlin;TypeScript
+81142,HTML/CSS;Python;R;SQL;Other(s):
+81143,Assembly;C++;C#;HTML/CSS;Java;SQL
+81144,Go;HTML/CSS;Java;JavaScript;SQL
+81145,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python
+81146,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+81147,Python;SQL
+81148,Java;JavaScript;TypeScript
+81149,C#;HTML/CSS;JavaScript;SQL
+81150,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Swift
+81151,R
+81152,Bash/Shell/PowerShell;C++;C#;VBA;Other(s):
+81153,HTML/CSS;JavaScript;PHP;Ruby
+81154,C#;JavaScript;SQL
+81155,C++;HTML/CSS;JavaScript;Python
+81156,PHP
+81157,C;C++;HTML/CSS;Java;Kotlin;SQL
+81158,HTML/CSS;Java;Objective-C;Python;Swift
+81159,C#;HTML/CSS;Java;JavaScript;SQL
+81160,Bash/Shell/PowerShell;C#;JavaScript;Python
+81161,Bash/Shell/PowerShell;C;PHP;Python
+81162,HTML/CSS;Java;JavaScript;SQL
+81163,Java;Kotlin;Swift;Other(s):
+81164,HTML/CSS;JavaScript;SQL
+81165,C++;C#;HTML/CSS;JavaScript;SQL;Swift
+81166,C#;HTML/CSS;JavaScript;Python;SQL
+81167,Bash/Shell/PowerShell;PHP;SQL
+81168,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA;Other(s):
+81169,C++;C#;HTML/CSS;JavaScript;TypeScript
+81170,C#;SQL
+81171,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+81172,C#;PHP;SQL;VBA
+81173,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+81174,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;JavaScript;Scala
+81175,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+81176,Bash/Shell/PowerShell;Python;Scala
+81177,HTML/CSS;Java;JavaScript;Python;SQL
+81178,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL
+81179,C;C++;PHP;Python;SQL
+81180,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+81181,HTML/CSS;Python;SQL;TypeScript
+81182,C++
+81183,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+81184,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;Other(s):
+81185,Go;JavaScript;Python;SQL;TypeScript
+81186,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+81187,C#;HTML/CSS;JavaScript;SQL
+81188,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+81189,C#;HTML/CSS;SQL;TypeScript
+81190,C++;C#;JavaScript;Kotlin;Swift;TypeScript
+81191,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+81192,HTML/CSS;Python;R
+81193,HTML/CSS;JavaScript;Objective-C;Swift
+81194,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+81195,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+81196,Bash/Shell/PowerShell;Python
+81197,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;VBA
+81198,Elixir;Go;JavaScript;Ruby
+81199,Assembly;Bash/Shell/PowerShell;C;C++
+81200,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R
+81201,HTML/CSS;JavaScript;TypeScript
+81202,HTML/CSS;Java;JavaScript;PHP;SQL
+81203,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81204,C#;HTML/CSS;JavaScript;PHP;SQL
+81205,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81206,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+81207,Bash/Shell/PowerShell;C;C++;Go;Python;R
+81208,JavaScript;SQL;TypeScript
+81209,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+81210,Dart;HTML/CSS;Java;JavaScript;Python;Swift
+81211,Swift
+81212,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+81213,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+81214,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+81215,Bash/Shell/PowerShell;C;C++;Objective-C;Python;R;Scala;SQL;Swift
+81216,HTML/CSS;Java;JavaScript;Python
+81217,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81218,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+81219,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81220,Objective-C;Scala;Swift
+81221,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+81222,Java;Python
+81223,C#;HTML/CSS;SQL
+81224,JavaScript;Python;SQL
+81225,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+81226,C#;JavaScript;TypeScript
+81227,Java;Scala
+81228,C#;Java;JavaScript;SQL;TypeScript
+81229,Bash/Shell/PowerShell;Go;Java;Ruby
+81230,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81231,Java;JavaScript;SQL
+81232,C;C++;Other(s):
+81233,HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+81234,C#;HTML/CSS;Java;JavaScript;Scala;SQL
+81235,C#;HTML/CSS;JavaScript;TypeScript;Other(s):
+81236,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Rust;Scala;TypeScript
+81237,C#;SQL
+81238,HTML/CSS;Java;JavaScript;Python;SQL
+81239,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+81240,JavaScript;PHP;Python
+81241,C++;Go;Python;Rust;Other(s):
+81242,HTML/CSS;R
+81243,Bash/Shell/PowerShell;Go;HTML/CSS;PHP;Python;R;SQL
+81244,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+81245,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+81246,Swift
+81247,HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript
+81248,C#;HTML/CSS;JavaScript;PHP
+81249,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81250,Dart;Go;JavaScript;PHP;SQL
+81251,HTML/CSS;JavaScript;PHP;Python;TypeScript
+81252,C#;JavaScript;Other(s):
+81253,C#;HTML/CSS;Python;Other(s):
+81254,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;Java;JavaScript;Ruby;Rust
+81255,Assembly;Bash/Shell/PowerShell;C;C++;Python
+81256,HTML/CSS;Python
+81257,Python;R;Other(s):
+81258,C#;JavaScript;SQL;TypeScript
+81259,HTML/CSS;JavaScript;TypeScript
+81260,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Ruby;SQL;VBA
+81261,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+81262,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+81263,HTML/CSS;JavaScript;PHP
+81264,C++;HTML/CSS;Java;JavaScript;Scala;SQL
+81265,Java
+81266,C#;HTML/CSS;Java;JavaScript;Python;SQL
+81267,C++;C#;Python
+81268,C;C++;C#;HTML/CSS;JavaScript;SQL
+81269,C#;JavaScript;Python
+81270,C++;HTML/CSS;JavaScript;PHP;SQL
+81271,C#;HTML/CSS;JavaScript;SQL;Other(s):
+81272,C#;HTML/CSS;JavaScript;SQL
+81273,HTML/CSS;JavaScript;TypeScript
+81274,Assembly;C;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+81275,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+81276,Bash/Shell/PowerShell;Python
+81277,Java;JavaScript
+81278,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL;VBA
+81279,HTML/CSS;JavaScript;PHP;Python;SQL
+81280,Go;JavaScript;PHP;SQL
+81281,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+81282,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81283,C;C++;JavaScript;PHP
+81284,C;HTML/CSS;JavaScript;Python
+81285,C#;F#;Go;HTML/CSS;JavaScript;Kotlin;TypeScript
+81286,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+81287,Clojure;Java;JavaScript
+81288,HTML/CSS;JavaScript;Python
+81289,HTML/CSS;JavaScript;TypeScript;Other(s):
+81290,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+81291,C++;Python;R;SQL;VBA
+81292,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;Other(s):
+81293,C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby
+81294,Java
+81295,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python
+81296,Bash/Shell/PowerShell;Clojure;Elixir;HTML/CSS;Python
+81297,C;C++;Java;SQL
+81298,Bash/Shell/PowerShell;HTML/CSS;R
+81299,HTML/CSS;JavaScript;Python;SQL
+81300,C;C++;HTML/CSS;Python;SQL
+81301,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+81302,C#;Java;JavaScript;Objective-C;PHP;Swift;TypeScript
+81303,C++;Dart;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL
+81304,HTML/CSS;Java;JavaScript;TypeScript
+81305,HTML/CSS;Java;TypeScript
+81306,Java;JavaScript;SQL;TypeScript
+81307,C#;Python;Swift
+81308,Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+81309,HTML/CSS;Kotlin;Scala;TypeScript;WebAssembly
+81310,Bash/Shell/PowerShell;C;C#;Ruby;Rust;SQL
+81311,C#;Python;Other(s):
+81312,C#;HTML/CSS;JavaScript;SQL
+81313,Java
+81314,HTML/CSS;JavaScript
+81315,C;C++;Java;Python;R;VBA
+81316,Bash/Shell/PowerShell;C#;SQL
+81317,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+81318,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+81319,Assembly;Bash/Shell/PowerShell;C;Java;Python;R
+81320,C;C#;HTML/CSS;Java;JavaScript;R;SQL;VBA
+81321,C#;HTML/CSS;PHP;Python;VBA
+81322,C;C++;HTML/CSS;JavaScript
+81323,HTML/CSS;JavaScript;Scala
+81324,HTML/CSS;JavaScript;PHP
+81325,HTML/CSS;JavaScript;TypeScript
+81326,Assembly;C;C++
+81327,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL
+81328,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+81329,SQL;Other(s):
+81330,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+81331,C#;HTML/CSS;JavaScript;Other(s):
+81332,C#;HTML/CSS;JavaScript
+81333,C;C++;C#;HTML/CSS;JavaScript
+81334,HTML/CSS;JavaScript;PHP;SQL
+81335,Java;Python
+81336,JavaScript;TypeScript
+81337,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+81338,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+81339,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+81340,Clojure;Java
+81341,HTML/CSS;Java;JavaScript
+81342,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81343,Java;Python
+81344,C;C++;Python
+81345,JavaScript;Other(s):
+81346,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+81347,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+81348,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+81349,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81350,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python
+81351,C;Java
+81352,HTML/CSS;Java;JavaScript;SQL
+81353,C;Java;JavaScript
+81354,HTML/CSS;JavaScript;Python
+81355,Bash/Shell/PowerShell;C;HTML/CSS;Java
+81356,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81357,HTML/CSS;JavaScript;PHP;Other(s):
+81358,Java;JavaScript;TypeScript
+81359,HTML/CSS;JavaScript
+81360,Kotlin
+81361,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81362,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81363,C;C++;Java;Python
+81364,HTML/CSS;JavaScript;Python;SQL
+81365,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+81366,HTML/CSS;JavaScript;Other(s):
+81368,HTML/CSS;Java;JavaScript;Python
+81369,C;C++;Go;Python;R;SQL
+81370,C;C++;HTML/CSS;Python;SQL;Other(s):
+81371,C#;Other(s):
+81372,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+81373,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript;Other(s):
+81374,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python
+81375,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+81376,C;Java
+81377,Dart;Ruby;SQL
+81378,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81379,Bash/Shell/PowerShell;C++;Go;R;Rust;Scala;SQL;TypeScript;Other(s):
+81380,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+81381,Java;JavaScript;TypeScript
+81382,C;HTML/CSS;Java;JavaScript;PHP;SQL
+81383,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript
+81384,HTML/CSS;JavaScript;PHP
+81385,Java
+81386,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+81387,HTML/CSS;JavaScript;PHP;TypeScript
+81388,Python
+81389,C#
+81390,Java;JavaScript
+81391,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+81392,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+81393,C#;SQL
+81394,Bash/Shell/PowerShell;Python;Scala;SQL
+81395,HTML/CSS;JavaScript;Python;Other(s):
+81396,Dart;Java;JavaScript;Objective-C;Ruby;SQL;TypeScript
+81397,Java;Kotlin
+81398,C#;Java;Python;SQL
+81399,Objective-C;Swift
+81400,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Rust;SQL;VBA
+81401,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81402,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+81403,HTML/CSS;JavaScript;PHP;SQL
+81404,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Python;R;SQL;VBA
+81406,JavaScript;Objective-C;Ruby;Swift
+81407,HTML/CSS;Java
+81408,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+81409,HTML/CSS;PHP;SQL;VBA
+81410,C#;HTML/CSS;JavaScript;SQL
+81411,Bash/Shell/PowerShell;C++;Go;Python;R;SQL;Other(s):
+81412,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+81413,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+81414,Bash/Shell/PowerShell;C;C#;Java;Python;Other(s):
+81415,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81416,HTML/CSS;JavaScript;PHP;TypeScript
+81417,C#;HTML/CSS;JavaScript;SQL
+81418,C#;SQL
+81419,Java;SQL
+81420,HTML/CSS;JavaScript;Ruby
+81421,C#;Java;SQL
+81422,Assembly;Bash/Shell/PowerShell;C;C++;Go;JavaScript;PHP;Python;SQL;TypeScript
+81423,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+81424,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+81425,Bash/Shell/PowerShell;C#;SQL;Other(s):
+81426,C#;Python
+81427,Bash/Shell/PowerShell;C#;Python;SQL
+81428,HTML/CSS;JavaScript
+81429,C++;C#;Java;Python;Scala;SQL
+81430,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+81431,Bash/Shell/PowerShell;Python;VBA
+81432,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81433,C#;HTML/CSS;Java;JavaScript;Python;SQL
+81434,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+81435,HTML/CSS;JavaScript;TypeScript
+81436,C;C++;C#;HTML/CSS;PHP;Python;SQL
+81437,C;C++;C#;Go;Java;PHP;Python;SQL
+81438,Assembly;C++;JavaScript;Python
+81439,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81440,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+81441,C;C++;Java;Python
+81442,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+81443,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81444,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+81445,Bash/Shell/PowerShell;HTML/CSS;Java;Ruby;Other(s):
+81446,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;Other(s):
+81447,JavaScript;Python
+81448,HTML/CSS;Java;JavaScript;PHP;SQL
+81449,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R
+81450,Python
+81451,HTML/CSS;JavaScript;Ruby;SQL
+81452,C++;Python;SQL
+81453,C;C++;HTML/CSS;Java;JavaScript
+81454,C#;HTML/CSS;JavaScript;PHP;SQL
+81455,Bash/Shell/PowerShell;C;C++;Java;SQL
+81456,C#;F#;HTML/CSS;JavaScript;SQL
+81457,C++;C#;TypeScript
+81458,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+81459,Java;JavaScript;Kotlin;PHP;TypeScript
+81460,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+81461,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+81462,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;WebAssembly
+81463,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+81464,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81465,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81466,C#;SQL
+81467,Bash/Shell/PowerShell;C;Python
+81468,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+81469,C;C++
+81470,C++;Java;VBA
+81471,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81472,C++;C#
+81473,Java
+81474,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+81475,Clojure;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+81476,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+81477,HTML/CSS;PHP;SQL
+81478,C++;HTML/CSS;Java;PHP;Python;SQL
+81479,HTML/CSS;JavaScript;Python;Ruby
+81480,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Other(s):
+81481,HTML/CSS;JavaScript;PHP
+81482,Java
+81483,HTML/CSS;Java;JavaScript;Python;SQL
+81485,HTML/CSS
+81486,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;R;SQL
+81487,Go;HTML/CSS;JavaScript;SQL;TypeScript
+81488,Bash/Shell/PowerShell;Java;Kotlin;PHP;SQL
+81489,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;VBA;WebAssembly
+81490,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+81491,HTML/CSS;JavaScript;PHP
+81492,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+81493,C++;HTML/CSS;Java;JavaScript;SQL
+81494,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+81495,Bash/Shell/PowerShell;C;C++;F#;Python;R
+81496,HTML/CSS;JavaScript;PHP;SQL
+81497,C++;HTML/CSS;JavaScript;PHP
+81498,Java;Kotlin;Swift
+81499,HTML/CSS;JavaScript;PHP
+81500,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+81501,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+81502,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81503,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+81504,Bash/Shell/PowerShell;C;C++
+81505,C++;C#;Dart;Java;JavaScript;Kotlin;Objective-C;Python;Swift
+81506,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+81507,Python;R
+81508,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;TypeScript
+81509,Assembly;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+81510,HTML/CSS;Java;JavaScript;SQL
+81511,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+81512,Bash/Shell/PowerShell;JavaScript;Python
+81513,C++;C#;Java
+81514,HTML/CSS;JavaScript;Python;SQL
+81515,Java;JavaScript;Objective-C;Python;SQL;Swift
+81516,Kotlin;Ruby
+81517,C;Java;JavaScript;Objective-C;Swift
+81518,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+81519,R
+81520,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+81521,HTML/CSS;JavaScript;Ruby
+81522,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL
+81523,HTML/CSS;JavaScript;PHP;Python;SQL
+81524,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+81525,HTML/CSS;Java;JavaScript;SQL
+81526,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+81527,C#;Objective-C
+81528,Bash/Shell/PowerShell;Java;SQL
+81529,Bash/Shell/PowerShell;C++;JavaScript;Python;R
+81530,Bash/Shell/PowerShell;Python;R;Other(s):
+81531,HTML/CSS;JavaScript
+81532,C#;HTML/CSS;Java;SQL
+81533,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+81534,Go;Java;JavaScript;Python;SQL
+81535,C#;HTML/CSS;PHP;SQL;VBA
+81536,Clojure;Erlang;HTML/CSS;Java;JavaScript;Python;Ruby
+81537,HTML/CSS;JavaScript
+81538,C;C++;PHP;Python;R
+81539,C++;C#;Java;JavaScript
+81540,Bash/Shell/PowerShell;Go;Java;JavaScript
+81541,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+81542,C;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+81543,HTML/CSS;JavaScript;Python;SQL;VBA
+81544,HTML/CSS;JavaScript
+81545,Java
+81546,C;Java;Python
+81547,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+81548,C;C++;HTML/CSS;Java;PHP;Python;SQL
+81549,HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+81550,Python
+81551,C#;HTML/CSS;JavaScript;PHP;SQL
+81552,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+81553,Bash/Shell/PowerShell;C;Java;R
+81554,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python
+81555,C#;HTML/CSS;JavaScript;Swift;TypeScript
+81556,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;TypeScript
+81557,Bash/Shell/PowerShell;C++;Java
+81558,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+81559,C++;C#;Go;Java;JavaScript;Kotlin;PHP;Python;Rust;Scala;SQL;TypeScript
+81560,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+81561,C++;HTML/CSS;JavaScript;Python;Other(s):
+81562,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+81563,PHP
+81564,Bash/Shell/PowerShell;Python
+81565,C#;HTML/CSS;Java;SQL;Other(s):
+81566,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+81567,HTML/CSS;JavaScript;Python
+81568,JavaScript;Python
+81569,JavaScript;Ruby;TypeScript
+81570,Bash/Shell/PowerShell;Objective-C;Python;SQL;Swift
+81571,JavaScript;PHP
+81572,HTML/CSS;Java;JavaScript
+81573,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+81574,JavaScript
+81575,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+81576,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+81577,C#;HTML/CSS;JavaScript;SQL;VBA
+81578,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;TypeScript
+81579,HTML/CSS;JavaScript;PHP
+81580,C++;C#;SQL
+81581,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;Ruby;SQL
+81582,Scala
+81583,Bash/Shell/PowerShell;C;HTML/CSS;Java;SQL
+81584,Python;SQL
+81585,C#;SQL;Other(s):
+81586,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+81587,HTML/CSS;JavaScript;PHP
+81588,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+81589,C#;HTML/CSS;Java;TypeScript
+81590,C#;HTML/CSS;Java;JavaScript;SQL
+81591,C#;JavaScript;SQL
+81592,Java;R;Rust;Scala;SQL
+81593,HTML/CSS;Java;JavaScript
+81594,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Swift
+81595,HTML/CSS;JavaScript;PHP;SQL
+81596,Bash/Shell/PowerShell;Elixir;PHP;SQL
+81597,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81598,C#;HTML/CSS;JavaScript
+81599,HTML/CSS;JavaScript;Ruby
+81600,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+81601,C#;JavaScript;SQL;TypeScript
+81602,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+81603,Bash/Shell/PowerShell;Go;HTML/CSS;Ruby;SQL;TypeScript
+81604,JavaScript;Python
+81605,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+81606,C++;C#;HTML/CSS;Java;JavaScript;SQL
+81607,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+81608,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+81609,Bash/Shell/PowerShell;C;C++;Erlang;Java;JavaScript;PHP;Python;Ruby;SQL
+81610,HTML/CSS;JavaScript;PHP;Ruby
+81611,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL;Swift
+81612,Java;JavaScript
+81613,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81614,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;TypeScript
+81615,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+81616,Bash/Shell/PowerShell;HTML/CSS;PHP
+81617,C#;Java;Kotlin
+81618,C;C++;HTML/CSS;JavaScript;Python;R;SQL
+81619,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+81620,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+81621,Java
+81622,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+81623,Assembly;C;C++;HTML/CSS;JavaScript;Python
+81625,Java;JavaScript
+81626,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+81627,HTML/CSS;JavaScript;Ruby
+81628,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81629,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript
+81630,VBA
+81631,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+81632,Bash/Shell/PowerShell;HTML/CSS;Python
+81633,HTML/CSS;JavaScript;SQL
+81634,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+81635,C;C++;HTML/CSS;PHP;SQL
+81636,Bash/Shell/PowerShell;C++;Python;Ruby
+81637,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Python;SQL
+81638,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+81639,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+81640,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+81641,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+81642,HTML/CSS;JavaScript;PHP;Python;SQL
+81643,HTML/CSS;JavaScript;Python;TypeScript
+81644,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+81645,C#;HTML/CSS;JavaScript;SQL
+81646,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R
+81647,Bash/Shell/PowerShell;C;C++;JavaScript;Kotlin;PHP;SQL;Swift
+81648,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+81649,HTML/CSS;Java;SQL
+81650,HTML/CSS;JavaScript;TypeScript
+81651,HTML/CSS;JavaScript;PHP;SQL
+81652,C#;HTML/CSS;JavaScript;SQL
+81653,Bash/Shell/PowerShell;Java;JavaScript;SQL;TypeScript
+81654,HTML/CSS;JavaScript;PHP;Swift;TypeScript;Other(s):
+81655,HTML/CSS;JavaScript;PHP;SQL
+81656,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+81657,HTML/CSS;JavaScript;PHP
+81658,Clojure
+81659,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+81660,HTML/CSS;JavaScript;SQL
+81661,Bash/Shell/PowerShell;C;C++;Python
+81662,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Ruby;Scala;SQL
+81663,C++;C#;JavaScript;Python;SQL
+81664,Elixir;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+81665,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81666,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+81667,C#;HTML/CSS;JavaScript;SQL;Swift;TypeScript
+81668,C;C++;Java
+81669,Bash/Shell/PowerShell;Java;Python;SQL
+81670,Java;JavaScript;Kotlin;SQL;TypeScript
+81671,HTML/CSS;JavaScript;Python
+81672,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+81673,C#;Other(s):
+81674,Assembly;Java
+81675,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+81676,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+81677,Bash/Shell/PowerShell;Java;Python;R;SQL;Other(s):
+81678,C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+81679,Dart;HTML/CSS;JavaScript;PHP
+81680,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python;SQL;TypeScript
+81681,JavaScript;Python;Scala;TypeScript
+81682,C#;JavaScript;SQL
+81683,Bash/Shell/PowerShell;Python
+81684,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+81685,C#;JavaScript;TypeScript
+81686,HTML/CSS;Java;JavaScript;SQL
+81687,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+81688,C;C++;C#;HTML/CSS;JavaScript;SQL
+81689,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81690,C;C++;C#;SQL;VBA
+81691,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+81692,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;Python;SQL;Swift;VBA
+81693,C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;WebAssembly;Other(s):
+81694,Clojure;HTML/CSS;Java;JavaScript;Python;Other(s):
+81695,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81696,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81697,Assembly;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+81698,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+81699,Clojure;HTML/CSS;Java;SQL
+81700,Objective-C;Swift
+81701,C;C++;Python
+81702,C#;HTML/CSS;JavaScript;SQL
+81703,HTML/CSS;Java;JavaScript;SQL;Other(s):
+81704,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+81705,HTML/CSS;JavaScript;Objective-C;Python;Swift
+81706,C;Java
+81707,C;C#;Python;SQL
+81708,HTML/CSS;JavaScript;Ruby;Other(s):
+81709,HTML/CSS;Java;JavaScript;SQL
+81710,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL
+81711,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81712,C#;HTML/CSS;JavaScript;SQL
+81713,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+81714,C#;HTML/CSS;Java;JavaScript;TypeScript
+81715,Assembly;Bash/Shell/PowerShell;C;C++;Elixir;Python;Rust
+81716,C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+81717,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL
+81718,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+81719,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;TypeScript
+81720,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+81721,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL
+81722,Bash/Shell/PowerShell;Clojure;Elixir;Go;JavaScript;Ruby;Rust;SQL
+81723,C;C++;Java;JavaScript;PHP;TypeScript
+81724,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+81725,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Objective-C
+81726,Go;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL
+81727,Python;SQL
+81728,HTML/CSS;JavaScript;Python;Ruby
+81729,Bash/Shell/PowerShell;Java;Scala
+81730,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+81731,Bash/Shell/PowerShell;HTML/CSS;Objective-C;Python;SQL;Swift
+81732,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+81733,Assembly;C;Java;SQL
+81734,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+81735,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+81736,Bash/Shell/PowerShell;Clojure;Java;JavaScript;Ruby;SQL
+81737,Java;Scala;SQL
+81738,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81739,JavaScript;Objective-C;Swift
+81740,PHP;Python;SQL
+81741,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+81742,Objective-C;Swift
+81743,Bash/Shell/PowerShell;C;Go;JavaScript;Python;Swift
+81744,C;C++;C#
+81745,Go;Java;Kotlin;Rust
+81746,C++;C#;HTML/CSS;Java;JavaScript;Python
+81747,HTML/CSS;Java;JavaScript;Python;SQL
+81748,Bash/Shell/PowerShell;Java;Python;Other(s):
+81749,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+81750,C#;Java;JavaScript;SQL
+81751,Bash/Shell/PowerShell;Go
+81753,C;C++;HTML/CSS;JavaScript;Python;SQL
+81754,C;HTML/CSS;Python;R;SQL
+81755,PHP;SQL
+81756,HTML/CSS;Java;JavaScript;Kotlin
+81757,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL
+81758,Assembly;Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+81759,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81760,HTML/CSS;JavaScript;Python;SQL
+81761,HTML/CSS;Java;SQL
+81762,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;Ruby;SQL;Other(s):
+81763,JavaScript;Ruby
+81764,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;JavaScript;Python;Rust
+81765,Bash/Shell/PowerShell;C#;F#;JavaScript;Python;SQL;TypeScript
+81766,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL;Other(s):
+81767,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+81768,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81769,C#;SQL;VBA;Other(s):
+81770,C#;Java;Ruby;Swift
+81771,C++;HTML/CSS;JavaScript;PHP;Python
+81772,HTML/CSS;Java;JavaScript;Python;SQL
+81773,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python
+81774,C;C++;Python
+81775,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+81776,Java;Objective-C
+81777,C++;Java;Python
+81778,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+81779,Python
+81780,HTML/CSS;JavaScript;Python;SQL
+81781,Java;Kotlin;Python
+81782,Elixir;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;Swift;TypeScript
+81783,Bash/Shell/PowerShell;C;C++;Python
+81784,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+81785,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+81786,C#;HTML/CSS;JavaScript;PHP;SQL
+81787,C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+81788,C#;SQL
+81789,Swift
+81790,SQL;VBA
+81791,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81792,C#;SQL;VBA
+81793,Elixir;Java;JavaScript;PHP;SQL
+81794,HTML/CSS;JavaScript;SQL
+81795,C#;HTML/CSS;JavaScript
+81796,Bash/Shell/PowerShell;Java;JavaScript
+81797,C;HTML/CSS
+81798,Elixir;Erlang;JavaScript;Ruby;SQL
+81799,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81800,C;Go
+81801,Bash/Shell/PowerShell;Go;Python
+81802,HTML/CSS;JavaScript;PHP
+81803,C;C++;C#;HTML/CSS;PHP;Python;SQL;Swift;VBA
+81804,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81805,Java;Python;Ruby;SQL
+81806,C;C++;Java;Python
+81807,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+81808,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+81809,Go;HTML/CSS;Python;Other(s):
+81810,HTML/CSS;Java;JavaScript;SQL;Swift
+81811,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81812,C;JavaScript;Objective-C;SQL;Swift
+81813,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;VBA
+81814,HTML/CSS;JavaScript;PHP
+81815,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+81816,HTML/CSS;JavaScript;TypeScript
+81817,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;R;Other(s):
+81818,JavaScript;Python;Ruby;SQL;TypeScript
+81819,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL
+81820,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+81821,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+81822,C++;JavaScript;Python;SQL;Other(s):
+81823,HTML/CSS;Java;JavaScript;PHP
+81824,HTML/CSS;JavaScript;TypeScript
+81825,C++
+81826,C;C++;Java;JavaScript;Kotlin;PHP;SQL;Swift
+81827,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+81828,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+81829,JavaScript;Kotlin;Swift
+81830,C;C++;C#;HTML/CSS;Python;R;SQL
+81831,HTML/CSS;JavaScript;PHP;SQL
+81832,HTML/CSS;Java;JavaScript;Python;SQL
+81833,HTML/CSS;JavaScript;Python
+81834,JavaScript
+81835,Bash/Shell/PowerShell
+81836,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;R
+81837,HTML/CSS;Java;JavaScript;SQL
+81838,JavaScript;PHP
+81839,C++;JavaScript;SQL
+81840,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Kotlin;Swift;TypeScript;Other(s):
+81841,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+81842,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;SQL;Swift;TypeScript;WebAssembly;Other(s):
+81843,C;C++;C#;Dart;HTML/CSS;Kotlin;PHP;Python
+81844,C#
+81845,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Other(s):
+81846,C#;HTML/CSS;JavaScript;PHP;Python;Swift
+81847,C#;SQL
+81848,Assembly;C;C++;Python;Rust
+81849,C#;HTML/CSS;JavaScript;TypeScript
+81850,HTML/CSS;Java;JavaScript;Kotlin
+81851,JavaScript;Python;Scala;TypeScript
+81852,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+81853,C#;HTML/CSS;JavaScript;SQL;VBA
+81854,HTML/CSS;JavaScript;SQL;TypeScript
+81855,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+81856,C;C++
+81857,HTML/CSS;Java;JavaScript;PHP;Swift
+81858,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+81859,Assembly;Python
+81860,Java;JavaScript;Kotlin;SQL;TypeScript
+81861,HTML/CSS;Java;JavaScript;SQL;TypeScript
+81862,Assembly;Bash/Shell/PowerShell;Dart;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+81863,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;SQL
+81864,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Other(s):
+81865,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;PHP;Python;SQL;VBA
+81866,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Scala
+81867,C;C++;Java
+81868,C#;HTML/CSS;JavaScript;SQL
+81869,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+81871,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Ruby;SQL;Swift
+81872,C#;HTML/CSS;Java;JavaScript;SQL
+81873,C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81874,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+81875,HTML/CSS;JavaScript;Python
+81876,Bash/Shell/PowerShell;C;C++;Erlang;Go;HTML/CSS;Java;JavaScript;Python
+81877,HTML/CSS;JavaScript;Python
+81878,JavaScript
+81879,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81880,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;Scala;SQL;TypeScript
+81881,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift
+81882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+81883,C#;HTML/CSS;JavaScript;SQL
+81884,C;C++;Go;HTML/CSS;Python
+81885,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+81886,C;C++;HTML/CSS;Java;PHP;Python;Ruby
+81887,HTML/CSS;JavaScript;SQL;TypeScript
+81888,C#;Kotlin;Python
+81890,C#;HTML/CSS;JavaScript;SQL
+81891,Python;SQL
+81892,Python
+81893,HTML/CSS;JavaScript;PHP;Python;SQL
+81894,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby
+81895,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+81896,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+81897,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+81898,C#;F#;JavaScript;Python;R
+81899,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL;TypeScript
+81900,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+81901,Assembly;Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;R;Ruby;Rust;Scala;SQL
+81902,Objective-C;SQL;Swift
+81903,JavaScript;SQL;VBA
+81904,Bash/Shell/PowerShell;Java;Kotlin;Ruby
+81905,HTML/CSS;JavaScript;Python
+81906,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+81907,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+81908,Go;HTML/CSS;JavaScript;Python
+81909,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+81910,Bash/Shell/PowerShell;C;C++;HTML/CSS
+81911,C#
+81912,C#;HTML/CSS;JavaScript;SQL;TypeScript
+81913,C#;Go;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript
+81914,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+81915,C#;JavaScript;TypeScript
+81916,Python;SQL
+81917,Java;JavaScript;Python;TypeScript
+81918,Bash/Shell/PowerShell;C;C++;Go;Objective-C;Python;Ruby;Swift
+81919,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+81920,Java;Kotlin
+81921,Bash/Shell/PowerShell;Python;SQL;VBA
+81923,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81924,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+81925,C#;HTML/CSS;JavaScript
+81926,C#;HTML/CSS;JavaScript;SQL;Other(s):
+81927,C#;Dart;HTML/CSS;JavaScript;SQL
+81928,Java
+81929,C#;HTML/CSS;JavaScript;SQL;VBA
+81930,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81931,Bash/Shell/PowerShell;HTML/CSS;Python;Scala
+81932,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+81933,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+81935,Bash/Shell/PowerShell;C++;Python
+81936,C;C#;HTML/CSS;JavaScript;PHP
+81937,C++;C#
+81938,C++;HTML/CSS;JavaScript;Python;SQL
+81939,C++;Python
+81940,C++;Python
+81941,Bash/Shell/PowerShell;C++;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift
+81942,HTML/CSS;Java;JavaScript;SQL
+81943,HTML/CSS;Java;Python;Ruby
+81944,C#
+81945,Assembly;Bash/Shell/PowerShell;C++;Ruby;Other(s):
+81946,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81947,Bash/Shell/PowerShell;HTML/CSS;JavaScript;VBA
+81948,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+81949,C#;SQL
+81950,C;C++;HTML/CSS;Java;Objective-C;SQL;Swift
+81951,HTML/CSS;JavaScript;PHP
+81952,Objective-C;Swift
+81953,C#;SQL
+81954,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+81955,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+81956,C++;C#
+81958,Go;HTML/CSS;JavaScript;PHP;SQL
+81959,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL
+81960,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+81961,Java
+81962,JavaScript;Python
+81963,C#;HTML/CSS;Java;Python;SQL;VBA
+81964,HTML/CSS;Java;JavaScript;SQL
+81965,HTML/CSS;JavaScript;Ruby
+81966,C++;Java
+81967,C#;JavaScript;SQL;TypeScript;Other(s):
+81968,C#;F#;SQL
+81969,C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+81970,HTML/CSS;Java;JavaScript;PHP;SQL
+81971,Assembly;Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;VBA
+81972,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+81973,Assembly;C;C++;HTML/CSS;JavaScript;Python
+81974,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+81975,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+81976,Assembly;C;C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+81977,HTML/CSS;Java;JavaScript;TypeScript
+81979,HTML/CSS;Other(s):
+81980,Go;HTML/CSS;Java;JavaScript;Python;SQL
+81981,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+81982,Java;Kotlin
+81983,Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust;SQL;TypeScript;VBA
+81984,Bash/Shell/PowerShell;Java;JavaScript
+81985,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+81986,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python
+81987,Bash/Shell/PowerShell;Java;JavaScript;Python;Ruby;SQL
+81988,Bash/Shell/PowerShell;C;Go;Java;R;SQL;Other(s):
+81989,HTML/CSS;JavaScript;PHP;SQL
+81990,Bash/Shell/PowerShell;Java;Kotlin;Scala;SQL
+81991,Bash/Shell/PowerShell;C;C++
+81992,HTML/CSS;JavaScript;Python
+81993,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Scala;SQL
+81995,Java
+81996,JavaScript;Python
+81997,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+81998,C++;JavaScript;Python;R;SQL
+81999,C++;C#;HTML/CSS;Java;JavaScript
+82000,Bash/Shell/PowerShell;Python;Scala
+82001,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82002,Bash/Shell/PowerShell;C;C++
+82003,Bash/Shell/PowerShell;C;JavaScript;Python;R;Scala;SQL
+82004,JavaScript
+82005,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;Swift
+82006,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+82008,C#;SQL
+82009,Bash/Shell/PowerShell;C;C++;Erlang;Java;Python;TypeScript
+82010,C++;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+82011,Java;JavaScript
+82012,Assembly;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+82013,JavaScript;R;Ruby;SQL;TypeScript
+82014,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+82015,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+82016,HTML/CSS;JavaScript;Ruby;SQL
+82017,Bash/Shell/PowerShell;Erlang;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript;Other(s):
+82018,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+82019,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82020,Bash/Shell/PowerShell;Go;Java;Python;Scala;Other(s):
+82021,Python;Scala;TypeScript;VBA
+82022,C++;HTML/CSS;PHP;Python;SQL
+82023,HTML/CSS;JavaScript;PHP;Python;SQL
+82024,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL
+82025,Python;R;Other(s):
+82026,Bash/Shell/PowerShell;C;C++;Go;Python;R;Ruby;Rust;SQL;Other(s):
+82027,Ruby
+82028,Bash/Shell/PowerShell;Clojure;Java;Python;Rust
+82029,Bash/Shell/PowerShell;Python;Ruby;Rust
+82030,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+82031,HTML/CSS;JavaScript;TypeScript
+82032,Bash/Shell/PowerShell;Python;Scala
+82033,Bash/Shell/PowerShell;HTML/CSS;Java;SQL
+82034,C++
+82035,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+82036,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Other(s):
+82037,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82039,Bash/Shell/PowerShell;Go;Java;Python
+82040,C++;Python;R
+82041,C#;Java;Rust
+82042,HTML/CSS;JavaScript;PHP;SQL
+82043,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+82044,HTML/CSS;JavaScript;PHP;Python
+82045,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+82046,C;C++;HTML/CSS;Java;JavaScript;SQL
+82047,C#;HTML/CSS;JavaScript;SQL;Other(s):
+82048,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+82049,Bash/Shell/PowerShell;C++;Python
+82050,Python
+82051,HTML/CSS;JavaScript;Python
+82052,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+82053,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+82054,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+82055,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82056,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL;TypeScript
+82057,Elixir;HTML/CSS;JavaScript;Python;SQL;Swift
+82058,TypeScript
+82059,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82060,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+82061,Go;PHP;Python;SQL
+82062,HTML/CSS;Java;JavaScript;Python
+82063,C;Go;HTML/CSS;JavaScript;Ruby;Rust;SQL
+82064,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;R;VBA
+82065,C#;JavaScript;SQL;TypeScript
+82066,C;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+82067,Java;Python;SQL
+82068,Bash/Shell/PowerShell;HTML/CSS;R;SQL
+82069,C++;HTML/CSS;Java;JavaScript;Scala;SQL
+82070,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+82071,Java
+82072,HTML/CSS;JavaScript;TypeScript
+82073,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Ruby;SQL
+82074,HTML/CSS;JavaScript
+82075,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;JavaScript;SQL
+82076,HTML/CSS;Java;VBA;Other(s):
+82077,C#;SQL
+82078,JavaScript;Python;R;SQL
+82079,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Python;Other(s):
+82080,C;Java
+82081,C;Python
+82082,HTML/CSS;Java;JavaScript;Kotlin;Python;VBA
+82083,C++;JavaScript;Other(s):
+82084,HTML/CSS;Java;JavaScript;SQL
+82085,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+82086,Elixir;HTML/CSS;JavaScript;PHP;Ruby;Other(s):
+82087,Bash/Shell/PowerShell;C;C++;C#;Dart;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+82088,C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+82089,Bash/Shell/PowerShell;C#;JavaScript;Objective-C;VBA
+82090,HTML/CSS;Java;JavaScript;Python;SQL
+82091,Bash/Shell/PowerShell;Other(s):
+82092,Java;Other(s):
+82093,C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+82094,C#
+82095,Python
+82096,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;TypeScript
+82097,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+82098,C#;Java;SQL
+82099,HTML/CSS;JavaScript;PHP
+82100,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+82101,C#;HTML/CSS;JavaScript;PHP;SQL
+82102,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+82103,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+82104,HTML/CSS;JavaScript;SQL
+82105,Java;Python;Scala
+82106,Bash/Shell/PowerShell;C;PHP;Python;SQL
+82107,HTML/CSS;Java;JavaScript;SQL;TypeScript
+82108,Bash/Shell/PowerShell;C;Go;Python
+82109,JavaScript;Python
+82110,HTML/CSS;Java;JavaScript
+82111,HTML/CSS;Java;JavaScript;PHP;SQL
+82112,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82113,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python
+82114,C#;Java;PHP;Python
+82115,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Other(s):
+82116,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+82117,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+82118,Bash/Shell/PowerShell;Go;Python
+82119,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82120,C#;HTML/CSS;JavaScript;PHP
+82121,Bash/Shell/PowerShell;Go;Kotlin;PHP;Python;Swift
+82122,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+82123,Bash/Shell/PowerShell;C#;Java;Python;SQL;Other(s):
+82124,C#;HTML/CSS;JavaScript;Python
+82125,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+82126,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Other(s):
+82127,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL;VBA
+82128,C#;HTML/CSS;JavaScript;PHP;Python;R;VBA
+82129,HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+82130,HTML/CSS;JavaScript;PHP;SQL
+82131,HTML/CSS;Java;JavaScript
+82132,C#
+82133,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin
+82135,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82136,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+82137,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL
+82138,Go;Python;SQL
+82139,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+82140,C;C++;HTML/CSS;Java;Objective-C;SQL;Swift
+82141,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+82142,Java
+82143,C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+82144,C++;JavaScript;Python;TypeScript
+82145,C++;Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+82146,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+82147,C++;C#
+82148,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+82149,Bash/Shell/PowerShell;C;C++;Java;SQL
+82150,PHP
+82151,HTML/CSS;PHP
+82152,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82153,C#;F#;JavaScript;TypeScript
+82154,C;C++;SQL;Other(s):
+82155,HTML/CSS;JavaScript
+82156,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Swift;TypeScript
+82157,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;R;Other(s):
+82158,C#;JavaScript;TypeScript;Other(s):
+82159,C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+82160,Bash/Shell/PowerShell;Python
+82161,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL
+82162,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Rust
+82163,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+82165,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+82166,HTML/CSS;JavaScript;Python;TypeScript
+82167,HTML/CSS;Java;JavaScript;SQL
+82168,Bash/Shell/PowerShell;C;C++;Clojure;Go;HTML/CSS;Java;Python;Scala;SQL
+82169,Java;JavaScript;SQL
+82170,C;C++;Go
+82171,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+82172,C;C++;Java;Python
+82173,HTML/CSS;PHP;SQL
+82174,Python;SQL
+82175,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+82176,Bash/Shell/PowerShell;SQL
+82177,C#;F#;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+82178,HTML/CSS;JavaScript;PHP
+82179,HTML/CSS;JavaScript;PHP;R;SQL
+82180,Assembly;C;HTML/CSS;JavaScript;PHP;SQL;VBA
+82181,Assembly;HTML/CSS;JavaScript
+82182,R
+82183,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82184,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+82185,HTML/CSS;JavaScript;Python;SQL
+82186,HTML/CSS;Java;JavaScript;Python;R;SQL
+82187,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+82188,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Swift
+82189,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+82190,C;C++;Python
+82191,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+82192,Java;Kotlin;PHP;Swift
+82193,Assembly;HTML/CSS;Java;JavaScript;TypeScript;VBA
+82194,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+82195,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82196,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82197,Go;JavaScript;Python
+82198,C#;HTML/CSS;JavaScript;PHP;SQL
+82199,Elixir;Java;JavaScript;Python
+82200,Assembly;C;C++;C#;Java
+82201,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82202,Bash/Shell/PowerShell;C;Java
+82203,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+82204,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;TypeScript;WebAssembly
+82205,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82206,C#;HTML/CSS;JavaScript;SQL;Other(s):
+82207,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+82208,Bash/Shell/PowerShell;Python
+82209,Java;Ruby
+82210,Python
+82211,HTML/CSS;Java;JavaScript;SQL
+82212,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;Scala;TypeScript
+82213,C;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+82214,Go;HTML/CSS;JavaScript;PHP;SQL
+82215,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+82216,C++;HTML/CSS;JavaScript;Python;VBA
+82217,Bash/Shell/PowerShell;C;C++;C#;F#;Java;Kotlin;Objective-C;Swift
+82218,HTML/CSS;JavaScript;SQL;TypeScript
+82219,Java;Other(s):
+82220,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;SQL
+82221,Bash/Shell/PowerShell;C#
+82222,C;HTML/CSS
+82223,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;R;SQL
+82224,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+82225,C;C++;C#
+82226,Python
+82227,Assembly;C;HTML/CSS;PHP
+82228,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+82229,C#;JavaScript;TypeScript
+82230,HTML/CSS;Java;JavaScript;Swift
+82231,C;C++;C#;HTML/CSS;Java;Objective-C;R
+82232,HTML/CSS;Java;JavaScript
+82233,Python
+82234,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+82235,JavaScript;Python;TypeScript
+82236,Bash/Shell/PowerShell;Java
+82237,Assembly;C;JavaScript;Python;SQL;VBA
+82238,C#;HTML/CSS;SQL;VBA
+82239,C;Go;JavaScript
+82240,Bash/Shell/PowerShell;C;C++;Python
+82241,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+82242,C#;HTML/CSS;Python;SQL;TypeScript
+82243,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82244,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;VBA
+82245,C;C#;HTML/CSS;Java
+82246,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+82247,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82248,C++;C#;HTML/CSS;Java;JavaScript;TypeScript
+82249,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+82250,Bash/Shell/PowerShell;Python;SQL
+82251,Bash/Shell/PowerShell;JavaScript;Swift;Other(s):
+82252,HTML/CSS;JavaScript;Python;TypeScript
+82253,C#;Go;JavaScript;SQL;TypeScript
+82254,Bash/Shell/PowerShell;Clojure;Elixir;Go;Java;Kotlin;Python;Scala;SQL;TypeScript
+82255,C;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+82256,HTML/CSS;Java;JavaScript;PHP;SQL
+82257,Bash/Shell/PowerShell;C#;Go
+82258,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+82259,C++;C#;HTML/CSS;Java;JavaScript;PHP
+82260,HTML/CSS;JavaScript;PHP;Python
+82261,HTML/CSS;R
+82262,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+82263,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;TypeScript
+82264,C;HTML/CSS;JavaScript;PHP;Python
+82265,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+82266,C#;HTML/CSS;Java;JavaScript;SQL
+82267,Java;Kotlin
+82268,Ruby;SQL
+82269,Bash/Shell/PowerShell;Java;Python;R;SQL
+82270,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+82271,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+82272,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+82273,HTML/CSS;JavaScript;PHP;TypeScript
+82274,JavaScript
+82275,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82276,Java;Kotlin
+82277,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+82278,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+82279,C#
+82280,Bash/Shell/PowerShell;Java;JavaScript;Ruby
+82281,C#;F#;JavaScript;SQL
+82282,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+82284,Java;Other(s):
+82285,Bash/Shell/PowerShell;Java;SQL
+82286,JavaScript
+82287,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82288,HTML/CSS;Java;JavaScript;TypeScript
+82289,C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+82290,C#;Rust;SQL
+82291,Assembly;Swift
+82292,Java;JavaScript;Kotlin;Objective-C;Swift
+82293,Bash/Shell/PowerShell;C;C++;C#;Java;Python;SQL
+82294,Python
+82295,C#;HTML/CSS;JavaScript;PHP
+82296,Java;JavaScript;PHP
+82297,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+82298,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Scala;TypeScript
+82299,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+82300,C#;HTML/CSS;TypeScript
+82301,C#;PHP
+82302,C#;JavaScript;PHP;SQL
+82303,C;Java
+82304,HTML/CSS;JavaScript;R;Ruby;Scala
+82305,Clojure;HTML/CSS;JavaScript;SQL
+82306,C;C#
+82307,Bash/Shell/PowerShell;C#;Java;Python;SQL
+82308,C;HTML/CSS;JavaScript;PHP;Scala;SQL
+82310,C#;HTML/CSS;JavaScript;SQL
+82311,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Rust;SQL
+82312,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+82313,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+82314,HTML/CSS;Java;JavaScript;PHP;SQL
+82315,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82316,C;C++;HTML/CSS;Java;JavaScript;Python;Scala
+82317,C++;Java;Python;R
+82318,C;C++;JavaScript;Python;TypeScript
+82319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+82320,JavaScript;PHP
+82321,Assembly;C;C++;HTML/CSS;JavaScript;PHP;SQL
+82322,C;C++;HTML/CSS;JavaScript;PHP;Python
+82323,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+82324,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby
+82325,HTML/CSS;JavaScript;PHP;SQL
+82326,Python;SQL
+82327,Java;SQL
+82328,HTML/CSS;Java;JavaScript;SQL
+82329,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;Kotlin
+82330,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+82331,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+82332,C#;HTML/CSS;JavaScript;SQL;Other(s):
+82333,Bash/Shell/PowerShell;C;C++
+82334,C;C++;C#;JavaScript
+82335,C++;HTML/CSS;JavaScript;Swift
+82336,Java;JavaScript;PHP;Python;R;VBA
+82337,Java;JavaScript
+82338,HTML/CSS;JavaScript;PHP
+82339,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Rust;TypeScript
+82340,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+82341,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+82342,Java;Objective-C;Swift
+82343,C;C++
+82344,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+82345,HTML/CSS;Ruby;SQL;Other(s):
+82346,HTML/CSS;Java;JavaScript;PHP;Python
+82347,Python
+82348,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+82349,HTML/CSS;Java;SQL
+82350,C;C++;C#;HTML/CSS;JavaScript;SQL;VBA
+82351,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+82352,Java;JavaScript;Swift
+82353,HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+82354,HTML/CSS;JavaScript;Python;R;SQL
+82355,JavaScript;Swift
+82356,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82357,C#;JavaScript;PHP
+82358,C#;HTML/CSS;Java;Python;SQL;Swift
+82359,HTML/CSS;Java;JavaScript;TypeScript
+82360,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82361,Assembly;C;HTML/CSS;Java;JavaScript;PHP;SQL
+82362,C++;Java;Python
+82363,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+82364,C;Other(s):
+82365,HTML/CSS;JavaScript;Rust
+82366,HTML/CSS;JavaScript;Ruby;Swift;TypeScript
+82367,C#;HTML/CSS;JavaScript;Objective-C;Swift
+82368,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+82369,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+82370,Dart;HTML/CSS;Java;JavaScript
+82371,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+82372,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+82373,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python
+82374,Bash/Shell/PowerShell;Java;Swift
+82375,HTML/CSS;JavaScript;PHP;Python
+82376,Bash/Shell/PowerShell;Java
+82377,Bash/Shell/PowerShell;C#;HTML/CSS;R;SQL;TypeScript
+82378,C++;Java;Python
+82379,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP
+82380,HTML/CSS;JavaScript;PHP;SQL
+82381,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL
+82382,C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+82383,Python;SQL
+82384,Java
+82385,C;C++;HTML/CSS;JavaScript;PHP;SQL
+82386,C#;HTML/CSS;JavaScript;SQL
+82387,C#;HTML/CSS;JavaScript
+82388,HTML/CSS;JavaScript;PHP;SQL
+82389,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82390,C;C++;Python;Other(s):
+82391,HTML/CSS;JavaScript;PHP;TypeScript
+82392,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+82393,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82394,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL;VBA
+82395,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL
+82396,Objective-C;Swift
+82397,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;Other(s):
+82398,Java;JavaScript;Kotlin;Objective-C;PHP;Swift
+82399,Bash/Shell/PowerShell;Dart;Java;PHP;Python
+82400,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+82401,C#;HTML/CSS;JavaScript
+82402,C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+82403,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+82404,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+82405,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+82406,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+82407,C;C++;C#;Python
+82408,C;C++;HTML/CSS;Java;JavaScript;SQL
+82409,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82410,Bash/Shell/PowerShell;C#;Java;JavaScript;Kotlin;Ruby;SQL;TypeScript
+82411,Java;JavaScript;Kotlin;PHP;SQL
+82412,C;C++;HTML/CSS;PHP
+82413,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+82414,HTML/CSS;Java;JavaScript;SQL
+82415,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+82416,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;TypeScript;VBA
+82417,HTML/CSS;JavaScript;Objective-C
+82418,HTML/CSS;JavaScript;SQL;Other(s):
+82419,C++;JavaScript;Python;Ruby
+82420,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Kotlin;Python;SQL
+82421,Java;Python
+82422,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+82423,Go;HTML/CSS;JavaScript;PHP;Other(s):
+82424,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;Other(s):
+82425,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+82426,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+82427,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82428,Python;Other(s):
+82429,C#;HTML/CSS;JavaScript;PHP;Ruby;SQL
+82430,JavaScript;Python;SQL
+82431,Java;PHP;SQL
+82432,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82433,HTML/CSS;JavaScript;Ruby;SQL
+82434,Assembly;C;C++;C#;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL
+82435,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+82436,Bash/Shell/PowerShell;C;C#
+82437,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+82438,Bash/Shell/PowerShell;C;C++;Python
+82439,HTML/CSS;Kotlin;Python;Scala;SQL
+82440,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+82441,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82442,Java
+82443,Assembly;C;C++;C#;HTML/CSS;Java;Python
+82444,C#;HTML/CSS;JavaScript;SQL
+82445,C#;SQL
+82446,HTML/CSS;JavaScript;TypeScript
+82447,Go;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+82448,Clojure;JavaScript;TypeScript
+82449,C++;HTML/CSS;JavaScript
+82450,C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+82451,C;C++;HTML/CSS;Java;JavaScript;PHP
+82452,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+82453,Bash/Shell/PowerShell;C++;C#;Java
+82454,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+82455,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+82456,Bash/Shell/PowerShell;C;C++;Python
+82457,Bash/Shell/PowerShell;JavaScript;Python;SQL;Other(s):
+82458,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Objective-C;PHP;Python;SQL;Swift
+82459,HTML/CSS;Other(s):
+82460,C#;HTML/CSS;JavaScript;SQL
+82461,HTML/CSS;JavaScript;PHP;Swift;TypeScript
+82462,Bash/Shell/PowerShell;C;Java;SQL;TypeScript
+82463,Bash/Shell/PowerShell;C#;JavaScript;Other(s):
+82464,Java;JavaScript;SQL
+82465,Bash/Shell/PowerShell;Clojure;Erlang;Java;Scala;Swift
+82467,Java;Kotlin;Python
+82468,HTML/CSS;Java;JavaScript;SQL
+82469,Python;R;SQL
+82470,C;C#;HTML/CSS;JavaScript;PHP
+82471,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+82472,Python;SQL;Other(s):
+82473,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL;TypeScript;Other(s):
+82474,Bash/Shell/PowerShell;C;C++;Go;Java;Python;R;Ruby;Scala;SQL;Other(s):
+82475,HTML/CSS;JavaScript;Python
+82476,C;C++;C#
+82477,Java
+82478,C#;HTML/CSS;JavaScript;SQL
+82480,Clojure;HTML/CSS;JavaScript;Python;Scala;SQL
+82481,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+82482,C++;C#;HTML/CSS;JavaScript;Python;SQL
+82483,Assembly;C;HTML/CSS;Java;JavaScript;Python;SQL
+82484,Go;JavaScript;Python;Rust;SQL;WebAssembly;Other(s):
+82485,C#;Java;Kotlin;SQL
+82486,Bash/Shell/PowerShell;C;C#;Clojure;Dart;Elixir;Go;Kotlin;Objective-C;Rust;Scala;Swift;VBA;WebAssembly
+82487,Java;JavaScript;Python;R;Scala;SQL;TypeScript
+82488,HTML/CSS;JavaScript;TypeScript
+82490,C#;HTML/CSS
+82491,HTML/CSS;JavaScript;PHP;Python;SQL
+82492,SQL;Other(s):
+82493,Bash/Shell/PowerShell;C++;Java;SQL
+82494,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+82495,JavaScript;Python;TypeScript
+82496,C#;HTML/CSS;JavaScript;SQL
+82497,Bash/Shell/PowerShell;C;Python;SQL
+82498,HTML/CSS;JavaScript;Python;SQL
+82499,C++;Go;Python
+82500,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript;VBA
+82501,Bash/Shell/PowerShell;C++;Java
+82502,JavaScript;PHP;SQL
+82503,HTML/CSS;JavaScript;PHP;SQL
+82504,C#;Java
+82505,HTML/CSS;JavaScript;Python;R;Other(s):
+82506,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+82507,C;C++;PHP;Other(s):
+82508,Java;Kotlin;SQL
+82509,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+82510,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82511,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+82512,Bash/Shell/PowerShell;JavaScript;Python;SQL
+82513,C#;HTML/CSS;Java;JavaScript
+82514,Python;SQL
+82515,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Ruby;Swift;VBA
+82516,Assembly;HTML/CSS;Java;SQL;VBA;Other(s):
+82517,Bash/Shell/PowerShell;HTML/CSS;Java;Other(s):
+82518,C#;HTML/CSS;JavaScript;SQL
+82519,Assembly;C;C#;HTML/CSS;Java;JavaScript;R;Other(s):
+82520,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL
+82521,C#;HTML/CSS;Java;JavaScript;VBA
+82522,HTML/CSS;JavaScript
+82523,Bash/Shell/PowerShell;Java;JavaScript;Python
+82524,Bash/Shell/PowerShell;HTML/CSS;Python;R
+82525,Bash/Shell/PowerShell;C++;C#;HTML/CSS;SQL;VBA
+82526,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+82527,HTML/CSS;JavaScript;TypeScript
+82528,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;VBA
+82529,Python;SQL
+82530,Bash/Shell/PowerShell;Go;Java;Python
+82531,HTML/CSS;Java;Python;TypeScript
+82532,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82533,Python
+82534,HTML/CSS;JavaScript;Python;Other(s):
+82535,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82536,Bash/Shell/PowerShell;Go;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+82537,HTML/CSS;JavaScript;PHP
+82538,Dart;HTML/CSS;JavaScript;SQL;TypeScript
+82539,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+82540,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+82541,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Python;SQL;VBA;Other(s):
+82542,Java
+82543,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+82544,Java;Other(s):
+82545,HTML/CSS;JavaScript;PHP;Python;SQL
+82546,JavaScript;PHP;Other(s):
+82547,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+82548,HTML/CSS;JavaScript;Python;SQL
+82549,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript
+82550,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+82551,C#;F#;Python;SQL
+82552,Go;HTML/CSS;JavaScript;PHP;Python
+82553,C#;SQL
+82554,C++;C#;Go;HTML/CSS;Rust;TypeScript
+82555,C#;HTML/CSS;SQL
+82556,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82557,HTML/CSS;Java;JavaScript;PHP;SQL
+82558,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+82559,C
+82560,Bash/Shell/PowerShell;Go;JavaScript;PHP;Python;TypeScript
+82561,C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+82562,C#;HTML/CSS;Java;JavaScript;Python;SQL
+82563,HTML/CSS;JavaScript
+82564,C#;SQL;TypeScript
+82565,Bash/Shell/PowerShell;C#;TypeScript
+82566,Bash/Shell/PowerShell;C#;Python
+82567,Java;JavaScript;PHP;Python;R;SQL
+82568,HTML/CSS;JavaScript;Ruby
+82569,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust
+82570,C;C++;JavaScript;Python;SQL
+82571,C#;Python;SQL;TypeScript
+82572,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+82573,Assembly
+82574,C;C++;C#;HTML/CSS;JavaScript
+82575,C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+82576,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+82577,HTML/CSS;JavaScript;Python;SQL
+82578,Java;PHP;Other(s):
+82579,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82580,HTML/CSS;Java;JavaScript;Python;Other(s):
+82581,HTML/CSS;Java;JavaScript;Objective-C;PHP;Swift
+82582,C;C++;HTML/CSS;JavaScript;SQL;TypeScript
+82583,Assembly;C++;Go;Java;Kotlin;PHP
+82584,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+82585,Java;Kotlin;Objective-C;Python;Swift
+82586,C#;HTML/CSS;JavaScript;SQL
+82587,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python
+82588,Other(s):
+82589,C;C++;C#;Java;JavaScript;Ruby;SQL;TypeScript;Other(s):
+82590,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+82591,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82592,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+82593,C;Java;Python
+82594,Bash/Shell/PowerShell;C#;SQL
+82595,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL
+82596,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL;TypeScript
+82597,C#
+82598,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+82599,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+82600,Dart;JavaScript;Swift
+82601,HTML/CSS;JavaScript;TypeScript
+82602,C++;PHP;Python;Rust;SQL
+82603,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82604,C;Java;Python
+82605,C;C++;HTML/CSS;JavaScript
+82606,C;HTML/CSS;Java;Python;SQL
+82607,C#
+82608,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+82609,HTML/CSS;JavaScript;TypeScript
+82610,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+82611,Bash/Shell/PowerShell;Go;Python;Ruby;SQL
+82612,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+82613,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python
+82614,C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+82615,C#
+82616,Bash/Shell/PowerShell;Go;Java;Kotlin;Python;Ruby;Scala;SQL
+82617,Java
+82618,C++;C#;HTML/CSS
+82619,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript;Other(s):
+82620,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+82621,JavaScript;Ruby
+82622,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust;SQL
+82623,C#;HTML/CSS;SQL;TypeScript
+82624,HTML/CSS;Java;JavaScript;Python;SQL
+82625,Java;JavaScript;Python;TypeScript
+82626,C#;HTML/CSS;Java;JavaScript;SQL
+82627,HTML/CSS;JavaScript;Python
+82628,HTML/CSS;JavaScript;PHP;Python;SQL
+82629,JavaScript;PHP;SQL
+82630,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82632,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift;TypeScript
+82633,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+82634,Objective-C;PHP;SQL;Swift
+82635,Bash/Shell/PowerShell;C#;JavaScript
+82636,HTML/CSS;JavaScript;SQL;Other(s):
+82637,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+82638,C#;HTML/CSS;Java;JavaScript;Swift
+82639,C#;HTML/CSS;JavaScript;Ruby
+82640,HTML/CSS;JavaScript;PHP;SQL
+82641,C#;HTML/CSS;JavaScript
+82642,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82643,Java;Scala;SQL
+82644,Bash/Shell/PowerShell;C#;Java;Kotlin;Objective-C;VBA
+82645,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala
+82646,HTML/CSS;Java
+82647,HTML/CSS;Java;JavaScript;Python
+82648,Bash/Shell/PowerShell;Python;Scala;TypeScript;Other(s):
+82649,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+82650,C;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+82651,C#;SQL
+82653,HTML/CSS;PHP
+82654,HTML/CSS;JavaScript;PHP;SQL
+82655,HTML/CSS;JavaScript;Python
+82656,Bash/Shell/PowerShell;C;Java;Python
+82658,C#;JavaScript;Python;R
+82659,HTML/CSS;Python;Ruby;Swift
+82660,C++;Clojure;Elixir;Python
+82661,JavaScript
+82662,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+82663,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;SQL;VBA
+82664,C;HTML/CSS;JavaScript;SQL;Swift
+82665,C++;Java;Python;R;SQL
+82666,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+82667,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+82668,C#;JavaScript;PHP;SQL
+82669,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;Java;JavaScript;Objective-C;Python;R;Swift
+82670,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+82671,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+82672,Go;Python
+82673,Assembly;C++;C#;Python
+82674,C#;HTML/CSS;Java;JavaScript
+82675,C#;Elixir;HTML/CSS;JavaScript;SQL
+82676,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+82677,HTML/CSS;JavaScript;PHP;SQL
+82678,Java
+82679,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Ruby;SQL
+82680,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;Other(s):
+82681,C#;Go;Java;Python
+82682,Bash/Shell/PowerShell;Java;Kotlin;SQL
+82683,Java;JavaScript;Scala
+82684,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82685,Java;JavaScript;SQL
+82686,Assembly;C;Python;Other(s):
+82687,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+82688,JavaScript;Python;Ruby
+82689,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;WebAssembly;Other(s):
+82690,Java;Kotlin
+82691,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+82692,HTML/CSS;Java;JavaScript
+82693,C;C#;HTML/CSS;Other(s):
+82694,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+82695,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+82696,HTML/CSS;JavaScript
+82697,Bash/Shell/PowerShell;C#;Dart;Java;Kotlin;Python;Swift
+82698,C
+82699,Java;JavaScript;PHP;Python;SQL;Other(s):
+82700,C#;HTML/CSS;JavaScript;PHP;SQL
+82701,HTML/CSS;JavaScript;TypeScript
+82702,C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+82703,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby
+82704,C;C++;HTML/CSS;Java;JavaScript
+82705,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+82706,C#;HTML/CSS;TypeScript
+82707,C#;HTML/CSS;SQL
+82708,HTML/CSS;JavaScript;PHP;SQL
+82709,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;VBA
+82710,C;C++;HTML/CSS;Python
+82711,C++;HTML/CSS;Java;JavaScript;PHP
+82712,C#;HTML/CSS;JavaScript;TypeScript
+82713,JavaScript;Other(s):
+82714,C++;C#;HTML/CSS;Java;Objective-C;Python;SQL;Swift;TypeScript
+82715,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+82716,HTML/CSS;JavaScript;PHP
+82718,C;C++;Go;HTML/CSS;PHP;Python;SQL
+82719,C#;Java;Kotlin;Objective-C;Swift
+82720,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript;VBA;Other(s):
+82721,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+82722,C++;HTML/CSS;JavaScript;PHP;TypeScript
+82723,HTML/CSS;JavaScript;PHP;SQL
+82724,Bash/Shell/PowerShell;Java;JavaScript;Python;TypeScript
+82725,Bash/Shell/PowerShell;C;C++;PHP
+82726,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP
+82727,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+82728,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+82729,HTML/CSS;Java;JavaScript;SQL
+82730,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+82731,Bash/Shell/PowerShell;Python
+82732,HTML/CSS;JavaScript;SQL
+82733,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+82734,C#;HTML/CSS;JavaScript;SQL
+82735,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82736,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust
+82737,Java;SQL
+82738,HTML/CSS;JavaScript;PHP;Python;SQL
+82739,Bash/Shell/PowerShell;C++;Dart;JavaScript;Python;TypeScript
+82740,C++;Java
+82741,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+82742,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82743,Assembly;Bash/Shell/PowerShell;C;C++
+82744,JavaScript;PHP;SQL
+82745,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+82746,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+82747,C;HTML/CSS;JavaScript;Ruby
+82748,C#;Python;Other(s):
+82749,Bash/Shell/PowerShell;C;C#;Python;VBA
+82750,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82751,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+82752,Dart;HTML/CSS;Java
+82753,JavaScript;Python
+82754,HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+82755,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+82756,C;C++;HTML/CSS;Java;JavaScript;SQL;VBA
+82757,C;HTML/CSS;Java;JavaScript;Python;R;SQL
+82758,C;HTML/CSS;JavaScript;PHP;Python;SQL
+82759,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+82760,C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+82761,Java;JavaScript;PHP;Python;SQL
+82762,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;VBA
+82763,Bash/Shell/PowerShell;C#;Python
+82764,HTML/CSS;JavaScript;Python;Ruby;Scala
+82765,C;C++;Java;JavaScript;PHP
+82766,C++;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+82767,C;C++;C#;SQL;Other(s):
+82768,C;Python
+82769,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Ruby
+82770,C++
+82771,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala
+82772,HTML/CSS;JavaScript;TypeScript
+82773,C#;SQL;Other(s):
+82774,C++;HTML/CSS;JavaScript;Python
+82775,Bash/Shell/PowerShell;C++;C#;Java
+82776,Bash/Shell/PowerShell;Java;JavaScript;Python;R;SQL
+82777,Python;SQL;VBA
+82778,HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;VBA;Other(s):
+82779,C++;HTML/CSS
+82780,C;C++;HTML/CSS;JavaScript;Objective-C;PHP
+82781,C;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+82782,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+82783,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift
+82784,HTML/CSS;JavaScript;PHP;TypeScript
+82785,C#;HTML/CSS;Java;SQL
+82786,Swift
+82787,C#;SQL
+82788,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;PHP;Python;Scala;SQL
+82790,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82791,Bash/Shell/PowerShell;HTML/CSS;R
+82792,HTML/CSS;JavaScript
+82793,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;SQL
+82794,C;HTML/CSS;JavaScript;Python;SQL
+82795,Java
+82796,C#;JavaScript
+82797,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+82798,C#;HTML/CSS;JavaScript;SQL
+82799,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;TypeScript
+82800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+82801,C;JavaScript;PHP;SQL;Other(s):
+82802,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+82803,Bash/Shell/PowerShell;Java;Python
+82804,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+82806,HTML/CSS;JavaScript;PHP
+82807,C#;HTML/CSS;JavaScript;SQL;Swift
+82808,Java;JavaScript;SQL
+82809,Go;TypeScript
+82810,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+82811,C#;HTML/CSS;JavaScript;TypeScript
+82812,Bash/Shell/PowerShell;Java;Python
+82813,Swift
+82814,Python
+82815,C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift
+82816,Python;SQL
+82817,HTML/CSS;JavaScript;PHP;Python
+82818,C#
+82819,HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+82820,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+82821,C;C++;Go;Java;JavaScript;PHP;Ruby;Rust;SQL
+82822,C;C++;C#;HTML/CSS;Python
+82823,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+82824,C#;Java;JavaScript
+82825,Bash/Shell/PowerShell;C#;Java;JavaScript;Swift;TypeScript
+82826,C#;HTML/CSS;JavaScript;TypeScript
+82827,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+82828,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+82829,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+82830,C;JavaScript;Python;SQL;Swift
+82831,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL
+82833,Bash/Shell/PowerShell;Go;Python
+82834,HTML/CSS;Java;JavaScript;PHP;SQL
+82835,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;VBA
+82836,HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+82837,HTML/CSS;JavaScript
+82838,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+82839,C#;HTML/CSS;JavaScript;PHP;SQL
+82840,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+82841,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+82842,HTML/CSS;Java;JavaScript
+82844,Java;SQL
+82845,JavaScript;Python;Rust
+82846,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+82847,Bash/Shell/PowerShell;C;Clojure;Go;Java;Python;Rust;SQL;Other(s):
+82848,C#;JavaScript
+82849,C;C++;C#;HTML/CSS;Java;Swift
+82850,HTML/CSS;JavaScript;Python
+82851,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+82852,C#;HTML/CSS;JavaScript;SQL
+82853,Java
+82854,HTML/CSS;Java;JavaScript;Python;SQL
+82855,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;TypeScript;VBA
+82856,Dart;Java;JavaScript;SQL
+82857,HTML/CSS;Java;JavaScript;Python;VBA
+82858,Bash/Shell/PowerShell;Python;Other(s):
+82859,HTML/CSS;JavaScript;SQL;TypeScript
+82860,Bash/Shell/PowerShell;C;Java;Kotlin;Swift
+82861,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;SQL;VBA
+82862,HTML/CSS;JavaScript
+82863,C++;HTML/CSS;Java;JavaScript;SQL
+82864,HTML/CSS
+82865,HTML/CSS;JavaScript;SQL
+82866,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+82867,HTML/CSS;JavaScript;PHP;SQL
+82868,C#;HTML/CSS;JavaScript;PHP;SQL;WebAssembly;Other(s):
+82869,Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82870,Assembly;C;Java;Kotlin
+82871,Java;Kotlin
+82872,JavaScript;Ruby;SQL;Other(s):
+82873,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+82874,HTML/CSS;JavaScript;PHP
+82875,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;SQL;Swift;TypeScript;WebAssembly
+82876,HTML/CSS;Python;SQL
+82877,C++;C#
+82878,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+82879,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+82880,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Rust
+82881,Bash/Shell/PowerShell;Java;JavaScript;Ruby;SQL
+82882,Bash/Shell/PowerShell;Java;JavaScript;PHP;Python;SQL;Other(s):
+82883,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+82884,HTML/CSS;JavaScript;PHP;Other(s):
+82885,Python;R;SQL
+82886,Bash/Shell/PowerShell;R
+82887,C++;HTML/CSS;PHP;SQL
+82888,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+82889,C#;HTML/CSS;JavaScript;Rust;TypeScript;Other(s):
+82890,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82891,Java;JavaScript;Python
+82892,C#;HTML/CSS;PHP
+82893,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+82894,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+82895,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Objective-C;Python;Swift;TypeScript
+82896,HTML/CSS;JavaScript;PHP;Python;TypeScript
+82897,Java;Python
+82898,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+82899,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Ruby;SQL;Other(s):
+82900,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;TypeScript
+82901,HTML/CSS;JavaScript;PHP;SQL
+82902,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+82903,HTML/CSS;Java;JavaScript;SQL
+82904,HTML/CSS;JavaScript;SQL;TypeScript
+82905,PHP
+82906,HTML/CSS;Java;PHP;Python;SQL
+82907,Python;R
+82908,HTML/CSS;JavaScript;PHP;SQL
+82909,C#;HTML/CSS;JavaScript
+82910,Clojure;JavaScript;Python;Other(s):
+82911,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;SQL
+82912,HTML/CSS;JavaScript;Swift;Other(s):
+82913,HTML/CSS;JavaScript;PHP;Other(s):
+82914,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+82915,C;HTML/CSS;Java
+82916,HTML/CSS;Java;JavaScript;SQL;Other(s):
+82917,HTML/CSS;JavaScript
+82918,HTML/CSS;JavaScript;SQL
+82919,C#;HTML/CSS;JavaScript;SQL;TypeScript
+82920,C;Java;JavaScript;Kotlin;Objective-C;SQL
+82921,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+82922,Go;HTML/CSS;JavaScript;PHP;Python;Other(s):
+82925,HTML/CSS;JavaScript;Objective-C;PHP;SQL
+82926,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+82927,HTML/CSS;JavaScript;SQL;Other(s):
+82928,C++;HTML/CSS;Java;Python;SQL
+82929,Assembly;C;HTML/CSS;Java;Python;SQL;WebAssembly
+82930,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;Other(s):
+82931,HTML/CSS;JavaScript
+82932,C#;HTML/CSS;JavaScript;SQL
+82933,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+82934,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+82935,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+82936,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82937,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+82938,SQL;VBA;Other(s):
+82939,HTML/CSS;Python;R
+82940,C#;HTML/CSS;Java;Python
+82941,C;HTML/CSS;Java;JavaScript;TypeScript
+82942,C#;HTML/CSS;JavaScript;PHP;SQL
+82943,C;C++;HTML/CSS
+82944,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Kotlin;PHP;Rust;SQL;TypeScript
+82945,Java
+82946,C;C++;Java
+82947,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+82948,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+82949,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Python
+82950,C#;SQL;VBA;Other(s):
+82951,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+82952,C#;Go;Java;JavaScript;Kotlin;Python
+82953,HTML/CSS;JavaScript;TypeScript
+82954,C;C#;Python
+82955,C++;C#;Java;JavaScript;Objective-C;PHP;SQL;TypeScript
+82956,C#;HTML/CSS;Java;JavaScript;SQL
+82957,HTML/CSS;JavaScript;PHP;SQL
+82958,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+82959,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+82960,Python;Other(s):
+82961,Go;HTML/CSS;JavaScript;TypeScript
+82962,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+82963,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;Scala;SQL;TypeScript;WebAssembly
+82964,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+82965,JavaScript;Python
+82966,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+82967,HTML/CSS;JavaScript;Ruby;SQL;Swift;TypeScript
+82968,Swift;TypeScript
+82969,Python
+82970,Java;Scala;SQL
+82971,Assembly;C;C#;Python
+82972,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+82973,Python;VBA
+82974,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;Other(s):
+82975,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+82976,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+82977,HTML/CSS;Java;JavaScript;SQL
+82978,HTML/CSS;JavaScript;PHP;Python
+82979,Go;HTML/CSS;JavaScript;TypeScript
+82980,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+82981,HTML/CSS;Java;JavaScript;Python;Other(s):
+82982,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+82983,HTML/CSS;PHP;TypeScript
+82984,HTML/CSS;JavaScript;SQL
+82985,C#;HTML/CSS;JavaScript;SQL
+82986,Java;JavaScript;Kotlin
+82987,JavaScript;TypeScript
+82988,HTML/CSS;Python
+82989,Java;JavaScript;TypeScript
+82990,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+82991,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+82992,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+82993,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+82994,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+82995,C#;Java;Kotlin;SQL
+82996,C#;HTML/CSS;Python;R;SQL;TypeScript
+82997,Java;SQL
+82998,C#;Java;Kotlin;Swift
+82999,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+83001,C#
+83002,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Swift
+83003,Bash/Shell/PowerShell;Java;Python;Scala
+83005,Bash/Shell/PowerShell;Dart;Java;Objective-C;Ruby
+83006,C#;HTML/CSS;JavaScript;Python;R;SQL
+83007,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Other(s):
+83008,C#
+83009,HTML/CSS;JavaScript;Ruby
+83010,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+83011,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+83012,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+83013,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+83014,HTML/CSS;Java;JavaScript;SQL
+83015,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+83016,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83017,Python;SQL
+83018,Bash/Shell/PowerShell;JavaScript;Python
+83019,C++;C#;Java;JavaScript
+83020,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83021,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;VBA
+83022,JavaScript;Python
+83023,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript
+83024,Bash/Shell/PowerShell;C;C++;Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+83025,Dart;HTML/CSS;Objective-C;Swift;TypeScript
+83026,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83027,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+83028,Bash/Shell/PowerShell;C++;C#;SQL
+83029,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;Swift;TypeScript
+83030,Assembly;Bash/Shell/PowerShell;C
+83031,C++;Java;Python;Scala
+83032,C;C++;Python
+83033,Python;SQL
+83034,HTML/CSS;JavaScript;PHP
+83035,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL;TypeScript
+83036,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+83037,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+83038,HTML/CSS;Java;JavaScript;SQL
+83039,Objective-C;Swift
+83040,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+83041,Assembly;Bash/Shell/PowerShell;C;C++;Python
+83042,C#;HTML/CSS;Java;SQL
+83043,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+83044,HTML/CSS;Java;SQL
+83045,Assembly;Bash/Shell/PowerShell;C;C#;Clojure;Dart;Elixir;Erlang;F#;Go;Kotlin;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+83046,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+83047,Go;JavaScript;Python;TypeScript
+83048,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+83049,HTML/CSS;JavaScript;TypeScript
+83050,C;C++;C#;JavaScript;SQL;TypeScript
+83051,C;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+83052,C#;Java;PHP;SQL;VBA;Other(s):
+83053,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+83054,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;WebAssembly
+83055,HTML/CSS;JavaScript;Ruby
+83056,C#;HTML/CSS;SQL;TypeScript
+83057,HTML/CSS;SQL
+83058,Java;Kotlin;SQL
+83059,Java;JavaScript;SQL
+83060,JavaScript;PHP;Other(s):
+83061,HTML/CSS;JavaScript;PHP;TypeScript
+83062,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript
+83063,C#;Java;Python
+83064,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+83065,HTML/CSS;Java;SQL
+83066,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83067,C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83068,HTML/CSS;Java;JavaScript;SQL
+83069,JavaScript;PHP;Python
+83070,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83071,C++;Java;JavaScript;Python
+83072,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+83073,HTML/CSS;JavaScript;Python;Swift
+83074,TypeScript
+83075,Java;JavaScript;Python;SQL
+83076,HTML/CSS;JavaScript;PHP
+83077,C++;HTML/CSS;JavaScript;PHP;Python;Ruby
+83078,Assembly;Bash/Shell/PowerShell;C++;C#;PHP;Python;SQL;Other(s):
+83079,Python
+83080,Bash/Shell/PowerShell;C;C++;Go
+83081,HTML/CSS;JavaScript;Objective-C;Python;Swift;TypeScript
+83082,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+83083,HTML/CSS;JavaScript;PHP;SQL
+83084,C;HTML/CSS;JavaScript;PHP;SQL
+83085,Assembly
+83086,HTML/CSS;JavaScript
+83087,HTML/CSS;Java;Objective-C;Swift
+83088,C++;C#;HTML/CSS;JavaScript;Rust;TypeScript
+83089,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+83090,Bash/Shell/PowerShell;Java;Python;Scala
+83091,Python
+83092,C;HTML/CSS;Java;JavaScript;Other(s):
+83093,C;C++;C#;HTML/CSS;Java;Kotlin;Python;SQL;Swift;VBA
+83094,HTML/CSS;Java;JavaScript;PHP;TypeScript
+83095,C;C++;C#;Java;SQL
+83096,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL
+83097,C#;HTML/CSS;JavaScript;SQL
+83098,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+83099,C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+83100,Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;SQL
+83101,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+83102,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+83103,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83104,C;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+83105,Java;JavaScript;Python;SQL
+83106,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+83107,Java;JavaScript;Kotlin
+83108,HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;TypeScript
+83109,Bash/Shell/PowerShell;Clojure;Java;Kotlin;PHP;Python;Ruby;Scala;SQL;TypeScript;Other(s):
+83110,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+83111,HTML/CSS;JavaScript;Python;SQL
+83112,Bash/Shell/PowerShell;C++;Go;Java;Python;Scala;SQL
+83113,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+83114,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+83115,C#;F#;Objective-C;Ruby;Swift;WebAssembly
+83116,HTML/CSS;JavaScript;Python
+83117,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly
+83118,Bash/Shell/PowerShell;C#
+83119,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83120,C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+83121,Assembly;Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+83122,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Other(s):
+83123,C#;HTML/CSS;SQL;TypeScript;VBA;Other(s):
+83124,HTML/CSS;Java;JavaScript
+83125,C#
+83126,JavaScript;PHP;SQL
+83127,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+83128,C#;Java;JavaScript;SQL
+83129,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+83130,Bash/Shell/PowerShell;C#;Dart;F#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+83131,HTML/CSS;JavaScript;PHP;SQL
+83133,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+83134,HTML/CSS;JavaScript;Kotlin;PHP;SQL
+83135,Java
+83137,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+83138,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL
+83139,C++;C#;Java;Python;SQL
+83140,HTML/CSS;Java;JavaScript;SQL
+83141,C++;Java;Kotlin
+83142,Java;JavaScript;TypeScript
+83143,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+83144,C#;JavaScript
+83145,Java;JavaScript;SQL
+83146,HTML/CSS
+83147,Bash/Shell/PowerShell;C#;Java;Python;SQL
+83148,Java
+83149,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+83150,Other(s):
+83151,Go;HTML/CSS;JavaScript;TypeScript;WebAssembly
+83152,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83153,Bash/Shell/PowerShell;C++;C#;Python;SQL
+83155,Bash/Shell/PowerShell;TypeScript
+83156,SQL
+83157,HTML/CSS;Java;JavaScript;Python
+83158,Bash/Shell/PowerShell;C#;Python;Scala;SQL
+83159,C;C++;HTML/CSS;JavaScript;PHP;SQL
+83160,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Swift
+83161,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83162,Bash/Shell/PowerShell;Java;SQL;Swift
+83163,HTML/CSS;JavaScript;PHP
+83164,HTML/CSS;JavaScript;Python;SQL
+83165,C++;Java;Swift
+83166,Bash/Shell/PowerShell;VBA
+83167,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+83168,Bash/Shell/PowerShell;Python
+83169,HTML/CSS;JavaScript
+83170,C#;HTML/CSS;JavaScript;SQL
+83171,C#;HTML/CSS;Java;JavaScript;TypeScript
+83172,Bash/Shell/PowerShell;C++;Python
+83173,C;C++;C#;Python
+83174,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+83175,Dart;Java;Kotlin;Python;SQL;Swift
+83176,C++
+83177,HTML/CSS;Java;JavaScript
+83178,C;C++;Java;Python;Ruby
+83179,Bash/Shell/PowerShell;C++;C#;HTML/CSS;TypeScript
+83180,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+83181,C++
+83182,Bash/Shell/PowerShell;Java;Python;SQL
+83183,HTML/CSS;JavaScript;PHP;TypeScript
+83184,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+83185,Java;JavaScript;Python;SQL
+83186,Assembly;Bash/Shell/PowerShell;C++;Java;Python
+83187,HTML/CSS;Java;JavaScript;PHP;Python
+83188,C#;HTML/CSS;Java;Python;SQL
+83189,JavaScript
+83190,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+83191,Bash/Shell/PowerShell;C++;Go;Python;SQL
+83192,Assembly;Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+83193,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+83194,HTML/CSS;Java;PHP;Python;SQL
+83195,C#;HTML/CSS;Java;JavaScript;Python;SQL
+83196,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+83197,C#
+83198,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift
+83199,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83200,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+83201,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+83202,Go;JavaScript;Python
+83203,Swift
+83204,C;C++;Java;JavaScript;TypeScript;WebAssembly
+83205,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;Swift;TypeScript
+83206,Bash/Shell/PowerShell;Java;Rust
+83207,C#;JavaScript;SQL;TypeScript
+83208,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+83209,Bash/Shell/PowerShell;Python;R;SQL
+83210,HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+83211,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+83212,C#;HTML/CSS;Java;JavaScript;SQL
+83213,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+83214,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+83215,C#;HTML/CSS;JavaScript;Python;Ruby;SQL
+83216,C#;HTML/CSS;JavaScript;Python;SQL
+83217,C++;HTML/CSS;PHP
+83218,C++;C#;Java;Python;SQL
+83219,Assembly;C;Java;JavaScript;Python
+83220,C;HTML/CSS;JavaScript
+83221,Assembly;C;C#;HTML/CSS;JavaScript;SQL;VBA
+83222,Objective-C;Swift
+83223,JavaScript;PHP
+83224,Python;SQL
+83225,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala
+83226,Bash/Shell/PowerShell;C++;Dart;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;Swift
+83227,Bash/Shell/PowerShell;Erlang
+83228,C#;HTML/CSS;Python
+83229,C#;HTML/CSS;Python;SQL
+83230,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+83231,C++;C#;SQL
+83232,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+83233,C;JavaScript;PHP;SQL
+83234,HTML/CSS;JavaScript;TypeScript
+83235,HTML/CSS;JavaScript;TypeScript
+83236,Java
+83237,C;C++;HTML/CSS;Java;PHP;Python
+83238,Java;JavaScript;Kotlin;Swift
+83239,HTML/CSS;Java;JavaScript;Python;SQL
+83240,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83241,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Swift;TypeScript
+83242,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+83243,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL
+83244,JavaScript;Other(s):
+83245,C#;HTML/CSS;JavaScript;SQL
+83246,C;C++;JavaScript;PHP;SQL
+83247,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83248,C#;Java
+83249,HTML/CSS;Java;SQL
+83250,PHP;SQL
+83251,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+83252,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python;SQL
+83253,C#;HTML/CSS;PHP;Python;R;SQL
+83254,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+83255,C++;Java;Kotlin;Python
+83256,Bash/Shell/PowerShell;Python
+83257,HTML/CSS;Java;JavaScript;Python
+83258,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+83259,C#;JavaScript;TypeScript
+83260,Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C
+83261,JavaScript
+83262,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+83263,C#;HTML/CSS;Java;JavaScript
+83264,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL;TypeScript
+83265,C#;SQL;Other(s):
+83266,HTML/CSS;Java;JavaScript
+83267,C#;HTML/CSS;JavaScript;SQL
+83268,Assembly;Bash/Shell/PowerShell;C;Elixir;Erlang;Go;JavaScript;Rust
+83269,C;HTML/CSS;Java;JavaScript;SQL
+83270,Java;Python
+83271,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83272,SQL;VBA
+83273,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83274,Bash/Shell/PowerShell;C;C++;Python;SQL
+83275,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+83276,HTML/CSS;Java;JavaScript;Python
+83277,HTML/CSS;JavaScript;Ruby
+83278,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83279,Java;Scala;SQL
+83280,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83281,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+83282,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;SQL
+83283,Bash/Shell/PowerShell;Go;Java
+83284,C++;C#
+83285,Bash/Shell/PowerShell;Java;Kotlin;Scala;SQL
+83286,C#;Clojure;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+83287,Bash/Shell/PowerShell;C++;Python
+83288,Python;R
+83289,HTML/CSS;JavaScript;Other(s):
+83290,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;VBA
+83291,C#;HTML/CSS;JavaScript;SQL;VBA
+83292,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+83293,HTML/CSS;PHP;Ruby;SQL
+83294,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+83295,Java
+83296,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83297,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83299,Dart;HTML/CSS;JavaScript;PHP;Python;Rust
+83300,Assembly;Bash/Shell/PowerShell;C;C++;Python
+83302,C++;Python
+83303,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83304,HTML/CSS;Java;JavaScript;Ruby;Scala;SQL;TypeScript
+83305,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+83306,Assembly;C++;HTML/CSS;Java;Python;R
+83307,Bash/Shell/PowerShell;C;Python;SQL
+83308,C#;F#;HTML/CSS;JavaScript;SQL;VBA
+83309,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+83310,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83311,HTML/CSS;JavaScript;TypeScript
+83312,C#;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+83313,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+83314,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+83315,C#;HTML/CSS;JavaScript;VBA
+83316,Assembly;C;C++;Python
+83317,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+83318,C;C++;Erlang;Go;Java;Python;Ruby;Rust
+83319,C#;HTML/CSS;JavaScript;SQL
+83320,JavaScript;PHP;SQL
+83321,HTML/CSS;Java;JavaScript;SQL
+83322,C#;HTML/CSS;JavaScript;SQL
+83323,C;HTML/CSS
+83324,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+83325,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+83326,R;SQL
+83327,HTML/CSS;JavaScript;PHP;Python;SQL
+83328,Java
+83329,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;SQL;Swift
+83330,HTML/CSS;JavaScript
+83331,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+83332,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83333,Java
+83334,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+83335,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP;Python;Rust;SQL
+83336,Bash/Shell/PowerShell;JavaScript
+83337,C;C++;C#;HTML/CSS;JavaScript;SQL
+83338,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+83339,HTML/CSS;JavaScript;SQL
+83340,C#
+83341,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;WebAssembly
+83342,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;R;SQL;TypeScript
+83343,Elixir;Go;HTML/CSS;JavaScript;Python;TypeScript
+83344,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift;TypeScript
+83345,C++;C#;Java;JavaScript
+83346,C#;HTML/CSS;Java;JavaScript;SQL;Swift
+83347,Go;Java;JavaScript;Python
+83348,Bash/Shell/PowerShell;Go;Python;R;Scala;Other(s):
+83349,Bash/Shell/PowerShell;C++;C#;Erlang;JavaScript;Python;SQL
+83350,JavaScript;PHP;SQL
+83351,Bash/Shell/PowerShell;Erlang;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+83352,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+83353,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83354,C++;HTML/CSS;Java;JavaScript;Python;Other(s):
+83355,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+83356,Bash/Shell/PowerShell;C;C++;Python
+83357,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+83358,C;Objective-C;Swift
+83359,Java
+83360,C#;HTML/CSS;JavaScript;Python;SQL
+83361,C++;HTML/CSS;JavaScript;SQL
+83362,Go;HTML/CSS;Java;JavaScript;Python
+83363,HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+83364,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+83365,HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+83366,Bash/Shell/PowerShell;Java;Scala;SQL
+83367,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL
+83368,HTML/CSS;JavaScript;Python;Scala;SQL
+83369,C#;JavaScript;Python;Rust;SQL;VBA;Other(s):
+83370,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83371,C;Dart;JavaScript;Kotlin;Swift
+83372,HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+83373,C#;HTML/CSS;JavaScript;SQL
+83374,Java;JavaScript;SQL
+83375,Swift;VBA
+83376,HTML/CSS;JavaScript;PHP;Python;SQL
+83377,Java
+83378,C#;Other(s):
+83379,JavaScript;Python
+83380,HTML/CSS;Java;JavaScript;Python
+83381,C#;HTML/CSS;Java;JavaScript;SQL
+83382,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+83383,Assembly;Bash/Shell/PowerShell;C;Erlang;Go;HTML/CSS;Java;PHP;Python;R;SQL
+83384,Bash/Shell/PowerShell;C++;Clojure;HTML/CSS;Java;Python
+83385,HTML/CSS;JavaScript;PHP;SQL
+83386,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+83387,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+83388,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+83389,C;C++;C#;HTML/CSS;Java;JavaScript
+83390,Bash/Shell/PowerShell;C;C++;C#
+83391,C++;C#
+83392,Swift
+83393,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+83394,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+83395,C++;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+83396,Python;Other(s):
+83398,HTML/CSS
+83399,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+83400,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL;TypeScript
+83401,HTML/CSS;JavaScript;PHP
+83402,C#;HTML/CSS;JavaScript;TypeScript
+83403,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+83404,Java;JavaScript
+83405,HTML/CSS;JavaScript;TypeScript;WebAssembly;Other(s):
+83406,Bash/Shell/PowerShell;C;Java;Kotlin;PHP;Rust;SQL
+83407,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;Other(s):
+83408,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+83409,C;C#;SQL
+83410,C#;SQL
+83411,JavaScript
+83412,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+83413,HTML/CSS;JavaScript;Python;SQL
+83414,C++;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+83415,HTML/CSS;Java;Python
+83416,Bash/Shell/PowerShell;C#;Java;Python;R
+83417,C#;HTML/CSS;Java;JavaScript;Python
+83418,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+83419,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+83420,HTML/CSS;JavaScript;SQL;Other(s):
+83421,HTML/CSS;JavaScript;PHP
+83422,HTML/CSS;JavaScript;PHP;Ruby;SQL
+83423,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+83424,C#
+83426,Java;SQL
+83427,Java;Kotlin
+83428,Bash/Shell/PowerShell;C#;F#;SQL
+83429,C#;Java;JavaScript;SQL;VBA
+83430,Assembly;Other(s):
+83431,C;HTML/CSS;JavaScript;PHP;Python;SQL
+83432,HTML/CSS;JavaScript;PHP;Python;SQL
+83433,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;TypeScript
+83434,C;C++;Go;HTML/CSS;JavaScript;Python;Scala;SQL
+83435,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+83436,C#;HTML/CSS;JavaScript;SQL
+83437,HTML/CSS;Python;R;SQL
+83438,C#;HTML/CSS;JavaScript;Python;SQL
+83439,Bash/Shell/PowerShell;C++
+83440,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby
+83441,JavaScript;PHP;TypeScript
+83442,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+83443,HTML/CSS;Java;JavaScript
+83444,C#;HTML/CSS;JavaScript;SQL
+83445,SQL
+83446,C#;HTML/CSS;JavaScript;SQL
+83447,Bash/Shell/PowerShell;Go;Java;SQL
+83448,Objective-C;Swift
+83449,HTML/CSS;JavaScript;Python
+83450,Bash/Shell/PowerShell;HTML/CSS;SQL
+83451,HTML/CSS;Java;JavaScript;SQL
+83452,C++;C#
+83453,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+83454,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+83455,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+83456,HTML/CSS;JavaScript;PHP
+83457,HTML/CSS;JavaScript;PHP;Python
+83458,C#;Other(s):
+83459,JavaScript;PHP
+83461,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;SQL
+83462,HTML/CSS;JavaScript
+83463,HTML/CSS;JavaScript;PHP;SQL
+83464,C;C++;C#;Go;HTML/CSS;Java
+83465,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+83466,Bash/Shell/PowerShell;Python
+83467,Java
+83468,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+83469,Assembly;C;C++;HTML/CSS;Java;JavaScript
+83470,C;C#;Go;Java;JavaScript;Kotlin;Objective-C;Ruby;Swift
+83471,Bash/Shell/PowerShell;C;C++;SQL;Other(s):
+83472,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript
+83473,C#;Java
+83474,C++;C#;HTML/CSS;Java;JavaScript;Scala;SQL
+83475,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83476,C#;HTML/CSS;JavaScript;SQL
+83477,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+83478,C#
+83479,C#;JavaScript;SQL;VBA
+83480,HTML/CSS;JavaScript;PHP;Python;R;SQL
+83481,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+83482,Java;Python;SQL;Other(s):
+83483,HTML/CSS;PHP;Python;SQL
+83484,C#;HTML/CSS;Java;JavaScript;SQL
+83485,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+83486,Bash/Shell/PowerShell;C;C++;Python;SQL
+83487,C++;HTML/CSS;JavaScript;Python;WebAssembly
+83488,JavaScript;Objective-C;PHP;Python;Swift
+83489,C++;HTML/CSS;JavaScript;PHP;SQL
+83490,Bash/Shell/PowerShell;C#;Go;Java;Kotlin;SQL
+83491,C#
+83492,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python
+83493,HTML/CSS;Java;JavaScript;SQL
+83494,HTML/CSS;Python;VBA
+83495,C#;HTML/CSS;SQL
+83496,Bash/Shell/PowerShell;Java;TypeScript
+83497,C#;HTML/CSS;JavaScript;SQL
+83498,Assembly;Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+83499,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+83500,JavaScript;PHP
+83501,JavaScript;Other(s):
+83502,HTML/CSS;JavaScript;PHP;SQL
+83503,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R
+83504,Bash/Shell/PowerShell;C;C++;Python;Rust;SQL
+83505,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+83506,HTML/CSS;Java;JavaScript;PHP;SQL
+83507,Bash/Shell/PowerShell;C#;Elixir;Other(s):
+83508,Assembly;Python;Rust;SQL
+83509,Assembly;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+83510,HTML/CSS;JavaScript;TypeScript
+83512,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+83513,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;HTML/CSS;JavaScript;Python;SQL;Other(s):
+83514,HTML/CSS;JavaScript;PHP;SQL
+83515,HTML/CSS;Java;JavaScript;TypeScript
+83516,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83517,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+83518,C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+83519,Bash/Shell/PowerShell;C;C++;Other(s):
+83520,Bash/Shell/PowerShell;Go;HTML/CSS;Java;SQL
+83521,C#;Dart;HTML/CSS;JavaScript;SQL;TypeScript
+83522,C;C++;JavaScript;Python
+83523,C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby;Rust;Scala;SQL;TypeScript
+83524,Python;SQL
+83525,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript;Other(s):
+83526,C++;C#;HTML/CSS;SQL
+83527,Assembly;C#;HTML/CSS;Java;JavaScript;Python;SQL
+83528,Bash/Shell/PowerShell;C;Other(s):
+83529,C;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+83530,Java;Python;SQL
+83531,Java;JavaScript
+83532,HTML/CSS;JavaScript;PHP;Python
+83533,C;C++;Java
+83534,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;Swift
+83535,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+83536,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+83537,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+83538,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+83539,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+83540,C++;C#;Clojure;Go;Java;Scala;TypeScript
+83541,C#;SQL;VBA
+83542,C;C++
+83543,Python
+83544,Python;VBA
+83545,Java;JavaScript;SQL
+83546,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;Python;SQL
+83547,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+83549,HTML/CSS;Java;JavaScript;PHP
+83550,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+83551,Java;JavaScript;Python;SQL
+83552,C#;Java;JavaScript;PHP
+83553,C;C#;HTML/CSS;Other(s):
+83554,C;HTML/CSS;Java;JavaScript;R;TypeScript
+83555,HTML/CSS;Java;JavaScript;SQL;VBA
+83556,Java;PHP;Python;VBA
+83557,HTML/CSS;JavaScript;PHP;SQL
+83558,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83559,JavaScript;PHP;R;SQL
+83560,Bash/Shell/PowerShell;Python;Scala;SQL
+83561,Assembly;C;C++;Java;JavaScript;Python;Other(s):
+83562,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83563,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;TypeScript
+83564,C++;C#;Java
+83565,Python;R;SQL
+83566,C#;HTML/CSS;JavaScript
+83567,Bash/Shell/PowerShell;C#;Java;SQL;VBA
+83568,HTML/CSS;JavaScript;TypeScript;WebAssembly
+83569,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+83570,HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+83571,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL
+83572,HTML/CSS;Java;JavaScript;TypeScript
+83574,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83575,HTML/CSS;JavaScript;TypeScript
+83576,HTML/CSS;JavaScript;Other(s):
+83577,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+83578,HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+83579,C++;Other(s):
+83580,Objective-C;Swift
+83581,Python;SQL
+83582,HTML/CSS;Java;JavaScript;TypeScript
+83583,Bash/Shell/PowerShell;Java;Kotlin
+83584,HTML/CSS;JavaScript;Python
+83585,C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+83586,HTML/CSS;Java;JavaScript;Python
+83587,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83588,C;C++;C#;Java;JavaScript;Objective-C;Python;Swift
+83589,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+83590,Elixir;Erlang;JavaScript;Scala;SQL;Other(s):
+83591,Java;JavaScript;SQL;TypeScript
+83592,C++;Java;JavaScript
+83593,HTML/CSS;JavaScript;PHP;TypeScript
+83594,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+83595,C#;F#;HTML/CSS;JavaScript;SQL
+83596,Assembly;C;Java;Kotlin
+83597,C#;HTML/CSS;JavaScript;SQL
+83598,C#
+83599,Bash/Shell/PowerShell;C
+83600,SQL
+83601,JavaScript;PHP;R;SQL
+83602,C;C++;C#;HTML/CSS;JavaScript;SQL
+83603,Java;JavaScript;SQL;VBA
+83604,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;SQL;TypeScript
+83605,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+83606,C#;HTML/CSS;JavaScript;SQL;VBA
+83607,C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83608,C#;JavaScript;TypeScript
+83609,C#;HTML/CSS;Python;SQL
+83610,Java;JavaScript;Kotlin
+83611,HTML/CSS;JavaScript;PHP;SQL
+83613,C++;C#;HTML/CSS
+83614,PHP;Ruby
+83615,HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+83616,C;Python;Rust
+83617,Bash/Shell/PowerShell;Python;R
+83618,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;TypeScript
+83619,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+83620,Java;JavaScript
+83621,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+83622,Java;Python;R
+83623,Python;SQL
+83624,Bash/Shell/PowerShell;Java
+83625,C;C#;JavaScript;PHP;Python;SQL
+83626,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+83627,HTML/CSS;Java;JavaScript;PHP
+83628,Java;JavaScript;Python;SQL;TypeScript
+83629,Bash/Shell/PowerShell;Python;SQL;Other(s):
+83630,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+83631,Bash/Shell/PowerShell;Java;PHP;SQL;Other(s):
+83632,HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+83633,SQL;Other(s):
+83634,C++;C#;Go
+83635,JavaScript;TypeScript
+83636,Other(s):
+83637,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+83638,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+83639,C;C#;HTML/CSS;JavaScript;SQL
+83640,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+83641,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL
+83642,Assembly;C;C++;Python
+83643,C;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL
+83644,C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+83645,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83646,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+83647,Go;HTML/CSS;JavaScript
+83649,C#;JavaScript;SQL
+83650,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+83651,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83652,HTML/CSS;Java;JavaScript;Python;SQL
+83653,C#;HTML/CSS;JavaScript;SQL
+83654,C;C++;C#;SQL
+83655,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+83656,Java;JavaScript;SQL;Swift
+83657,SQL;Other(s):
+83658,Bash/Shell/PowerShell;HTML/CSS;Java;Python;R;Scala;SQL
+83659,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Rust
+83660,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+83661,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83662,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Ruby;SQL;VBA
+83663,C;C++;C#;HTML/CSS;JavaScript;Rust
+83664,Objective-C;Swift
+83665,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+83666,C;C++;C#;Java;Objective-C;SQL;Swift
+83667,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83668,Java;Kotlin
+83669,Bash/Shell/PowerShell;Dart;Erlang;HTML/CSS;JavaScript;TypeScript
+83670,HTML/CSS;Python
+83671,HTML/CSS;Java;JavaScript;SQL
+83672,Swift;Other(s):
+83673,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+83674,HTML/CSS;Java;JavaScript;PHP;Python;Scala;TypeScript
+83675,HTML/CSS;JavaScript;PHP;Ruby;SQL
+83676,HTML/CSS;Ruby
+83677,Bash/Shell/PowerShell;Go;Java;Python;Ruby;Scala;SQL
+83678,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+83679,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;Python;SQL
+83680,C;C++;Java;Kotlin;PHP;SQL
+83681,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+83682,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+83683,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python
+83684,C++;C#;SQL
+83685,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+83686,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+83687,Bash/Shell/PowerShell;C++;C#;F#;Java;JavaScript;Python;SQL;TypeScript
+83688,HTML/CSS;PHP;SQL
+83689,C#;HTML/CSS;JavaScript;SQL
+83690,Bash/Shell/PowerShell;C#;Python;SQL;TypeScript
+83691,HTML/CSS
+83692,Go;HTML/CSS;JavaScript;SQL
+83693,Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+83694,HTML/CSS;Java;JavaScript;SQL;Other(s):
+83695,C#;JavaScript;SQL;VBA;Other(s):
+83696,C;C++;HTML/CSS;JavaScript;PHP
+83697,Bash/Shell/PowerShell;Erlang;Java;Ruby;SQL;Other(s):
+83698,HTML/CSS;JavaScript;Python
+83699,Elixir;JavaScript;TypeScript
+83700,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+83701,C#;SQL
+83702,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83703,HTML/CSS;JavaScript
+83704,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+83705,Assembly;Bash/Shell/PowerShell;C;C++;Python
+83706,C;HTML/CSS;PHP
+83707,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+83710,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+83711,Elixir;Erlang;Go;Java;JavaScript;Kotlin;TypeScript
+83712,Java;JavaScript;Python
+83713,HTML/CSS;JavaScript;TypeScript;Other(s):
+83714,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Scala;SQL
+83715,Assembly;C;C++;C#;PHP;Python;VBA
+83716,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+83717,C#;F#;TypeScript
+83718,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+83719,HTML/CSS;Java;JavaScript;SQL;VBA
+83720,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+83721,C;C#;Java;VBA
+83722,Bash/Shell/PowerShell;HTML/CSS;Java;Scala;SQL;Other(s):
+83723,C#;HTML/CSS;JavaScript;Python;SQL
+83724,Java
+83725,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83726,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+83727,C#
+83728,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+83729,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+83730,HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+83731,HTML/CSS;JavaScript;Python;TypeScript
+83732,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin
+83733,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83734,C#;HTML/CSS;Java;JavaScript;SQL
+83735,HTML/CSS;Java;JavaScript;PHP
+83736,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+83737,Bash/Shell/PowerShell;C++;PHP;Python
+83738,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;VBA
+83739,HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+83741,HTML/CSS;JavaScript;Python;SQL
+83742,Java
+83743,C;HTML/CSS;Java;JavaScript;Python
+83744,C#;HTML/CSS;Java;JavaScript;SQL
+83745,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+83746,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+83747,SQL;VBA
+83748,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+83749,HTML/CSS;Java;JavaScript;SQL
+83750,C#;Python;SQL
+83751,C#;PHP;Python;SQL
+83752,JavaScript;Python
+83753,C;C++;HTML/CSS;JavaScript;PHP
+83754,PHP;SQL
+83755,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+83756,HTML/CSS;JavaScript;PHP;SQL
+83757,C++;Java;Python
+83758,C;Python;SQL
+83759,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript
+83760,Python;R;SQL
+83761,Java
+83762,HTML/CSS;Python
+83763,HTML/CSS;JavaScript;SQL;Other(s):
+83764,C#;HTML/CSS
+83765,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+83766,JavaScript
+83767,HTML/CSS;JavaScript;TypeScript
+83768,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+83769,C;C++;Elixir;Python;Rust
+83770,JavaScript;Ruby;TypeScript
+83771,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+83772,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+83773,C++;C#;HTML/CSS;JavaScript
+83774,Assembly;C;C++;PHP;SQL;VBA;Other(s):
+83775,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;R;SQL
+83776,Objective-C;Swift
+83778,Bash/Shell/PowerShell;C++;Java;Python
+83779,Java;Python
+83780,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+83781,HTML/CSS;Java;JavaScript;PHP;SQL
+83782,C++;Python
+83783,HTML/CSS;Java;JavaScript
+83784,Java;JavaScript;Python;VBA
+83785,C;C++;HTML/CSS;Java;Objective-C;Python
+83787,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+83788,HTML/CSS;JavaScript
+83789,Java
+83790,Bash/Shell/PowerShell;Python
+83791,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+83792,HTML/CSS;JavaScript
+83793,HTML/CSS;JavaScript;Other(s):
+83794,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+83795,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+83796,JavaScript;Other(s):
+83797,Java;Python
+83798,JavaScript;PHP
+83799,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83801,Objective-C;Swift
+83802,JavaScript;Python
+83803,Bash/Shell/PowerShell;C#;SQL;VBA
+83804,Java;Kotlin;Objective-C;Ruby;SQL
+83805,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83806,Python;R;SQL;VBA
+83807,C#;HTML/CSS;JavaScript;SQL
+83808,Go;HTML/CSS;JavaScript;Python;SQL
+83809,Java
+83810,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+83811,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+83812,Bash/Shell/PowerShell;C++;Python
+83813,HTML/CSS;JavaScript;Python;SQL;TypeScript
+83814,C++;C#;Erlang;JavaScript;Python;Other(s):
+83815,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+83816,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;Other(s):
+83817,Bash/Shell/PowerShell;JavaScript;Python
+83818,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83819,Bash/Shell/PowerShell;C;C++;C#;SQL
+83820,C#;HTML/CSS;Java;JavaScript;SQL
+83821,C#;HTML/CSS;JavaScript;SQL
+83822,HTML/CSS;Java;JavaScript;Objective-C;Swift
+83823,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+83824,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+83825,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA;Other(s):
+83826,Bash/Shell/PowerShell;C;C++;Clojure;Java;Python;SQL
+83827,HTML/CSS;JavaScript;Python;TypeScript
+83828,C#;HTML/CSS;Java;Python;R;SQL;VBA
+83829,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+83830,C++;Python
+83831,HTML/CSS;JavaScript;PHP;SQL
+83832,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+83833,C#;HTML/CSS;JavaScript;Python;SQL
+83834,Bash/Shell/PowerShell;Go;Java
+83836,Bash/Shell/PowerShell;JavaScript;PHP;SQL;TypeScript;Other(s):
+83837,HTML/CSS;JavaScript;Python;SQL
+83838,Java;TypeScript
+83839,Java;JavaScript;Swift
+83840,Java
+83841,HTML/CSS;JavaScript;SQL;TypeScript
+83842,C;HTML/CSS;Java;SQL
+83843,Java;Python;Swift
+83844,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;R;Ruby;TypeScript
+83845,Bash/Shell/PowerShell;C;C++;C#;PHP;SQL
+83846,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+83847,Bash/Shell/PowerShell;C;C#;Go;Java
+83848,C;C++;HTML/CSS;Java;JavaScript;Python
+83849,Bash/Shell/PowerShell;C#;Go;Java
+83850,HTML/CSS;JavaScript
+83851,C#;HTML/CSS;JavaScript;SQL;TypeScript
+83852,HTML/CSS;JavaScript;SQL;TypeScript
+83853,JavaScript
+83854,C#;HTML/CSS;JavaScript
+83855,HTML/CSS;JavaScript;Ruby;SQL
+83856,Java
+83857,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+83858,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+83859,Bash/Shell/PowerShell;Python;R;SQL
+83860,C#;HTML/CSS;PHP;SQL
+83861,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+83863,Java;JavaScript;Kotlin;Python;TypeScript
+83864,Bash/Shell/PowerShell;C;Python
+83865,Bash/Shell/PowerShell;C;Objective-C;Python
+83866,Java;Kotlin;PHP;SQL
+83868,HTML/CSS;JavaScript;PHP;SQL
+83869,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83870,C#
+83871,C#;Java;Python;SQL
+83872,C#
+83873,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+83874,C++;JavaScript;Python
+83875,Bash/Shell/PowerShell;C;Python;R;Other(s):
+83876,C;HTML/CSS;Java
+83878,HTML/CSS;JavaScript
+83879,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+83880,C#;Java;SQL
+83881,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+83882,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+83883,HTML/CSS;JavaScript;SQL
+83884,HTML/CSS;Java;JavaScript;Python;SQL
+83885,Bash/Shell/PowerShell;Python
+83886,Bash/Shell/PowerShell;Python;Ruby
+83887,Bash/Shell/PowerShell;SQL
+83888,C#;Go;JavaScript;Python;SQL;VBA;Other(s):
+83889,Java;SQL
+83890,Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+83891,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;R;SQL;Swift
+83892,Bash/Shell/PowerShell;C;C++;Python
+83893,C;C#;SQL
+83894,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+83895,HTML/CSS;JavaScript;PHP;SQL
+83896,HTML/CSS;Java;JavaScript;Python;Ruby
+83897,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+83898,C#;HTML/CSS;JavaScript
+83899,HTML/CSS;JavaScript;Python
+83900,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+83901,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Ruby;SQL
+83902,C#;HTML/CSS;PHP;SQL
+83903,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;SQL
+83904,C#;HTML/CSS;JavaScript;SQL
+83905,Assembly;Bash/Shell/PowerShell;C;C#;SQL
+83906,C++;HTML/CSS;Python;R;SQL
+83907,HTML/CSS;JavaScript;PHP
+83908,C#;HTML/CSS;JavaScript;TypeScript
+83909,Bash/Shell/PowerShell;C++;Python
+83910,VBA;Other(s):
+83911,PHP;SQL
+83913,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+83914,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;SQL;Swift;TypeScript
+83916,HTML/CSS;JavaScript;PHP;Ruby;SQL
+83917,JavaScript
+83918,HTML/CSS;Java;JavaScript
+83919,HTML/CSS;JavaScript;PHP
+83920,HTML/CSS;Java;Kotlin;TypeScript
+83921,C;C++;Java
+83922,Java;SQL;Other(s):
+83923,C++;C#;JavaScript
+83924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+83925,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83926,C#;SQL
+83927,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;TypeScript;VBA
+83928,Bash/Shell/PowerShell;Python;R
+83929,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;VBA
+83930,Bash/Shell/PowerShell;C++;Python;Ruby
+83931,C#;HTML/CSS;Java;PHP;Python
+83932,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+83933,Java;Kotlin;SQL
+83934,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+83935,PHP;Python
+83936,HTML/CSS;Java;JavaScript;SQL
+83937,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+83938,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+83939,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript
+83940,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;WebAssembly
+83941,Bash/Shell/PowerShell;Java;SQL
+83942,HTML/CSS;JavaScript;TypeScript
+83943,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+83944,Java;Kotlin
+83945,HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+83946,Assembly;HTML/CSS;JavaScript;Python
+83947,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+83948,C#;JavaScript;SQL
+83949,Bash/Shell/PowerShell;Java;Python;SQL
+83950,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+83951,Bash/Shell/PowerShell;C;C++;C#;Java;SQL
+83952,C#;JavaScript;SQL
+83953,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+83954,C#;HTML/CSS;JavaScript;PHP;Rust;SQL
+83955,C#;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript
+83956,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+83957,C#;HTML/CSS;PHP;SQL
+83958,C#;TypeScript
+83959,PHP;SQL
+83960,C#;SQL;Swift
+83961,HTML/CSS;Java;JavaScript;SQL;TypeScript
+83962,Bash/Shell/PowerShell;C++;C#;Go;Java;JavaScript;Python;Rust;SQL;TypeScript
+83963,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Other(s):
+83964,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+83965,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+83966,Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+83967,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+83968,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+83969,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+83970,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+83971,HTML/CSS;Java;JavaScript;SQL
+83972,C#;HTML/CSS;JavaScript;Python;R;SQL
+83973,C++;HTML/CSS;Java;PHP;TypeScript
+83974,Java;Kotlin
+83975,HTML/CSS;JavaScript;Python;Ruby;Scala;SQL
+83976,Clojure;Python;SQL
+83977,Go;HTML/CSS;Python;Rust;SQL;Other(s):
+83978,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+83979,C#;HTML/CSS;JavaScript;SQL
+83980,C++;HTML/CSS;Java;JavaScript;SQL
+83981,JavaScript
+83982,Java;JavaScript;Python
+83983,Bash/Shell/PowerShell;Python;SQL
+83984,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;SQL
+83985,Objective-C;Scala;Swift
+83986,Bash/Shell/PowerShell;C;C++;Python
+83987,Bash/Shell/PowerShell
+83988,Assembly;HTML/CSS;JavaScript
+83989,Bash/Shell/PowerShell;C#;Java;JavaScript
+83990,Assembly;C++;HTML/CSS;Java
+83991,C#
+83992,Java;SQL
+83993,Java;JavaScript
+83994,Go;Java;JavaScript
+83995,C;C#;HTML/CSS
+83996,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+83997,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+83998,HTML/CSS;Java;JavaScript;SQL
+83999,Bash/Shell/PowerShell;C;C++;SQL
+84000,C;HTML/CSS;Java;Ruby
+84001,HTML/CSS;Java;Python;R;Scala
+84002,C;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+84003,HTML/CSS;Java;JavaScript;Python;TypeScript
+84005,HTML/CSS;Java;JavaScript;SQL;TypeScript
+84006,Bash/Shell/PowerShell;C;C++;JavaScript;Python;Ruby
+84007,Assembly;C;HTML/CSS;Java;JavaScript;SQL
+84008,Java;Swift;Other(s):
+84009,C#;HTML/CSS;JavaScript;SQL;Other(s):
+84010,HTML/CSS;Java;JavaScript;Ruby;SQL
+84011,JavaScript;PHP
+84012,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+84013,Bash/Shell/PowerShell;Dart;Go;JavaScript
+84014,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+84015,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+84016,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;SQL;VBA
+84017,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84018,HTML/CSS;JavaScript;PHP
+84019,Bash/Shell/PowerShell;C#;Java
+84020,Objective-C;Python;Swift
+84021,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+84022,C++;HTML/CSS;Ruby
+84023,C;HTML/CSS;JavaScript;Python;SQL;Other(s):
+84024,C++;HTML/CSS;TypeScript
+84026,Go;HTML/CSS;Java;SQL
+84027,HTML/CSS;JavaScript;SQL;TypeScript
+84028,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;Python;SQL
+84029,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84030,HTML/CSS;JavaScript;PHP;SQL
+84031,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift
+84032,Go;HTML/CSS;JavaScript
+84033,Swift
+84034,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84035,HTML/CSS;Java;SQL;Other(s):
+84036,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+84037,Dart;Go;HTML/CSS;JavaScript;Python
+84038,Assembly;C;C++;JavaScript;PHP;SQL;Swift;TypeScript
+84039,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+84040,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+84041,C;C++;HTML/CSS;Objective-C;PHP;SQL;Swift
+84042,HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+84043,HTML/CSS;JavaScript;TypeScript
+84044,C#;HTML/CSS;Java;JavaScript;PHP
+84045,C#;Go;TypeScript
+84046,C;C++;C#;Objective-C;VBA
+84047,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+84048,C#;HTML/CSS;JavaScript;PHP;SQL
+84049,C#;PHP;TypeScript;Other(s):
+84050,C++
+84051,HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift
+84052,Dart;HTML/CSS;JavaScript;PHP;Python;SQL
+84053,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+84054,HTML/CSS;JavaScript;PHP;R;SQL
+84055,C#;Other(s):
+84056,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+84057,HTML/CSS;Java;JavaScript;PHP;SQL
+84058,Bash/Shell/PowerShell;C;Go;Java;JavaScript;PHP;Python;SQL
+84059,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+84060,C;C++
+84061,HTML/CSS;JavaScript
+84062,HTML/CSS;JavaScript;PHP;Python;SQL
+84063,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;SQL
+84064,Bash/Shell/PowerShell;C++;Java;JavaScript
+84065,C++;Java;Python;SQL;Swift
+84066,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;VBA
+84067,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+84068,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;SQL
+84069,Java;JavaScript;Kotlin;Objective-C;Python;SQL;TypeScript
+84070,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby
+84071,C#;HTML/CSS;JavaScript
+84072,HTML/CSS;Java;JavaScript;R;SQL
+84073,C++;HTML/CSS;Java;JavaScript;Python;SQL
+84074,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Rust;SQL
+84075,HTML/CSS;JavaScript;Python;SQL
+84076,HTML/CSS;JavaScript
+84077,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+84078,C++;Go;HTML/CSS;Python
+84079,C#;HTML/CSS;JavaScript
+84080,HTML/CSS;Java;JavaScript;SQL
+84081,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;VBA
+84082,Java;Python;SQL;Other(s):
+84083,JavaScript;SQL;TypeScript
+84084,Other(s):
+84085,Bash/Shell/PowerShell;Java;JavaScript;SQL;Other(s):
+84086,C#;HTML/CSS;SQL
+84087,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+84088,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA
+84090,Assembly;C++;C#;JavaScript;SQL
+84091,Bash/Shell/PowerShell;C++;Java;Python;R;Rust;Scala;SQL
+84092,C++;Python
+84093,Bash/Shell/PowerShell;C#
+84094,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+84095,Bash/Shell/PowerShell;Go;Java
+84096,HTML/CSS;JavaScript;Python;SQL;Other(s):
+84097,C#;JavaScript;Rust;TypeScript;Other(s):
+84098,C#;HTML/CSS;JavaScript;SQL
+84099,HTML/CSS;JavaScript;PHP
+84100,C#;HTML/CSS;JavaScript;Python;SQL
+84101,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;VBA;Other(s):
+84102,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+84103,Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+84104,C#;HTML/CSS;JavaScript;Ruby;SQL
+84105,HTML/CSS;JavaScript;PHP;SQL
+84106,C;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84107,Java;Python
+84108,C#;Java;JavaScript;SQL;VBA
+84109,C++;HTML/CSS
+84110,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84111,HTML/CSS;JavaScript;PHP;SQL
+84112,HTML/CSS;JavaScript;PHP;SQL
+84113,Bash/Shell/PowerShell;C++;Python;Ruby
+84114,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Rust;SQL;TypeScript
+84115,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84117,Elixir;HTML/CSS;JavaScript;Ruby;TypeScript
+84118,C#;Python;SQL
+84119,Bash/Shell/PowerShell;C;C++;Python
+84120,JavaScript;Ruby
+84121,Bash/Shell/PowerShell;Python;Rust;Scala;SQL
+84122,Java;JavaScript
+84123,HTML/CSS;JavaScript;Python;SQL
+84124,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+84125,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;SQL;VBA
+84126,Bash/Shell/PowerShell;C;Go;Python;Other(s):
+84127,HTML/CSS;JavaScript;TypeScript
+84128,C;C++;Objective-C;Swift
+84129,JavaScript;PHP;SQL
+84130,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+84131,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+84132,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+84133,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;Swift
+84134,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84135,Bash/Shell/PowerShell;C#;Java;JavaScript;SQL;TypeScript
+84136,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift
+84137,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Python;Swift
+84138,C;JavaScript;Kotlin;Objective-C;Python;Ruby;Scala;Swift
+84139,Bash/Shell/PowerShell;C#;Python
+84140,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;Swift;TypeScript
+84141,Java;JavaScript;Kotlin;Swift;TypeScript;Other(s):
+84142,C;C++;HTML/CSS;Java
+84143,HTML/CSS;Java;JavaScript;Python;R
+84144,C#;HTML/CSS;Java;JavaScript;SQL
+84145,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript
+84146,HTML/CSS;JavaScript
+84147,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+84148,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+84149,HTML/CSS;Java;JavaScript;SQL;TypeScript
+84150,C#;Java;Kotlin
+84151,C;C++;Go;HTML/CSS;JavaScript;Rust
+84152,C++;HTML/CSS;JavaScript;TypeScript
+84153,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+84154,Python;SQL
+84155,C#;HTML/CSS;VBA
+84156,Assembly;Bash/Shell/PowerShell;C;Dart;Java;Python;Rust;SQL;Other(s):
+84157,C;C++;C#;HTML/CSS;Java;PHP;SQL
+84158,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+84159,HTML/CSS;Java;JavaScript;Python;SQL
+84160,C#;Java;JavaScript;SQL;VBA
+84161,HTML/CSS;JavaScript;Python;R;SQL
+84162,Java;Objective-C;Swift
+84163,R;VBA
+84164,C#;HTML/CSS;JavaScript;SQL
+84165,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+84166,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL;Swift
+84167,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;SQL
+84168,Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+84169,C#
+84170,Assembly;Bash/Shell/PowerShell;C;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Scala;TypeScript;WebAssembly
+84171,HTML/CSS;Java;JavaScript;Kotlin;PHP;Ruby;SQL
+84172,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+84173,HTML/CSS;Java;JavaScript;Objective-C;Swift;TypeScript
+84174,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;Other(s):
+84175,Assembly;C;C#;Clojure;Elixir;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+84176,HTML/CSS;JavaScript;PHP;SQL
+84177,C;C++;JavaScript
+84178,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+84179,HTML/CSS;Java;JavaScript;PHP;SQL
+84180,HTML/CSS;JavaScript;Python
+84181,Python
+84182,Java;Kotlin;Python;SQL
+84183,C#;HTML/CSS;Java;JavaScript;Python
+84184,C#
+84185,Bash/Shell/PowerShell;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript
+84186,Bash/Shell/PowerShell;Java;Python;R
+84187,C#;JavaScript;Python;SQL;TypeScript
+84188,Java
+84189,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL;Other(s):
+84191,Python;Other(s):
+84192,Bash/Shell/PowerShell;Elixir;JavaScript;Python
+84193,HTML/CSS;JavaScript;Python;VBA
+84194,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+84195,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84196,C;HTML/CSS;Java;JavaScript
+84197,JavaScript
+84198,C;C++;C#;JavaScript;Python
+84199,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+84200,HTML/CSS;Java;JavaScript
+84201,HTML/CSS;Java;JavaScript;PHP;TypeScript;Other(s):
+84202,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+84203,JavaScript;PHP;SQL
+84204,HTML/CSS;Python;SQL
+84205,Bash/Shell/PowerShell;C;C++;Java;Python;R
+84206,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript;WebAssembly;Other(s):
+84207,Bash/Shell/PowerShell;C;C++;Elixir;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;Scala;TypeScript;Other(s):
+84208,HTML/CSS;JavaScript;PHP;SQL
+84209,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+84210,C#;SQL;TypeScript
+84211,C#;Python
+84212,HTML/CSS;JavaScript;TypeScript
+84213,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+84214,HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Scala;SQL;Swift
+84216,C#
+84217,HTML/CSS;Java;JavaScript
+84218,HTML/CSS;JavaScript;TypeScript
+84219,C;C++;HTML/CSS;JavaScript;Python
+84220,Bash/Shell/PowerShell;Java;Kotlin;Python
+84221,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84222,C;C++;Java
+84223,Dart;Python
+84224,HTML/CSS;Java;JavaScript;Ruby
+84225,Go;Java;PHP;SQL;TypeScript
+84226,C#;HTML/CSS;JavaScript;SQL
+84227,C++;HTML/CSS;JavaScript;PHP
+84228,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;R;SQL
+84229,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Scala;SQL;TypeScript
+84230,Java;Kotlin
+84231,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+84232,HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+84233,HTML/CSS;Java;JavaScript;SQL;TypeScript;VBA
+84234,HTML/CSS;Java;JavaScript;Objective-C;PHP;Other(s):
+84235,Bash/Shell/PowerShell;Java;Python;SQL
+84236,Assembly;HTML/CSS;JavaScript;PHP;SQL;WebAssembly
+84238,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84239,Clojure;Go;JavaScript;Python;SQL;Other(s):
+84240,C++;C#;HTML/CSS;Java;JavaScript;SQL
+84241,Bash/Shell/PowerShell;Java;Python;Scala;SQL;TypeScript
+84242,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+84243,C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;SQL
+84244,JavaScript
+84245,C#;HTML/CSS;JavaScript
+84246,Bash/Shell/PowerShell;C;C++;Clojure;Erlang;Go;Java;Python
+84247,Python;Ruby;SQL
+84248,JavaScript;Ruby;SQL
+84249,C#;HTML/CSS;Java;JavaScript
+84250,C#;HTML/CSS;JavaScript;SQL;Other(s):
+84251,HTML/CSS;JavaScript;PHP
+84252,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;SQL;TypeScript
+84253,C#
+84254,HTML/CSS;JavaScript;PHP;SQL
+84255,C#;HTML/CSS;JavaScript;PHP;SQL
+84256,C#;Kotlin;Objective-C;Swift
+84257,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+84258,Bash/Shell/PowerShell;C#;HTML/CSS;PHP;SQL;TypeScript;VBA
+84259,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift;VBA
+84260,C#;JavaScript;Objective-C;PHP;Ruby;SQL
+84261,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+84262,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+84263,Java
+84264,HTML/CSS;JavaScript;PHP;Python;TypeScript
+84265,HTML/CSS;JavaScript;PHP;Ruby
+84266,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift
+84267,HTML/CSS;Java;JavaScript
+84268,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+84269,Java;SQL
+84270,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+84271,HTML/CSS;JavaScript;PHP;Ruby
+84272,HTML/CSS;JavaScript;PHP;SQL
+84273,HTML/CSS;Java;JavaScript
+84274,HTML/CSS;JavaScript;SQL;TypeScript
+84275,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL
+84276,Bash/Shell/PowerShell;C#;Java;JavaScript;Ruby;SQL
+84277,HTML/CSS;JavaScript;Ruby;SQL
+84278,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;R;SQL;VBA;WebAssembly
+84279,HTML/CSS;JavaScript
+84280,Bash/Shell/PowerShell;C++;C#;JavaScript;Objective-C;Python;SQL
+84281,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+84282,C;C++;HTML/CSS;JavaScript;Ruby;SQL
+84283,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;SQL
+84284,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+84285,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+84287,Bash/Shell/PowerShell;C;C++;Clojure;Dart;HTML/CSS;Java;JavaScript;Python;R;Rust;Scala;SQL
+84288,C#
+84289,Bash/Shell/PowerShell;Python;SQL
+84290,C++;Go;Java
+84291,C#;SQL
+84292,C++;C#;F#;HTML/CSS;Java;JavaScript;TypeScript
+84293,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84294,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84295,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL;Swift
+84296,C#
+84297,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+84298,C;C#
+84300,C#;Java;SQL;Other(s):
+84301,C++;Dart;HTML/CSS;JavaScript;SQL
+84302,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84303,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84304,C;C++;Python;SQL;Other(s):
+84305,Assembly;Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;JavaScript;Python
+84306,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+84307,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;Python
+84308,HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+84309,HTML/CSS;PHP;SQL;Other(s):
+84310,HTML/CSS;Java;JavaScript;PHP;Other(s):
+84311,Bash/Shell/PowerShell;Erlang;HTML/CSS;SQL;VBA
+84312,Java;JavaScript
+84313,HTML/CSS;JavaScript
+84314,C;C++;C#;HTML/CSS;Java;SQL;VBA
+84315,Other(s):
+84316,C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84317,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Objective-C
+84318,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript
+84319,JavaScript;TypeScript
+84320,HTML/CSS;Java;JavaScript;SQL
+84321,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+84322,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+84323,HTML/CSS;Java;JavaScript;SQL
+84324,C++;HTML/CSS;JavaScript;PHP;SQL;Swift;TypeScript
+84325,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+84326,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+84327,HTML/CSS;JavaScript
+84328,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript;WebAssembly
+84329,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+84330,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+84331,HTML/CSS;Java;JavaScript;Objective-C;TypeScript
+84332,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;Rust
+84333,Bash/Shell/PowerShell;C#;VBA
+84334,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+84335,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript
+84336,C;C++;C#;HTML/CSS;Python;SQL;VBA
+84337,Bash/Shell/PowerShell;C;C++;C#;Go;Java;Kotlin;Python;SQL
+84338,HTML/CSS;JavaScript;PHP
+84339,HTML/CSS;JavaScript;PHP;SQL
+84340,C++;C#;HTML/CSS;Java;SQL;VBA
+84341,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+84342,HTML/CSS;JavaScript;PHP;Python;SQL
+84343,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+84344,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;Ruby
+84345,HTML/CSS;Java;JavaScript;PHP
+84346,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+84347,Go;Python
+84348,JavaScript;TypeScript
+84349,Assembly;Bash/Shell/PowerShell;C;C++;Python
+84350,Bash/Shell/PowerShell;C;Go;Java;JavaScript;SQL
+84351,C#;HTML/CSS;JavaScript;SQL
+84352,Python;Other(s):
+84353,HTML/CSS;JavaScript
+84354,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+84355,C++;HTML/CSS;Java;Python;SQL
+84356,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+84357,Go;Java;Python;Scala;SQL
+84358,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84359,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+84360,JavaScript;SQL;TypeScript
+84361,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+84362,C++;Java;Python;Rust
+84363,Java;JavaScript;Python
+84364,HTML/CSS;Java;JavaScript;Python
+84365,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+84366,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+84367,HTML/CSS;JavaScript;Rust;TypeScript
+84368,HTML/CSS;JavaScript;PHP;SQL
+84369,C;C#;Java;Python;SQL
+84370,C++;C#;HTML/CSS;JavaScript;Python;VBA
+84371,C;C++;C#;HTML/CSS;Java;JavaScript;Python
+84372,HTML/CSS;Java;JavaScript;SQL;TypeScript
+84373,Bash/Shell/PowerShell;Python;SQL
+84374,Java;SQL
+84375,Assembly;Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Python
+84376,C#;HTML/CSS;JavaScript;TypeScript
+84377,C++;HTML/CSS;Python
+84378,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;R;SQL;TypeScript
+84379,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+84380,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+84381,HTML/CSS;Java;SQL;TypeScript
+84382,JavaScript;SQL
+84383,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+84384,C;C++;Java;R;SQL
+84385,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+84386,C#;F#;HTML/CSS;Java;JavaScript;Rust;TypeScript
+84387,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;Other(s):
+84388,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Erlang;HTML/CSS;JavaScript;Python;Other(s):
+84389,C#;Dart;Go;JavaScript;SQL;TypeScript
+84390,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL;Other(s):
+84391,Assembly;C;C++;JavaScript;Python
+84392,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;SQL
+84393,PHP;SQL;Swift
+84394,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+84395,C#;SQL
+84396,C;HTML/CSS;JavaScript;PHP;Python;R;SQL;Other(s):
+84397,HTML/CSS;Java;JavaScript;SQL;TypeScript
+84398,Go;Python
+84399,Bash/Shell/PowerShell;C;Objective-C;Swift
+84400,C;C++;C#;Java;Kotlin;PHP;Python;SQL
+84401,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+84402,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84403,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+84404,Assembly;C;C++;C#;Python
+84405,Python;R;SQL
+84406,Bash/Shell/PowerShell;Python
+84407,C#
+84408,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+84409,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript;Other(s):
+84410,HTML/CSS;JavaScript
+84411,C++
+84412,Java;Ruby
+84413,Java;JavaScript;SQL
+84414,HTML/CSS;JavaScript;Python;TypeScript
+84415,C;HTML/CSS;Java;JavaScript;SQL
+84416,C#;SQL
+84417,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+84418,Bash/Shell/PowerShell;Java;Python
+84419,Elixir;HTML/CSS;Java;JavaScript;Python;Ruby
+84420,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+84421,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+84422,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Python;SQL
+84423,Bash/Shell/PowerShell;Python;R
+84424,Java;JavaScript
+84425,Bash/Shell/PowerShell;C++;C#;Go;Java;JavaScript;Python;TypeScript
+84426,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+84427,PHP;SQL
+84428,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;Scala
+84429,Go;HTML/CSS;Java;JavaScript;Ruby;SQL
+84430,C#;HTML/CSS;Java;JavaScript;SQL
+84431,C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+84432,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+84433,Python
+84434,Bash/Shell/PowerShell;C#;SQL;VBA
+84435,Dart;Objective-C;Python;Swift
+84436,Bash/Shell/PowerShell;C++;Objective-C;Python;Swift
+84437,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Other(s):
+84438,Bash/Shell/PowerShell;C;C++;C#
+84439,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+84440,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript
+84441,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;JavaScript;Python;SQL
+84442,Bash/Shell/PowerShell;C;C++;SQL
+84443,Bash/Shell/PowerShell;C;Java;R
+84444,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+84445,Ruby
+84446,C
+84447,HTML/CSS;JavaScript;PHP
+84448,C;C#;JavaScript;SQL;TypeScript
+84449,HTML/CSS;Java;JavaScript
+84450,C#;JavaScript;SQL
+84451,Bash/Shell/PowerShell;Python;SQL;Other(s):
+84453,C;C++;Elixir;Erlang;Go;HTML/CSS;JavaScript;Ruby;TypeScript
+84454,HTML/CSS;Java;JavaScript;PHP;TypeScript
+84455,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+84457,Java;JavaScript;PHP
+84458,C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+84459,C#;JavaScript
+84460,HTML/CSS;Java;JavaScript;Python
+84461,JavaScript;PHP
+84462,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Rust;SQL;WebAssembly;Other(s):
+84463,HTML/CSS;JavaScript;PHP;SQL
+84464,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+84465,Bash/Shell/PowerShell;Java;JavaScript;R;Ruby;SQL
+84466,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+84467,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+84468,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+84469,HTML/CSS;JavaScript;PHP;SQL
+84470,Assembly;Bash/Shell/PowerShell;C;C++;Go;Python;R;SQL
+84471,HTML/CSS;JavaScript;TypeScript
+84472,HTML/CSS;JavaScript;PHP;SQL
+84473,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84474,C++;HTML/CSS;R
+84475,HTML/CSS;Java;JavaScript;Ruby
+84476,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+84477,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+84478,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+84479,HTML/CSS;JavaScript;PHP;SQL
+84480,C;C#;Java;Python
+84481,HTML/CSS;Java;JavaScript;SQL;TypeScript
+84482,HTML/CSS;JavaScript;SQL;TypeScript
+84483,HTML/CSS;JavaScript;Other(s):
+84484,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+84485,Assembly;Clojure;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+84486,C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;R;TypeScript
+84487,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;SQL;Other(s):
+84488,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+84489,Bash/Shell/PowerShell;Java;JavaScript;Objective-C;SQL;Swift;TypeScript
+84490,C++;F#
+84491,Assembly;Bash/Shell/PowerShell;C;C++;Go;JavaScript;Python
+84492,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+84493,C#
+84494,HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+84495,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;Python;SQL
+84496,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+84497,C#;HTML/CSS;SQL;TypeScript
+84498,C#;Java
+84499,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84500,HTML/CSS;JavaScript;PHP;SQL
+84501,HTML/CSS;JavaScript
+84502,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+84503,JavaScript;PHP
+84504,C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python
+84505,Bash/Shell/PowerShell;C;C++;Java;JavaScript;SQL;TypeScript
+84506,PHP
+84507,HTML/CSS;Java;Python
+84508,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+84509,Assembly;C;Java;JavaScript;Python;Ruby
+84510,Go;HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+84511,Bash/Shell/PowerShell;C;Python
+84512,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+84513,HTML/CSS;JavaScript;PHP
+84514,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;SQL
+84515,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby;SQL
+84516,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+84517,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+84518,Java;JavaScript;Kotlin;SQL;TypeScript
+84519,C#;Java;Python;SQL
+84520,Bash/Shell/PowerShell;C#;Python;TypeScript
+84521,HTML/CSS;JavaScript;Python;SQL
+84522,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript
+84523,C++;C#;HTML/CSS;JavaScript;Kotlin;Python
+84524,C;C++;HTML/CSS;JavaScript;Python
+84525,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84526,Bash/Shell/PowerShell;HTML/CSS;Java;PHP
+84527,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+84528,C;HTML/CSS;Java;JavaScript;PHP;SQL
+84529,C++;Java
+84530,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84531,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+84532,Elixir;HTML/CSS;JavaScript;Python;TypeScript
+84533,Clojure;Java;JavaScript;Python;Scala
+84534,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+84535,C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+84536,Java
+84537,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+84538,C#;HTML/CSS;Java;JavaScript;Python;SQL
+84540,C++;HTML/CSS;Java;JavaScript;Python
+84541,JavaScript
+84542,HTML/CSS;Java;JavaScript;Python;Scala;SQL
+84543,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+84544,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84545,C;C#;Go;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+84546,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84547,HTML/CSS;JavaScript;TypeScript
+84548,Bash/Shell/PowerShell
+84549,C#;HTML/CSS;JavaScript;TypeScript
+84550,C++;C#;Python;SQL
+84551,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift
+84552,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Rust;TypeScript;WebAssembly;Other(s):
+84553,C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+84554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+84555,C;HTML/CSS;Java
+84556,SQL;VBA
+84557,C#;JavaScript;SQL;Other(s):
+84558,HTML/CSS;JavaScript
+84559,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+84560,C;C++;HTML/CSS;Java;Swift
+84561,Other(s):
+84562,C;HTML/CSS;JavaScript;Python;SQL
+84563,C++;Java;Kotlin;Python
+84564,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+84565,C#;F#;JavaScript;PHP;Python;Rust;TypeScript
+84566,Other(s):
+84567,HTML/CSS;JavaScript;PHP;SQL
+84568,C#;HTML/CSS;Python;SQL;VBA
+84569,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+84570,C#;Java;VBA
+84571,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+84572,C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+84573,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+84574,HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+84575,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84576,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;SQL
+84577,C#;HTML/CSS;Java;JavaScript;SQL;Swift;VBA
+84578,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Rust;Swift;TypeScript
+84579,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Ruby;Other(s):
+84580,C++;HTML/CSS;JavaScript;SQL
+84581,C#;HTML/CSS;Other(s):
+84582,HTML/CSS;Java;JavaScript;SQL
+84583,Python;Other(s):
+84584,Java;JavaScript;SQL;TypeScript
+84585,C;C++;Python
+84588,C;C++;PHP
+84589,C;C++;C#;Java;PHP;Python
+84590,HTML/CSS;Java;SQL
+84591,Bash/Shell/PowerShell;Java;PHP;SQL
+84592,HTML/CSS;Java;JavaScript;SQL
+84593,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+84594,HTML/CSS;JavaScript;R
+84595,Assembly;C++;Python
+84596,HTML/CSS;JavaScript
+84597,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+84598,Python
+84599,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+84600,C;C++;HTML/CSS;Java;SQL;Other(s):
+84601,C#;HTML/CSS;JavaScript;SQL
+84602,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+84603,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;TypeScript
+84604,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;Ruby;Rust;SQL
+84605,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;Python;SQL
+84606,JavaScript;PHP;Swift;TypeScript
+84607,Bash/Shell/PowerShell;Python;R
+84608,Java;JavaScript;SQL;WebAssembly
+84609,C;C++;Java;Python
+84610,HTML/CSS;JavaScript;PHP;SQL
+84611,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Python;R
+84612,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;Ruby;SQL
+84613,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+84614,Bash/Shell/PowerShell;Python
+84615,C#;HTML/CSS;JavaScript;SQL
+84616,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84617,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;Ruby;SQL;Swift;TypeScript;VBA;WebAssembly
+84618,HTML/CSS;JavaScript;PHP;Python;SQL
+84619,HTML/CSS;JavaScript;PHP
+84620,Bash/Shell/PowerShell;F#;HTML/CSS;JavaScript;PHP;Python;SQL
+84621,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;Rust;Scala;TypeScript;Other(s):
+84622,Bash/Shell/PowerShell;C#;Go;JavaScript;Python;Ruby;SQL
+84623,C++;HTML/CSS;JavaScript;SQL
+84624,C#;HTML/CSS;SQL
+84625,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;R;SQL
+84626,HTML/CSS;JavaScript;Ruby;SQL
+84627,C;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+84628,C#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+84629,C#;HTML/CSS;JavaScript;SQL
+84630,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+84631,C;HTML/CSS;Java;JavaScript;Python;SQL
+84632,Dart;HTML/CSS;PHP;Python;TypeScript
+84633,C;Python
+84634,Bash/Shell/PowerShell;C++;JavaScript;Python
+84635,HTML/CSS;JavaScript;SQL
+84636,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+84637,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;Rust;SQL;Swift
+84638,C#;HTML/CSS;JavaScript
+84639,C#;HTML/CSS;JavaScript;PHP;SQL
+84640,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+84641,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+84642,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+84643,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+84644,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+84645,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+84646,C#;HTML/CSS;JavaScript;PHP;SQL
+84647,Bash/Shell/PowerShell;Java;Kotlin;Scala;SQL
+84648,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+84649,C#;Java;JavaScript;SQL
+84650,Java;SQL
+84651,Bash/Shell/PowerShell;C;C++;Go;Java;Kotlin;Python;Rust;SQL;WebAssembly
+84652,Python;Scala;SQL
+84653,Go;Java;JavaScript
+84654,HTML/CSS;JavaScript
+84655,HTML/CSS;Java;JavaScript;Python;SQL
+84656,Bash/Shell/PowerShell;Python;SQL
+84657,HTML/CSS;Java;JavaScript;SQL
+84658,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+84659,Objective-C;PHP;Swift
+84660,Bash/Shell/PowerShell;C;Python;SQL
+84661,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+84662,Go;Java;Kotlin
+84663,Clojure;HTML/CSS;JavaScript
+84664,C;C++;HTML/CSS
+84665,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+84666,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;Swift
+84667,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;SQL
+84668,HTML/CSS;JavaScript;PHP;Python;R;SQL
+84669,C;Objective-C;Swift
+84670,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+84671,Other(s):
+84672,Bash/Shell/PowerShell;Python
+84673,C;Python;SQL
+84674,C;Erlang;Ruby;TypeScript
+84675,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84676,HTML/CSS;JavaScript;Ruby
+84677,C#;JavaScript;SQL
+84678,Bash/Shell/PowerShell;C;HTML/CSS
+84679,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+84680,Bash/Shell/PowerShell;Python;SQL
+84681,Assembly;Bash/Shell/PowerShell;C;C++;F#;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;VBA
+84682,HTML/CSS;JavaScript;TypeScript
+84683,Assembly;Bash/Shell/PowerShell;C
+84684,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+84685,HTML/CSS;JavaScript;TypeScript
+84686,C#;JavaScript;Python
+84687,HTML/CSS;JavaScript;TypeScript
+84688,C#;HTML/CSS;JavaScript;SQL
+84689,HTML/CSS
+84690,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Rust;SQL
+84691,C;C++;Objective-C;Swift
+84692,C;Python
+84693,C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+84694,C;C++
+84695,Assembly;HTML/CSS
+84696,HTML/CSS;JavaScript;PHP;TypeScript
+84697,C;C++;C#
+84698,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+84699,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+84700,Dart;Java;Scala;SQL
+84701,HTML/CSS;JavaScript
+84702,JavaScript
+84703,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+84704,HTML/CSS;Java;PHP;SQL
+84705,Assembly;C++;C#;HTML/CSS;JavaScript;Ruby
+84706,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+84707,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+84708,Java;JavaScript;SQL
+84709,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python
+84710,C++;HTML/CSS;Java;Objective-C;PHP;Ruby;SQL;Swift
+84711,Bash/Shell/PowerShell;Clojure;Java;SQL
+84712,JavaScript;Ruby;SQL
+84713,C;C++;Python;R
+84714,C;Java;Python
+84715,HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript;WebAssembly
+84716,Bash/Shell/PowerShell;Java;SQL
+84717,C++;C#;TypeScript
+84718,C#;HTML/CSS;JavaScript;SQL
+84719,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+84720,Objective-C;Swift
+84721,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+84722,C;C#;HTML/CSS;JavaScript;TypeScript
+84723,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+84724,HTML/CSS;JavaScript
+84725,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+84726,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+84727,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84728,HTML/CSS;JavaScript
+84729,Bash/Shell/PowerShell;C;Go;Java;JavaScript;TypeScript
+84730,HTML/CSS;JavaScript;SQL
+84731,HTML/CSS;JavaScript;Python;R;SQL;Swift
+84732,C#;HTML/CSS;JavaScript
+84733,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift
+84734,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Other(s):
+84735,Elixir;Java;JavaScript;Kotlin;PHP;SQL;TypeScript;Other(s):
+84736,C++;Go;HTML/CSS;JavaScript;Ruby
+84737,C++;HTML/CSS
+84738,Bash/Shell/PowerShell;C;Go;HTML/CSS;PHP;Python;SQL
+84739,Java
+84740,Java;Other(s):
+84741,Java
+84742,VBA
+84743,Bash/Shell/PowerShell;C;C++;C#;Clojure;SQL;Other(s):
+84744,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+84745,Java;JavaScript;TypeScript
+84746,HTML/CSS;JavaScript;SQL
+84747,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+84748,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+84749,Go;Java;Kotlin;Objective-C;Swift
+84750,Assembly;C++;C#;HTML/CSS;JavaScript;Python;SQL
+84751,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+84752,C#;Python
+84753,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+84754,HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+84755,Bash/Shell/PowerShell;C;Go;JavaScript;Python;Swift
+84756,Java;Kotlin
+84757,Bash/Shell/PowerShell;Java;Python;SQL
+84758,Java;R;Ruby
+84759,C;Kotlin;Swift
+84760,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;SQL
+84761,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+84762,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+84763,C#;Java
+84764,Java;Python;Scala
+84765,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+84766,C#;HTML/CSS;JavaScript;SQL
+84767,R;SQL
+84768,C;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+84769,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Swift;Other(s):
+84770,Go;JavaScript;Python;Rust;TypeScript
+84771,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+84772,C#;HTML/CSS;JavaScript;SQL;VBA
+84773,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+84774,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84775,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84776,Java;JavaScript;Python;SQL
+84777,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+84778,C;HTML/CSS;Java
+84779,Python;Other(s):
+84780,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+84781,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84782,Java;SQL
+84783,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+84784,HTML/CSS
+84785,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84786,Assembly;Bash/Shell/PowerShell;C;C#;Python
+84787,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84788,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84789,Java;JavaScript;PHP;Python
+84790,JavaScript;Objective-C;Swift;TypeScript
+84791,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+84792,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+84793,Bash/Shell/PowerShell;C++;Python
+84795,C#;Java;Python
+84796,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+84797,C#;HTML/CSS;Java;JavaScript
+84798,Java;Ruby;SQL
+84799,C#;SQL;VBA
+84800,C;C++;Java;JavaScript;Python
+84801,HTML/CSS;JavaScript;PHP;SQL
+84802,C#;HTML/CSS;JavaScript;SQL
+84803,Bash/Shell/PowerShell;Java;Python;SQL
+84804,Java;JavaScript
+84805,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;Ruby;Rust;TypeScript;WebAssembly
+84806,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+84807,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+84808,Other(s):
+84809,HTML/CSS;Java;JavaScript;Python;SQL
+84810,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+84811,HTML/CSS;JavaScript;TypeScript
+84812,Bash/Shell/PowerShell;C;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+84813,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+84814,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+84815,C#;HTML/CSS;JavaScript;PHP;SQL
+84816,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84817,C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+84818,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;TypeScript
+84819,SQL
+84820,Bash/Shell/PowerShell;Dart;Elixir;Go;Java;Objective-C;SQL;TypeScript
+84821,C
+84822,Bash/Shell/PowerShell;C++;C#;Python;SQL
+84823,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+84824,C++;C#;Java
+84825,HTML/CSS
+84826,HTML/CSS;JavaScript;Python;TypeScript
+84827,C#;Go;Java;JavaScript;PHP;Python;SQL;Swift;Other(s):
+84828,JavaScript;Other(s):
+84829,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+84830,C#;Java;JavaScript;Other(s):
+84831,Bash/Shell/PowerShell;C#
+84832,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java
+84833,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python
+84834,HTML/CSS;JavaScript;PHP
+84835,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84836,C#;HTML/CSS;JavaScript;PHP;TypeScript
+84837,Assembly;C;C++;Java;JavaScript;PHP;SQL
+84838,C#;HTML/CSS;JavaScript;SQL
+84839,Go;Python
+84840,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84841,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;TypeScript
+84842,JavaScript;Objective-C;Swift
+84843,Dart;HTML/CSS;JavaScript;Python
+84844,Java;Python;SQL
+84845,Assembly;C;Python;Other(s):
+84846,Go;HTML/CSS;JavaScript;Python;TypeScript
+84847,Python;SQL;VBA
+84848,Bash/Shell/PowerShell;R
+84849,Assembly;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+84850,C;C++;HTML/CSS;JavaScript
+84851,JavaScript;TypeScript
+84852,C#
+84853,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84854,Python;R;SQL
+84855,Bash/Shell/PowerShell;C;HTML/CSS;Java
+84856,C++;C#;Java;SQL
+84857,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+84858,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+84859,Assembly;C;C++;HTML/CSS;JavaScript;Ruby;TypeScript
+84860,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+84861,HTML/CSS;JavaScript;Python
+84862,VBA;Other(s):
+84863,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Scala;WebAssembly;Other(s):
+84864,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84865,HTML/CSS;JavaScript;PHP;SQL
+84866,Java;JavaScript;TypeScript
+84867,C#;HTML/CSS;JavaScript;SQL
+84868,Java
+84869,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+84870,Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+84871,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+84872,JavaScript
+84873,C#;HTML/CSS;Java;JavaScript
+84874,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+84875,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+84876,C#;HTML/CSS;JavaScript;PHP
+84877,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+84878,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+84879,Java;JavaScript;TypeScript
+84880,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;TypeScript;VBA
+84881,HTML/CSS;Java;JavaScript;Ruby
+84882,Bash/Shell/PowerShell;C++;Go;JavaScript;Python;SQL;TypeScript
+84883,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+84884,JavaScript;Python;SQL;VBA
+84885,HTML/CSS;JavaScript;SQL;Swift
+84886,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+84887,Bash/Shell/PowerShell;Python
+84888,Python
+84889,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+84890,R
+84891,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+84892,C#;Java;JavaScript;SQL
+84893,HTML/CSS;JavaScript;SQL
+84894,C;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+84895,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python
+84896,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+84897,HTML/CSS;JavaScript;Python;Scala;SQL
+84898,Bash/Shell/PowerShell;Java;JavaScript;Scala;SQL
+84899,HTML/CSS;Java;JavaScript;Kotlin;Python
+84900,HTML/CSS;SQL
+84901,HTML/CSS;Python
+84902,Java
+84903,C#;HTML/CSS;JavaScript;SQL
+84904,HTML/CSS;JavaScript;TypeScript
+84905,C#;HTML/CSS;JavaScript;SQL
+84906,Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+84907,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+84908,HTML/CSS;Java;JavaScript;SQL
+84909,Bash/Shell/PowerShell;C++;C#;Python;SQL
+84910,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;SQL
+84911,C#;HTML/CSS;JavaScript;SQL;VBA
+84912,C++;Python
+84913,Python
+84914,C;C++;HTML/CSS;JavaScript;WebAssembly
+84915,C++;C#
+84916,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+84917,HTML/CSS;JavaScript
+84918,Java;JavaScript
+84919,C#;HTML/CSS;JavaScript;PHP;TypeScript
+84920,C#;HTML/CSS;Java;JavaScript
+84921,C#;Elixir;Erlang;F#;Go;Ruby;SQL
+84922,Assembly;C;C++
+84923,Bash/Shell/PowerShell;C++;JavaScript;PHP;Python
+84924,Bash/Shell/PowerShell;C++;Python
+84925,Java;SQL
+84926,Bash/Shell/PowerShell;Python;R;Scala;SQL
+84927,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+84928,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84929,HTML/CSS;JavaScript
+84930,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;Other(s):
+84931,C;C#;Go;Java
+84932,HTML/CSS;PHP;Python;VBA
+84933,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+84934,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+84935,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+84936,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84937,SQL;VBA
+84938,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;Other(s):
+84939,Ruby
+84941,HTML/CSS;JavaScript;PHP;SQL
+84942,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+84943,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+84944,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+84945,C#
+84946,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84947,JavaScript;Python
+84948,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;Other(s):
+84949,Go;Python
+84950,Go;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+84951,C#;SQL;VBA
+84953,C#;JavaScript;PHP;SQL
+84954,HTML/CSS;Java;JavaScript;Scala;SQL
+84955,Bash/Shell/PowerShell;C;Elixir;Python;R;SQL
+84956,Bash/Shell/PowerShell;C++;C#;Erlang;Go;Java;JavaScript;Python;Ruby;Scala;SQL
+84957,Bash/Shell/PowerShell;Java;PHP;Scala;SQL
+84958,C#;SQL
+84959,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python
+84960,C#;Java
+84961,C++;Java;Python;Scala
+84962,C;JavaScript;Python;TypeScript
+84963,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+84964,Bash/Shell/PowerShell;Go;Python;Other(s):
+84965,C#;HTML/CSS;JavaScript;SQL;TypeScript
+84966,HTML/CSS;JavaScript;PHP;TypeScript
+84967,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL
+84968,HTML/CSS;Java;Python;SQL
+84969,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+84970,Python
+84971,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP
+84972,JavaScript
+84973,Bash/Shell/PowerShell;R
+84974,Bash/Shell/PowerShell;HTML/CSS;SQL
+84975,Bash/Shell/PowerShell;JavaScript;Python;SQL
+84976,Bash/Shell/PowerShell;C;C++
+84977,C++;HTML/CSS;JavaScript;Other(s):
+84978,HTML/CSS;Java;JavaScript;TypeScript
+84979,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+84980,C++
+84981,Java;Objective-C;Other(s):
+84982,HTML/CSS;JavaScript;PHP;Python;SQL
+84983,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Python
+84984,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+84985,Bash/Shell/PowerShell;C#;JavaScript;Python;Scala;SQL;TypeScript
+84986,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+84987,Java;Python;SQL
+84988,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+84989,C++;Java;JavaScript;Python;SQL
+84990,Go;HTML/CSS;Java;JavaScript;SQL
+84991,Bash/Shell/PowerShell;C++;HTML/CSS;R
+84992,Bash/Shell/PowerShell;HTML/CSS;PHP
+84993,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+84994,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;Other(s):
+84995,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+84996,HTML/CSS;JavaScript;PHP;SQL
+84998,HTML/CSS;Java;JavaScript;Python
+84999,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+85000,JavaScript
+85001,Bash/Shell/PowerShell;Python
+85002,C;Dart;HTML/CSS;Java;SQL;Other(s):
+85003,Bash/Shell/PowerShell;C;Objective-C;Swift
+85004,HTML/CSS;Java;JavaScript;SQL;Swift
+85005,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+85006,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Scala
+85007,Bash/Shell/PowerShell;C#;F#;HTML/CSS;SQL
+85008,HTML/CSS;Java;JavaScript;SQL;Other(s):
+85009,HTML/CSS;Java;JavaScript
+85010,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;Ruby;Swift
+85011,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+85012,HTML/CSS;JavaScript;PHP;SQL
+85013,C#;HTML/CSS;JavaScript;Python;SQL
+85014,Bash/Shell/PowerShell;C;C++;Python
+85015,C#;HTML/CSS;SQL
+85016,Bash/Shell/PowerShell;C++;Java;Python
+85017,HTML/CSS;JavaScript;PHP;SQL
+85018,JavaScript;Ruby
+85019,C#;HTML/CSS;JavaScript;SQL
+85020,HTML/CSS;JavaScript
+85021,Dart;JavaScript;Kotlin
+85022,C#;SQL
+85023,HTML/CSS;JavaScript;PHP;SQL
+85024,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Objective-C;Python;Ruby;SQL;Swift;TypeScript
+85025,C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+85026,HTML/CSS;Java;JavaScript;PHP;SQL
+85027,HTML/CSS;JavaScript;PHP
+85028,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+85029,C;C++;PHP;SQL
+85030,Python
+85031,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+85032,Bash/Shell/PowerShell;C;C++;Dart;Objective-C;Python;Swift
+85033,HTML/CSS;JavaScript;PHP;Ruby;SQL
+85034,HTML/CSS;Java;JavaScript;SQL;TypeScript
+85035,R;VBA
+85036,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+85037,Bash/Shell/PowerShell;Java
+85038,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+85039,HTML/CSS;Java;JavaScript;SQL;TypeScript
+85040,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+85041,C#;HTML/CSS;JavaScript;TypeScript
+85042,HTML/CSS;JavaScript;PHP;TypeScript;Other(s):
+85043,HTML/CSS;JavaScript;PHP
+85044,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;R
+85045,Bash/Shell/PowerShell;C++;C#;Python;SQL
+85046,Python;R
+85047,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85048,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+85049,Assembly;C;Python;R
+85050,C#;JavaScript;Python;SQL;TypeScript
+85051,C#;HTML/CSS;Java;JavaScript;SQL
+85052,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85053,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85054,HTML/CSS;Java;JavaScript;VBA
+85055,C++;C#;Java
+85056,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;Python;SQL
+85057,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85058,Erlang;Java;Python;SQL
+85059,C++;Go;JavaScript;TypeScript
+85060,C;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+85061,Java;Objective-C;Swift
+85062,Bash/Shell/PowerShell;C;C++;Go
+85063,Bash/Shell/PowerShell;SQL;VBA;Other(s):
+85064,JavaScript;SQL;TypeScript
+85065,Bash/Shell/PowerShell;C;C#;Go;Python;Rust;Other(s):
+85066,Java
+85067,C#;JavaScript
+85068,C++;HTML/CSS;Java;JavaScript;Other(s):
+85069,Bash/Shell/PowerShell;C;Elixir;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+85070,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Swift
+85071,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+85072,C++
+85073,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;R;SQL;Other(s):
+85074,Assembly;Swift
+85075,C++;C#;SQL
+85076,Kotlin;Objective-C;Swift;TypeScript
+85077,C;C++;Java;JavaScript;Kotlin;Python;Swift
+85078,HTML/CSS;Python
+85079,HTML/CSS;Java;JavaScript;Python;SQL
+85080,C++;Elixir;JavaScript;Python
+85081,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+85082,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85083,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+85085,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;Python
+85086,HTML/CSS;JavaScript;Python;SQL
+85088,Bash/Shell/PowerShell;Java;SQL
+85089,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;Scala;SQL
+85090,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85091,Java;JavaScript;Python;SQL
+85092,Bash/Shell/PowerShell;C#;HTML/CSS;SQL
+85093,C#;Elixir;F#;HTML/CSS;Java;JavaScript;PHP;R;SQL
+85094,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+85095,C#;HTML/CSS;JavaScript;TypeScript
+85096,Bash/Shell/PowerShell;Java;Objective-C;Ruby;Swift
+85097,C++;C#;HTML/CSS;Python
+85098,Bash/Shell/PowerShell;Java
+85099,Elixir;Go
+85100,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+85101,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+85102,Bash/Shell/PowerShell;C;C++;C#;Dart;Java;Python;SQL
+85103,HTML/CSS;JavaScript;PHP;SQL
+85104,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+85105,C#
+85106,HTML/CSS;JavaScript;TypeScript
+85107,HTML/CSS;JavaScript;PHP
+85108,Java;Kotlin
+85109,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+85110,Swift
+85111,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+85112,Assembly;C;C++;HTML/CSS;Java;PHP;Python;SQL
+85113,Bash/Shell/PowerShell;C#;Python
+85114,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;SQL
+85115,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;Swift;Other(s):
+85116,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85117,Go;HTML/CSS;JavaScript;Python;TypeScript
+85118,Assembly;C++;JavaScript;Python;Scala;SQL;TypeScript
+85119,C#;HTML/CSS;Java;JavaScript
+85120,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+85121,C#;HTML/CSS;JavaScript;SQL
+85122,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+85123,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+85124,Assembly;C++;C#;Java;Kotlin;Python
+85125,JavaScript;Python
+85126,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+85127,C;C++;HTML/CSS;Java;JavaScript;Python
+85128,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85129,Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;Swift
+85130,C#;F#;JavaScript;Other(s):
+85131,JavaScript;Other(s):
+85132,HTML/CSS;Java;JavaScript;Python
+85133,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+85134,Bash/Shell/PowerShell;C#;SQL
+85135,C;C++;HTML/CSS;Java;JavaScript;Python
+85136,Assembly;Java
+85137,C;C++;C#;PHP;SQL
+85138,C#;Java
+85139,Java;Kotlin;Python
+85140,HTML/CSS;JavaScript
+85141,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+85142,C;C++;Dart;Java;SQL
+85143,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+85144,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+85145,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+85146,Bash/Shell/PowerShell;C;C++;Java;PHP;Python;SQL
+85147,Java;JavaScript
+85148,C#
+85149,HTML/CSS;PHP
+85150,Java;JavaScript;PHP
+85151,JavaScript;Python
+85153,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+85154,HTML/CSS;JavaScript;PHP;SQL
+85155,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;PHP;SQL;VBA;Other(s):
+85156,Java;Kotlin;SQL
+85157,Dart;Java;JavaScript;Kotlin;Swift
+85158,C++;C#;HTML/CSS;JavaScript;SQL;Swift
+85159,HTML/CSS;JavaScript;PHP;Python;Swift;TypeScript
+85160,C++;HTML/CSS;Python
+85161,C;Java;Swift
+85162,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+85163,C#;HTML/CSS;JavaScript;SQL
+85164,C++;HTML/CSS;Java;Python;SQL
+85165,HTML/CSS;Java;Python;SQL
+85166,C++;Go;HTML/CSS;JavaScript;Python;Scala
+85167,C#;HTML/CSS;JavaScript;SQL
+85169,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+85170,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+85171,Assembly;Go;HTML/CSS;Java;JavaScript;Python;Scala
+85172,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85173,C;C++;Java;SQL
+85174,Bash/Shell/PowerShell;C++;C#;Python;SQL
+85175,C#;F#;HTML/CSS;JavaScript;Objective-C;Python;TypeScript
+85176,Dart;HTML/CSS;Java;Python
+85177,Bash/Shell/PowerShell;Java;JavaScript;SQL
+85178,C;C++;C#;JavaScript;Python
+85179,HTML/CSS;JavaScript;PHP
+85180,PHP
+85181,Python;VBA
+85183,Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Python;R;SQL
+85184,C#;HTML/CSS;Java;JavaScript
+85185,Bash/Shell/PowerShell;C++;Java;Python;R
+85186,JavaScript;Python;SQL
+85187,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python
+85188,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL;TypeScript
+85189,HTML/CSS;JavaScript
+85190,C#;HTML/CSS;JavaScript;SQL
+85191,Bash/Shell/PowerShell;C;Go;Java;JavaScript;Python;Ruby;SQL;Other(s):
+85192,Bash/Shell/PowerShell;Java;JavaScript;PHP;SQL
+85193,Java;JavaScript;Other(s):
+85194,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;R;Ruby
+85195,JavaScript;Objective-C;Swift
+85196,Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+85197,HTML/CSS;JavaScript;PHP;SQL
+85198,C#;HTML/CSS;JavaScript;SQL
+85199,Java;SQL
+85200,HTML/CSS;Java;JavaScript
+85201,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Rust;TypeScript
+85202,C;HTML/CSS;Java;JavaScript;SQL
+85203,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Swift;Other(s):
+85204,HTML/CSS;JavaScript;Python
+85205,Java;Kotlin;Python;R;SQL;Swift
+85206,Java
+85207,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+85209,C#;HTML/CSS;JavaScript;TypeScript
+85210,Python;SQL
+85211,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+85212,C;C++;Objective-C;Swift
+85213,Assembly;Bash/Shell/PowerShell;C;C++;Java;Objective-C;Python
+85214,HTML/CSS;Java;JavaScript;Python;SQL
+85215,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript;VBA
+85216,Bash/Shell/PowerShell;C;C++;Java;JavaScript
+85217,Bash/Shell/PowerShell;Java;Kotlin;SQL
+85218,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python
+85219,C#;HTML/CSS;JavaScript
+85220,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Scala
+85221,HTML/CSS;Java;Kotlin;Rust;TypeScript
+85222,HTML/CSS;JavaScript;TypeScript
+85223,Bash/Shell/PowerShell;Clojure;Ruby
+85224,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+85225,C#;HTML/CSS;JavaScript;SQL
+85226,JavaScript;TypeScript
+85227,C#;HTML/CSS;Java;JavaScript;PHP
+85228,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Scala;SQL;TypeScript
+85229,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+85230,Bash/Shell/PowerShell;C++;C#;Go;JavaScript;Python;SQL;Swift;TypeScript
+85231,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+85232,HTML/CSS;JavaScript
+85233,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+85234,Bash/Shell/PowerShell;C++;C#;F#;Java;Python;Scala;SQL
+85235,JavaScript;Kotlin;Swift
+85236,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+85237,HTML/CSS;JavaScript;Objective-C;PHP;Swift
+85238,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+85239,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+85240,HTML/CSS;JavaScript;PHP;SQL
+85241,C;Python;R;VBA
+85242,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85243,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Other(s):
+85244,HTML/CSS;JavaScript;PHP
+85245,Java
+85246,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+85247,Java;JavaScript;Kotlin;SQL
+85248,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+85249,JavaScript;PHP;SQL
+85250,C;JavaScript;Other(s):
+85251,JavaScript
+85252,HTML/CSS;R
+85253,HTML/CSS;JavaScript;Kotlin;PHP;SQL
+85254,C++;C#;HTML/CSS;Java;JavaScript;Other(s):
+85255,C#;HTML/CSS;JavaScript;SQL;VBA
+85256,HTML/CSS;Java;JavaScript;PHP;Other(s):
+85257,C++;HTML/CSS;Java;JavaScript;Python
+85258,HTML/CSS;JavaScript;PHP;SQL
+85259,C#;HTML/CSS;JavaScript;SQL;Other(s):
+85260,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+85261,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python;Scala;SQL
+85262,C;C++;HTML/CSS;Java;Python
+85263,C;C++;HTML/CSS;Java;JavaScript
+85264,HTML/CSS;JavaScript;PHP
+85265,Bash/Shell/PowerShell;C++;JavaScript;Python
+85266,C#;HTML/CSS;Java;JavaScript;SQL
+85267,HTML/CSS;JavaScript;Ruby
+85268,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+85269,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Other(s):
+85270,HTML/CSS;JavaScript;PHP
+85271,HTML/CSS;Java;JavaScript;Ruby;SQL;Other(s):
+85272,HTML/CSS;JavaScript;PHP;SQL;VBA
+85273,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;TypeScript
+85274,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+85275,C;C++;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript;Other(s):
+85276,Elixir;Python;Ruby
+85277,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+85278,HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript;VBA
+85279,HTML/CSS;JavaScript;Python
+85280,C;Go
+85281,C#;HTML/CSS;JavaScript
+85282,Bash/Shell/PowerShell;C++;C#
+85283,Python
+85284,JavaScript;TypeScript
+85285,Bash/Shell/PowerShell;C#;SQL;TypeScript
+85286,C#;HTML/CSS;SQL
+85287,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+85288,HTML/CSS;JavaScript
+85289,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+85290,Bash/Shell/PowerShell;C;Go;Python;Ruby
+85291,JavaScript;Python;SQL;TypeScript
+85292,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+85293,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby
+85294,C;HTML/CSS;JavaScript;Python
+85295,Objective-C;Swift
+85296,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;Rust;SQL;Swift;TypeScript
+85297,C;C++;HTML/CSS
+85298,C#;Java;Kotlin;SQL;TypeScript
+85299,C#;HTML/CSS;JavaScript;SQL;VBA
+85300,HTML/CSS;JavaScript;Python
+85301,C#;HTML/CSS;Java;JavaScript;SQL
+85302,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift
+85303,Bash/Shell/PowerShell;C;C++
+85304,HTML/CSS;Java;PHP;SQL
+85305,HTML/CSS;JavaScript;TypeScript
+85306,C#;HTML/CSS;SQL
+85307,HTML/CSS;Java;JavaScript;SQL
+85308,Bash/Shell/PowerShell;Go;JavaScript;Python;Ruby;SQL
+85309,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Python;SQL;Other(s):
+85310,HTML/CSS;JavaScript;Ruby
+85311,HTML/CSS;Python;SQL;VBA
+85312,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+85313,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+85314,Other(s):
+85315,HTML/CSS;JavaScript;TypeScript
+85316,C++;C#;Go;HTML/CSS;JavaScript;PHP;Rust;SQL;TypeScript;WebAssembly
+85317,C#;Python;Scala
+85318,C#;SQL
+85319,Java;SQL;Other(s):
+85320,Bash/Shell/PowerShell;Java;JavaScript;Python;R
+85321,Go;HTML/CSS;Java;JavaScript;SQL
+85322,HTML/CSS;Java;Kotlin;SQL
+85323,C#;HTML/CSS;TypeScript
+85324,Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+85325,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python
+85326,Elixir;Go;HTML/CSS;JavaScript;Python;R;Rust;Scala
+85327,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;SQL
+85328,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+85329,C;C++;JavaScript
+85330,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL;Other(s):
+85331,C;C#;HTML/CSS;JavaScript;PHP
+85332,Bash/Shell/PowerShell;C++;PHP;Python;SQL;Other(s):
+85333,Python
+85334,Go;JavaScript;Rust;SQL;TypeScript
+85335,PHP
+85336,Assembly;C;Python
+85337,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+85338,Bash/Shell/PowerShell;Go;Python
+85339,HTML/CSS;JavaScript
+85340,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+85341,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;Python;Rust;TypeScript
+85342,Assembly;Bash/Shell/PowerShell;Elixir;Erlang;Objective-C;Ruby;Rust;Swift
+85343,HTML/CSS;PHP;Python
+85344,Assembly;Bash/Shell/PowerShell;C;Dart;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+85345,Java;Kotlin
+85346,Other(s):
+85347,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+85348,C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Swift
+85349,C;HTML/CSS;Java;JavaScript
+85350,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+85352,C;Python
+85353,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+85354,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+85355,JavaScript;Python
+85356,C++;Python
+85357,Bash/Shell/PowerShell;C;C#;HTML/CSS;Python;TypeScript
+85358,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;Ruby
+85359,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+85360,C;C++;SQL
+85361,C#;HTML/CSS;JavaScript;SQL
+85362,Objective-C;Swift
+85363,HTML/CSS;Java;JavaScript;PHP
+85364,HTML/CSS;JavaScript;TypeScript
+85365,C#;HTML/CSS;Kotlin;TypeScript
+85366,C++;C#;Elixir;Erlang;F#;JavaScript;Python;TypeScript
+85367,HTML/CSS;JavaScript;PHP
+85368,C#
+85369,Java
+85370,HTML/CSS;Java;JavaScript;SQL
+85371,Bash/Shell/PowerShell;C++;Python;SQL
+85372,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+85373,Assembly;C;C++;C#;JavaScript
+85374,Objective-C;SQL
+85375,C;HTML/CSS;Java;PHP;SQL
+85376,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+85377,Bash/Shell/PowerShell;C#;Java;JavaScript;Swift
+85378,Bash/Shell/PowerShell;Python;Other(s):
+85379,C++;Go;Java;PHP;Python;Scala
+85380,Java;Other(s):
+85381,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;Other(s):
+85382,HTML/CSS;JavaScript;PHP;Python
+85383,Bash/Shell/PowerShell;C;C++;Java;SQL
+85384,Python;SQL
+85385,Bash/Shell/PowerShell;Python;SQL;VBA
+85386,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;TypeScript
+85387,HTML/CSS;JavaScript;PHP
+85388,C#;JavaScript
+85389,Bash/Shell/PowerShell;Clojure;Python
+85390,Assembly;Bash/Shell/PowerShell;C#;Java;PHP;Python;Ruby;SQL;VBA
+85391,Python
+85392,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Rust;SQL;Other(s):
+85393,Bash/Shell/PowerShell;C;C++;C#;Clojure;F#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Rust;SQL
+85394,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+85395,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript
+85397,HTML/CSS;Java;JavaScript;PHP
+85398,Bash/Shell/PowerShell;C#;Go;Java;Python;Scala;SQL
+85399,Java
+85400,C;C++;C#;Java;Kotlin;Objective-C;Swift
+85401,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Rust;SQL;Other(s):
+85402,Bash/Shell/PowerShell;Python
+85403,Bash/Shell/PowerShell;Python
+85404,HTML/CSS;Java;JavaScript;SQL;TypeScript
+85405,C#;HTML/CSS;JavaScript;PHP;SQL
+85406,HTML/CSS;Java;Python
+85407,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+85408,C;C++;C#;Java;JavaScript;SQL;TypeScript;Other(s):
+85409,HTML/CSS;JavaScript
+85410,Java;JavaScript;Kotlin;Objective-C;PHP;SQL
+85411,C;C++;Java;SQL
+85412,C#;HTML/CSS;JavaScript;SQL
+85413,HTML/CSS;JavaScript;PHP;SQL
+85414,Bash/Shell/PowerShell;C;Java;JavaScript;Python;TypeScript
+85415,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;Other(s):
+85416,Java;PHP;Python;R;SQL
+85417,SQL
+85418,Bash/Shell/PowerShell;Kotlin;Scala
+85419,C++;C#;Java;Python;SQL
+85420,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+85421,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript;VBA
+85422,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Python;TypeScript
+85423,HTML/CSS;Java;JavaScript;Kotlin;SQL
+85424,HTML/CSS;JavaScript;PHP
+85425,C#;JavaScript;SQL
+85426,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;PHP;SQL
+85427,HTML/CSS;Java;JavaScript;PHP;SQL
+85428,Assembly;C;JavaScript;Python;R;SQL
+85429,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;VBA;Other(s):
+85430,HTML/CSS;JavaScript
+85431,Bash/Shell/PowerShell;C;Java;Kotlin;Rust;SQL;Swift
+85432,C#;HTML/CSS;JavaScript;Python;SQL
+85433,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;SQL;TypeScript
+85434,HTML/CSS;Python;R
+85435,HTML/CSS;Java;JavaScript;SQL
+85436,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+85437,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL
+85438,Go;Java;Python
+85439,HTML/CSS;JavaScript;Python;SQL
+85440,Bash/Shell/PowerShell;C++;C#;Java;Python;SQL
+85441,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85442,HTML/CSS;JavaScript;PHP
+85443,Python;R;SQL;VBA
+85444,Bash/Shell/PowerShell;Ruby;Other(s):
+85445,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+85446,Java;JavaScript;Python;SQL
+85447,C#;HTML/CSS;JavaScript;PHP;SQL
+85448,C#;JavaScript;SQL;Other(s):
+85449,Assembly;Bash/Shell/PowerShell;Clojure;Dart;Erlang;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript
+85450,HTML/CSS;PHP
+85451,HTML/CSS;JavaScript;Python;SQL
+85452,Bash/Shell/PowerShell;C#;HTML/CSS;Python;Ruby;SQL
+85453,C#;HTML/CSS;JavaScript;Python;SQL
+85454,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85455,HTML/CSS;Java;JavaScript;SQL
+85456,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+85457,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85458,Assembly;Java;JavaScript;SQL
+85459,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+85460,C++;C#;HTML/CSS;Java;JavaScript
+85461,HTML/CSS;Java;JavaScript;SQL
+85462,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;SQL
+85463,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;PHP;Python;R;SQL
+85464,C#;HTML/CSS;JavaScript;PHP;SQL
+85465,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+85466,Java
+85467,JavaScript;Kotlin;Objective-C;Ruby
+85468,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+85469,C++;C#;Java;Objective-C;SQL
+85470,C#;HTML/CSS;Java;JavaScript;R;SQL;TypeScript
+85471,C++;Java;PHP;SQL;Swift;TypeScript
+85472,Assembly;Java;SQL
+85473,C#;HTML/CSS;Java;JavaScript;SQL
+85474,Java;JavaScript;TypeScript
+85475,C#;HTML/CSS;JavaScript;Swift
+85476,C;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+85477,HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+85478,Bash/Shell/PowerShell;C++;Go;Java;JavaScript;Python;SQL
+85479,HTML/CSS;Java;JavaScript;SQL;TypeScript
+85480,C#;Java;PHP;SQL;Other(s):
+85481,JavaScript;Objective-C;Swift
+85482,HTML/CSS;Java;JavaScript;Other(s):
+85483,HTML/CSS;Java;JavaScript;SQL;Other(s):
+85484,Dart;Java;JavaScript;Objective-C;Python;Swift
+85485,JavaScript;Objective-C;Swift
+85486,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby
+85487,Java;Python;SQL
+85488,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+85489,C;HTML/CSS;Java;JavaScript;Python
+85490,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+85491,HTML/CSS;Java;JavaScript;Python;Other(s):
+85492,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85493,C#;HTML/CSS;Python
+85494,C++;HTML/CSS;PHP;Python
+85495,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+85496,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+85497,Assembly;Bash/Shell/PowerShell;C;Java;JavaScript;Python
+85498,C++;C#;JavaScript;Python;SQL;TypeScript;VBA
+85499,C;C++;HTML/CSS;JavaScript;Python;Rust;SQL;WebAssembly
+85500,HTML/CSS;JavaScript;Rust;SQL
+85501,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+85502,HTML/CSS;JavaScript;PHP;SQL
+85503,C;C++
+85504,C;C++;HTML/CSS;Java
+85505,Bash/Shell/PowerShell;C;Python;Ruby
+85506,Dart;Go;JavaScript;PHP;Python;SQL
+85507,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;SQL
+85508,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+85509,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+85510,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Rust;SQL;TypeScript;VBA
+85511,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Other(s):
+85512,JavaScript;Ruby;SQL
+85513,Bash/Shell/PowerShell;Java;SQL
+85514,HTML/CSS;JavaScript;Objective-C;Ruby;Swift
+85515,Java;Python;SQL
+85516,Bash/Shell/PowerShell;C;Erlang;Go;Python
+85517,C++;HTML/CSS;Python;SQL;VBA
+85518,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+85519,Java;SQL
+85520,Bash/Shell/PowerShell;C#;F#;PHP;TypeScript
+85521,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Swift;TypeScript;Other(s):
+85522,C#;Objective-C;Swift
+85523,HTML/CSS;JavaScript;Python;Other(s):
+85524,JavaScript;PHP;SQL
+85525,HTML/CSS;JavaScript;PHP;Python;SQL
+85526,Java
+85527,JavaScript
+85528,Java;JavaScript;Kotlin;PHP;Python;Ruby;TypeScript
+85529,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript;Other(s):
+85530,C#;JavaScript;VBA;Other(s):
+85531,C#;HTML/CSS;JavaScript
+85532,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+85533,C#;HTML/CSS;JavaScript;SQL
+85534,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+85535,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+85536,JavaScript;TypeScript
+85537,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+85539,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R;Other(s):
+85540,HTML/CSS;Python
+85541,C;C++;C#;HTML/CSS;Java;JavaScript;Ruby;TypeScript
+85542,Bash/Shell/PowerShell;HTML/CSS;Python;R;SQL
+85543,Elixir;HTML/CSS;JavaScript;Ruby
+85544,Bash/Shell/PowerShell;C;C++
+85545,Java;SQL
+85546,Go;HTML/CSS;JavaScript;R;Ruby;SQL;TypeScript
+85547,HTML/CSS;JavaScript;TypeScript
+85548,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+85549,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+85550,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;TypeScript
+85551,HTML/CSS;JavaScript;Objective-C;SQL
+85552,C++;HTML/CSS;Java;JavaScript;Python;SQL
+85553,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;Go;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript;Other(s):
+85554,HTML/CSS;JavaScript;PHP;SQL
+85555,Bash/Shell/PowerShell;C;C++;HTML/CSS;PHP;Python;SQL
+85556,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85557,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL;VBA
+85558,C++
+85559,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript
+85560,C;HTML/CSS;Java;PHP;Python;SQL
+85561,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;Ruby;SQL;Swift;TypeScript
+85562,Bash/Shell/PowerShell;C++;C#;Java
+85563,Go;HTML/CSS;JavaScript;Ruby;SQL
+85564,C++;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85565,Bash/Shell/PowerShell;C;C++;Rust;Other(s):
+85566,Bash/Shell/PowerShell;C;Java;Objective-C
+85567,Bash/Shell/PowerShell;C;C#;JavaScript;TypeScript;VBA
+85568,C#;Java
+85569,HTML/CSS;JavaScript;PHP;SQL
+85570,HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+85571,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+85572,HTML/CSS;JavaScript;PHP
+85573,C#;HTML/CSS;JavaScript;SQL
+85574,JavaScript;Python;VBA
+85575,HTML/CSS;JavaScript;Python;Rust;SQL
+85576,C#;HTML/CSS;Kotlin;TypeScript
+85577,JavaScript;Other(s):
+85578,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+85579,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+85580,C;C++;Java;Python
+85581,C++;HTML/CSS;JavaScript;Kotlin;Python
+85582,HTML/CSS;JavaScript;SQL;TypeScript
+85583,C#;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+85584,JavaScript;PHP
+85585,HTML/CSS;JavaScript;PHP;SQL;TypeScript;WebAssembly
+85586,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP
+85587,SQL;Other(s):
+85588,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+85589,C#;JavaScript;SQL
+85590,HTML/CSS;JavaScript;PHP
+85591,C;C++;JavaScript;Python
+85592,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+85593,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;SQL
+85594,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+85595,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+85596,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85597,HTML/CSS;Java;JavaScript;PHP;TypeScript
+85598,HTML/CSS;JavaScript;PHP;Python;SQL
+85599,C;C++;Java;JavaScript;Python;TypeScript
+85600,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Rust;Scala;SQL;TypeScript;VBA;WebAssembly
+85601,C++;HTML/CSS;JavaScript;PHP
+85602,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85603,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL
+85604,Go;HTML/CSS;JavaScript;Python
+85605,HTML/CSS;JavaScript;SQL;TypeScript
+85606,Python
+85607,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+85608,Java
+85609,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+85610,Java;Ruby;Scala
+85611,C#;Python;SQL
+85612,Java
+85613,Python;R
+85614,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;Swift
+85615,HTML/CSS;JavaScript
+85616,HTML/CSS;JavaScript;Python;TypeScript
+85617,HTML/CSS;JavaScript;PHP;Python;TypeScript
+85618,C#;HTML/CSS;SQL
+85619,Clojure;Java;JavaScript;Python;SQL
+85620,HTML/CSS;JavaScript
+85621,Java
+85622,Java;JavaScript;Kotlin;Python
+85623,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+85624,C;C++;Java;Python;Ruby;Scala;Other(s):
+85625,Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Python;SQL
+85626,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+85627,HTML/CSS;JavaScript;Python;TypeScript
+85628,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+85629,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+85630,Java;Kotlin
+85631,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+85632,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Rust;TypeScript;Other(s):
+85633,C++;Python
+85634,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Scala;SQL;TypeScript
+85635,C#;HTML/CSS;JavaScript;PHP;SQL
+85636,Assembly;C++;C#;JavaScript
+85637,HTML/CSS;Java;JavaScript;SQL;Other(s):
+85638,Assembly;Bash/Shell/PowerShell;C;Dart;Go;TypeScript
+85639,HTML/CSS;JavaScript;Python;SQL
+85640,Go;HTML/CSS;JavaScript;PHP
+85641,C++;C#;JavaScript;TypeScript
+85643,HTML/CSS;JavaScript
+85644,SQL
+85645,HTML/CSS;PHP;SQL;Swift
+85646,C#;Python;SQL;VBA;Other(s):
+85647,C#;SQL;Other(s):
+85648,C#;HTML/CSS;SQL
+85649,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;Other(s):
+85650,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+85651,Dart;Java;Kotlin
+85652,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85653,HTML/CSS;Java;JavaScript
+85654,Java;JavaScript;Kotlin;SQL;TypeScript
+85655,C#;JavaScript
+85656,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+85657,Java;JavaScript
+85658,Java;Kotlin
+85659,C#;HTML/CSS;JavaScript;SQL
+85660,HTML/CSS;JavaScript
+85661,C;C++;C#;Java;Objective-C;SQL;Swift
+85662,HTML/CSS;Java;Python
+85663,Assembly;C;Java;Python;Swift
+85664,Python
+85665,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;WebAssembly
+85666,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Swift
+85667,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Other(s):
+85668,C++;HTML/CSS;Java;JavaScript;Ruby;Rust;SQL;TypeScript;WebAssembly
+85669,HTML/CSS;JavaScript;TypeScript
+85670,Bash/Shell/PowerShell;HTML/CSS;Java;PHP;Python;Ruby
+85671,C#;Python
+85672,C#;HTML/CSS;Java;JavaScript
+85673,C#
+85674,C;C++
+85675,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+85676,HTML/CSS;JavaScript
+85677,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+85678,C++;HTML/CSS;Java;JavaScript;Python;Ruby
+85679,Java;JavaScript;Kotlin;SQL
+85680,Python;R;SQL
+85681,HTML/CSS;Java;JavaScript;PHP;SQL
+85682,Java;Scala
+85683,C#;HTML/CSS;JavaScript;SQL
+85684,C++;C#;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+85685,C#;HTML/CSS;Java;JavaScript;TypeScript
+85686,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+85687,HTML/CSS;JavaScript;Python;SQL
+85688,JavaScript
+85689,Assembly;HTML/CSS;JavaScript;PHP;Python;R;SQL;Swift;Other(s):
+85690,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+85691,Bash/Shell/PowerShell;C;C++;JavaScript;PHP
+85692,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Ruby
+85693,C++;C#;Rust;Other(s):
+85694,Python
+85695,Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+85696,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+85697,C++;JavaScript;Other(s):
+85698,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+85699,C#;HTML/CSS;JavaScript;SQL
+85700,C++;JavaScript;Objective-C;Python
+85701,HTML/CSS;JavaScript;Python;SQL
+85702,HTML/CSS;Java;JavaScript;SQL;TypeScript
+85703,Python;Other(s):
+85704,HTML/CSS;Java;Objective-C;R;SQL
+85705,HTML/CSS;JavaScript
+85706,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+85707,C;C++;Java;Python
+85708,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+85709,Objective-C;Swift
+85710,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+85711,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+85712,HTML/CSS;Java;JavaScript;Kotlin;Python
+85713,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Rust;SQL;Swift;TypeScript
+85714,Bash/Shell/PowerShell;C++;Go;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+85715,HTML/CSS;JavaScript;PHP;TypeScript
+85716,C++;Java;JavaScript;SQL
+85717,Python;R;Rust
+85718,Bash/Shell/PowerShell;Java;SQL
+85719,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+85720,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+85721,C;C++;C#
+85723,Bash/Shell/PowerShell;Java;JavaScript;R;SQL
+85724,C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;SQL
+85725,C#;HTML/CSS;Java;JavaScript;Python;SQL
+85726,HTML/CSS;JavaScript;PHP
+85727,Java;JavaScript;PHP;Other(s):
+85728,Bash/Shell/PowerShell;C++;C#;Objective-C;Python;SQL;Swift
+85729,Bash/Shell/PowerShell;C#;Dart;Go;HTML/CSS;JavaScript;SQL;TypeScript
+85730,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;SQL;Swift
+85731,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;PHP;TypeScript
+85732,Java;JavaScript;Python;Scala;SQL
+85733,Bash/Shell/PowerShell;Java;SQL
+85734,C#;SQL
+85735,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+85736,Bash/Shell/PowerShell;Go;Java
+85737,C++;Python
+85739,Objective-C;Swift
+85740,C#;HTML/CSS;Java;JavaScript;Python;Other(s):
+85741,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85742,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+85743,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript;Other(s):
+85745,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript;VBA
+85746,C;C++;C#;Java
+85747,Bash/Shell/PowerShell;Go;JavaScript;SQL;TypeScript
+85748,JavaScript
+85749,C#
+85750,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Kotlin;Python;R;Scala
+85751,HTML/CSS;PHP
+85752,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+85753,Go;HTML/CSS;JavaScript;Ruby;TypeScript
+85754,Java;SQL;TypeScript;VBA
+85755,HTML/CSS
+85756,Bash/Shell/PowerShell;C;Clojure;Go;Java;JavaScript;Kotlin;Python;Ruby;SQL
+85757,C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+85758,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;PHP;Ruby;SQL;Swift
+85759,JavaScript;Scala;SQL
+85760,C;Java;Python;R;Scala
+85761,HTML/CSS;JavaScript;PHP;Python
+85762,HTML/CSS;JavaScript;PHP;Python
+85763,C++;HTML/CSS;JavaScript;Python
+85764,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+85765,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+85766,C#;Java;JavaScript;SQL
+85767,C#;HTML/CSS;SQL;TypeScript;VBA
+85768,HTML/CSS;JavaScript;Python
+85769,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+85770,C;C++
+85771,Bash/Shell/PowerShell;Python;VBA
+85772,C++;C#;Other(s):
+85773,Java;JavaScript;SQL
+85774,Bash/Shell/PowerShell;C;C++;Python
+85775,HTML/CSS;JavaScript
+85776,Bash/Shell/PowerShell;C;C++;Java;Python;Ruby;SQL
+85777,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift;TypeScript
+85778,JavaScript
+85779,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Scala;TypeScript
+85780,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+85781,C++;Python
+85782,Go;HTML/CSS;JavaScript;PHP;Python;Scala;SQL
+85783,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+85784,Bash/Shell/PowerShell;Java;SQL;TypeScript
+85785,C;C++;C#;SQL
+85786,C;C++;Java;JavaScript
+85787,Bash/Shell/PowerShell;R;SQL
+85788,Go;JavaScript;Ruby
+85789,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+85790,C++;C#;HTML/CSS;JavaScript;PHP
+85791,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85792,Bash/Shell/PowerShell;C;C++;C#;Java;Objective-C;Python;SQL
+85793,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+85794,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+85795,C#;HTML/CSS;SQL
+85796,Bash/Shell/PowerShell;C;C++;Go;Java;JavaScript;PHP;Python
+85797,C++;Objective-C;Python;Swift
+85798,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+85799,Java;Python
+85800,JavaScript;Python
+85801,HTML/CSS;JavaScript;SQL;TypeScript
+85802,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+85803,Java
+85804,JavaScript;Python;SQL
+85805,C#;HTML/CSS;Java;JavaScript
+85806,Bash/Shell/PowerShell;C;C++;Python
+85807,C#;HTML/CSS;Java;JavaScript;SQL
+85808,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+85809,Bash/Shell/PowerShell;Java;Python;VBA
+85810,Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+85811,HTML/CSS;Java;JavaScript;SQL
+85812,HTML/CSS;JavaScript;TypeScript
+85813,C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+85814,C;HTML/CSS;Java;Swift
+85815,Swift
+85816,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Rust;Scala;SQL
+85817,Bash/Shell/PowerShell;C;C++;Clojure;Java
+85818,C;C++;C#;Java;SQL
+85819,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Ruby;TypeScript
+85820,JavaScript;Ruby
+85821,C;C++;HTML/CSS;Java;JavaScript;SQL;Other(s):
+85822,HTML/CSS;Java
+85823,C#
+85824,HTML/CSS;JavaScript;PHP;Python;Other(s):
+85825,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;PHP
+85826,C++;Java;JavaScript
+85827,Other(s):
+85828,HTML/CSS;JavaScript
+85829,C;HTML/CSS;JavaScript;PHP
+85830,Assembly;Bash/Shell/PowerShell;C;C++;C#;Erlang;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+85831,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+85832,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85833,C#
+85834,Go;HTML/CSS;JavaScript;PHP;SQL
+85835,JavaScript;Ruby;SQL
+85836,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+85837,Python;R;SQL
+85838,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+85839,C;C++;Python
+85840,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+85841,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+85842,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+85843,C#;HTML/CSS;Java;JavaScript;Python;SQL
+85844,Java;Other(s):
+85845,C#;Java
+85846,C#;SQL;VBA
+85847,C;Go;Java;JavaScript;Objective-C;PHP;SQL;Swift
+85848,Bash/Shell/PowerShell;Python;Other(s):
+85849,C++
+85850,HTML/CSS;JavaScript
+85851,C#;HTML/CSS;JavaScript;PHP;SQL
+85852,C;C++;Java;Python;Ruby
+85853,Assembly;C;HTML/CSS;Java;Python;TypeScript;Other(s):
+85854,Assembly;Bash/Shell/PowerShell;C;C++;Go;Java;Kotlin;Python
+85855,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85856,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+85857,C#;HTML/CSS;JavaScript
+85858,Bash/Shell/PowerShell;Objective-C;Python;Swift
+85859,C++;C#
+85860,C++;Python
+85861,HTML/CSS;JavaScript;Python;SQL
+85862,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;Rust;SQL
+85863,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+85864,C#;HTML/CSS;JavaScript;Python;SQL
+85865,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Other(s):
+85866,Bash/Shell/PowerShell;C;C++;Python
+85867,Java;JavaScript
+85868,C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+85869,C++;C#;HTML/CSS;Java;JavaScript;Python;R;SQL
+85870,C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+85871,C#;SQL
+85872,C#;Java;JavaScript;Python;R;SQL;TypeScript
+85873,HTML/CSS;PHP;SQL
+85874,HTML/CSS;JavaScript;Kotlin;Objective-C;Python;Swift
+85875,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+85876,Go;HTML/CSS;Java;JavaScript;Kotlin;SQL
+85877,HTML/CSS;JavaScript;Python;Ruby
+85878,Java
+85879,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;PHP;Python
+85880,HTML/CSS;JavaScript;PHP
+85881,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+85882,Bash/Shell/PowerShell;C#;Scala;SQL
+85883,Python;Rust
+85884,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+85885,Assembly;Bash/Shell/PowerShell;C#;Java;Python;SQL
+85886,Go;HTML/CSS;Java;JavaScript;TypeScript
+85887,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+85888,Assembly;C;HTML/CSS;Java;JavaScript;Python;TypeScript
+85889,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+85890,Bash/Shell/PowerShell;Clojure;Go;JavaScript
+85891,HTML/CSS;JavaScript;TypeScript
+85892,C#;SQL
+85893,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+85894,HTML/CSS;JavaScript;PHP
+85895,C#;HTML/CSS;JavaScript;SQL
+85896,HTML/CSS;Java;JavaScript;Python;SQL
+85897,C;C++;HTML/CSS;Python;SQL
+85898,Java;JavaScript;SQL
+85899,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85900,C++;Java
+85901,Java;Kotlin;SQL;Other(s):
+85902,Objective-C;Swift
+85903,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+85905,Bash/Shell/PowerShell;Java;Python;SQL
+85906,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;Python;SQL
+85907,C++;C#;PHP
+85908,HTML/CSS;JavaScript;Ruby
+85909,Java
+85910,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+85911,HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+85912,Assembly;Java
+85913,HTML/CSS;JavaScript;Python;R;WebAssembly
+85914,PHP;VBA
+85915,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+85916,Java;Python
+85917,HTML/CSS;JavaScript;PHP;Python;SQL
+85919,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;TypeScript
+85920,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+85921,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85922,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+85923,C++;HTML/CSS;JavaScript;PHP;SQL
+85924,Bash/Shell/PowerShell;C;C++;Dart;Erlang;HTML/CSS;JavaScript;Python;Rust;TypeScript
+85925,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85926,Assembly;Bash/Shell/PowerShell;JavaScript;PHP;TypeScript
+85927,Bash/Shell/PowerShell;C;C++;Python;R;Ruby
+85928,HTML/CSS;JavaScript;PHP;SQL
+85929,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+85930,HTML/CSS;JavaScript;SQL
+85931,Bash/Shell/PowerShell;C#;Python;SQL;TypeScript
+85932,HTML/CSS;JavaScript
+85933,HTML/CSS;JavaScript;PHP
+85934,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+85935,Java;Kotlin;PHP
+85936,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;R;SQL
+85937,Ruby
+85938,C;C#;Dart;HTML/CSS;Java;JavaScript;Python;SQL
+85939,Java;Python;Scala;SQL
+85940,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85941,Bash/Shell/PowerShell;Rust;Swift;TypeScript
+85943,Bash/Shell/PowerShell;F#;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+85944,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Other(s):
+85945,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Ruby;SQL;Swift
+85946,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python
+85947,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;Swift
+85948,Bash/Shell/PowerShell;C;C++;Python
+85949,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+85950,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+85951,Bash/Shell/PowerShell;C;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Rust;SQL;WebAssembly
+85952,C#;JavaScript;SQL
+85953,HTML/CSS;Java;JavaScript;SQL;TypeScript
+85954,SQL;VBA
+85956,Java;JavaScript;Objective-C;PHP;Swift
+85957,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+85958,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Swift
+85959,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;TypeScript
+85960,Dart;HTML/CSS;Java;JavaScript;PHP
+85962,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+85963,C;C++;Python
+85964,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+85966,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+85967,C;C#;HTML/CSS;SQL;Other(s):
+85968,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+85969,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;PHP;Python
+85970,HTML/CSS;JavaScript;PHP
+85971,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+85972,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+85973,HTML/CSS;JavaScript;PHP;SQL
+85974,Java;Python
+85975,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart
+85976,Go;HTML/CSS;JavaScript;Python;R;Rust;SQL;TypeScript
+85977,Bash/Shell/PowerShell;C#;HTML/CSS;TypeScript
+85978,Bash/Shell/PowerShell;Java;Python
+85979,C#;HTML/CSS;JavaScript
+85980,HTML/CSS;JavaScript;PHP;SQL
+85981,C#;HTML/CSS;JavaScript;SQL;TypeScript;WebAssembly
+85982,C#;HTML/CSS;Java;SQL
+85983,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;TypeScript
+85984,C
+85985,C#;HTML/CSS;JavaScript;SQL;TypeScript
+85986,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+85987,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+85988,Python;VBA
+85989,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;VBA
+85990,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+85992,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;Ruby;TypeScript
+85993,C#;F#;JavaScript;Python;TypeScript
+85994,HTML/CSS;JavaScript;PHP;SQL
+85995,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+85996,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Other(s):
+85997,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;R;SQL
+85998,HTML/CSS;JavaScript;Objective-C;Ruby;SQL;Swift
+85999,C
+86000,Java
+86001,Bash/Shell/PowerShell;C#;JavaScript;TypeScript
+86002,C#;HTML/CSS;JavaScript;SQL
+86003,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+86004,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+86005,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+86006,C#;HTML/CSS;JavaScript;SQL
+86007,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+86008,Other(s):
+86009,C#;JavaScript;SQL;TypeScript
+86010,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86011,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript
+86013,JavaScript;PHP
+86014,C;C++;HTML/CSS;Java;JavaScript;Python
+86015,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+86016,HTML/CSS;JavaScript;TypeScript
+86017,Assembly;HTML/CSS;JavaScript;PHP;Python;SQL
+86018,HTML/CSS;JavaScript;PHP;SQL
+86019,Python
+86020,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+86021,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+86022,C;C++;C#;Erlang;Go;HTML/CSS;JavaScript;Python;Ruby
+86023,Java;Kotlin
+86024,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86025,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+86026,C#;HTML/CSS;JavaScript;SQL;Other(s):
+86027,C;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;Other(s):
+86028,Go;JavaScript
+86029,C#;SQL
+86030,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86031,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86032,C;HTML/CSS;Java
+86033,HTML/CSS;Java;SQL;Other(s):
+86034,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust
+86035,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript
+86036,Bash/Shell/PowerShell;C;Python;Other(s):
+86037,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+86038,C++
+86039,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+86040,JavaScript
+86041,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Kotlin;PHP;Python;SQL
+86042,HTML/CSS;JavaScript;Kotlin
+86043,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86044,Assembly;Java;SQL
+86045,C;HTML/CSS;JavaScript;PHP;Python
+86046,C;C++;Python;VBA
+86047,C;C++;HTML/CSS;Java;JavaScript;Python
+86048,HTML/CSS;Java;JavaScript;Python;Scala
+86049,Java;JavaScript;Python;SQL
+86050,HTML/CSS;JavaScript;TypeScript
+86051,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;SQL
+86052,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript;Other(s):
+86053,JavaScript;Other(s):
+86054,Bash/Shell/PowerShell;C++;HTML/CSS;Python
+86055,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+86056,C;C++;Objective-C;Swift
+86057,Bash/Shell/PowerShell;C;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL;TypeScript
+86058,Bash/Shell/PowerShell;Go;JavaScript;Python;Scala
+86059,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL;TypeScript
+86060,C++;HTML/CSS;Python;R;Scala;SQL;TypeScript
+86061,HTML/CSS;Java;JavaScript;Python;Ruby;Scala;SQL
+86062,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+86063,Other(s):
+86064,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+86065,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;SQL;TypeScript
+86066,HTML/CSS;Java;JavaScript;SQL;TypeScript
+86067,C#
+86068,Bash/Shell/PowerShell;Python;R;SQL
+86069,Bash/Shell/PowerShell;F#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+86070,HTML/CSS;JavaScript;TypeScript
+86071,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86072,Bash/Shell/PowerShell;C#;Python;R;SQL
+86073,Bash/Shell/PowerShell;JavaScript;PHP;TypeScript
+86074,Assembly;C++;C#;Go;JavaScript;PHP;TypeScript
+86075,Bash/Shell/PowerShell;JavaScript;Python;Scala;TypeScript;Other(s):
+86076,C++;HTML/CSS;JavaScript
+86077,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;SQL;TypeScript
+86078,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+86079,Bash/Shell/PowerShell;Go;Python;SQL
+86080,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+86081,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+86082,JavaScript;Python
+86083,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+86084,HTML/CSS;JavaScript;PHP;SQL
+86085,HTML/CSS;JavaScript;PHP;SQL
+86086,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+86087,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+86088,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+86089,Bash/Shell/PowerShell;C;Go;JavaScript;PHP;Python
+86090,Java;JavaScript;SQL
+86091,HTML/CSS;JavaScript;PHP;SQL
+86093,C;HTML/CSS;Python
+86094,HTML/CSS;Java;JavaScript;Kotlin
+86095,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+86096,JavaScript;Objective-C;Swift
+86097,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+86098,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+86099,Bash/Shell/PowerShell;Go;PHP;SQL
+86100,HTML/CSS;JavaScript
+86101,HTML/CSS;Java;JavaScript;SQL;TypeScript
+86102,Bash/Shell/PowerShell;Python;R;SQL
+86103,C#;Java
+86104,Bash/Shell/PowerShell;JavaScript;TypeScript
+86105,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;VBA
+86106,PHP;SQL
+86107,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Scala;SQL
+86108,C#;HTML/CSS;SQL;TypeScript
+86109,Java;Kotlin
+86110,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript;Other(s):
+86111,C;C++;C#
+86112,C;C++;C#
+86113,C++;C#;VBA;Other(s):
+86114,HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+86115,Java;Kotlin;SQL
+86116,HTML/CSS;JavaScript;Python
+86117,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+86118,Java;Python;R;SQL
+86119,C#;JavaScript;SQL
+86120,Go;HTML/CSS;Java;JavaScript
+86121,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+86122,Python
+86123,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+86124,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+86125,Bash/Shell/PowerShell;Java;Objective-C;Ruby;SQL;Swift
+86126,HTML/CSS;JavaScript;TypeScript
+86127,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+86128,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+86129,PHP
+86130,C#;HTML/CSS;JavaScript;SQL
+86131,C#;HTML/CSS;JavaScript
+86132,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+86133,JavaScript;PHP;SQL
+86134,Elixir;Ruby;SQL
+86135,C;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86136,HTML/CSS;Java;JavaScript;Python;SQL;VBA
+86137,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+86139,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+86140,Dart;HTML/CSS;Java;SQL;Other(s):
+86141,HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+86142,HTML/CSS;JavaScript
+86143,Bash/Shell/PowerShell;C;C++;Java;Python
+86144,C#;SQL
+86145,C++;HTML/CSS;Java;PHP;Python
+86146,HTML/CSS;JavaScript;Kotlin;PHP;SQL
+86147,HTML/CSS;JavaScript
+86148,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Rust;TypeScript;Other(s):
+86149,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+86150,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86151,Bash/Shell/PowerShell;C;Python;SQL;Other(s):
+86152,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+86153,Bash/Shell/PowerShell;SQL
+86154,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+86155,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+86156,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;PHP;Python;TypeScript
+86157,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+86159,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+86160,Go;Java;Python;Scala;SQL
+86161,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+86162,Bash/Shell/PowerShell;C;C++;Java;Rust;Other(s):
+86163,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript
+86165,C;C++;Java;JavaScript;PHP;SQL
+86166,Bash/Shell/PowerShell;Java
+86167,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Scala;SQL
+86168,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+86169,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86170,C#;Java;Kotlin;Python
+86171,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+86172,HTML/CSS;Java;JavaScript;SQL
+86173,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;SQL;Swift
+86174,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+86175,HTML/CSS;JavaScript;PHP
+86177,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86178,Kotlin;Swift
+86179,Bash/Shell/PowerShell;C++;C#;Python
+86180,C++;Kotlin;PHP;Swift
+86181,JavaScript;Python
+86182,Bash/Shell/PowerShell;C#
+86183,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+86184,C#;Python
+86185,Bash/Shell/PowerShell;C++;Python
+86186,HTML/CSS;Python
+86187,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+86188,Java;Scala;TypeScript
+86189,Java
+86190,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+86191,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;JavaScript;Python;Ruby
+86192,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Scala;SQL
+86193,Java;Kotlin
+86194,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+86195,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;PHP;SQL
+86196,C++;C#
+86197,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript;Other(s):
+86198,Java
+86199,Bash/Shell/PowerShell;Java;Python
+86200,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+86201,C#;HTML/CSS;JavaScript;VBA;Other(s):
+86202,C++;HTML/CSS;JavaScript;PHP;Rust
+86203,Bash/Shell/PowerShell;C++;Java;JavaScript;Objective-C;SQL;TypeScript
+86204,Assembly;Bash/Shell/PowerShell;C++;Go;Python;R;Ruby;Rust;Swift
+86205,Bash/Shell/PowerShell;C;C++;C#;JavaScript
+86206,HTML/CSS;JavaScript;Python
+86207,Java
+86208,Java;JavaScript;Python;Scala;TypeScript
+86209,Go;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL
+86210,C#;HTML/CSS;Java
+86211,SQL
+86212,HTML/CSS;Java;JavaScript;PHP;TypeScript
+86213,C#;JavaScript;Swift
+86214,C;C++;Erlang;Other(s):
+86215,C++;C#;Go;JavaScript;Python;SQL
+86216,C#;HTML/CSS;JavaScript
+86217,Java;Kotlin
+86218,Bash/Shell/PowerShell;C#;F#;SQL
+86219,HTML/CSS;JavaScript;PHP;TypeScript
+86220,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+86221,JavaScript;Python
+86222,HTML/CSS;JavaScript
+86223,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86224,Bash/Shell/PowerShell;Go;JavaScript;PHP;SQL;VBA
+86225,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;PHP;SQL;TypeScript
+86226,C;C++;Go;SQL
+86227,C#;Objective-C
+86228,C#;Java;JavaScript;SQL
+86229,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86230,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86231,C#;Java;SQL
+86232,HTML/CSS;JavaScript;Python
+86233,Bash/Shell/PowerShell;Python
+86234,HTML/CSS;JavaScript;PHP;SQL
+86235,Assembly;Java;Python
+86236,HTML/CSS;JavaScript
+86237,HTML/CSS;JavaScript;TypeScript
+86238,Assembly;C;Java;PHP;Python;Rust
+86239,Java
+86240,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+86241,C++;Python
+86242,Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;SQL;Swift;TypeScript;Other(s):
+86243,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;VBA
+86244,Assembly;C;HTML/CSS
+86245,JavaScript;Rust;Swift
+86246,C#;HTML/CSS;Python
+86247,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript;Other(s):
+86248,Bash/Shell/PowerShell;C#;Dart;SQL;TypeScript
+86249,Bash/Shell/PowerShell;F#;Go;JavaScript;TypeScript;Other(s):
+86250,HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+86251,C#;Go;SQL
+86252,C#;HTML/CSS;JavaScript;SQL
+86253,C#;HTML/CSS;JavaScript;PHP
+86254,HTML/CSS;Java;JavaScript;SQL
+86255,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python
+86256,HTML/CSS;JavaScript;PHP;Ruby
+86257,Assembly;Bash/Shell/PowerShell;C;C++;C#;Elixir;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;SQL
+86258,HTML/CSS;Java;JavaScript;Ruby;SQL
+86259,C#;Dart;JavaScript;Python;TypeScript
+86260,HTML/CSS;Java;JavaScript
+86261,Bash/Shell/PowerShell;Python;SQL
+86262,C#;HTML/CSS;JavaScript;SQL
+86263,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift
+86264,HTML/CSS;JavaScript;PHP
+86265,Python;Scala;SQL
+86266,HTML/CSS;JavaScript;PHP;TypeScript
+86267,HTML/CSS;Java;JavaScript;SQL
+86268,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86269,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+86270,Java;Python;SQL
+86271,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+86272,HTML/CSS;JavaScript;PHP
+86273,C++;Python
+86274,JavaScript;Python
+86275,C++;Java
+86276,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+86277,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+86278,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+86279,Bash/Shell/PowerShell;C#;F#;Go;JavaScript;SQL
+86280,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+86281,Bash/Shell/PowerShell;C#;JavaScript;Swift
+86282,Assembly;C;C++;C#;Java;JavaScript
+86283,HTML/CSS;Java;JavaScript;PHP;SQL
+86284,HTML/CSS;JavaScript;Python;R;SQL
+86285,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Scala;SQL
+86286,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+86287,C#;Python
+86288,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;PHP;Python;SQL
+86289,HTML/CSS;JavaScript;Ruby;SQL
+86290,Java;JavaScript;PHP;Python;SQL
+86291,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;TypeScript
+86292,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86293,Bash/Shell/PowerShell;C;Go;HTML/CSS;JavaScript;SQL
+86294,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+86295,C#;HTML/CSS;JavaScript;SQL
+86296,Go;Python
+86297,C++;HTML/CSS;Python
+86298,Bash/Shell/PowerShell;C++;HTML/CSS;Java;PHP;Scala;SQL;Swift
+86299,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL
+86300,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;Scala;SQL;Swift
+86301,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+86302,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86303,C#;HTML/CSS;JavaScript;TypeScript
+86304,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL
+86305,HTML/CSS;JavaScript;Python
+86306,Bash/Shell/PowerShell;Erlang;HTML/CSS;Python;Ruby;Swift;Other(s):
+86307,C++;Java;SQL
+86308,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+86309,C;C++;PHP
+86310,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+86311,Bash/Shell/PowerShell;Go;Java;JavaScript;Kotlin;SQL
+86312,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+86313,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+86314,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Scala;SQL
+86315,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+86316,Bash/Shell/PowerShell;Java;SQL
+86317,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+86318,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+86319,HTML/CSS;JavaScript
+86320,Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+86321,C;C++;HTML/CSS;JavaScript;PHP;SQL
+86322,C#;HTML/CSS;JavaScript;SQL
+86323,C#;HTML/CSS;JavaScript;TypeScript
+86324,Erlang;HTML/CSS;Java;JavaScript;SQL;Swift
+86325,C#;HTML/CSS;JavaScript;SQL
+86326,Java;PHP
+86327,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+86328,C++;Java;Python
+86329,Java;JavaScript
+86330,C;HTML/CSS;JavaScript;Python;Rust
+86331,JavaScript;PHP;SQL
+86332,HTML/CSS;JavaScript;TypeScript
+86333,C++;C#;HTML/CSS;PHP;Python;SQL
+86334,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+86335,HTML/CSS;JavaScript;PHP;Other(s):
+86336,Bash/Shell/PowerShell;C;Python;SQL
+86337,C++;HTML/CSS;JavaScript;Python
+86338,C#;R;SQL;Other(s):
+86339,Bash/Shell/PowerShell;C;C++;Go;Python;SQL
+86340,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86341,Bash/Shell/PowerShell;C;C++;C#;Java;PHP;Python;SQL;VBA
+86342,HTML/CSS;Java;JavaScript;SQL
+86343,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+86344,Assembly;Bash/Shell/PowerShell;C;C++;Java;PHP;R
+86345,C;C++
+86346,Bash/Shell/PowerShell;Elixir;Ruby
+86347,HTML/CSS;Java;JavaScript;TypeScript
+86348,Bash/Shell/PowerShell;Python
+86349,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86350,Other(s):
+86351,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+86352,Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+86353,Bash/Shell/PowerShell;Clojure;JavaScript
+86354,C#;HTML/CSS;Java;JavaScript;TypeScript
+86355,HTML/CSS;Java;JavaScript;SQL
+86356,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL;Other(s):
+86357,Java;Kotlin;SQL
+86358,C;C++;Java;Objective-C;Python
+86359,C;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+86360,HTML/CSS;Java;JavaScript;TypeScript
+86361,Bash/Shell/PowerShell;Java;JavaScript;Python;SQL
+86362,C;C++;C#;HTML/CSS;Java;PHP;SQL
+86363,Assembly;C;C++;C#;HTML/CSS;Java;SQL
+86364,Bash/Shell/PowerShell;R;SQL
+86365,C;C++;C#;Dart;Java;Python;TypeScript
+86366,HTML/CSS;JavaScript
+86367,C++;Java;SQL;TypeScript
+86368,Bash/Shell/PowerShell;Java;Python
+86369,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+86370,Java;JavaScript;Kotlin
+86371,HTML/CSS;Java;JavaScript;SQL
+86372,Bash/Shell/PowerShell;Python;R;SQL
+86373,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86374,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86375,C#;HTML/CSS;JavaScript
+86376,HTML/CSS;JavaScript;TypeScript
+86377,HTML/CSS;JavaScript
+86378,Java;Kotlin
+86379,HTML/CSS;JavaScript
+86380,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript;Other(s):
+86381,Java;JavaScript;PHP;SQL
+86382,HTML/CSS;Java;JavaScript;Python
+86383,C++;HTML/CSS;PHP
+86384,Bash/Shell/PowerShell;HTML/CSS;Python;R
+86385,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+86386,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+86387,HTML/CSS
+86388,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86389,HTML/CSS;JavaScript;PHP;SQL
+86390,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86391,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;Rust
+86392,Java;JavaScript;SQL;TypeScript
+86393,C#;HTML/CSS;JavaScript;SQL
+86394,C;C++;Java;JavaScript;PHP;SQL
+86395,HTML/CSS;JavaScript;TypeScript
+86396,Bash/Shell/PowerShell;Go;Java;Kotlin;Rust
+86397,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+86398,Java
+86399,C;C++;HTML/CSS;Java;Python;Scala;SQL
+86400,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL;Other(s):
+86401,HTML/CSS;JavaScript;Ruby
+86402,HTML/CSS;Java;JavaScript;Objective-C
+86403,C;C++;HTML/CSS;Java;Python;R
+86404,HTML/CSS;JavaScript;PHP;SQL
+86405,Bash/Shell/PowerShell;C;C++
+86406,C;Other(s):
+86407,C;C++;HTML/CSS
+86408,Java;Kotlin
+86409,Bash/Shell/PowerShell;JavaScript;Python
+86410,HTML/CSS;Java;JavaScript;PHP;SQL
+86411,JavaScript;PHP
+86412,C#;SQL;Other(s):
+86413,Bash/Shell/PowerShell;C;Go;HTML/CSS;PHP;Python;SQL
+86414,Bash/Shell/PowerShell;Elixir;HTML/CSS;Java;JavaScript;PHP;SQL
+86415,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+86416,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Python
+86417,Bash/Shell/PowerShell;JavaScript;Python;R;SQL;Other(s):
+86418,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+86419,HTML/CSS;Java;JavaScript;PHP
+86420,HTML/CSS;JavaScript;PHP;Ruby;Other(s):
+86421,Bash/Shell/PowerShell;Python
+86422,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;SQL
+86423,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+86424,C++
+86425,HTML/CSS;JavaScript;TypeScript
+86426,HTML/CSS;JavaScript;SQL;TypeScript
+86427,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+86428,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+86429,C++;HTML/CSS;JavaScript;Python;SQL;Other(s):
+86430,Java;Python;VBA
+86431,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL;TypeScript
+86432,Bash/Shell/PowerShell;Java;Objective-C;SQL;Swift;Other(s):
+86433,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;Swift;TypeScript;WebAssembly
+86434,Bash/Shell/PowerShell;C++;Python;Other(s):
+86435,Java;Kotlin
+86436,C++;C#;JavaScript;SQL
+86437,C#;SQL
+86438,Clojure;HTML/CSS;Java;JavaScript;Kotlin;SQL
+86439,Assembly;Bash/Shell/PowerShell;C;C++;Dart;Java;JavaScript;R;Ruby;SQL;Swift;TypeScript
+86440,HTML/CSS;JavaScript;PHP;TypeScript
+86441,HTML/CSS;JavaScript;PHP
+86442,Bash/Shell/PowerShell;C++;Java;Kotlin;SQL
+86443,Java;Kotlin
+86444,HTML/CSS;JavaScript;PHP;SQL
+86445,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;SQL;Other(s):
+86446,HTML/CSS;JavaScript;PHP
+86447,Bash/Shell/PowerShell;C
+86448,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+86449,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL;TypeScript
+86450,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+86451,C#;HTML/CSS;JavaScript;Objective-C
+86452,HTML/CSS;Java;JavaScript
+86453,Elixir;Java;JavaScript;Python;TypeScript
+86454,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86455,Python;SQL
+86456,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+86457,Java
+86458,C++;C#;HTML/CSS;Rust
+86459,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+86460,Bash/Shell/PowerShell;JavaScript;Python;SQL;TypeScript
+86461,Go;HTML/CSS;JavaScript
+86462,C#;HTML/CSS;Java;JavaScript;PHP
+86463,Bash/Shell/PowerShell;Clojure;Go;Java;JavaScript;Kotlin;Python;Rust;Scala;SQL
+86464,HTML/CSS;Java;JavaScript;PHP;SQL
+86465,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86467,Bash/Shell/PowerShell;C;Python
+86468,C#;HTML/CSS;JavaScript;SQL;VBA
+86469,C#;Swift;VBA
+86470,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript
+86471,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;Other(s):
+86472,HTML/CSS;Java;JavaScript;Python;SQL
+86473,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+86474,Python;R;SQL
+86475,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+86477,HTML/CSS;Python;Rust
+86478,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;TypeScript;WebAssembly
+86479,HTML/CSS;JavaScript;PHP;SQL;VBA
+86480,C++;HTML/CSS;Java;JavaScript;Python;SQL
+86481,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86482,C++;Dart;Python
+86483,C#;HTML/CSS;JavaScript;PHP;SQL
+86484,Elixir;HTML/CSS;Java;JavaScript;TypeScript
+86485,C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python;Ruby;SQL
+86486,C;Java;PHP;Python;R;SQL
+86487,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+86488,Go;HTML/CSS;JavaScript;TypeScript;WebAssembly
+86489,Bash/Shell/PowerShell;C++;Java;Python;VBA;Other(s):
+86490,C;C++;HTML/CSS;JavaScript;Ruby
+86491,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python
+86492,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+86493,Python;SQL
+86494,C;HTML/CSS;Java;JavaScript;Python
+86495,Assembly;C;C++;HTML/CSS;JavaScript;Python;SQL;Swift
+86496,C#;JavaScript;Python;SQL
+86498,Java
+86499,C#;HTML/CSS;JavaScript
+86500,Java
+86501,Assembly;Java
+86502,Bash/Shell/PowerShell;Python;R
+86503,Java;Kotlin
+86504,HTML/CSS;Java;SQL
+86505,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;Scala;SQL;Other(s):
+86506,HTML/CSS;JavaScript;Python;Ruby;Rust;Scala;SQL;WebAssembly
+86507,Bash/Shell/PowerShell;C#;Java;SQL
+86508,Java;JavaScript;Python;SQL;Other(s):
+86509,Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+86510,Bash/Shell/PowerShell;C;C++;C#;Elixir;Erlang;HTML/CSS;Java;JavaScript;PHP;R;Ruby;Rust;SQL;TypeScript;VBA
+86511,Python
+86512,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL
+86513,Bash/Shell/PowerShell;JavaScript;Python;Ruby;SQL
+86514,Python;Rust
+86515,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;VBA
+86516,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+86517,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;JavaScript;Python;SQL;Other(s):
+86518,HTML/CSS;JavaScript;PHP;SQL
+86519,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+86520,HTML/CSS;JavaScript;PHP;SQL
+86521,Assembly;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;TypeScript;WebAssembly
+86522,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Swift
+86523,Bash/Shell/PowerShell;Erlang;Python;SQL
+86524,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL
+86526,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Other(s):
+86527,HTML/CSS;JavaScript
+86528,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86529,Python
+86530,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+86531,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+86532,C#;SQL
+86533,Bash/Shell/PowerShell;Python;R;SQL
+86534,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript;Python;R;Ruby;SQL
+86535,Java;JavaScript;Objective-C;Python;SQL;Swift
+86536,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Scala;SQL
+86537,Assembly;C;C++;C#;HTML/CSS;Java;PHP;SQL
+86538,PHP;Other(s):
+86539,C#;HTML/CSS;JavaScript;SQL
+86540,Java
+86541,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;R;Scala;SQL;Swift;TypeScript;Other(s):
+86542,HTML/CSS;JavaScript;PHP;SQL
+86543,C++;Java;Python;Swift
+86544,HTML/CSS;Java;JavaScript;Python
+86545,C++;C#;HTML/CSS;JavaScript;Python;Ruby;TypeScript
+86546,C#;Java;Swift
+86547,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+86548,C;HTML/CSS;JavaScript;PHP;R;SQL
+86549,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;Rust;SQL;TypeScript
+86550,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+86551,HTML/CSS;Java;JavaScript;TypeScript
+86552,HTML/CSS;Java;JavaScript;PHP;SQL
+86553,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;SQL
+86554,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+86555,HTML/CSS;JavaScript
+86556,Bash/Shell/PowerShell;C;C#;JavaScript;PHP;Python;Swift
+86557,HTML/CSS;JavaScript;PHP;Ruby;SQL
+86558,PHP;Python
+86559,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86560,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+86561,Java;Ruby
+86562,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL;Other(s):
+86563,C;HTML/CSS;JavaScript;PHP;SQL
+86564,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+86565,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;VBA
+86567,C++;JavaScript
+86568,VBA
+86569,C++;HTML/CSS
+86570,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+86571,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+86572,HTML/CSS;JavaScript;PHP;SQL
+86573,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+86574,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86575,Bash/Shell/PowerShell;C;JavaScript;PHP;Python;SQL
+86576,C#;Dart;Java;Kotlin;Ruby;Swift
+86577,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;R;SQL;TypeScript;Other(s):
+86578,Assembly;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+86579,HTML/CSS;Java;JavaScript
+86580,C;C++;C#;JavaScript
+86581,C++;Java;JavaScript
+86582,Bash/Shell/PowerShell
+86583,Bash/Shell/PowerShell;Java;JavaScript;Kotlin;Objective-C;Python;R;Swift
+86584,Assembly;Java;SQL;WebAssembly
+86585,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86586,Objective-C;Swift
+86587,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86588,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86589,C++;JavaScript;Objective-C;Python
+86590,C;C++;JavaScript;Python;SQL
+86591,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86592,Java;Kotlin
+86593,Bash/Shell/PowerShell;Java;Python
+86594,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86595,Java;JavaScript;Python;SQL
+86596,C#;SQL;TypeScript
+86597,C#;HTML/CSS;JavaScript;SQL;VBA
+86598,Java;SQL
+86599,C;HTML/CSS;Java;JavaScript;Python;SQL
+86600,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust
+86601,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+86602,C++;C#;Java;PHP;Python;SQL
+86603,C;C++;Python
+86604,HTML/CSS;Java;JavaScript
+86605,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+86606,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86607,Bash/Shell/PowerShell;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;Swift
+86608,C;C++;HTML/CSS;PHP
+86609,Go;HTML/CSS;JavaScript;Kotlin;Python;SQL
+86610,C#;Java;JavaScript;SQL
+86611,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+86612,Bash/Shell/PowerShell;Python
+86613,C;C++;HTML/CSS;Java;JavaScript;Python;R;VBA
+86614,C#;HTML/CSS;JavaScript;SQL
+86615,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL
+86616,Java;JavaScript;Kotlin;Python;R;Scala;TypeScript
+86617,HTML/CSS;Python
+86618,HTML/CSS;Java;JavaScript;Python;Ruby
+86619,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+86620,Bash/Shell/PowerShell;Python
+86621,C;Java
+86622,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;SQL;Swift
+86623,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+86624,HTML/CSS;JavaScript;Python;R
+86625,C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+86626,HTML/CSS;JavaScript;Python;TypeScript
+86627,Bash/Shell/PowerShell;C#;Erlang;HTML/CSS;Java;JavaScript;Python
+86628,Python;SQL
+86629,Python;VBA
+86630,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;TypeScript;VBA
+86631,Erlang;HTML/CSS;Java;JavaScript;SQL
+86632,Bash/Shell/PowerShell;Java;JavaScript;R;Scala
+86633,HTML/CSS;JavaScript;PHP;Python;SQL
+86634,HTML/CSS;JavaScript;PHP;SQL
+86635,Java
+86636,Assembly;HTML/CSS;JavaScript
+86637,C++;Python
+86639,Bash/Shell/PowerShell;C#;Java
+86640,JavaScript
+86641,Java;SQL
+86642,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;Swift
+86643,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+86644,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby
+86645,C#;JavaScript;SQL;Other(s):
+86646,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+86647,Python;R;SQL
+86648,Bash/Shell/PowerShell;JavaScript;Python;Scala;TypeScript
+86649,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+86650,HTML/CSS;JavaScript;TypeScript
+86651,HTML/CSS;JavaScript
+86652,Python
+86653,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+86654,HTML/CSS;Java;Python;Scala;SQL;TypeScript
+86655,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86656,Python;SQL
+86657,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+86658,C;C++;C#;JavaScript
+86659,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+86660,Assembly;Bash/Shell/PowerShell;C;Python;Other(s):
+86661,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Scala;SQL;TypeScript
+86662,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby
+86663,Bash/Shell/PowerShell;Go;Java;Ruby
+86664,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+86665,C++;C#
+86666,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+86667,C#
+86668,HTML/CSS;JavaScript;PHP;SQL
+86669,HTML/CSS;Java;JavaScript;Python;Scala
+86670,HTML/CSS;JavaScript;TypeScript
+86671,HTML/CSS;PHP;SQL
+86672,Go;HTML/CSS;JavaScript;Kotlin;Python;SQL
+86673,C;C++;Python
+86674,Java;Python
+86675,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Swift
+86676,C#;HTML/CSS;JavaScript;SQL
+86677,C++;C#;HTML/CSS;SQL
+86678,HTML/CSS;JavaScript;Python;SQL
+86679,Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+86680,HTML/CSS;JavaScript;Other(s):
+86681,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+86682,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+86683,HTML/CSS;JavaScript;PHP;Python
+86684,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+86685,Elixir;HTML/CSS;JavaScript;PHP
+86686,HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+86687,HTML/CSS;Java;JavaScript;SQL
+86688,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+86689,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;VBA
+86690,Bash/Shell/PowerShell;Go;HTML/CSS;Python;SQL;TypeScript
+86691,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;Rust;SQL;WebAssembly
+86692,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;TypeScript;Other(s):
+86693,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL
+86694,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86695,C;Go
+86696,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+86697,C++;Java;Kotlin
+86698,HTML/CSS;Java;JavaScript;PHP;SQL
+86699,C;C++;HTML/CSS
+86700,Bash/Shell/PowerShell;Go;Java;JavaScript
+86701,C#;HTML/CSS;Java;JavaScript;Python;SQL
+86702,Java;Kotlin
+86703,Bash/Shell/PowerShell;Python;SQL
+86704,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+86705,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86706,Bash/Shell/PowerShell;C++;C#;Python;Swift
+86707,Java
+86708,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL;TypeScript
+86709,C#;HTML/CSS;JavaScript;Python;SQL;VBA
+86710,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+86711,HTML/CSS;JavaScript;Python
+86712,Go;Java;Kotlin;Python;R;Ruby;SQL;Swift;Other(s):
+86713,JavaScript
+86714,Java;Python;Other(s):
+86715,Bash/Shell/PowerShell;C#;Elixir;Go;Java;Kotlin;PHP;Python;Rust;Scala
+86716,Other(s):
+86717,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;TypeScript
+86718,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+86719,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+86720,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby
+86722,Python;R;SQL
+86723,Java;SQL
+86724,Java;Scala
+86725,Bash/Shell/PowerShell;C++;HTML/CSS;Java;Python;R;SQL
+86726,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+86727,HTML/CSS
+86728,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86730,HTML/CSS;JavaScript;PHP;Python;SQL
+86731,R;SQL
+86732,Java;Python
+86733,C++;Python
+86734,JavaScript;PHP;Python
+86735,HTML/CSS;JavaScript;PHP
+86736,Python
+86737,Bash/Shell/PowerShell;Java;JavaScript;Python
+86738,HTML/CSS;PHP;SQL;VBA
+86739,HTML/CSS;JavaScript;Ruby
+86740,Bash/Shell/PowerShell
+86741,HTML/CSS;Java;JavaScript;Kotlin
+86742,PHP
+86743,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+86744,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86745,Java;JavaScript;Kotlin;SQL
+86746,C;C++;C#;HTML/CSS;Python;SQL
+86747,C;C++
+86748,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+86749,Java;Python
+86750,JavaScript;SQL
+86751,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+86752,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86753,Objective-C;Swift
+86754,Bash/Shell/PowerShell;Python
+86755,Bash/Shell/PowerShell;C;C++;Kotlin;Python;SQL
+86756,HTML/CSS;JavaScript
+86757,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;SQL
+86758,JavaScript;Python;TypeScript
+86759,C;C++;HTML/CSS;Java;Python;R;Ruby;Scala;SQL
+86760,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+86761,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Python;Ruby;SQL
+86762,HTML/CSS;JavaScript;PHP;SQL
+86763,HTML/CSS;JavaScript;TypeScript
+86764,Elixir;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+86765,HTML/CSS;JavaScript;PHP;SQL
+86766,C++;Java;JavaScript;TypeScript
+86767,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+86768,C#;HTML/CSS;JavaScript;TypeScript;WebAssembly
+86769,Elixir;Erlang;JavaScript
+86770,HTML/CSS;JavaScript;PHP;SQL
+86771,C#;SQL;TypeScript
+86772,Bash/Shell/PowerShell;C;C++;Python
+86773,Python;SQL;Other(s):
+86774,C#;JavaScript;PHP
+86775,Java;JavaScript;PHP;Python
+86776,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+86777,C#;HTML/CSS;JavaScript
+86778,HTML/CSS;JavaScript;PHP
+86779,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86780,C#;JavaScript;SQL;VBA
+86781,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+86782,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86783,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+86784,HTML/CSS;JavaScript;Python;TypeScript
+86785,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript
+86786,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+86787,Assembly;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+86788,Bash/Shell/PowerShell;C;Elixir;JavaScript;PHP;TypeScript
+86789,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86790,HTML/CSS;JavaScript;PHP
+86791,C#;HTML/CSS;JavaScript;Python;Other(s):
+86792,Bash/Shell/PowerShell;Python;SQL
+86793,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+86794,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+86795,C#;F#;HTML/CSS;JavaScript;SQL;VBA
+86796,HTML/CSS;Java;JavaScript;Scala
+86797,Bash/Shell/PowerShell;Java;SQL;Other(s):
+86798,Bash/Shell/PowerShell;C#;F#;SQL
+86799,Assembly;Bash/Shell/PowerShell;C;C++;Other(s):
+86800,Bash/Shell/PowerShell;C;C++;Scala;Other(s):
+86801,Bash/Shell/PowerShell;C;C++
+86802,HTML/CSS;JavaScript;Ruby;SQL
+86803,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;R
+86804,C;C++;HTML/CSS;Java;JavaScript;PHP
+86805,Java;Scala
+86807,PHP
+86808,HTML/CSS;JavaScript
+86809,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;TypeScript
+86810,Objective-C;Swift
+86811,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+86812,C#;HTML/CSS;JavaScript;SQL
+86813,C#;HTML/CSS;Java;JavaScript;SQL
+86814,HTML/CSS;JavaScript;Python;SQL
+86815,Bash/Shell/PowerShell;C;C++;C#;SQL
+86816,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+86817,Bash/Shell/PowerShell;SQL
+86818,HTML/CSS;JavaScript;PHP;SQL
+86819,C++;C#;HTML/CSS;Java;JavaScript;Objective-C;SQL;TypeScript;WebAssembly
+86820,HTML/CSS;PHP;SQL
+86821,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Rust
+86822,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+86823,HTML/CSS;JavaScript;TypeScript
+86824,Bash/Shell/PowerShell;Go;Python;Ruby;Other(s):
+86825,C#;HTML/CSS;JavaScript;Python;SQL
+86826,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+86827,C++;C#
+86828,C#;Dart;HTML/CSS;JavaScript;SQL
+86829,Java;Python;Scala
+86830,C;C++;SQL
+86831,C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+86832,C#;HTML/CSS;Java;JavaScript;SQL
+86833,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86834,Assembly;Java;R;Other(s):
+86835,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Rust;SQL
+86836,JavaScript;TypeScript
+86837,Go
+86838,Python;R;Ruby;Rust
+86839,C;C++;Python
+86840,Objective-C;Swift
+86841,Bash/Shell/PowerShell;Kotlin;Python;SQL
+86842,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+86843,C#
+86844,Bash/Shell/PowerShell;C;C#;JavaScript;Python;R;SQL
+86845,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+86846,HTML/CSS;Java;JavaScript;SQL
+86847,Bash/Shell/PowerShell;C;C++;Python
+86848,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+86849,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+86850,HTML/CSS;Java;JavaScript;Scala;TypeScript
+86851,C#;JavaScript;SQL
+86852,C#;HTML/CSS;JavaScript;Python;Ruby;SQL;TypeScript
+86853,C#;HTML/CSS;Java;PHP;SQL;VBA;Other(s):
+86854,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;R;SQL;VBA
+86855,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+86856,C#;HTML/CSS;JavaScript;PHP;SQL
+86857,C++;C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+86859,Bash/Shell/PowerShell;C;HTML/CSS;Python;R
+86860,HTML/CSS;JavaScript;PHP;Python;SQL
+86861,Go;Java;SQL
+86862,Ruby
+86863,Assembly;Bash/Shell/PowerShell;C++;Objective-C;Swift
+86864,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;Swift
+86865,HTML/CSS;Java;JavaScript;Python;SQL
+86866,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+86867,HTML/CSS;JavaScript;Scala
+86868,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+86869,HTML/CSS;JavaScript;SQL;TypeScript
+86870,HTML/CSS;JavaScript;TypeScript
+86871,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86872,Bash/Shell/PowerShell;Java;SQL
+86873,HTML/CSS;JavaScript
+86874,HTML/CSS;JavaScript;PHP;Ruby
+86875,C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;Swift
+86876,Python;VBA
+86877,HTML/CSS;JavaScript;PHP;SQL
+86878,C;JavaScript;Other(s):
+86879,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+86880,Java;SQL
+86881,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;Java;JavaScript
+86882,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+86883,HTML/CSS;Java;SQL
+86884,C;C++;C#;Java
+86885,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+86886,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+86887,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+86888,Java;JavaScript;SQL
+86889,Bash/Shell/PowerShell;HTML/CSS;Python;R;Ruby;Scala;SQL;Swift
+86890,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;Other(s):
+86891,Java;Objective-C;Swift
+86892,C#;HTML/CSS;JavaScript;TypeScript
+86893,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Rust;Scala;SQL;Swift;TypeScript
+86894,Bash/Shell/PowerShell;JavaScript;Python;R;SQL
+86895,HTML/CSS;Java;JavaScript;SQL
+86896,C#;HTML/CSS;Java;JavaScript;Ruby;SQL;TypeScript
+86897,Java;JavaScript;SQL
+86898,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;TypeScript
+86899,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86900,C#;HTML/CSS;JavaScript;Other(s):
+86901,Assembly;C;C++
+86902,C;C++;Java;Objective-C
+86903,Java
+86904,C#;HTML/CSS;JavaScript;SQL
+86905,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+86906,C#;HTML/CSS;JavaScript
+86907,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;TypeScript
+86908,HTML/CSS;JavaScript
+86909,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+86910,Go;Java
+86911,HTML/CSS;Java;JavaScript;TypeScript
+86912,HTML/CSS;JavaScript;TypeScript
+86913,Java
+86914,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+86915,C;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;Swift
+86916,Java;SQL
+86917,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+86918,JavaScript;SQL
+86919,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;Scala;SQL;Other(s):
+86920,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;TypeScript;WebAssembly
+86921,HTML/CSS;Java;Python;Ruby;VBA
+86922,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+86923,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python
+86924,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+86925,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86926,Bash/Shell/PowerShell;C;C++;Python
+86927,Bash/Shell/PowerShell;Java;SQL
+86928,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+86929,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+86930,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+86931,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+86932,C#;HTML/CSS;Java;JavaScript;SQL
+86933,Bash/Shell/PowerShell;HTML/CSS;PHP;SQL
+86934,HTML/CSS;Java;JavaScript;Kotlin;SQL
+86935,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+86936,C#;HTML/CSS;JavaScript;SQL
+86937,C#;Java;Kotlin;Objective-C;Ruby;Swift;Other(s):
+86938,JavaScript;Swift;TypeScript
+86939,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+86940,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;Kotlin;Python;R;Ruby;Rust;SQL
+86941,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+86942,HTML/CSS;Java;JavaScript;TypeScript
+86943,Bash/Shell/PowerShell;C#;Go;Java;Python
+86944,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86945,JavaScript;Ruby;SQL
+86946,HTML/CSS;PHP;SQL
+86947,C#;PHP
+86948,Clojure;JavaScript;Python;TypeScript
+86949,C#;SQL
+86950,C#;HTML/CSS;JavaScript;SQL;Other(s):
+86951,Bash/Shell/PowerShell;Objective-C;Swift
+86952,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+86953,C++;C#
+86954,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python
+86955,C#
+86956,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+86957,HTML/CSS;JavaScript;Python;SQL;TypeScript
+86958,HTML/CSS;JavaScript;PHP;SQL
+86959,Bash/Shell/PowerShell;Python;SQL
+86960,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL
+86961,Java
+86962,Bash/Shell/PowerShell;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;VBA;Other(s):
+86963,Bash/Shell/PowerShell;Clojure;Kotlin
+86964,Java;Python;Ruby;SQL
+86965,Assembly;Bash/Shell/PowerShell;Java;Objective-C;PHP;Python;Swift
+86966,HTML/CSS;Java;JavaScript;SQL
+86967,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+86968,C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+86969,C++;HTML/CSS;JavaScript;Other(s):
+86970,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+86971,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+86972,Bash/Shell/PowerShell;C;Go;HTML/CSS;Python;Rust;SQL
+86973,C;C++;C#;JavaScript;Python;SQL
+86974,C;C++;HTML/CSS;Java
+86975,C;Java;Kotlin;PHP;SQL
+86976,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+86977,Bash/Shell/PowerShell;C++
+86978,Java;Python
+86979,C++;Python
+86981,HTML/CSS;Java;JavaScript;PHP;R;Ruby;SQL
+86982,C#;HTML/CSS;JavaScript;Ruby;SQL;TypeScript;VBA
+86983,HTML/CSS;Java;JavaScript;PHP
+86984,C;C++;HTML/CSS;Java;Objective-C;SQL;Swift;VBA
+86985,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;Ruby;SQL
+86986,Bash/Shell/PowerShell;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Ruby
+86987,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86988,C#;HTML/CSS;JavaScript;TypeScript
+86989,C;C++;C#;Java;JavaScript;SQL
+86990,HTML/CSS;JavaScript;Python;SQL;TypeScript
+86991,HTML/CSS;JavaScript;Other(s):
+86992,Bash/Shell/PowerShell;JavaScript;Python;Rust;SQL
+86993,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+86994,C#;HTML/CSS;JavaScript;SQL;TypeScript
+86995,HTML/CSS;JavaScript
+86996,Bash/Shell/PowerShell;C++;HTML/CSS;PHP;Python
+86997,HTML/CSS;Java;JavaScript;PHP;Python
+86998,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+87000,C;C++;HTML/CSS;Python;SQL
+87001,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87002,HTML/CSS;JavaScript;PHP;SQL
+87003,Bash/Shell/PowerShell;PHP;SQL
+87004,C#;HTML/CSS;SQL
+87005,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;R;SQL;Swift
+87007,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87008,Java;Python
+87009,HTML/CSS;Swift
+87010,Go;JavaScript;PHP;SQL
+87011,Kotlin;Objective-C;PHP;Python;Rust;SQL;Swift
+87012,HTML/CSS;Java;JavaScript;SQL
+87013,C#;HTML/CSS;JavaScript;SQL
+87014,C#;HTML/CSS;JavaScript;PHP;SQL
+87015,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+87016,C#;HTML/CSS;SQL;Other(s):
+87017,Java;Python;Swift
+87018,C++;HTML/CSS;Java;JavaScript;Kotlin;Ruby
+87019,Bash/Shell/PowerShell;Java;Python;R;Scala
+87020,Java
+87021,C#;Clojure;Go;JavaScript;PHP;SQL
+87022,C;R;Other(s):
+87023,C#;SQL
+87024,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+87025,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+87026,HTML/CSS;JavaScript;PHP;Python;TypeScript
+87027,C++;C#;Java;PHP;Python;SQL
+87028,C;Go;PHP;Python;SQL;VBA
+87029,C++;C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+87030,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL;VBA
+87031,C;HTML/CSS;Java;JavaScript;Ruby;SQL
+87032,HTML/CSS;JavaScript
+87033,Bash/Shell/PowerShell;Dart;HTML/CSS;JavaScript;Python;R
+87034,HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+87035,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Swift
+87036,HTML/CSS;Ruby;SQL
+87037,C;Python;R;Ruby;Scala;SQL
+87038,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+87039,Bash/Shell/PowerShell;C++;C#;JavaScript;PHP;Python
+87040,HTML/CSS;JavaScript;Swift
+87041,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL
+87042,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Python;SQL
+87043,HTML/CSS;JavaScript;PHP;SQL
+87044,C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+87045,Go;HTML/CSS;JavaScript
+87046,C#;HTML/CSS;JavaScript;TypeScript
+87047,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87048,Java;JavaScript;PHP;Python;Ruby
+87049,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+87050,Go;HTML/CSS;Java;JavaScript;Python
+87051,C#;HTML/CSS;JavaScript;PHP;SQL
+87052,C#;Java;Kotlin;Python;SQL;VBA
+87053,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+87054,Assembly;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87055,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python
+87056,HTML/CSS;JavaScript;PHP
+87057,HTML/CSS;JavaScript;PHP;Ruby;SQL;TypeScript
+87058,HTML/CSS;Java;JavaScript;SQL
+87059,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+87060,HTML/CSS;Java
+87061,Bash/Shell/PowerShell;C;Java;JavaScript;Python
+87062,JavaScript;Python;SQL;TypeScript
+87063,C++;Java
+87064,Bash/Shell/PowerShell;C++;Python
+87065,C#;HTML/CSS;JavaScript;SQL
+87066,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+87067,Dart;Go;HTML/CSS;JavaScript;TypeScript
+87068,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+87069,HTML/CSS;JavaScript;SQL
+87070,Bash/Shell/PowerShell;C;Python;SQL
+87071,C;C++;Java;PHP
+87072,Swift
+87073,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87074,HTML/CSS;Java;Kotlin;Objective-C;Swift
+87075,C#
+87076,JavaScript;Ruby;Scala;SQL;TypeScript;Other(s):
+87077,HTML/CSS;Java;JavaScript;Other(s):
+87078,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+87080,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift;VBA
+87081,Assembly;C;Dart;HTML/CSS;JavaScript;Python
+87082,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+87083,C#;HTML/CSS;Java;PHP
+87084,HTML/CSS;PHP;SQL
+87085,C#;HTML/CSS;JavaScript;SQL
+87086,C#
+87087,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+87088,Python;R;Scala;SQL
+87089,HTML/CSS;JavaScript
+87090,R;SQL;VBA
+87091,HTML/CSS;JavaScript;PHP;SQL
+87092,C;C++;Java;Kotlin
+87093,HTML/CSS;JavaScript
+87094,Bash/Shell/PowerShell;HTML/CSS;Python;SQL;Other(s):
+87095,C++;Java;Python;Scala;SQL;Other(s):
+87096,HTML/CSS;JavaScript;Python;SQL;VBA
+87097,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+87098,Bash/Shell/PowerShell;Java;SQL
+87099,Java;Python;VBA
+87100,C;C++;C#;HTML/CSS;JavaScript;SQL;WebAssembly
+87101,C;C++;Dart;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+87102,Bash/Shell/PowerShell
+87103,C;C++;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+87104,Bash/Shell/PowerShell;C;Elixir;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL;TypeScript
+87106,Assembly;Bash/Shell/PowerShell;C++;Java;Python;SQL
+87107,Bash/Shell/PowerShell;Java;SQL;VBA
+87108,C#;F#;HTML/CSS;Java;JavaScript;PHP;R;SQL;TypeScript
+87109,C#;HTML/CSS;SQL
+87110,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Swift
+87111,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP
+87112,Bash/Shell/PowerShell;Java;JavaScript;TypeScript
+87113,Assembly;Bash/Shell/PowerShell;C;C++;C#;PHP;Python
+87114,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87115,C#;Elixir;HTML/CSS;JavaScript;TypeScript
+87116,C;C#;HTML/CSS;Java;JavaScript;PHP;VBA
+87117,Bash/Shell/PowerShell;C#;SQL
+87118,Bash/Shell/PowerShell;C#;F#;JavaScript;Python;SQL;TypeScript
+87119,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+87120,HTML/CSS;JavaScript;Python;R;Ruby;SQL;TypeScript
+87121,Assembly;Bash/Shell/PowerShell;C++;C#;F#;HTML/CSS;Java;JavaScript;SQL;VBA
+87122,C;C++;JavaScript;Python
+87123,C#;HTML/CSS;JavaScript;SQL
+87124,HTML/CSS;Java;JavaScript;Python;SQL
+87125,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87126,Assembly;Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+87127,C;C++;C#;HTML/CSS;Objective-C;PHP;Swift
+87128,C++;HTML/CSS;JavaScript;PHP;Other(s):
+87129,HTML/CSS;Java;JavaScript;Python;SQL
+87131,HTML/CSS;JavaScript;Python;TypeScript
+87132,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python;SQL
+87133,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+87134,C#;HTML/CSS;Java;SQL
+87135,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87136,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+87137,HTML/CSS;JavaScript;PHP;SQL
+87138,Bash/Shell/PowerShell;C#;Python;SQL;VBA
+87139,HTML/CSS;JavaScript;PHP;SQL
+87140,HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+87141,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+87142,Java;JavaScript
+87143,C++;SQL
+87144,Java;JavaScript;Ruby
+87145,HTML/CSS;Java;TypeScript;VBA
+87146,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;HTML/CSS;Java;JavaScript;Python;R
+87147,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+87148,Bash/Shell/PowerShell;Clojure;HTML/CSS;JavaScript
+87149,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+87150,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+87151,C#;HTML/CSS;Java;JavaScript
+87152,HTML/CSS;Java;Python
+87153,C#;HTML/CSS;JavaScript;PHP;SQL
+87154,Assembly;Java
+87155,HTML/CSS;JavaScript
+87156,HTML/CSS;JavaScript
+87158,C#;F#;JavaScript;SQL
+87159,C;C++;C#;HTML/CSS;Java;SQL
+87160,C#;HTML/CSS;Java;JavaScript;Python;SQL
+87161,JavaScript;Python;SQL
+87162,Java;Scala;SQL
+87163,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+87164,Java;Scala;SQL
+87165,C#;HTML/CSS;JavaScript;SQL
+87166,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;VBA
+87167,C;JavaScript;Python
+87168,Objective-C;Swift
+87169,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+87170,Objective-C;Other(s):
+87171,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL
+87172,C;C++;C#;Java;Python
+87173,C#;Java;JavaScript;PHP;Python;SQL
+87174,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+87175,Java
+87176,C++;Go;JavaScript;Python;TypeScript
+87177,HTML/CSS;JavaScript;TypeScript
+87178,Java;Other(s):
+87179,Bash/Shell/PowerShell;Python;Scala
+87180,Assembly;Bash/Shell/PowerShell;C;C++;JavaScript;Python
+87181,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+87182,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+87183,C++;HTML/CSS;JavaScript;PHP;Python;R;SQL
+87184,C;HTML/CSS;Java;JavaScript;SQL
+87185,Bash/Shell/PowerShell;C#;JavaScript;SQL;TypeScript
+87186,HTML/CSS;PHP;SQL
+87187,Objective-C;Swift
+87188,Bash/Shell/PowerShell;Objective-C;Python;Swift
+87189,Bash/Shell/PowerShell;C;Clojure;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript;Other(s):
+87190,HTML/CSS;Java;JavaScript;Python
+87191,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87192,Java
+87193,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87194,C#;HTML/CSS;JavaScript;PHP
+87195,Assembly;VBA
+87196,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+87197,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Ruby;SQL
+87198,JavaScript;SQL
+87199,C++;C#
+87200,C;HTML/CSS;Java;JavaScript;Python;SQL
+87201,Bash/Shell/PowerShell;HTML/CSS;Other(s):
+87202,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;VBA
+87203,Bash/Shell/PowerShell;C;C++;Python
+87204,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby
+87205,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+87206,C#;HTML/CSS;JavaScript;SQL;Other(s):
+87207,Assembly;C++;C#;F#
+87208,HTML/CSS;PHP;SQL;Other(s):
+87209,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87210,Bash/Shell/PowerShell;C#;Java;JavaScript;Python;SQL
+87211,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+87212,C++;HTML/CSS;JavaScript;PHP;SQL
+87213,HTML/CSS;Java
+87214,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+87215,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL
+87216,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL;Other(s):
+87217,Bash/Shell/PowerShell;Objective-C;Swift
+87218,Bash/Shell/PowerShell;C++;Python;Other(s):
+87219,HTML/CSS;JavaScript;TypeScript
+87220,Bash/Shell/PowerShell;C++;Python;Ruby
+87221,Bash/Shell/PowerShell;C;C++;Python
+87222,C#;HTML/CSS;Java;JavaScript;SQL;VBA
+87223,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python
+87224,Bash/Shell/PowerShell;Clojure;Python;R;SQL;TypeScript
+87225,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+87226,C#;JavaScript
+87227,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+87228,Bash/Shell/PowerShell;C;C++;Java;Python
+87229,Bash/Shell/PowerShell;C++;Python;SQL
+87230,C;C++;C#;Dart;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift
+87231,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;PHP;Python
+87232,C++;C#
+87233,C;C++;C#;HTML/CSS;JavaScript;TypeScript
+87234,Assembly
+87235,Bash/Shell/PowerShell;Java;Python
+87236,HTML/CSS;JavaScript;PHP
+87237,HTML/CSS;Java;PHP;Python;SQL;VBA
+87238,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+87239,C#;JavaScript;PHP;TypeScript
+87240,Bash/Shell/PowerShell;Java;Scala;SQL
+87241,HTML/CSS;JavaScript;Ruby;SQL
+87242,Assembly;C;C++;Python
+87243,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL
+87244,Bash/Shell/PowerShell;Java;SQL
+87245,HTML/CSS;JavaScript;PHP
+87246,C++;C#;HTML/CSS;Python;SQL
+87247,HTML/CSS;JavaScript;PHP;Ruby
+87248,Bash/Shell/PowerShell;Java;SQL
+87249,HTML/CSS;JavaScript;Objective-C
+87250,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+87251,HTML/CSS;Java;JavaScript
+87252,C#;Java
+87253,Bash/Shell/PowerShell;C#;Go;JavaScript;PHP;Python;SQL;VBA
+87254,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift;TypeScript
+87255,C#;HTML/CSS;JavaScript
+87256,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87257,Other(s):
+87258,HTML/CSS;JavaScript;PHP;Python
+87259,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;JavaScript;Python;Ruby
+87260,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Ruby
+87261,C;C++;Java;JavaScript;Ruby;SQL;TypeScript
+87262,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+87263,HTML/CSS;JavaScript;TypeScript
+87264,HTML/CSS;JavaScript;PHP;Rust;SQL;Swift
+87265,Bash/Shell/PowerShell;C;Erlang;HTML/CSS;Java;JavaScript;Python;SQL;VBA
+87266,Bash/Shell/PowerShell;Java;JavaScript;SQL
+87267,Java;JavaScript;Python;R;SQL
+87268,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;Kotlin;PHP;Python;R;Scala;SQL
+87269,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87270,Bash/Shell/PowerShell;C++
+87271,Python
+87272,C#
+87273,SQL
+87274,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;R;SQL;VBA
+87275,C;HTML/CSS;JavaScript;Python
+87276,HTML/CSS;JavaScript;PHP;SQL
+87277,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+87278,Bash/Shell/PowerShell;C++;C#
+87279,Clojure;HTML/CSS;JavaScript;PHP;Python;SQL
+87280,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+87281,JavaScript;Python;SQL;VBA
+87282,Java;SQL
+87283,Assembly;C++;Java;Python
+87284,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87285,C;C++;C#;SQL
+87286,Go;Java;Python
+87287,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+87288,C#;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+87289,R
+87290,HTML/CSS;SQL
+87291,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;R;Scala;SQL;TypeScript
+87292,HTML/CSS;JavaScript;PHP;Python;Ruby;TypeScript
+87293,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87294,Bash/Shell/PowerShell;C;C++;Python;SQL
+87295,Assembly;C;C++;C#;Python
+87296,HTML/CSS;JavaScript;Python;SQL
+87297,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;Scala;SQL;Swift
+87298,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;Python;SQL
+87299,HTML/CSS;JavaScript;Python;Ruby
+87300,C#;Go;HTML/CSS;JavaScript;TypeScript
+87301,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87302,C#;SQL
+87303,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Other(s):
+87304,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87305,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87306,Java;SQL
+87307,HTML/CSS;TypeScript
+87308,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+87309,Java
+87310,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL;TypeScript
+87311,Bash/Shell/PowerShell;C#;Elixir;Erlang;Go;HTML/CSS;Java;JavaScript;Python;SQL
+87312,Python;R;SQL
+87313,C#;HTML/CSS;JavaScript;R;Scala;SQL;TypeScript
+87314,C#;SQL;Other(s):
+87315,Bash/Shell/PowerShell;C;C++;Java;Python;Ruby;Rust
+87316,Python;Swift
+87318,C#;HTML/CSS;JavaScript;SQL
+87319,HTML/CSS;JavaScript;PHP;Python
+87320,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;R;SQL
+87321,Java
+87322,Bash/Shell/PowerShell;Go;Python;Ruby;Scala;SQL
+87323,C++;Java
+87324,C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Other(s):
+87325,VBA
+87326,C#;HTML/CSS;Java;JavaScript
+87327,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+87328,Python;R;SQL;VBA
+87329,C;C++;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Swift;TypeScript;Other(s):
+87330,Java;JavaScript;Python;R;SQL
+87331,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+87332,HTML/CSS;JavaScript;PHP
+87333,C;C++;Java
+87334,Bash/Shell/PowerShell;HTML/CSS;Java;Python;SQL
+87335,Java;JavaScript;SQL
+87336,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+87337,C;HTML/CSS;SQL
+87338,C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+87339,HTML/CSS;Java;JavaScript;Python
+87340,Bash/Shell/PowerShell;JavaScript;Python;Other(s):
+87341,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL;Swift;Other(s):
+87342,HTML/CSS;JavaScript;PHP;TypeScript
+87343,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;SQL
+87344,Assembly;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+87345,C++;Java;PHP;SQL
+87346,C#;Java;Python;Scala
+87347,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+87348,C;C++;JavaScript;Python
+87349,HTML/CSS;Java;PHP;Python
+87350,C#;HTML/CSS;Java;JavaScript;TypeScript
+87351,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+87353,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+87354,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87355,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+87356,Bash/Shell/PowerShell;Java;SQL
+87357,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87358,Bash/Shell/PowerShell;C++;C#
+87359,C++;C#;Java;JavaScript;Scala;TypeScript
+87360,Assembly;Java;Python
+87361,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Ruby;Scala;SQL;Swift;TypeScript
+87362,Bash/Shell/PowerShell;C++;C#;F#
+87363,C;HTML/CSS;Java;Kotlin;Python
+87364,Java;PHP
+87365,Bash/Shell/PowerShell;HTML/CSS;Java;Python;Ruby;SQL
+87366,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA;Other(s):
+87368,Assembly;Bash/Shell/PowerShell;C;Python
+87369,C;C++
+87370,C;C++;C#;HTML/CSS;PHP;Python;SQL
+87371,Bash/Shell/PowerShell;Clojure;JavaScript;Python
+87372,HTML/CSS;PHP;Python;SQL
+87373,Java;Python;Scala;SQL
+87374,C;C++
+87375,C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;VBA
+87376,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+87377,HTML/CSS;JavaScript;PHP
+87378,C#;HTML/CSS;JavaScript;Ruby;TypeScript
+87379,HTML/CSS;JavaScript;PHP
+87380,Bash/Shell/PowerShell;HTML/CSS;Python
+87381,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+87382,HTML/CSS;Java;JavaScript;SQL
+87383,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+87384,C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+87385,JavaScript
+87387,Bash/Shell/PowerShell;C;C++;F#;Go;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL;TypeScript;Other(s):
+87388,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Swift;TypeScript
+87389,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+87390,JavaScript;PHP;VBA
+87391,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+87392,C;C++;Python
+87393,HTML/CSS;JavaScript;PHP;SQL;VBA
+87394,Java;JavaScript;Python;TypeScript
+87395,HTML/CSS;PHP;SQL
+87396,C++
+87397,C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Ruby;Swift
+87398,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript;PHP;Python;Other(s):
+87399,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87400,Objective-C;Swift
+87401,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+87402,F#
+87403,Assembly;Bash/Shell/PowerShell
+87404,Java
+87405,Assembly;C#;HTML/CSS;JavaScript;SQL
+87406,C#;HTML/CSS;SQL;TypeScript
+87407,HTML/CSS;JavaScript
+87408,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87409,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+87410,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python
+87411,C;C++;HTML/CSS
+87412,C#;HTML/CSS;JavaScript;Python;SQL
+87413,HTML/CSS;JavaScript;Ruby;Other(s):
+87414,HTML/CSS;JavaScript;PHP;SQL
+87415,C;HTML/CSS;Java;JavaScript;Python;Other(s):
+87416,Objective-C;Swift
+87417,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;SQL;TypeScript
+87419,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+87420,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+87421,Bash/Shell/PowerShell;C++;Java;JavaScript;PHP;SQL;VBA
+87422,Bash/Shell/PowerShell;Other(s):
+87423,C#;HTML/CSS;JavaScript;SQL
+87424,Python
+87425,Java
+87426,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+87427,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+87428,HTML/CSS;JavaScript;TypeScript
+87429,C;C++;Java;Python;SQL
+87430,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87431,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+87432,Bash/Shell/PowerShell;C;C++;C#
+87433,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+87434,Bash/Shell/PowerShell;Python;R;SQL
+87435,HTML/CSS;JavaScript
+87436,Java
+87437,R
+87438,C;HTML/CSS;Java;SQL;Swift
+87439,Bash/Shell/PowerShell;C++;JavaScript;Python
+87440,Assembly;Bash/Shell/PowerShell;Java;Python;R
+87441,C;C++;Java;JavaScript;Kotlin
+87442,C#;Java;SQL
+87443,HTML/CSS;Python
+87444,Bash/Shell/PowerShell;C#;HTML/CSS;Python;TypeScript
+87445,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+87446,HTML/CSS;JavaScript
+87447,Elixir;HTML/CSS
+87448,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+87449,C#;HTML/CSS;JavaScript;Python;SQL
+87450,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87451,JavaScript;Ruby;SQL
+87452,C++;C#;HTML/CSS;Java;JavaScript;Python
+87453,Python
+87454,C#;HTML/CSS;Java;JavaScript;SQL
+87455,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+87456,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Objective-C;Python;SQL;Swift;TypeScript
+87457,Assembly;Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin;Python
+87458,HTML/CSS;JavaScript;PHP;SQL
+87459,C;C++;Python
+87460,C#;Java;Python;SQL
+87461,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;R;Rust;SQL;Other(s):
+87462,C#;JavaScript;SQL
+87463,Go;HTML/CSS;JavaScript;PHP;Swift;Other(s):
+87464,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87465,Clojure;Elixir;HTML/CSS;Java;JavaScript
+87466,Bash/Shell/PowerShell;C;C++;Java;Python;R;SQL
+87467,HTML/CSS;JavaScript;PHP;SQL
+87468,Assembly;Bash/Shell/PowerShell;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;TypeScript
+87469,Bash/Shell/PowerShell;Python;R
+87470,Objective-C
+87471,Assembly;C;C++;HTML/CSS;Other(s):
+87472,C#;F#;Go;Java;Python;SQL
+87473,HTML/CSS;JavaScript;SQL
+87474,Bash/Shell/PowerShell;Python;VBA;Other(s):
+87475,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87476,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Ruby;SQL
+87477,Assembly;Java
+87478,Java;JavaScript;Kotlin;SQL
+87479,HTML/CSS;JavaScript
+87480,HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+87481,C++;Java;Python
+87482,Go;HTML/CSS;JavaScript;Ruby
+87483,Bash/Shell/PowerShell;Python;Other(s):
+87484,HTML/CSS;JavaScript
+87485,C++;Python
+87486,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL;Other(s):
+87487,Bash/Shell/PowerShell;Java;JavaScript
+87488,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87489,HTML/CSS;Java;Python;SQL
+87491,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+87492,C#;HTML/CSS;JavaScript;SQL
+87493,Assembly;Bash/Shell/PowerShell;C;C++;C#;Objective-C;Swift
+87494,HTML/CSS;JavaScript;PHP;Python;SQL
+87495,Bash/Shell/PowerShell;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;PHP;Swift;TypeScript
+87496,C#;HTML/CSS;JavaScript;PHP;SQL
+87497,C++;Java
+87498,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+87499,HTML/CSS;JavaScript;PHP;SQL
+87500,Assembly;C++;Java;Python
+87501,C#;HTML/CSS;Java;JavaScript;PHP;Python;Scala;SQL
+87502,C#;Java;JavaScript;Python;SQL;Swift
+87503,C#;Java;SQL
+87504,C;C++;HTML/CSS;Java;PHP;SQL
+87505,C;C++;HTML/CSS;JavaScript;PHP;SQL
+87506,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+87507,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87508,HTML/CSS;Java;JavaScript;Python
+87509,C#;HTML/CSS;JavaScript;SQL
+87510,Bash/Shell/PowerShell;C#;Python
+87511,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+87512,Clojure;HTML/CSS;Java;JavaScript;PHP;Python
+87513,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Rust;Other(s):
+87514,Objective-C;Swift
+87515,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;PHP;Python;SQL;Swift
+87516,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL;Swift;TypeScript
+87517,Bash/Shell/PowerShell;JavaScript;Python;TypeScript
+87518,Bash/Shell/PowerShell;C#;Java;PHP;SQL
+87519,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Ruby;SQL;TypeScript
+87520,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+87521,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+87522,C#;HTML/CSS;JavaScript;PHP;SQL
+87523,C;Java;JavaScript;Python;VBA
+87524,HTML/CSS;JavaScript;Ruby
+87525,C;HTML/CSS;R;Scala;SQL
+87526,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+87527,Java;JavaScript;Kotlin;SQL;Other(s):
+87528,Bash/Shell/PowerShell;HTML/CSS;Java;Python
+87529,HTML/CSS;JavaScript;Python;Ruby;SQL
+87530,C;C++;C#;Erlang;Java;Objective-C;PHP;Python;SQL;Swift
+87531,Bash/Shell/PowerShell;C++;Python;R;SQL
+87532,Assembly;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;SQL;VBA
+87533,Java;Python;Scala;SQL
+87534,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript
+87535,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+87536,Java;Python;SQL
+87537,Java;JavaScript;Kotlin;Ruby
+87538,C#;HTML/CSS;JavaScript;SQL
+87539,C#;JavaScript;SQL
+87540,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87541,Bash/Shell/PowerShell;JavaScript;Python;Rust;Scala
+87542,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+87543,C;HTML/CSS;JavaScript;PHP;Python
+87544,C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+87545,Bash/Shell/PowerShell;C#;Clojure;HTML/CSS;Java;JavaScript;R;SQL
+87546,HTML/CSS;Java;JavaScript;SQL;Other(s):
+87547,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+87548,Bash/Shell/PowerShell;C;C++;Java;SQL
+87549,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Ruby
+87550,C;C++;Dart;HTML/CSS;Java;JavaScript;PHP;Python
+87551,C++;HTML/CSS;Java;JavaScript;Python;SQL
+87552,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+87553,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+87554,JavaScript;TypeScript
+87555,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+87556,C#;JavaScript;TypeScript
+87557,Bash/Shell/PowerShell;JavaScript;SQL;Other(s):
+87558,Assembly;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Python;TypeScript
+87559,C;Elixir;Go;PHP;Python
+87560,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+87561,HTML/CSS;Java;JavaScript;TypeScript
+87562,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Ruby;SQL;Swift;TypeScript
+87563,C++;C#;HTML/CSS;Java;JavaScript;SQL
+87564,HTML/CSS;JavaScript;TypeScript
+87565,Dart;Java;Kotlin;Objective-C;Swift
+87566,Bash/Shell/PowerShell;Python;R;SQL
+87567,C#;HTML/CSS;JavaScript;SQL
+87568,C;C++;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87569,HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;R
+87570,Bash/Shell/PowerShell;C#;Python;R;SQL
+87571,HTML/CSS;JavaScript;PHP;SQL
+87572,C++;HTML/CSS;Java;JavaScript;Python
+87573,HTML/CSS;Java;JavaScript;PHP;SQL
+87574,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+87575,Bash/Shell/PowerShell;C++;Python
+87576,C#;HTML/CSS;JavaScript;Objective-C;VBA
+87577,Elixir;Go;PHP
+87578,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;TypeScript
+87579,Dart;Java;Objective-C;TypeScript
+87580,Java;JavaScript;Kotlin;Python;TypeScript
+87581,Dart;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+87582,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+87583,Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;VBA
+87584,C#;Java;SQL;VBA
+87585,Go;HTML/CSS;JavaScript;Python;SQL
+87586,Python
+87587,Assembly;C++;Swift
+87588,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript
+87589,PHP;Ruby
+87590,HTML/CSS;JavaScript
+87591,Python
+87592,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;SQL
+87593,HTML/CSS;JavaScript
+87594,Bash/Shell/PowerShell;C;C++;C#;Go;Java;JavaScript;Python;R;SQL
+87595,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+87596,HTML/CSS;JavaScript;PHP;SQL
+87597,C;Objective-C;Swift
+87598,C;C++;C#;Java;Python;R;Rust
+87599,Java;Kotlin;PHP;SQL;Swift
+87600,Java;TypeScript
+87601,C#;Java;JavaScript;Kotlin;TypeScript
+87602,C#;HTML/CSS;JavaScript
+87603,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL
+87604,Bash/Shell/PowerShell;Go;JavaScript;Python;Swift
+87605,C;C++;Java;JavaScript;Python
+87606,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87607,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+87608,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+87609,HTML/CSS;Java;SQL;TypeScript
+87610,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+87611,Bash/Shell/PowerShell;JavaScript;Python;SQL
+87612,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+87613,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript;VBA;Other(s):
+87614,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+87615,C#;F#;Go;JavaScript;TypeScript
+87616,Assembly;Bash/Shell/PowerShell;C;C++;Clojure;Java;Kotlin;Python
+87617,Bash/Shell/PowerShell;Java;Python;SQL
+87618,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+87619,C;HTML/CSS;JavaScript;Ruby;TypeScript
+87620,C;HTML/CSS
+87621,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+87622,Bash/Shell/PowerShell;HTML/CSS;Python;TypeScript
+87623,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+87624,HTML/CSS;JavaScript;PHP;TypeScript
+87625,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+87626,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+87627,C;C++;JavaScript;PHP
+87628,C#;HTML/CSS;JavaScript;Python;TypeScript
+87629,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+87630,C#;HTML/CSS;JavaScript;Objective-C;Swift
+87631,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+87632,C;C++;Other(s):
+87633,HTML/CSS;JavaScript
+87634,Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;Scala;SQL;Swift;TypeScript
+87635,Go;HTML/CSS;Java;JavaScript
+87636,Bash/Shell/PowerShell;C++;C#;JavaScript;Python
+87637,Go;JavaScript;Python;TypeScript
+87638,C++;HTML/CSS;Python
+87639,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87640,C#;HTML/CSS;JavaScript;SQL;Other(s):
+87641,Bash/Shell/PowerShell;C;C++;F#;HTML/CSS;Java;JavaScript;Python
+87642,Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;Objective-C;SQL;VBA
+87643,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+87644,C#;HTML/CSS;SQL
+87645,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+87646,C#;Java
+87647,Swift
+87648,Bash/Shell/PowerShell;Python
+87649,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+87650,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;Other(s):
+87651,HTML/CSS;JavaScript;PHP
+87652,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+87653,HTML/CSS;JavaScript
+87654,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+87655,Bash/Shell/PowerShell;C#;SQL;TypeScript
+87656,HTML/CSS;JavaScript;PHP
+87657,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87658,Python
+87659,Bash/Shell/PowerShell;C#;Java;SQL
+87660,C#;SQL
+87661,HTML/CSS;Java;JavaScript;Ruby
+87662,Clojure;Elixir;Erlang;HTML/CSS;Java;JavaScript;Kotlin;Ruby;Scala;SQL;TypeScript;Other(s):
+87663,C++;HTML/CSS;Java;Kotlin
+87664,Bash/Shell/PowerShell;C++;JavaScript;Python;SQL
+87665,Objective-C;Swift
+87666,C#;HTML/CSS;Java;JavaScript;SQL;VBA;WebAssembly
+87667,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+87668,Bash/Shell/PowerShell;C;C++;Python
+87669,C;Java;Python;SQL;Other(s):
+87670,JavaScript;PHP;Python;SQL
+87671,Java;JavaScript;Scala;SQL
+87672,C;Java;Python
+87673,Bash/Shell/PowerShell;C;C++;C#
+87674,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+87675,HTML/CSS;Java;JavaScript;PHP;SQL
+87676,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;R;Ruby;Rust;Scala;TypeScript
+87677,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+87678,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+87679,C#;Go;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+87680,HTML/CSS;Java;JavaScript;SQL
+87681,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+87682,HTML/CSS;Java;JavaScript;Python;SQL
+87683,Bash/Shell/PowerShell;C#;Java;JavaScript;PHP;R;SQL;TypeScript
+87684,C++;HTML/CSS;JavaScript;Python;Other(s):
+87685,HTML/CSS;R;SQL
+87686,HTML/CSS;JavaScript;PHP;SQL
+87687,R;SQL;VBA
+87688,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87689,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+87690,HTML/CSS;Java;JavaScript;PHP
+87691,Java;JavaScript;SQL
+87692,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;Swift;TypeScript
+87693,Bash/Shell/PowerShell;VBA
+87694,Bash/Shell/PowerShell;HTML/CSS;Java;Rust;Swift
+87695,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala;SQL
+87696,C#;HTML/CSS;JavaScript;PHP;SQL
+87697,HTML/CSS;JavaScript;Objective-C;PHP;SQL
+87698,C#;Python;SQL
+87699,HTML/CSS;Java;JavaScript;TypeScript
+87700,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;TypeScript
+87701,Bash/Shell/PowerShell;C;Objective-C;Swift
+87702,Python
+87703,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;PHP;TypeScript
+87704,Clojure;JavaScript
+87705,Bash/Shell/PowerShell;Java;SQL
+87706,Go;HTML/CSS;Java;JavaScript;SQL;TypeScript
+87707,HTML/CSS;Python
+87708,Java;Kotlin
+87709,C#;JavaScript;SQL;TypeScript
+87710,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript;Other(s):
+87711,C#;HTML/CSS;JavaScript;SQL
+87712,HTML/CSS;JavaScript;SQL;TypeScript
+87713,HTML/CSS;JavaScript
+87714,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87715,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Swift;TypeScript;Other(s):
+87716,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+87717,Bash/Shell/PowerShell;HTML/CSS;Java;Kotlin;Python;Scala
+87718,HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+87719,HTML/CSS;JavaScript;Ruby
+87720,C;C++;C#;HTML/CSS;Java;Python;Ruby
+87721,C
+87722,Bash/Shell/PowerShell;Python;SQL;Other(s):
+87723,Java;PHP;Python;SQL
+87724,HTML/CSS;JavaScript;Python;Ruby;TypeScript
+87725,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+87726,HTML/CSS;JavaScript;Kotlin;Python;SQL
+87727,Java;Other(s):
+87728,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87729,C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript;WebAssembly
+87730,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;Rust;SQL;TypeScript;Other(s):
+87731,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL;WebAssembly
+87732,Bash/Shell/PowerShell;Python;R;Other(s):
+87733,Bash/Shell/PowerShell;C++;C#;Go;Python;SQL
+87734,C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+87735,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript;WebAssembly
+87736,C#;HTML/CSS;JavaScript;SQL;VBA
+87737,C;C++;Java;Kotlin
+87738,Bash/Shell/PowerShell;C++;HTML/CSS;Python;SQL
+87740,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+87741,C++;C#;HTML/CSS;JavaScript;PHP
+87742,Bash/Shell/PowerShell;Java;JavaScript;SQL
+87743,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+87744,C#;HTML/CSS;JavaScript
+87745,Bash/Shell/PowerShell;Erlang;Java;JavaScript;Python;SQL
+87746,C#;Go;HTML/CSS;JavaScript;SQL;TypeScript
+87747,Bash/Shell/PowerShell;C#
+87748,C;C++;Python;SQL
+87749,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87750,C#;HTML/CSS;JavaScript;Python
+87751,C#;HTML/CSS;Java;JavaScript;Scala;TypeScript
+87752,C;F#;Python
+87753,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;Other(s):
+87754,Go;JavaScript;PHP;Python;Rust;SQL
+87755,Java;Scala
+87756,C#;HTML/CSS;Java;JavaScript;Python;TypeScript
+87757,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+87758,C;Dart;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+87759,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+87760,Java;SQL
+87761,HTML/CSS;Java;JavaScript;SQL;Other(s):
+87762,HTML/CSS;JavaScript;PHP;SQL
+87763,C#;SQL
+87764,Java
+87765,C#;HTML/CSS;JavaScript;SQL
+87766,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+87767,Java;Other(s):
+87768,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+87769,Bash/Shell/PowerShell;Java;JavaScript;SQL;Other(s):
+87770,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Python;Rust
+87771,C++;Python
+87772,Java;JavaScript;Kotlin;Python;Swift
+87773,C#;Go;JavaScript
+87774,Bash/Shell/PowerShell;Clojure;Python
+87775,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+87776,HTML/CSS;Java
+87777,Bash/Shell/PowerShell;HTML/CSS;Python;VBA;Other(s):
+87778,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+87779,JavaScript;Ruby
+87780,Bash/Shell/PowerShell;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87781,HTML/CSS;JavaScript;PHP;TypeScript
+87782,HTML/CSS;Java;JavaScript;SQL;TypeScript
+87784,C;C++;HTML/CSS;JavaScript;PHP;SQL
+87785,HTML/CSS;JavaScript;VBA
+87786,Java
+87787,Assembly;Bash/Shell/PowerShell;C
+87788,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+87789,Bash/Shell/PowerShell;C#;JavaScript;Python
+87790,C#;Java;Swift
+87791,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+87792,Python
+87793,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby
+87794,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+87795,HTML/CSS;Java;JavaScript;Python;TypeScript
+87796,Assembly;HTML/CSS;Python;Other(s):
+87797,Bash/Shell/PowerShell;PHP;Python;SQL
+87798,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Python
+87799,HTML/CSS;Java;JavaScript;SQL
+87800,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby;SQL
+87801,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python
+87802,C;JavaScript
+87803,C#;HTML/CSS;JavaScript;Python;TypeScript;WebAssembly;Other(s):
+87804,HTML/CSS;JavaScript;PHP;SQL
+87805,Assembly;C;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;TypeScript
+87806,HTML/CSS;JavaScript;Python;Ruby;Swift
+87807,Bash/Shell/PowerShell;JavaScript;Kotlin;Python;Rust;TypeScript
+87808,HTML/CSS;Java;JavaScript;SQL
+87809,HTML/CSS;Java;PHP;Python
+87810,HTML/CSS;JavaScript;PHP;SQL
+87811,HTML/CSS;JavaScript;Other(s):
+87812,Java;Kotlin
+87813,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87814,C#;Python;SQL;Other(s):
+87815,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL
+87816,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;VBA
+87817,Bash/Shell/PowerShell;C#;Elixir;HTML/CSS;Java;JavaScript;PHP;Python
+87818,Go;JavaScript;PHP;SQL;TypeScript
+87819,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+87820,Assembly;Bash/Shell/PowerShell;C;C++;Python
+87821,HTML/CSS;JavaScript;PHP;Rust;Other(s):
+87822,Assembly;Bash/Shell/PowerShell;C;C++;Python
+87823,C++;HTML/CSS;JavaScript;Python;SQL
+87824,Bash/Shell/PowerShell;C;C++;Python
+87825,Bash/Shell/PowerShell;Go;Java;Python;Scala
+87826,C#;Clojure;F#
+87827,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;TypeScript
+87828,HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+87829,C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+87830,HTML/CSS;JavaScript;PHP;SQL
+87831,HTML/CSS;JavaScript;PHP
+87832,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87833,C;HTML/CSS;Python
+87834,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python
+87835,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+87836,Assembly;C;HTML/CSS;Java;JavaScript;Objective-C;Python;Swift;TypeScript
+87837,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript;VBA
+87838,HTML/CSS;JavaScript;PHP;SQL
+87839,Python;R;SQL
+87840,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+87841,HTML/CSS;JavaScript;TypeScript
+87842,C#;HTML/CSS;Java;PHP;SQL
+87843,HTML/CSS;JavaScript;PHP;SQL
+87844,HTML/CSS;Java;JavaScript;Scala;TypeScript
+87845,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL
+87846,C#
+87847,HTML/CSS;JavaScript;Python
+87848,Bash/Shell/PowerShell;C;C++;JavaScript;Python
+87849,HTML/CSS;Java;JavaScript;SQL
+87850,C++
+87851,Bash/Shell/PowerShell;C#;SQL
+87852,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;SQL
+87853,C#;HTML/CSS;JavaScript;SQL;TypeScript
+87854,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL
+87855,HTML/CSS;JavaScript;TypeScript
+87856,Bash/Shell/PowerShell;C#;F#;Go;HTML/CSS;JavaScript;Python;SQL;TypeScript
+87857,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+87858,Dart;HTML/CSS;JavaScript;Python;R;TypeScript;Other(s):
+87859,Java;JavaScript;Objective-C;PHP;Swift
+87860,C++;C#;HTML/CSS;JavaScript;TypeScript
+87861,HTML/CSS;Java;JavaScript;PHP;Python;R;TypeScript
+87862,HTML/CSS;JavaScript;SQL;TypeScript
+87863,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+87864,C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+87865,C;C++;C#;Clojure;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Scala;Swift;TypeScript
+87866,Ruby;SQL
+87867,Java;Other(s):
+87868,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;Ruby;SQL
+87869,Bash/Shell/PowerShell;C++;Python;Scala;SQL
+87870,Bash/Shell/PowerShell;R;SQL
+87871,HTML/CSS;JavaScript;Python;SQL;TypeScript
+87872,C#
+87873,Go;HTML/CSS;JavaScript;Python;SQL
+87874,HTML/CSS;JavaScript
+87875,C#;Go;JavaScript;Python;SQL;VBA
+87876,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+87877,Java;JavaScript
+87878,JavaScript;Python;Ruby
+87879,HTML/CSS;Java;JavaScript;PHP;SQL
+87881,JavaScript;TypeScript
+87882,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;PHP;TypeScript
+87883,Bash/Shell/PowerShell;C++;HTML/CSS;Python;Other(s):
+87884,Bash/Shell/PowerShell;C;Ruby;SQL;Other(s):
+87885,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Objective-C;Swift
+87886,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;TypeScript
+87887,C#;JavaScript;SQL;TypeScript
+87888,C#;HTML/CSS;JavaScript;PHP;SQL
+87889,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+87890,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87891,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+87892,Objective-C;Swift
+87893,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87894,Bash/Shell/PowerShell;C++;Go;HTML/CSS;Java;JavaScript;Python
+87895,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+87896,HTML/CSS;JavaScript;PHP;SQL
+87897,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+87898,HTML/CSS;JavaScript;PHP;Python;R;SQL
+87899,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;TypeScript
+87900,Python;R
+87901,JavaScript;PHP;Python;SQL
+87902,Bash/Shell/PowerShell;Java;Other(s):
+87903,Bash/Shell/PowerShell;C;Python
+87904,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL;TypeScript;Other(s):
+87905,Bash/Shell/PowerShell;Scala;SQL
+87906,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+87907,HTML/CSS;Java;JavaScript;SQL
+87908,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;Ruby;SQL
+87909,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+87910,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift;TypeScript
+87911,C#;HTML/CSS;JavaScript
+87912,C#;HTML/CSS;JavaScript;PHP;SQL
+87913,HTML/CSS;JavaScript;PHP;SQL
+87914,HTML/CSS;JavaScript
+87915,HTML/CSS;JavaScript;PHP;SQL
+87916,C#;Clojure;HTML/CSS;Java;JavaScript;PHP
+87917,Bash/Shell/PowerShell;HTML/CSS
+87918,Java;JavaScript;Scala;Other(s):
+87920,C++;C#;Java;JavaScript;Python;SQL;VBA
+87921,HTML/CSS;JavaScript
+87922,C++;C#;Java;Objective-C;SQL
+87923,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+87924,Java;Swift
+87925,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Scala;SQL
+87926,Bash/Shell/PowerShell;C#;SQL
+87927,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+87928,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87929,C++;C#;HTML/CSS;JavaScript;PHP;Other(s):
+87930,C#
+87931,Bash/Shell/PowerShell;Clojure;JavaScript;Python;Scala
+87932,C#;HTML/CSS;JavaScript;SQL
+87933,HTML/CSS;JavaScript;PHP
+87934,Java;SQL
+87935,HTML/CSS;JavaScript;PHP;SQL
+87936,C++;C#;HTML/CSS;JavaScript;Python;TypeScript
+87937,HTML/CSS;JavaScript
+87938,C++;HTML/CSS;JavaScript;SQL;VBA
+87939,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL
+87940,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA;Other(s):
+87941,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+87942,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;Scala;SQL;TypeScript
+87943,Java;Kotlin
+87944,Bash/Shell/PowerShell;C;C++;SQL
+87945,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+87946,Bash/Shell/PowerShell;C;C++;C#;Java
+87947,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;Other(s):
+87948,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Scala
+87949,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+87950,Assembly;C;HTML/CSS;Java;JavaScript
+87951,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+87952,C#
+87953,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL;Other(s):
+87954,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+87955,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+87956,C++;Java;Kotlin;Python;SQL;Swift
+87957,HTML/CSS;JavaScript;PHP;SQL
+87958,C#;SQL
+87959,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+87960,Bash/Shell/PowerShell;C;Java;Kotlin;PHP;Python;SQL
+87961,HTML/CSS;JavaScript;PHP;SQL
+87962,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+87963,Assembly;C;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+87964,HTML/CSS;Java;JavaScript;TypeScript
+87965,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;Scala;Other(s):
+87966,HTML/CSS;JavaScript;PHP
+87967,C#;F#;Go;HTML/CSS;JavaScript;R;SQL;Swift
+87968,Bash/Shell/PowerShell;Java;Python;SQL
+87969,Bash/Shell/PowerShell;C;C++;JavaScript;Objective-C;Python;R;Rust;Other(s):
+87970,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Other(s):
+87971,C;C++;Go;Python;Rust
+87972,Bash/Shell/PowerShell;C++;Java;Python;SQL
+87973,HTML/CSS;Java;JavaScript;Kotlin;Python;Scala;SQL;TypeScript
+87974,Bash/Shell/PowerShell;C++;C#;Go;HTML/CSS;Java;JavaScript;Python;Rust;Swift
+87975,C#;JavaScript;SQL
+87976,HTML/CSS;JavaScript;PHP
+87977,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+87978,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+87979,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+87980,HTML/CSS;Java;JavaScript
+87981,HTML/CSS;JavaScript;TypeScript
+87982,Assembly;Bash/Shell/PowerShell;C;C#;Go;JavaScript;Ruby;Rust;SQL
+87983,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;TypeScript
+87984,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+87985,C;Go;HTML/CSS;JavaScript;Ruby;SQL
+87986,C++;HTML/CSS;Java;JavaScript;PHP
+87987,HTML/CSS;JavaScript;PHP;SQL
+87988,JavaScript;Python;SQL
+87989,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript
+87990,C;C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87991,Bash/Shell/PowerShell;HTML/CSS;Python
+87992,HTML/CSS;JavaScript
+87993,HTML/CSS;Java
+87994,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+87995,Bash/Shell/PowerShell;Java;JavaScript;Python;Other(s):
+87996,Bash/Shell/PowerShell;C;C++
+87997,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Ruby;SQL
+87998,Bash/Shell/PowerShell;C;C++;C#;Elixir;JavaScript;Ruby
+87999,C#;Java;Ruby;Scala
+88000,Java;JavaScript;Kotlin;PHP;SQL;TypeScript
+88001,HTML/CSS;JavaScript;Python;TypeScript
+88002,Assembly;C#;HTML/CSS;JavaScript;SQL
+88003,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88004,C;C++;C#;HTML/CSS;Java;Objective-C;TypeScript;VBA
+88005,C#;HTML/CSS;JavaScript;SQL
+88006,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88007,Bash/Shell/PowerShell;HTML/CSS;Java;Swift
+88008,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Kotlin;Ruby
+88009,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R;SQL
+88010,HTML/CSS;JavaScript;SQL
+88011,Elixir;Go;JavaScript;Ruby;SQL
+88012,Bash/Shell/PowerShell;C++;C#;F#;JavaScript;Rust;SQL;TypeScript
+88013,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88014,C#;JavaScript;Python;SQL
+88015,Go;HTML/CSS;JavaScript;Python;TypeScript
+88016,Bash/Shell/PowerShell;Elixir;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;Python;Ruby;SQL;Swift;TypeScript
+88017,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+88018,HTML/CSS;JavaScript;TypeScript
+88019,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+88020,HTML/CSS;JavaScript;Objective-C;Swift
+88021,Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;VBA
+88022,Bash/Shell/PowerShell;C#;Java;Python
+88023,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+88024,HTML/CSS;Java;JavaScript;Ruby;SQL
+88025,C++;C#;Go;HTML/CSS;JavaScript;Rust;Swift;TypeScript
+88026,C++
+88027,Bash/Shell/PowerShell;C;C++;Clojure;Elixir;Go;HTML/CSS;Java;JavaScript;Python;Rust;Scala;TypeScript;WebAssembly
+88028,Go;HTML/CSS;Java;JavaScript;Python
+88029,Bash/Shell/PowerShell;C++;Java;JavaScript;PHP;SQL
+88030,C++;Java;Python
+88031,HTML/CSS;Java;JavaScript;Python
+88032,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88033,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;TypeScript;Other(s):
+88034,C#;HTML/CSS;JavaScript;PHP;Ruby
+88035,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+88036,Assembly;C;C++
+88037,C#;HTML/CSS;JavaScript;Kotlin;Rust;TypeScript
+88038,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;SQL
+88039,HTML/CSS;JavaScript;R;TypeScript
+88040,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88041,C++;Java;Python
+88042,C;C++;C#
+88043,HTML/CSS;PHP
+88044,HTML/CSS;JavaScript;Ruby
+88045,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;SQL
+88046,Assembly;C;C++;HTML/CSS;Java;JavaScript;SQL
+88047,C#;HTML/CSS;Java;JavaScript;SQL
+88048,Java
+88049,C;HTML/CSS;JavaScript;Python;R;SQL
+88050,C;HTML/CSS;Java;JavaScript;Python;SQL
+88051,Java;Kotlin
+88052,HTML/CSS;Java;JavaScript;Python
+88053,HTML/CSS;Java;JavaScript;PHP;Python
+88054,C#;HTML/CSS;Java;JavaScript;PHP;Ruby;TypeScript
+88055,Bash/Shell/PowerShell;C;C++;Elixir;JavaScript;Python;TypeScript
+88056,C++;C#;HTML/CSS;Java;PHP;R;SQL;VBA;Other(s):
+88057,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python;Ruby;SQL;Swift
+88058,C;Python;Rust;SQL
+88059,C;C++;Java;Python
+88060,Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;JavaScript;Python
+88061,C#;Java;Python;Scala
+88063,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;Ruby;SQL
+88064,C#;HTML/CSS;JavaScript
+88065,C#;HTML/CSS;Java;Python
+88066,Java;JavaScript;Python;SQL;Swift;Other(s):
+88067,Assembly;Bash/Shell/PowerShell;C#;SQL
+88068,JavaScript;Swift
+88069,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88070,Java;SQL
+88071,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+88072,Assembly;C;C++;Python
+88073,Bash/Shell/PowerShell;C;Go;Java;JavaScript;PHP;Python;Rust;SQL
+88074,HTML/CSS;JavaScript;PHP;SQL
+88075,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88077,C;C#;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+88078,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88079,HTML/CSS;JavaScript;Objective-C;TypeScript
+88080,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88081,C#;Go;Java;JavaScript;PHP;Python;Ruby
+88082,Bash/Shell/PowerShell;JavaScript;Python
+88083,Clojure
+88084,HTML/CSS;JavaScript;Python;Swift;TypeScript
+88085,C#;HTML/CSS;JavaScript;TypeScript
+88086,C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88087,HTML/CSS;Java;JavaScript;Python
+88088,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88089,HTML/CSS;Java;JavaScript;Other(s):
+88090,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;VBA
+88091,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Python;SQL;TypeScript;VBA
+88092,C;C#
+88093,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+88094,Java;JavaScript;SQL
+88095,C;C++;C#;HTML/CSS;SQL
+88096,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+88097,HTML/CSS;JavaScript;SQL
+88098,Java;Kotlin
+88099,C#;SQL;VBA
+88100,Assembly;Bash/Shell/PowerShell;C;C++;Java;JavaScript
+88101,Bash/Shell/PowerShell;Clojure;HTML/CSS;Java;JavaScript;PHP;Python
+88102,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+88103,Scala;TypeScript
+88104,HTML/CSS;Java;JavaScript;SQL
+88105,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88106,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA
+88107,Assembly;Bash/Shell/PowerShell;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+88108,C#;HTML/CSS;JavaScript;Python;VBA
+88109,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+88110,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+88111,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL
+88112,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+88113,C#;HTML/CSS;Java;JavaScript;TypeScript
+88114,C;C++
+88115,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88116,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+88117,Assembly;C;C++;C#;Java;JavaScript;PHP;Python;R;SQL
+88118,HTML/CSS;Java;Swift;TypeScript
+88119,Java;Ruby;SQL
+88120,C;C++;C#;HTML/CSS;Java;SQL
+88121,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88122,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88123,HTML/CSS;JavaScript
+88124,HTML/CSS;JavaScript
+88125,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift;TypeScript;Other(s):
+88126,C++;C#;HTML/CSS;R;SQL
+88127,C#;HTML/CSS;JavaScript;SQL
+88128,Bash/Shell/PowerShell;Java;Python;SQL;Other(s):
+88129,Objective-C;Swift
+88130,Assembly;Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+88131,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+88132,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;Ruby;SQL
+88133,Java;Kotlin
+88134,C++;C#;SQL
+88135,C#;HTML/CSS;JavaScript;SQL
+88136,C;C++;JavaScript;Python
+88137,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;Ruby;SQL;Swift
+88138,Bash/Shell/PowerShell;Python;SQL
+88139,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88140,Java;JavaScript;Python;Scala
+88141,HTML/CSS;JavaScript;Ruby
+88142,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Ruby;SQL
+88143,Bash/Shell/PowerShell;C;C++;C#;JavaScript;Python;Rust;VBA;Other(s):
+88144,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+88145,Go;HTML/CSS;JavaScript;R
+88146,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;TypeScript;Other(s):
+88147,Java
+88148,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL
+88149,Bash/Shell/PowerShell;C++;C#;F#;Python;R
+88150,C++;Java
+88151,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88153,Dart;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88154,C++;HTML/CSS;JavaScript;Python;R;SQL;VBA;Other(s):
+88155,HTML/CSS;JavaScript;Python;SQL
+88156,C++;Python;Other(s):
+88157,Bash/Shell/PowerShell;C#;SQL;VBA;Other(s):
+88158,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+88159,HTML/CSS;Java;JavaScript;SQL
+88160,Bash/Shell/PowerShell;C;HTML/CSS;Java;Python;R;SQL
+88161,C#;HTML/CSS;JavaScript;PHP;SQL
+88162,Bash/Shell/PowerShell;C++;Python
+88163,Other(s):
+88164,Kotlin
+88165,C;C++;C#;HTML/CSS;Java;JavaScript;PHP
+88166,C;C++;HTML/CSS;Java;JavaScript;PHP;SQL
+88167,Bash/Shell/PowerShell;C#;HTML/CSS
+88168,Clojure;JavaScript;Other(s):
+88169,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;SQL
+88170,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+88171,C;Elixir;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+88172,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL
+88173,C;C++;Go;Java;Python;R;SQL
+88174,Bash/Shell/PowerShell;Java;Kotlin;Python;SQL
+88175,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+88176,C++;C#;PHP;Python;Other(s):
+88177,HTML/CSS;Java;JavaScript;PHP;TypeScript
+88178,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88179,HTML/CSS;JavaScript;Ruby
+88180,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;R;Rust;SQL;WebAssembly
+88181,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+88183,Java
+88184,Python
+88185,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP
+88186,Java;JavaScript
+88187,C#;JavaScript
+88188,HTML/CSS;JavaScript;Python;SQL
+88189,C;C++;HTML/CSS;Java;JavaScript;SQL
+88190,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+88191,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88192,C;HTML/CSS;JavaScript;PHP;Python
+88193,Bash/Shell/PowerShell;JavaScript;Python
+88194,Java;JavaScript;SQL
+88195,Bash/Shell/PowerShell;Clojure;Go;HTML/CSS;Java;JavaScript;Scala;SQL
+88196,Elixir;Go;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+88197,Bash/Shell/PowerShell;Java;Kotlin;Objective-C;PHP;Swift
+88198,Bash/Shell/PowerShell;Java;Python
+88199,Bash/Shell/PowerShell;Go;Java
+88200,C;C++;C#;Java;JavaScript;Kotlin;Python
+88201,HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+88202,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;VBA
+88203,Java;JavaScript;Python;SQL
+88204,Java;JavaScript;Kotlin;Python;TypeScript
+88205,Assembly;Bash/Shell/PowerShell;C;C++;Dart;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL;TypeScript
+88206,C;PHP;Python;VBA
+88207,Bash/Shell/PowerShell;JavaScript;Kotlin;Objective-C;Ruby;Scala;SQL;Swift;TypeScript
+88208,C#;SQL
+88209,C#;HTML/CSS;Java;SQL
+88210,Bash/Shell/PowerShell;JavaScript;Swift
+88211,C#;Java;SQL
+88213,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript;Other(s):
+88214,JavaScript;PHP;Python;Swift
+88215,JavaScript;Python
+88216,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88217,Bash/Shell/PowerShell;JavaScript;PHP;Python;SQL
+88219,Bash/Shell/PowerShell;C++;C#;JavaScript;Objective-C;Python;Swift
+88220,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88221,C#;HTML/CSS;Java;JavaScript;Python;Ruby;SQL
+88222,Bash/Shell/PowerShell;Elixir;Erlang;HTML/CSS;JavaScript;Ruby;Rust;SQL
+88223,C;HTML/CSS;Objective-C;Swift
+88224,Python;SQL;Other(s):
+88225,Java;Scala;SQL
+88226,Bash/Shell/PowerShell;C;C++
+88227,HTML/CSS;Java;JavaScript;SQL
+88228,C#;HTML/CSS;JavaScript;PHP;SQL
+88229,C#;HTML/CSS;Java;JavaScript;Python;SQL
+88230,Bash/Shell/PowerShell;HTML/CSS;PHP;Python
+88231,Assembly;C;C++;HTML/CSS;Java;JavaScript;Python
+88232,C;C++;HTML/CSS;Java;JavaScript
+88233,Assembly;C;C++;Java;Python
+88234,C;C++;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+88235,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript;Other(s):
+88236,HTML/CSS;Python;SQL;VBA
+88237,JavaScript;PHP
+88238,Java;Kotlin;SQL
+88239,JavaScript;Python
+88240,Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88241,HTML/CSS;Java;JavaScript;SQL
+88242,HTML/CSS;JavaScript;Other(s):
+88243,Java
+88245,C;C++;HTML/CSS;Java;JavaScript;Kotlin;PHP;VBA;Other(s):
+88246,Dart;HTML/CSS;Java;PHP
+88247,HTML/CSS;Java;JavaScript
+88248,Assembly;HTML/CSS;Java;JavaScript;SQL;Other(s):
+88249,Python;Ruby;Swift
+88250,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+88251,Bash/Shell/PowerShell;C
+88252,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;Objective-C;Python
+88253,C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+88254,C;C++;HTML/CSS;JavaScript;PHP;SQL;VBA
+88255,Bash/Shell/PowerShell;C;C++;C#;Dart;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;Python;SQL;Swift
+88256,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+88257,C;Dart;Java;Kotlin;Swift
+88258,C#;Java;SQL
+88259,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;SQL
+88260,C#;Dart;HTML/CSS;Java;JavaScript;PHP;TypeScript
+88261,C#;Elixir;Erlang;HTML/CSS;JavaScript;Python
+88262,Elixir
+88263,Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;Java;JavaScript;Python;Ruby;Rust;SQL
+88264,C;HTML/CSS;Java;SQL;Swift
+88265,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;PHP;SQL
+88266,Bash/Shell/PowerShell;C;C++
+88267,C;C++;HTML/CSS;Java;Kotlin;PHP;SQL;Swift
+88268,Assembly;Bash/Shell/PowerShell;C;C++;C#;Python
+88269,C++;C#;Java;Python
+88270,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88271,C++;JavaScript;Python
+88272,C#;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+88273,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+88274,Python
+88275,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+88276,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+88277,C;C++;HTML/CSS;JavaScript;Python;SQL
+88278,HTML/CSS;JavaScript;Python;SQL;TypeScript
+88279,C++;C#
+88280,HTML/CSS
+88281,Assembly;C;C++;C#;Go;HTML/CSS;JavaScript;PHP;Python;Swift;TypeScript
+88283,Java;JavaScript;Python;Scala
+88284,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+88285,HTML/CSS;Java;JavaScript;TypeScript
+88286,Java
+88287,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;Rust;Scala;SQL;WebAssembly;Other(s):
+88288,C++;Go;Python
+88289,C;C++;JavaScript;Kotlin;Python;Rust;Other(s):
+88290,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88291,Java;Kotlin
+88292,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88293,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+88294,C++;HTML/CSS;JavaScript;PHP;Python;SQL
+88295,HTML/CSS;Java;JavaScript;PHP;SQL
+88296,C;C++;C#
+88297,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python
+88298,HTML/CSS;Java;JavaScript;SQL
+88299,C#;Go;Python;SQL
+88300,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;Python;R;Scala;SQL;TypeScript
+88301,Assembly;C;C++;Python
+88302,C;C++;C#;Java;SQL;VBA
+88303,HTML/CSS;JavaScript
+88304,C#;HTML/CSS;JavaScript;SQL
+88305,C#
+88306,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;Python
+88307,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;PHP;SQL;VBA
+88308,C#;F#;JavaScript;SQL
+88309,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Kotlin;Python;Rust;SQL;TypeScript
+88310,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88311,C;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+88312,Ruby;Other(s):
+88313,Bash/Shell/PowerShell;C;C++;C#;Java;Python
+88314,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+88315,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Other(s):
+88316,Assembly;Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+88317,C;C++;C#;Java;Python
+88318,C++;C#;Go;HTML/CSS;JavaScript;Python;Rust;SQL;Swift;VBA
+88319,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+88320,Go;HTML/CSS;Java;JavaScript;Kotlin;Scala;Other(s):
+88321,C;C++;HTML/CSS;Java;JavaScript;TypeScript;Other(s):
+88322,HTML/CSS;JavaScript;PHP;Python;R
+88323,Bash/Shell/PowerShell;C;C#;Erlang;JavaScript;Python;SQL;Other(s):
+88324,C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;SQL
+88325,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Objective-C;PHP;Python;Ruby;SQL;Swift;Other(s):
+88326,Java;JavaScript;PHP;SQL;TypeScript
+88327,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript
+88328,HTML/CSS;Java;JavaScript;SQL
+88329,C#;JavaScript;SQL
+88330,HTML/CSS;JavaScript;PHP
+88331,Bash/Shell/PowerShell;C++;Ruby;Rust;TypeScript;Other(s):
+88332,HTML/CSS;Java;SQL
+88333,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+88334,Bash/Shell/PowerShell;C#;JavaScript;Python;TypeScript
+88335,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;SQL
+88336,C;C++;C#;HTML/CSS;JavaScript;R;SQL
+88337,Dart;Java;JavaScript;TypeScript;Other(s):
+88338,HTML/CSS;JavaScript;PHP;Python;SQL
+88339,C#;HTML/CSS;Java;JavaScript;Python;SQL
+88340,C++;C#;Java;SQL
+88341,HTML/CSS;JavaScript;PHP;Python;SQL
+88342,C#;HTML/CSS;JavaScript;TypeScript
+88343,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88344,HTML/CSS;JavaScript
+88345,C#;HTML/CSS;JavaScript;Swift
+88346,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+88347,Bash/Shell/PowerShell;C++;Java;JavaScript;Python;Scala;SQL
+88348,C++;C#;F#;Java;Objective-C;Rust;SQL
+88349,HTML/CSS;JavaScript
+88350,Java;JavaScript
+88351,Bash/Shell/PowerShell;Go;Python
+88352,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL;Swift
+88353,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88354,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Other(s):
+88355,Bash/Shell/PowerShell;Scala;SQL;Other(s):
+88356,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Kotlin;Python;Rust
+88357,C;C++;C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88358,HTML/CSS;Java;JavaScript;Python;Swift
+88359,HTML/CSS;Java;JavaScript
+88360,HTML/CSS;Java;JavaScript;Python;R
+88361,Java;Objective-C;Swift
+88362,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88363,HTML/CSS;JavaScript;PHP
+88364,C++;Python;SQL
+88365,Ruby;SQL
+88366,C;Go;HTML/CSS;Java;JavaScript;PHP;Python;Rust;SQL
+88367,C;C++;Python;Other(s):
+88368,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python
+88369,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88370,Java;JavaScript;SQL;TypeScript
+88371,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88372,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+88373,C#;HTML/CSS;JavaScript;PHP;Python;SQL
+88374,C;HTML/CSS;JavaScript;Other(s):
+88375,Go;Python;R
+88376,HTML/CSS;JavaScript;TypeScript
+88378,Python
+88379,C++;Java;Python
+88380,Java;Python;Scala
+88381,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python;Ruby;Other(s):
+88382,C++;C#;F#;Java;JavaScript;Kotlin;Python;Ruby;SQL;TypeScript;Other(s):
+88383,Bash/Shell/PowerShell;C#;Java;Other(s):
+88384,HTML/CSS;Java;JavaScript;Python;SQL
+88385,Bash/Shell/PowerShell;C++;JavaScript;Python;TypeScript
+88386,HTML/CSS;Java;JavaScript;Kotlin;SQL
+88387,HTML/CSS;Python;SQL
+88388,C#;Java;Objective-C
+88389,HTML/CSS;JavaScript;PHP;SQL
+88390,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL;TypeScript;Other(s):
+88391,C++;Java;Python;SQL
+88392,Bash/Shell/PowerShell;Go;HTML/CSS;Java;Kotlin;PHP;SQL
+88393,C#;HTML/CSS;JavaScript;SQL
+88394,HTML/CSS;JavaScript;PHP;Python;SQL
+88395,Java
+88396,C;HTML/CSS;JavaScript;Objective-C;PHP;Python;SQL;TypeScript
+88397,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+88398,C#;Go
+88399,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+88400,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Ruby
+88401,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;Python;SQL
+88402,C;C++;HTML/CSS;Java;Kotlin;PHP;SQL;Other(s):
+88403,HTML/CSS;Java;PHP;R;SQL
+88404,HTML/CSS;JavaScript
+88405,Objective-C;Swift
+88406,HTML/CSS;JavaScript
+88408,C#;HTML/CSS;JavaScript
+88409,C#;HTML/CSS;JavaScript;SQL;Other(s):
+88410,Assembly;C;C#;HTML/CSS;Java;PHP;SQL
+88411,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;Python;Swift
+88412,HTML/CSS;JavaScript;Python;SQL
+88413,Assembly;C;C++;Java;JavaScript;Python
+88414,C#;HTML/CSS;Java;JavaScript;Scala
+88415,JavaScript;SQL
+88416,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;SQL
+88417,C;C++;Python
+88418,Go;HTML/CSS;Java;JavaScript;SQL
+88419,Bash/Shell/PowerShell;Java;Python
+88420,Bash/Shell/PowerShell;C;C++;Java
+88421,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+88422,C;C++;Java;Objective-C;SQL;Swift
+88423,C;C++;Python
+88424,HTML/CSS;JavaScript;PHP;Python
+88425,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+88426,Assembly;C;JavaScript;Python
+88427,HTML/CSS;JavaScript;PHP;Python;SQL
+88428,Assembly;Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;Java;JavaScript;Python;SQL
+88429,C;HTML/CSS;Java;JavaScript;SQL;VBA
+88430,C;C++;JavaScript;PHP;Python;Other(s):
+88431,C#;Java;Kotlin;SQL
+88432,Bash/Shell/PowerShell;C++;Go;Python
+88433,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift;TypeScript;Other(s):
+88434,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+88435,Bash/Shell/PowerShell;Java
+88436,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+88437,C#;HTML/CSS;Java;JavaScript;TypeScript
+88438,Bash/Shell/PowerShell;JavaScript;Python
+88439,Bash/Shell/PowerShell;Clojure;Elixir;Java;Kotlin;Python;SQL
+88440,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript;TypeScript
+88441,Clojure;F#
+88442,C#;SQL;VBA
+88443,HTML/CSS;JavaScript
+88444,Java;JavaScript;Python;SQL
+88445,HTML/CSS;JavaScript;Swift;TypeScript
+88446,Bash/Shell/PowerShell;C;C++;Erlang;HTML/CSS;JavaScript;PHP;Ruby;Rust;SQL;Swift
+88447,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+88448,HTML/CSS
+88449,C++;Python;Rust
+88450,C;HTML/CSS;JavaScript;PHP
+88451,C;C++;HTML/CSS;JavaScript;Objective-C;PHP;Swift
+88452,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88453,HTML/CSS;JavaScript
+88454,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+88455,Bash/Shell/PowerShell;Python;R;SQL;Other(s):
+88456,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88457,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;TypeScript
+88458,Erlang;Go;HTML/CSS;Java;JavaScript;Python;TypeScript
+88459,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Scala;SQL;TypeScript
+88460,Objective-C;PHP;Swift
+88461,C#;Elixir;Go;Java;Python
+88462,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL
+88463,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88464,Bash/Shell/PowerShell;C#;F#;HTML/CSS;JavaScript;TypeScript
+88465,HTML/CSS;JavaScript
+88466,JavaScript;PHP;Python;SQL
+88467,Assembly;C;C++;Java;JavaScript
+88468,C++;C#;HTML/CSS;JavaScript;PHP;SQL
+88469,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;Ruby;SQL;Other(s):
+88470,C#;HTML/CSS;JavaScript;SQL
+88471,Java;JavaScript;SQL
+88472,C#;Elixir;HTML/CSS;JavaScript;PHP;Python;SQL
+88473,HTML/CSS;Java;JavaScript;Python;SQL
+88474,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+88475,Bash/Shell/PowerShell;JavaScript;Ruby;SQL
+88476,JavaScript;Python
+88477,C;HTML/CSS;JavaScript;PHP;SQL
+88478,HTML/CSS;JavaScript;PHP;SQL
+88479,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+88480,HTML/CSS;Java;SQL
+88481,Bash/Shell/PowerShell;Go;Ruby
+88482,Go;HTML/CSS;JavaScript;Python;R;Scala;SQL;TypeScript
+88483,Bash/Shell/PowerShell;Java;JavaScript;SQL
+88484,C#;HTML/CSS;Java;PHP;SQL;Other(s):
+88485,Assembly;C;C++;C#;Java
+88486,HTML/CSS;Python;SQL
+88487,C#;Go;Java
+88489,Bash/Shell/PowerShell;JavaScript;Python;Ruby;Scala;SQL;TypeScript
+88490,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;TypeScript
+88491,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;PHP;Python;SQL;Swift
+88492,Bash/Shell/PowerShell;Java;Kotlin;SQL
+88493,JavaScript;PHP
+88494,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+88495,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;JavaScript;Python;SQL;Other(s):
+88496,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88497,Assembly;C++;Java
+88498,C#;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88499,Bash/Shell/PowerShell;C#;SQL
+88500,Java;Kotlin;Scala
+88501,C++;C#;Java;TypeScript;Other(s):
+88502,HTML/CSS;JavaScript;PHP;Python;TypeScript
+88503,JavaScript;PHP;SQL
+88504,Java;Python;Ruby;Scala
+88505,C;C++;C#;Python;VBA
+88506,HTML/CSS;JavaScript
+88507,HTML/CSS;Python
+88508,Python
+88509,Python;R;Other(s):
+88510,C;C++;HTML/CSS;Java;PHP;SQL
+88511,C;C++;Java;SQL
+88512,HTML/CSS;Java;SQL
+88513,Bash/Shell/PowerShell;C;Go;PHP;SQL
+88514,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+88515,C;Go;HTML/CSS;JavaScript;PHP
+88516,C++;Java;Python
+88518,HTML/CSS;Java;SQL;TypeScript
+88519,C;C++;Dart;HTML/CSS;Java;Python
+88520,HTML/CSS;JavaScript;Other(s):
+88521,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL;TypeScript
+88522,C;C++;C#;Java;JavaScript;SQL;Swift
+88523,Bash/Shell/PowerShell;C#;Python
+88524,HTML/CSS;JavaScript;PHP;Python
+88525,C++;HTML/CSS;JavaScript
+88526,JavaScript;Python;TypeScript
+88527,Bash/Shell/PowerShell;C#;SQL
+88528,HTML/CSS;JavaScript;Python
+88529,C++;HTML/CSS;JavaScript;Python;Swift
+88530,HTML/CSS;JavaScript;PHP
+88531,HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+88532,Assembly;C;C++;Other(s):
+88533,JavaScript;PHP;Ruby;SQL
+88534,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88535,HTML/CSS;JavaScript;Objective-C;PHP;Ruby;Swift
+88536,Python;SQL
+88537,Bash/Shell/PowerShell;Python;SQL;VBA;Other(s):
+88538,C#;HTML/CSS;JavaScript;SQL;Other(s):
+88539,Go;JavaScript;Kotlin;Python;Ruby;SQL
+88540,Assembly;Bash/Shell/PowerShell;C;C#;Java;JavaScript;Kotlin;Python;Ruby;Rust;SQL;Swift;WebAssembly;Other(s):
+88541,HTML/CSS;Java;JavaScript;Python;SQL
+88542,Bash/Shell/PowerShell;Go;Java;Python;VBA
+88543,HTML/CSS;JavaScript;PHP;Python;SQL
+88544,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+88545,Bash/Shell/PowerShell;JavaScript;Python
+88546,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+88547,C++;C#;HTML/CSS;JavaScript;SQL;Other(s):
+88548,C#;Java;Rust
+88549,HTML/CSS;JavaScript;Python;TypeScript
+88550,C#;HTML/CSS;Java;JavaScript;SQL
+88551,HTML/CSS;Java;JavaScript;SQL;Swift;TypeScript
+88552,C#;HTML/CSS;JavaScript;PHP;Python
+88553,Bash/Shell/PowerShell;C;C++;C#;Elixir;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;Ruby;SQL
+88554,HTML/CSS;JavaScript
+88555,JavaScript;Ruby;SQL
+88556,Bash/Shell/PowerShell;Java;SQL;VBA
+88557,Bash/Shell/PowerShell;JavaScript
+88558,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+88559,C#;HTML/CSS
+88560,Assembly;C#;HTML/CSS;Java;JavaScript;Python;SQL
+88561,C#;Java;JavaScript;TypeScript;Other(s):
+88562,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;TypeScript
+88563,Bash/Shell/PowerShell;Elixir;Erlang;R;Ruby;SQL
+88564,HTML/CSS;JavaScript;PHP;SQL
+88565,Bash/Shell/PowerShell;C++;Java;Python
+88566,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;PHP;SQL
+88567,C#;HTML/CSS;JavaScript;SQL
+88568,C++;Python;VBA;Other(s):
+88569,Bash/Shell/PowerShell;C;Java;Python;R
+88570,HTML/CSS;Java;JavaScript;Kotlin;SQL;TypeScript
+88571,Clojure;Java;JavaScript
+88572,C#;HTML/CSS;JavaScript;PHP;SQL;TypeScript
+88573,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;Python
+88574,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88575,Java;SQL
+88576,C++;HTML/CSS;JavaScript;PHP;SQL;TypeScript;Other(s):
+88577,Python
+88578,Erlang;HTML/CSS;Java;JavaScript;Python;R;SQL;VBA
+88579,C#
+88580,Ruby;Other(s):
+88581,Java;JavaScript;PHP;SQL
+88582,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Ruby;SQL;VBA
+88583,C;C++;HTML/CSS;Java;Swift
+88584,Assembly;C;C++
+88585,HTML/CSS;JavaScript;Python;SQL;TypeScript
+88586,Clojure;HTML/CSS;JavaScript;PHP;SQL
+88587,C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;VBA;Other(s):
+88588,C++;Java;Python
+88589,C++;Python
+88590,C;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;SQL
+88591,HTML/CSS;JavaScript;Kotlin;Objective-C;Swift
+88592,JavaScript;Python
+88593,C#;JavaScript;SQL;TypeScript
+88594,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;Python;SQL;TypeScript
+88595,JavaScript;Objective-C;Swift
+88596,C;C++;C#
+88597,Bash/Shell/PowerShell;Elixir;HTML/CSS;Ruby;SQL;Other(s):
+88598,C#;SQL
+88599,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;Rust;Other(s):
+88600,C++;JavaScript;Objective-C;Swift
+88602,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Kotlin
+88603,C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+88604,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+88605,Go;HTML/CSS;JavaScript;Ruby;SQL
+88606,Go;HTML/CSS;Java;JavaScript;SQL
+88607,HTML/CSS;JavaScript;Objective-C;Swift;TypeScript
+88608,C;HTML/CSS;Java;Kotlin;PHP;SQL
+88609,C++
+88610,HTML/CSS;JavaScript;Python;Other(s):
+88611,HTML/CSS;Java;JavaScript;TypeScript
+88612,Bash/Shell/PowerShell;Java;Kotlin
+88613,Java;JavaScript;TypeScript
+88614,Bash/Shell/PowerShell;Go;PHP;Ruby
+88615,Bash/Shell/PowerShell;Java;Python;R;Scala;SQL
+88616,Java
+88617,Assembly;Bash/Shell/PowerShell;C;C++;Python;Rust
+88618,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;PHP;Python;SQL;Other(s):
+88619,C#;HTML/CSS;Java;JavaScript
+88620,Bash/Shell/PowerShell;Clojure;JavaScript;PHP;Python;Rust;SQL
+88621,HTML/CSS;JavaScript
+88622,Bash/Shell/PowerShell;Java;Python
+88623,C++;C#;JavaScript
+88624,Python;R;Other(s):
+88625,Bash/Shell/PowerShell;C++;Go;JavaScript;SQL;TypeScript;VBA
+88626,HTML/CSS;JavaScript
+88627,HTML/CSS;JavaScript;Python;Ruby;SQL
+88628,C#;HTML/CSS;JavaScript;SQL
+88629,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript
+88630,C#;HTML/CSS;JavaScript
+88631,C#;HTML/CSS;JavaScript;SQL
+88632,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88633,HTML/CSS;JavaScript;PHP
+88634,JavaScript;Ruby
+88635,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+88636,C++;HTML/CSS;PHP;Python;Scala;SQL;Other(s):
+88637,Go;Java;JavaScript;SQL
+88638,HTML/CSS;PHP
+88639,HTML/CSS;JavaScript;Python;Swift;TypeScript
+88640,HTML/CSS;JavaScript;TypeScript
+88641,HTML/CSS;JavaScript;PHP;SQL
+88642,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Kotlin;Python;TypeScript;VBA
+88643,C++;C#;Python;SQL
+88644,C#;HTML/CSS;JavaScript;PHP;Ruby;TypeScript
+88645,R;SQL
+88646,JavaScript;Swift
+88647,Bash/Shell/PowerShell;Java;JavaScript;Python;Scala;Other(s):
+88648,SQL;VBA;Other(s):
+88649,HTML/CSS;JavaScript;SQL;Other(s):
+88650,Bash/Shell/PowerShell;C#;Go;Java;JavaScript;Python;SQL;TypeScript
+88651,HTML/CSS;JavaScript;SQL
+88652,Java;Kotlin;SQL
+88653,HTML/CSS;Java;JavaScript;Kotlin;SQL
+88654,Bash/Shell/PowerShell;C#;SQL;TypeScript
+88655,Java
+88656,C#;Go;HTML/CSS;Java;JavaScript;PHP
+88657,Java;Python
+88658,HTML/CSS;Java;TypeScript
+88659,HTML/CSS;TypeScript;Other(s):
+88660,PHP
+88661,Bash/Shell/PowerShell;C;Go;HTML/CSS;Java;JavaScript;PHP;SQL
+88662,HTML/CSS;SQL;TypeScript;Other(s):
+88663,Java;Python
+88664,Bash/Shell/PowerShell;C#;Go;HTML/CSS;JavaScript;PHP;VBA
+88665,Bash/Shell/PowerShell;C;C++;Java;JavaScript;Python
+88666,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+88667,Python
+88668,Python
+88669,JavaScript
+88670,Bash/Shell/PowerShell;C;C++;C#;Python;Ruby;SQL
+88671,Go;Python;SQL
+88672,C;C++
+88673,HTML/CSS;JavaScript;PHP
+88674,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;R
+88675,Java;Python
+88676,C;C++;HTML/CSS;Java;JavaScript;SQL;TypeScript
+88677,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL;TypeScript;VBA
+88678,C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88679,Dart;Java;Kotlin
+88680,Assembly;Other(s):
+88681,Assembly;C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+88683,C++;Java;Python;SQL
+88684,JavaScript;Scala;SQL
+88685,Bash/Shell/PowerShell;C++;C#;Java;JavaScript;Python;SQL
+88686,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+88687,Java;Kotlin;SQL;Swift
+88688,Java
+88689,HTML/CSS;PHP
+88690,HTML/CSS;JavaScript;PHP;SQL
+88691,Bash/Shell/PowerShell;Go;PHP;Other(s):
+88692,HTML/CSS;JavaScript
+88693,HTML/CSS;Java;JavaScript;TypeScript
+88694,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript
+88695,Bash/Shell/PowerShell;HTML/CSS;JavaScript;TypeScript
+88696,HTML/CSS;JavaScript;Python
+88697,HTML/CSS;JavaScript;PHP;Ruby;SQL
+88698,Java;Kotlin
+88699,JavaScript;Objective-C;SQL
+88700,Bash/Shell/PowerShell;C++;Java;Python
+88701,Java;JavaScript;SQL;Other(s):
+88702,Bash/Shell/PowerShell;C#;HTML/CSS;SQL;VBA
+88703,Bash/Shell/PowerShell;C;Java;JavaScript;Python;SQL
+88704,C++;C#;F#;HTML/CSS;Java;JavaScript;Kotlin;Python;R;SQL;TypeScript
+88705,HTML/CSS;JavaScript;Other(s):
+88706,C#;Java;Python;SQL
+88707,C#;HTML/CSS;JavaScript;SQL
+88708,HTML/CSS;JavaScript;PHP
+88709,Assembly;Python
+88710,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;TypeScript
+88711,C;C++;HTML/CSS;Java;SQL
+88712,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP;SQL;VBA
+88713,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+88714,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+88715,HTML/CSS;Java;JavaScript;PHP;SQL
+88716,C;C++;C#;HTML/CSS;Java;JavaScript;Python;SQL
+88717,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python;Ruby;SQL;TypeScript
+88718,Bash/Shell/PowerShell;C#;Java;JavaScript
+88719,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;Kotlin;Python;SQL;TypeScript
+88720,Dart;HTML/CSS;Java;JavaScript;Rust;Scala;TypeScript
+88721,C++;Java;Python;SQL;Other(s):
+88722,HTML/CSS;Java;PHP
+88723,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+88724,HTML/CSS;JavaScript;PHP;Python;SQL
+88725,C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Python
+88726,Bash/Shell/PowerShell;Python
+88727,C;C++;Java;SQL
+88728,HTML/CSS;Java;JavaScript;PHP;TypeScript
+88729,C#;HTML/CSS;JavaScript;SQL
+88730,HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+88731,HTML/CSS;Java;JavaScript;PHP;Python;SQL
+88732,C#;HTML/CSS;JavaScript;PHP;SQL
+88733,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+88734,C;C++;HTML/CSS;Objective-C;Swift
+88735,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;PHP
+88736,C;C++
+88737,Bash/Shell/PowerShell;Java;Kotlin;SQL
+88738,C;C++;C#;HTML/CSS;Java;Python
+88739,C;PHP;Python
+88740,C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+88741,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88742,HTML/CSS;Java;JavaScript;SQL
+88743,Assembly;C++;Java;JavaScript;TypeScript
+88744,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+88745,Java;JavaScript;Kotlin;Objective-C;Swift;TypeScript
+88746,Bash/Shell/PowerShell;C;C++;Java;Python;SQL
+88747,Assembly;C++;C#;Go;Java;JavaScript;Kotlin;Rust;Scala;SQL
+88748,C;C++;Python;Scala;SQL;Other(s):
+88749,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Python;R;Ruby;SQL
+88750,Assembly;Bash/Shell/PowerShell;C;HTML/CSS;JavaScript;PHP;Python;SQL
+88751,Bash/Shell/PowerShell;C++;C#;PHP;Python
+88752,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88753,Assembly;C++;C#;PHP;Ruby;SQL
+88754,Bash/Shell/PowerShell;Go;Java;Python;SQL
+88755,C++;C#;HTML/CSS;Other(s):
+88756,Java;Python;SQL;VBA
+88757,Go;JavaScript;Python;Ruby;TypeScript
+88758,Bash/Shell/PowerShell;Java;Python;Scala;SQL
+88759,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;R;Scala
+88760,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python
+88761,HTML/CSS;JavaScript;PHP
+88762,Bash/Shell/PowerShell;C;HTML/CSS;SQL
+88763,C++;Python
+88764,Assembly;C;Rust
+88765,C;C++;HTML/CSS;Python;SQL
+88766,C#;HTML/CSS;Java;TypeScript
+88767,C++;Go;Java
+88768,Bash/Shell/PowerShell;Java;SQL
+88769,Bash/Shell/PowerShell;HTML/CSS;Python;SQL
+88770,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+88771,Bash/Shell/PowerShell;C#;Java;PHP;Python;SQL
+88772,HTML/CSS;JavaScript;Python;R
+88773,C#
+88774,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+88775,Assembly;HTML/CSS;Python;Rust;SQL
+88776,Java;Kotlin
+88777,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;R;SQL;Swift;TypeScript;VBA
+88778,Bash/Shell/PowerShell;Erlang;HTML/CSS;JavaScript
+88779,C#;HTML/CSS;JavaScript;SQL
+88780,C;C++;HTML/CSS;Java;Kotlin
+88781,Bash/Shell/PowerShell;C#
+88782,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;Swift;TypeScript
+88783,HTML/CSS;JavaScript;SQL
+88784,C;C++;Java;JavaScript;Python
+88785,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;TypeScript
+88786,Bash/Shell/PowerShell;C++;C#;HTML/CSS;JavaScript;Python;Other(s):
+88787,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+88788,C++
+88789,C#;HTML/CSS;JavaScript;Python;SQL;TypeScript
+88790,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;Python
+88791,C#;HTML/CSS;Java;JavaScript;PHP;SQL
+88792,Bash/Shell/PowerShell;C#;SQL
+88793,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+88794,Bash/Shell/PowerShell;Go;Python;Ruby
+88795,Python
+88796,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+88797,C;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+88798,HTML/CSS;Java;JavaScript;Python;SQL
+88799,C#;Rust
+88800,C++;HTML/CSS;Java;JavaScript;PHP;SQL;TypeScript
+88801,Java;JavaScript;Kotlin;SQL
+88803,Bash/Shell/PowerShell;C;HTML/CSS;Java;JavaScript;TypeScript;VBA
+88804,HTML/CSS;Java;JavaScript;Kotlin;SQL
+88805,Assembly;Bash/Shell/PowerShell;C;C#;Python
+88806,HTML/CSS;Python;VBA
+88807,JavaScript
+88808,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;R
+88809,HTML/CSS;Java;JavaScript;PHP;SQL;VBA;Other(s):
+88810,C;C++;Python;Other(s):
+88811,Java
+88812,HTML/CSS;JavaScript;PHP;Python
+88813,Bash/Shell/PowerShell;Go;JavaScript;Python;SQL
+88814,C++;HTML/CSS;JavaScript;TypeScript
+88815,HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+88817,Assembly;Bash/Shell/PowerShell;C;C++;Python;R;Other(s):
+88818,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88819,Assembly;C;C++;HTML/CSS;Java;PHP;Python
+88820,HTML/CSS;JavaScript;PHP;SQL
+88822,C;Java;JavaScript;PHP;SQL
+88823,HTML/CSS;Java;JavaScript;TypeScript
+88824,C#;HTML/CSS;Java;JavaScript;SQL
+88825,C#;JavaScript;Python;SQL
+88826,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL
+88827,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+88828,C;C++;C#;JavaScript;SQL;VBA
+88829,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Kotlin;Python
+88830,Bash/Shell/PowerShell;HTML/CSS;JavaScript;R;SQL
+88831,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+88832,C#;HTML/CSS;Java;JavaScript;SQL
+88833,HTML/CSS;JavaScript;Scala
+88834,C;Python;SQL
+88835,Bash/Shell/PowerShell;Java;JavaScript;SQL
+88836,C#;JavaScript;Python;SQL;TypeScript
+88837,Bash/Shell/PowerShell;Dart;HTML/CSS;Java;JavaScript;SQL
+88838,C#;HTML/CSS;JavaScript;Objective-C;SQL;Swift
+88839,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+88840,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Python;R;Ruby;SQL;Swift
+88841,Elixir
+88842,Clojure;HTML/CSS;Java;JavaScript;SQL
+88843,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript
+88844,C#;SQL
+88845,HTML/CSS;JavaScript;TypeScript
+88846,C#
+88847,Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;Swift;VBA
+88848,C#;HTML/CSS;JavaScript;SQL;TypeScript
+88849,Java
+88850,HTML/CSS;Java;JavaScript;SQL
+88851,C;HTML/CSS;Java;JavaScript;PHP;SQL
+88852,C#;JavaScript
+88853,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript;SQL
+88854,Bash/Shell/PowerShell;C#;Clojure;F#;Go;HTML/CSS;Java;JavaScript;SQL;VBA;Other(s):
+88855,HTML/CSS;Java;JavaScript;SQL
+88856,HTML/CSS;JavaScript;PHP;TypeScript
+88857,HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+88858,C;Go;HTML/CSS;JavaScript;Python;Rust;TypeScript
+88859,HTML/CSS;Java;JavaScript;PHP;SQL
+88860,HTML/CSS;JavaScript;PHP;SQL
+88861,Go;HTML/CSS;JavaScript;PHP;Python;SQL
+88862,Java
+88864,C#;HTML/CSS;Python;SQL
+88865,HTML/CSS;JavaScript
+88866,HTML/CSS;Java;JavaScript;PHP
+88867,Bash/Shell/PowerShell;JavaScript;Python
+88868,HTML/CSS;JavaScript;PHP;TypeScript
+88869,HTML/CSS;JavaScript;PHP;SQL
+88870,Assembly;Bash/Shell/PowerShell;C;C++;Go;HTML/CSS;JavaScript;Python;R;SQL;TypeScript
+88871,C++;C#;HTML/CSS;Java;JavaScript;Python;SQL;TypeScript
+88872,Java;Ruby;SQL
+88873,HTML/CSS;JavaScript;PHP;Python;R;SQL
+88874,C++;Python;Scala;SQL
+88876,Bash/Shell/PowerShell;C#;HTML/CSS;Java;Python;R;Scala
+88877,Bash/Shell/PowerShell;C;Clojure;HTML/CSS;Java;Scala;Swift;Other(s):
+88878,HTML/CSS;JavaScript;Scala;TypeScript
+88879,Bash/Shell/PowerShell;C++;Python
+88881,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python
+88882,C#;HTML/CSS;Java;JavaScript;PHP;Python
+88883,Go;HTML/CSS;Java;JavaScript;Other(s):
+138,HTML/CSS;SQL
+549,C#;HTML/CSS;Java;PHP;Python;R;Ruby;SQL
+905,C++;HTML/CSS;Java;JavaScript;PHP;SQL
+1248,HTML/CSS;JavaScript;Objective-C;Python;R;SQL;Swift
+1265,Bash/Shell/PowerShell;C;C#;F#;Go;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+1352,Java;SQL
+1747,Assembly;C++;SQL
+2413,JavaScript
+2782,HTML/CSS
+2836,Bash/Shell/PowerShell;Java;Other(s):
+2848,HTML/CSS;JavaScript
+3005,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;Python;SQL;VBA;Other(s):
+3326,Bash/Shell/PowerShell;Java;VBA
+3772,Bash/Shell/PowerShell;JavaScript;Python
+4135,HTML/CSS
+4176,Python
+4208,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;JavaScript
+4406,Bash/Shell/PowerShell;HTML/CSS;PHP;Python;SQL;VBA
+6563,C++;HTML/CSS;Other(s):
+7160,Go;HTML/CSS;JavaScript;Python
+7461,Java;Other(s):
+7697,Bash/Shell/PowerShell;Other(s):
+7826,C#;HTML/CSS;Java;JavaScript;Python
+8130,HTML/CSS;JavaScript
+8381,C#;HTML/CSS;PHP;Python
+9115,C;C#;Python
+9555,HTML/CSS;JavaScript;PHP;SQL
+9871,Assembly;Bash/Shell/PowerShell;C;C++;C#;Dart;HTML/CSS;Java;JavaScript;PHP;Python;TypeScript
+10254,Python
+10269,C#
+10337,C#;F#;SQL;TypeScript
+10702,Assembly;C;Go;HTML/CSS;Java;JavaScript;SQL
+10958,Assembly;C++;Clojure;Elixir;Go;Rust
+11059,Assembly;Bash/Shell/PowerShell;C++;Go;Python;R;Rust;Other(s):
+11147,HTML/CSS
+11613,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python;SQL;VBA
+12333,Assembly;Bash/Shell/PowerShell;C;C++
+13192,Assembly
+13291,C++;HTML/CSS;Other(s):
+13311,Python
+13646,Bash/Shell/PowerShell;C;HTML/CSS;JavaScript
+14062,C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
+14140,Python
+14388,Java;Python;SQL
+14564,Assembly;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+14724,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+14736,C++;HTML/CSS;JavaScript
+14826,JavaScript;Other(s):
+15160,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript;R
+15177,C++;C#;Java
+15208,Bash/Shell/PowerShell;JavaScript;Rust;TypeScript;WebAssembly
+15380,C;C++;Java;Python;R;SQL;Other(s):
+16102,C;C++;Python;Scala;SQL
+16103,C#;HTML/CSS;Java
+16132,HTML/CSS;Python
+16637,Bash/Shell/PowerShell;C;C++;HTML/CSS;Python;Rust;SQL
+16679,C;C++;PHP;Python;R;SQL
+16842,C++;HTML/CSS;Java;JavaScript
+17425,Dart;HTML/CSS;Java;JavaScript;PHP;SQL
+17648,HTML/CSS;JavaScript
+17706,C#;HTML/CSS;JavaScript;PHP;Python;SQL;VBA
+17760,C;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+17963,Assembly;C;C++;C#;HTML/CSS;JavaScript;Python;SQL
+18111,HTML/CSS;JavaScript;PHP;Python
+18447,HTML/CSS;TypeScript
+19099,Assembly
+19280,Python;R
+19635,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;SQL;TypeScript;VBA
+19758,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+19784,TypeScript
+20000,Dart;HTML/CSS;JavaScript;Kotlin;Objective-C;SQL;Swift;TypeScript
+20091,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python;Rust;SQL;Other(s):
+20096,Kotlin
+20371,Assembly;Bash/Shell/PowerShell;Java
+20567,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+20892,C#;HTML/CSS;Java;PHP
+21826,HTML/CSS;JavaScript;PHP;SQL;TypeScript
+22192,Clojure;Elixir;Python;R;Scala
+22337,HTML/CSS
+22432,HTML/CSS;JavaScript;SQL;Other(s):
+22865,R
+22890,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+22978,Bash/Shell/PowerShell;C#;F#;Java;Scala;TypeScript
+23671,C#;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+23754,C++;Java;Objective-C;Python;Swift
+23942,HTML/CSS
+24311,Bash/Shell/PowerShell;Python;SQL
+24363,Assembly;Other(s):
+24611,C#;Java;Kotlin
+24861,Bash/Shell/PowerShell;C;C++;Python;R;Other(s):
+24876,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;SQL
+25205,C;C++;HTML/CSS;Java;Python;Other(s):
+25422,HTML/CSS;JavaScript;PHP;SQL
+26349,C;C++;Python
+26396,Assembly;Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Objective-C;SQL;Swift
+26419,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;SQL
+26812,Assembly;C;C++;C#;Java;JavaScript
+26927,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Python
+27229,HTML/CSS;Java;JavaScript;Objective-C;SQL
+27343,HTML/CSS;JavaScript;PHP;SQL
+28181,C++;HTML/CSS;JavaScript
+28324,Assembly;C++;C#;Erlang;Kotlin;Objective-C
+28355,Swift
+28364,JavaScript;Python
+28557,VBA
+29300,Bash/Shell/PowerShell;C;Rust
+29413,Assembly
+29601,R
+29826,HTML/CSS;JavaScript;Python
+29998,JavaScript
+30104,Assembly;WebAssembly
+30141,Python;R;SQL
+30491,Bash/Shell/PowerShell;Other(s):
+30608,Python
+31143,C;C++;Python;R
+31162,Clojure;Other(s):
+31262,Bash/Shell/PowerShell;Python;Ruby;SQL;VBA
+31420,Bash/Shell/PowerShell;Python;R;SQL
+31591,R;SQL
+31699,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+31955,Bash/Shell/PowerShell;C;C++;Python
+32041,Bash/Shell/PowerShell;Java;PHP;Ruby;Other(s):
+32109,Bash/Shell/PowerShell;Go;Java;JavaScript;Python;SQL
+32760,Assembly;C;C++;Java
+32826,Bash/Shell/PowerShell;Java;PHP;Python;SQL
+32941,Java;JavaScript;Python
+32975,Java;Kotlin;Python;SQL
+33081,WebAssembly
+33158,Bash/Shell/PowerShell;C;C++;R;Other(s):
+33219,Assembly
+33596,Bash/Shell/PowerShell;C#;Dart;Elixir;Go;HTML/CSS;JavaScript;Kotlin;PHP;Rust;SQL
+34138,R
+34646,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;VBA;Other(s):
+34708,C++;PHP
+34777,HTML/CSS;JavaScript;SQL
+35010,Assembly;Java
+35390,Bash/Shell/PowerShell;Elixir;Go;JavaScript;Python
+35659,C#;Dart;JavaScript;TypeScript
+35677,C;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Rust;Scala;WebAssembly
+35731,VBA
+36319,Java
+36530,VBA
+36798,Bash/Shell/PowerShell;Java;Python;Scala
+37024,R;Other(s):
+37527,Objective-C;Swift
+37686,C;Python;R;SQL
+37850,Java;JavaScript;PHP;Python;SQL
+37951,Bash/Shell/PowerShell;C;Java;Python
+38509,Java;Python;SQL
+38660,C#;HTML/CSS;Java;Python;SQL
+38948,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+39012,Assembly;Java;JavaScript
+39117,C;C++;C#;HTML/CSS;Java;JavaScript;SQL
+39212,Assembly
+39277,HTML/CSS;JavaScript;PHP;SQL;Other(s):
+39382,Objective-C
+39449,Assembly;HTML/CSS
+39777,C#;HTML/CSS;JavaScript;Objective-C;SQL;TypeScript
+39951,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;TypeScript
+40072,Scala
+40151,Assembly;TypeScript
+40556,C;C++;Java;JavaScript
+40561,HTML/CSS;JavaScript;Ruby;SQL
+40640,C;C++;C#;Python;R;SQL
+40687,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL
+40782,HTML/CSS;JavaScript;PHP;Python;SQL;Other(s):
+40798,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;Other(s):
+40898,HTML/CSS;Java;JavaScript;SQL
+41201,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;Ruby;SQL;Other(s):
+41243,HTML/CSS;JavaScript;PHP;SQL
+41257,Other(s):
+42535,Bash/Shell/PowerShell;HTML/CSS;Python;Swift
+42599,Other(s):
+42602,HTML/CSS;JavaScript
+42855,C++;C#;Rust;SQL
+43809,HTML/CSS;JavaScript
+43870,HTML/CSS
+43897,C++;C#
+43989,Bash/Shell/PowerShell;HTML/CSS;JavaScript
+44123,C++;HTML/CSS;Java;JavaScript;TypeScript;WebAssembly
+44569,Bash/Shell/PowerShell
+44585,Assembly;Bash/Shell/PowerShell;C#;HTML/CSS;PHP;Ruby;SQL;TypeScript;Other(s):
+44621,Assembly;HTML/CSS;JavaScript
+45273,C#;HTML/CSS;Java;JavaScript;SQL
+45527,Bash/Shell/PowerShell;C;Java;Python
+45575,HTML/CSS;JavaScript
+45788,Assembly;Bash/Shell/PowerShell;C;C++;C#;F#;HTML/CSS;Java;JavaScript;Python;R
+46058,Assembly;C
+46216,HTML/CSS;Java
+46296,Go;JavaScript;Python;Other(s):
+46303,Assembly;Other(s):
+46513,C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+46650,HTML/CSS;PHP;SQL
+46743,Assembly;Bash/Shell/PowerShell;HTML/CSS;Java;Objective-C;Scala;SQL;Swift;WebAssembly
+46817,C++;Python;Other(s):
+47259,HTML/CSS;Java;JavaScript;TypeScript;VBA;WebAssembly
+47718,Assembly;Bash/Shell/PowerShell;HTML/CSS;SQL;WebAssembly
+48042,Other(s):
+48134,Python
+48416,HTML/CSS;JavaScript;Ruby
+48421,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;PHP;Python;SQL
+48443,Bash/Shell/PowerShell;HTML/CSS;JavaScript;SQL;TypeScript
+48912,Bash/Shell/PowerShell;Python;Ruby;SQL
+48922,Bash/Shell/PowerShell;C;PHP;R;SQL;Swift
+49401,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python
+49705,Bash/Shell/PowerShell;C#;Go;HTML/CSS;Java;JavaScript;Python;SQL
+50343,Java;JavaScript
+50665,HTML/CSS;JavaScript;Python;SQL
+50685,C#;HTML/CSS;Java;JavaScript;PHP
+51009,Assembly;C#;JavaScript;SQL;Other(s):
+51507,HTML/CSS;R;Other(s):
+51519,Assembly
+51801,Java;JavaScript;PHP;Python;SQL
+52270,Assembly;Bash/Shell/PowerShell;C;Java;Python;Rust;SQL
+52946,Go
+53011,HTML/CSS;Java
+53984,HTML/CSS;JavaScript;PHP
+54517,HTML/CSS;Java;JavaScript;WebAssembly
+54777,Python
+54942,Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;PHP;Python
+55003,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;SQL;VBA
+55851,Bash/Shell/PowerShell;C#;HTML/CSS;Java;JavaScript;Python;R;Scala;SQL;VBA
+55885,HTML/CSS;JavaScript;PHP;SQL
+55901,Bash/Shell/PowerShell;C++;HTML/CSS;Java;JavaScript;Ruby;Swift;Other(s):
+56135,HTML/CSS;PHP
+56384,C++;C#;HTML/CSS;Java;JavaScript
+57071,C++;Python
+57472,C#;HTML/CSS;Java;JavaScript;PHP;Python;Ruby;SQL
+57520,Elixir;WebAssembly
+57536,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Kotlin;Python;SQL
+57664,HTML/CSS;JavaScript;Python
+57785,Assembly;Bash/Shell/PowerShell;C;C++;C#;Java;JavaScript;PHP;Python;R;Ruby;SQL
+57913,C;C#;Java;Python;R;SQL
+58561,Assembly
+58971,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;Python;SQL;Swift
+59190,Rust
+59211,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;Python
+59435,Bash/Shell/PowerShell;HTML/CSS;R;SQL;VBA
+59455,Bash/Shell/PowerShell;C#;HTML/CSS;JavaScript
+59604,Python;R;SQL
+59659,Assembly;C;C++;C#;HTML/CSS;Python;SQL;WebAssembly
+59827,R
+60066,Assembly;C++;C#;HTML/CSS;Java;PHP;Python;SQL
+60133,Bash/Shell/PowerShell
+60184,HTML/CSS;Java;PHP
+60207,C;C++;C#
+60630,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;SQL;VBA
+61017,Bash/Shell/PowerShell;C;C++;R
+61029,Assembly;C;C++;HTML/CSS;JavaScript;Python
+61177,Python;Other(s):
+61753,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+61787,Python
+61922,Bash/Shell/PowerShell;Go;HTML/CSS;Java;JavaScript;Python;R;SQL;TypeScript
+62114,SQL;VBA;Other(s):
+62149,HTML/CSS;Java;JavaScript;SQL
+62177,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;WebAssembly;Other(s):
+62294,C++;HTML/CSS
+62740,Assembly;Other(s):
+62789,Assembly;Bash/Shell/PowerShell;C
+62999,Bash/Shell/PowerShell;HTML/CSS;JavaScript;PHP;Python;SQL
+63019,Assembly
+63462,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+63972,HTML/CSS
+64465,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;PHP;Ruby;SQL
+64517,C;C++;C#;HTML/CSS;JavaScript;SQL;TypeScript
+64998,HTML/CSS;Java;JavaScript;PHP;Python;Ruby
+65265,C;Python;Other(s):
+65296,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;Python;SQL
+65884,Bash/Shell/PowerShell;R;SQL
+65988,C;C++;HTML/CSS;Java;JavaScript
+66267,Assembly;JavaScript
+66751,Assembly;Bash/Shell/PowerShell;C;C++;C#;HTML/CSS;Java;JavaScript;Objective-C;PHP;Python;R;SQL;Swift;Other(s):
+66914,Assembly
+66972,C;C++;C#;F#;HTML/CSS;Java;JavaScript;PHP;Python;R;SQL;TypeScript;VBA
+67146,C#;Go
+67206,C;HTML/CSS;Java;Python
+67223,Assembly;Java;JavaScript;SQL
+67290,Bash/Shell/PowerShell;C++;Swift
+67588,Bash/Shell/PowerShell;JavaScript;PHP;SQL
+68027,Assembly
+68208,Bash/Shell/PowerShell;C;JavaScript;PHP;Python;SQL;TypeScript
+68401,HTML/CSS;Java;JavaScript;PHP;SQL
+68501,Java;JavaScript;Kotlin;SQL;TypeScript
+68525,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python
+69190,HTML/CSS;JavaScript;PHP;SQL
+69366,JavaScript;Python;Ruby
+69741,C;C++;HTML/CSS;Python
+70630,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+70746,C#;Python;SQL
+70955,HTML/CSS;JavaScript
+70985,HTML/CSS;Java;Python;SQL
+71055,Other(s):
+71160,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+71874,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+72325,HTML/CSS;JavaScript;Python;Swift
+72492,Bash/Shell/PowerShell;Elixir;Go;HTML/CSS;JavaScript;Python;Rust;SQL;TypeScript
+74976,C++
+75103,Java;VBA
+75496,Bash/Shell/PowerShell;Go;Python
+75842,Java;JavaScript
+75974,Go;HTML/CSS;Java;JavaScript;Kotlin;Python;Swift;TypeScript
+76444,HTML/CSS
+76822,Assembly;C++;HTML/CSS;JavaScript;PHP;SQL;Other(s):
+76960,C
+77339,Other(s):
+77920,Bash/Shell/PowerShell;C;C++;HTML/CSS;JavaScript;TypeScript
+77968,Java;Python;SQL;TypeScript
+78266,C;C++
+78292,Bash/Shell/PowerShell;C;Python
+78326,Assembly;Bash/Shell/PowerShell;C;Rust
+78741,Assembly;Bash/Shell/PowerShell;C;C++;C#;Clojure;Dart;Elixir;Erlang;F#;Go;HTML/CSS;Java;JavaScript;Kotlin;Objective-C;PHP;Python;R;Ruby;Rust;Scala;SQL;Swift;TypeScript;VBA;WebAssembly;Other(s):
+78887,HTML/CSS
+79354,Java;JavaScript;Kotlin;SQL
+79795,Bash/Shell/PowerShell;Python;SQL;VBA
+79798,HTML/CSS;JavaScript;Python
+80116,HTML/CSS;Java;Ruby
+80319,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL
+80444,PHP
+81093,C#;SQL;VBA
+81922,Java
+81934,C#;Python;R;SQL
+81994,Erlang;Java;Python;SQL
+82007,Assembly;Java;JavaScript;Objective-C;Python
+82134,PHP;SQL
+82789,Bash/Shell/PowerShell;C++;C#;HTML/CSS;Python;Ruby
+83000,Bash/Shell/PowerShell
+83397,HTML/CSS;JavaScript;Python;SQL
+83709,Bash/Shell/PowerShell;HTML/CSS;JavaScript;Python;Ruby
+83786,HTML/CSS;JavaScript;Kotlin;TypeScript
+83862,Assembly;C;C++;HTML/CSS;Java;JavaScript;Objective-C;PHP;SQL
+84299,HTML/CSS;Java;JavaScript;Python;Swift;TypeScript
+84539,Bash/Shell/PowerShell;C;C++;HTML/CSS;Java;JavaScript;Python;SQL
+85182,Dart
+85396,Bash/Shell/PowerShell;HTML/CSS;PHP;R;SQL
+85642,Go;HTML/CSS
+85738,Bash/Shell/PowerShell;C++;Python;Ruby;Other(s):
+85961,C;C++;Other(s):
+86012,Bash/Shell/PowerShell;C++;HTML/CSS;JavaScript
+86566,Bash/Shell/PowerShell;HTML/CSS;Python;Other(s):
+86638,Assembly;C++;HTML/CSS;VBA
+87352,C;C++;Java
+87386,Assembly;Bash/Shell/PowerShell;C;C#;HTML/CSS;Java;JavaScript;PHP;SQL;Other(s):
+87739,C;C++;HTML/CSS;JavaScript;PHP;Python;SQL
+88182,HTML/CSS;Java;JavaScript
+88212,HTML/CSS;JavaScript;Python
+88282,Bash/Shell/PowerShell;Go;HTML/CSS;JavaScript;WebAssembly
+88377,HTML/CSS;JavaScript;Other(s):
+88863,Bash/Shell/PowerShell;HTML/CSS;Java;JavaScript;PHP;SQL;Swift
diff --git a/Python/Matplotlib/02-BarCharts/finished_code.py b/Python/Matplotlib/02-BarCharts/finished_code.py
new file mode 100644
index 000000000..513095f0b
--- /dev/null
+++ b/Python/Matplotlib/02-BarCharts/finished_code.py
@@ -0,0 +1,36 @@
+import csv
+import numpy as np
+import pandas as pd
+from collections import Counter
+from matplotlib import pyplot as plt
+
+plt.style.use("fivethirtyeight")
+
+data = pd.read_csv('data.csv')
+ids = data['Responder_id']
+lang_responses = data['LanguagesWorkedWith']
+
+language_counter = Counter()
+
+for response in lang_responses:
+ language_counter.update(response.split(';'))
+
+languages = []
+popularity = []
+
+for item in language_counter.most_common(15):
+ languages.append(item[0])
+ popularity.append(item[1])
+
+languages.reverse()
+popularity.reverse()
+
+plt.barh(languages, popularity)
+
+plt.title("Most Popular Languages")
+# plt.ylabel("Programming Languages")
+plt.xlabel("Number of People Who Use")
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/02-BarCharts/starting_code.py b/Python/Matplotlib/02-BarCharts/starting_code.py
new file mode 100644
index 000000000..6ab53b39e
--- /dev/null
+++ b/Python/Matplotlib/02-BarCharts/starting_code.py
@@ -0,0 +1,27 @@
+from matplotlib import pyplot as plt
+
+plt.style.use("fivethirtyeight")
+
+ages_x = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]
+
+dev_y = [38496, 42000, 46752, 49320, 53200,
+ 56000, 62316, 64928, 67317, 68748, 73752]
+plt.plot(ages_x, dev_y, color="#444444", label="All Devs")
+
+# py_dev_y = [45372, 48876, 53850, 57287, 63016,
+# 65998, 70003, 70000, 71496, 75370, 83640]
+# plt.plot(ages_x, py_dev_y, color="#008fd5", label="Python")
+
+# js_dev_y = [37810, 43515, 46823, 49293, 53437,
+# 56373, 62375, 66674, 68745, 68746, 74583]
+# plt.plot(ages_x, js_dev_y, color="#e5ae38", label="JavaScript")
+
+plt.legend()
+
+plt.title("Median Salary (USD) by Age")
+plt.xlabel("Ages")
+plt.ylabel("Median Salary (USD)")
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/03-PieCharts/finished_code.py b/Python/Matplotlib/03-PieCharts/finished_code.py
new file mode 100644
index 000000000..449c0b363
--- /dev/null
+++ b/Python/Matplotlib/03-PieCharts/finished_code.py
@@ -0,0 +1,15 @@
+from matplotlib import pyplot as plt
+
+plt.style.use("fivethirtyeight")
+
+slices = [59219, 55466, 47544, 36443, 35917]
+labels = ['JavaScript', 'HTML/CSS', 'SQL', 'Python', 'Java']
+explode = [0, 0, 0, 0.1, 0]
+
+plt.pie(slices, labels=labels, explode=explode, shadow=True,
+ startangle=90, autopct='%1.1f%%',
+ wedgeprops={'edgecolor': 'black'})
+
+plt.title("My Awesome Pie Chart")
+plt.tight_layout()
+plt.show()
diff --git a/Python/Matplotlib/03-PieCharts/snippets.txt b/Python/Matplotlib/03-PieCharts/snippets.txt
new file mode 100644
index 000000000..42b71b27c
--- /dev/null
+++ b/Python/Matplotlib/03-PieCharts/snippets.txt
@@ -0,0 +1,4 @@
+
+# Language Popularity
+slices = [59219, 55466, 47544, 36443, 35917, 31991, 27097, 23030, 20524, 18523, 18017, 7920, 7331, 7201, 5833]
+labels = ['JavaScript', 'HTML/CSS', 'SQL', 'Python', 'Java', 'Bash/Shell/PowerShell', 'C#', 'PHP', 'C++', 'TypeScript', 'C', 'Other(s):', 'Ruby', 'Go', 'Assembly']
diff --git a/Python/Matplotlib/03-PieCharts/starting_code.py b/Python/Matplotlib/03-PieCharts/starting_code.py
new file mode 100644
index 000000000..8bdeb9cf2
--- /dev/null
+++ b/Python/Matplotlib/03-PieCharts/starting_code.py
@@ -0,0 +1,14 @@
+from matplotlib import pyplot as plt
+
+plt.style.use("fivethirtyeight")
+
+
+plt.title("My Awesome Pie Chart")
+plt.tight_layout()
+plt.show()
+
+# Colors:
+# Blue = #008fd5
+# Red = #fc4f30
+# Yellow = #e5ae37
+# Green = #6d904f
diff --git a/Python/Matplotlib/04-StackPlots/finished_code.py b/Python/Matplotlib/04-StackPlots/finished_code.py
new file mode 100644
index 000000000..d25c2445b
--- /dev/null
+++ b/Python/Matplotlib/04-StackPlots/finished_code.py
@@ -0,0 +1,27 @@
+from matplotlib import pyplot as plt
+
+plt.style.use("fivethirtyeight")
+
+
+minutes = [1, 2, 3, 4, 5, 6, 7, 8, 9]
+
+player1 = [8, 6, 5, 5, 4, 2, 1, 1, 0]
+player2 = [0, 1, 2, 2, 2, 4, 4, 4, 4]
+player3 = [0, 1, 1, 1, 2, 2, 3, 3, 4]
+
+labels = ['player1', 'player2', 'player3']
+colors = ['#6d904f', '#fc4f30', '#008fd5']
+
+plt.stackplot(minutes, player1, player2, player3, labels=labels, colors=colors)
+
+plt.legend(loc=(0.07, 0.05))
+
+plt.title("My Awesome Stack Plot")
+plt.tight_layout()
+plt.show()
+
+# Colors:
+# Blue = #008fd5
+# Red = #fc4f30
+# Yellow = #e5ae37
+# Green = #6d904f
diff --git a/Python/Matplotlib/04-StackPlots/snippets.txt b/Python/Matplotlib/04-StackPlots/snippets.txt
new file mode 100644
index 000000000..747e55d81
--- /dev/null
+++ b/Python/Matplotlib/04-StackPlots/snippets.txt
@@ -0,0 +1,3 @@
+player1 = [8, 6, 5, 5, 4, 2, 1, 1, 0]
+player2 = [0, 1, 2, 2, 2, 4, 4, 4, 4]
+player3 = [0, 1, 1, 1, 2, 2, 3, 3, 4]
diff --git a/Python/Matplotlib/04-StackPlots/starting_code.py b/Python/Matplotlib/04-StackPlots/starting_code.py
new file mode 100644
index 000000000..6d9fe1ef2
--- /dev/null
+++ b/Python/Matplotlib/04-StackPlots/starting_code.py
@@ -0,0 +1,22 @@
+from matplotlib import pyplot as plt
+
+plt.style.use("fivethirtyeight")
+
+
+minutes = [1, 2, 3, 4, 5, 6, 7, 8, 9]
+
+player1 = [1, 2, 3, 3, 4, 4, 4, 4, 5]
+player2 = [1, 1, 1, 1, 2, 2, 2, 3, 4]
+player3 = [1, 1, 1, 2, 2, 2, 3, 3, 3]
+
+plt.pie([1, 1, 1], labels=["Player 1", "Player2", "Player3"])
+
+plt.title("My Awesome Stack Plot")
+plt.tight_layout()
+plt.show()
+
+# Colors:
+# Blue = #008fd5
+# Red = #fc4f30
+# Yellow = #e5ae37
+# Green = #6d904f
diff --git a/Python/Matplotlib/05-Fill_Betweens/data.csv b/Python/Matplotlib/05-Fill_Betweens/data.csv
new file mode 100644
index 000000000..da5bef311
--- /dev/null
+++ b/Python/Matplotlib/05-Fill_Betweens/data.csv
@@ -0,0 +1,39 @@
+Age,All_Devs,Python,JavaScript
+18,17784,20046,16446
+19,16500,17100,16791
+20,18012,20000,18942
+21,20628,24744,21780
+22,25206,30500,25704
+23,30252,37732,29000
+24,34368,41247,34372
+25,38496,45372,37810
+26,42000,48876,43515
+27,46752,53850,46823
+28,49320,57287,49293
+29,53200,45000,53437
+30,56000,50000,56373
+31,62316,55000,62375
+32,64928,70000,66674
+33,67317,71496,68745
+34,68748,75370,68746
+35,73752,83640,74583
+36,77232,84666,79000
+37,78000,84392,78508
+38,78508,78254,79996
+39,79536,85000,80403
+40,82488,87038,83820
+41,88935,91991,88833
+42,90000,100000,91660
+43,90056,94796,87892
+44,95000,97962,96243
+45,90000,93302,90000
+46,91633,99240,99313
+47,91660,102736,91660
+48,98150,112285,102264
+49,98964,100771,100000
+50,100000,104708,100000
+51,98988,108423,91660
+52,100000,101407,99240
+53,108923,112542,108000
+54,105000,122870,105000
+55,103117,120000,104000
diff --git a/Python/Matplotlib/05-Fill_Betweens/finished_code.py b/Python/Matplotlib/05-Fill_Betweens/finished_code.py
new file mode 100644
index 000000000..50aa06fff
--- /dev/null
+++ b/Python/Matplotlib/05-Fill_Betweens/finished_code.py
@@ -0,0 +1,33 @@
+import pandas as pd
+from matplotlib import pyplot as plt
+
+data = pd.read_csv('data.csv')
+ages = data['Age']
+dev_salaries = data['All_Devs']
+py_salaries = data['Python']
+js_salaries = data['JavaScript']
+
+plt.plot(ages, dev_salaries, color='#444444',
+ linestyle='--', label='All Devs')
+
+plt.plot(ages, py_salaries, label='Python')
+
+overall_median = 57287
+
+plt.fill_between(ages, py_salaries, dev_salaries,
+ where=(py_salaries > dev_salaries),
+ interpolate=True, alpha=0.25, label='Above Avg')
+
+plt.fill_between(ages, py_salaries, dev_salaries,
+ where=(py_salaries <= dev_salaries),
+ interpolate=True, color='red', alpha=0.25, label='Below Avg')
+
+plt.legend()
+
+plt.title('Median Salary (USD) by Age')
+plt.xlabel('Ages')
+plt.ylabel('Median Salary (USD)')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/05-Fill_Betweens/starting_code.py b/Python/Matplotlib/05-Fill_Betweens/starting_code.py
new file mode 100644
index 000000000..23465e972
--- /dev/null
+++ b/Python/Matplotlib/05-Fill_Betweens/starting_code.py
@@ -0,0 +1,25 @@
+import pandas as pd
+from matplotlib import pyplot as plt
+
+data = pd.read_csv('data.csv')
+ages = data['Age']
+dev_salaries = data['All_Devs']
+py_salaries = data['Python']
+js_salaries = data['JavaScript']
+
+plt.plot(ages, dev_salaries, color='#444444',
+ linestyle='--', label='All Devs')
+
+plt.plot(ages, py_salaries, label='Python')
+
+# overall_median = 57287
+
+plt.legend()
+
+plt.title('Median Salary (USD) by Age')
+plt.xlabel('Ages')
+plt.ylabel('Median Salary (USD)')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/06-Histograms/data.csv b/Python/Matplotlib/06-Histograms/data.csv
new file mode 100644
index 000000000..694fdfe78
--- /dev/null
+++ b/Python/Matplotlib/06-Histograms/data.csv
@@ -0,0 +1,79211 @@
+Responder_id,Age
+1,14
+2,19
+3,28
+4,22
+5,30
+6,28
+7,42
+8,24
+9,23
+11,22
+12,21
+13,28
+14,31
+15,20
+16,26
+17,29
+19,31
+20,38
+22,47
+23,22
+24,23
+25,22
+26,34
+27,22
+29,32
+30,28
+32,21
+33,25
+34,17
+35,35
+36,21
+37,27
+38,44
+39,42
+40,23
+42,30
+43,27
+44,43
+45,62
+46,37
+47,45
+48,20
+49,34
+50,23
+51,18
+52,22
+53,18
+54,37
+55,25
+56,33
+57,31
+58,47
+59,38
+60,27
+61,34
+62,19
+63,42
+64,25
+65,21
+67,24
+68,29
+69,18
+70,42
+71,21
+72,29
+73,36
+74,24
+75,27
+76,32
+77,43
+78,25
+79,20
+80,24
+81,28
+83,22
+84,26
+85,31
+86,26
+87,36
+88,16
+90,25
+91,25
+92,35
+93,32
+94,27
+95,30
+96,43
+97,25
+98,30
+99,21
+100,39
+101,35
+102,37
+104,29
+106,33
+107,24
+108,64
+109,41
+110,26
+111,54
+112,19
+113,49
+114,26
+115,21
+116,31
+117,38
+118,26
+119,28
+120,26
+121,20
+123,24
+124,27
+125,35
+126,32
+127,36
+128,30
+129,34
+130,23
+132,30
+133,39
+134,54
+135,32
+137,25
+139,24
+140,25
+141,21
+142,24
+143,36
+144,47
+146,47
+148,28
+149,40
+150,31
+151,34
+152,39
+154,40
+155,34
+156,36
+157,25
+158,29
+159,35
+160,43
+161,35
+163,32
+164,47
+166,30
+167,28
+169,32
+170,25
+172,31
+173,31
+174,24
+175,20
+176,31
+177,22
+178,28
+179,35
+180,32
+181,29
+182,18
+183,30
+184,29
+185,28
+186,26
+187,23
+188,28
+189,28
+190,27
+191,27
+192,28
+193,56
+194,29
+195,22
+196,40
+197,40
+198,30
+200,43
+201,35
+202,45
+203,29
+204,12
+205,24
+206,33
+207,34
+208,26
+209,33
+210,47
+211,30
+212,30
+213,41
+214,58
+215,46
+216,35
+217,36
+218,36
+219,39
+221,47
+222,59
+223,23
+224,28
+225,38
+227,33
+228,25
+229,25
+231,31
+232,32
+233,36
+234,45
+235,21
+236,29
+237,21
+238,31
+240,21
+241,32
+242,30
+243,17
+244,44
+245,35
+246,33
+247,33
+248,30
+249,24
+250,27
+251,20
+252,27
+253,28
+254,41
+255,20
+256,20
+257,43
+258,23
+259,31
+261,27
+262,24
+263,40
+265,40
+266,33
+267,23
+268,25
+269,32
+270,18
+271,24
+272,39
+273,29
+274,35
+275,34
+276,29
+277,29
+278,31
+279,27
+280,47
+281,40
+283,26
+284,19
+285,32
+286,23
+289,37
+290,30
+292,27
+293,31
+295,36
+296,22
+297,34
+298,23
+299,25
+301,39
+302,33
+303,28
+304,30
+305,28
+306,51
+307,21
+308,36
+309,20
+310,32
+311,24
+312,31
+313,23
+314,47
+315,23
+316,22
+317,24
+318,21
+319,30
+320,46
+321,32
+322,23
+323,48
+324,34
+325,49
+326,34
+328,31
+329,47
+330,35
+331,29
+332,24
+333,33
+334,30
+335,30
+336,38
+337,31
+338,28
+339,16
+340,35
+341,23
+342,35
+343,24
+344,29
+345,33
+346,19
+347,41
+348,39
+349,26
+350,19
+351,25
+352,26
+353,30
+354,25
+355,35
+356,29
+357,33
+358,24
+359,37
+360,28
+361,25
+362,32
+363,37
+364,40
+366,22
+367,42
+368,25
+369,18
+370,32
+371,30
+372,25
+373,37
+374,26
+375,57
+376,25
+377,37
+378,32
+379,19
+380,34
+381,22
+382,26
+383,38
+384,28
+386,27
+388,27
+389,38
+390,43
+391,16
+392,52
+394,30
+395,41
+396,46
+397,39
+398,22
+399,31
+400,48
+401,31
+402,49
+403,19
+404,27
+405,30
+406,24
+407,21
+408,32
+409,33
+410,43
+411,33
+412,28
+413,35
+414,44
+415,50
+416,21
+417,23
+418,45
+419,23
+421,27
+422,19
+423,34
+424,28
+425,44
+426,29
+427,32
+428,28
+429,51
+430,20
+431,64
+432,24
+433,20
+434,41
+435,24
+436,38
+437,25
+438,24
+439,23
+440,34
+441,20
+442,33
+443,28
+444,33
+445,31
+446,25
+447,29
+449,44
+450,24
+451,20
+452,35
+453,39
+455,29
+456,24
+457,35
+458,25
+459,33
+460,32
+461,55
+462,37
+463,29
+464,26
+465,39
+466,23
+467,23
+468,40
+469,28
+470,23
+471,26
+472,46
+473,28
+474,23
+475,30
+476,29
+477,31
+478,17
+479,46
+480,19
+481,38
+482,41
+483,22
+484,15
+485,22
+486,31
+487,24
+488,25
+489,32
+490,30
+491,22
+492,48
+493,22
+494,20
+495,23
+496,27
+497,41
+498,25
+499,27
+500,27
+501,18
+502,21
+503,37
+504,51
+505,21
+506,24
+507,24
+510,23
+511,33
+513,16
+514,31
+515,20
+516,29
+517,25
+519,34
+520,24
+521,35
+522,41
+523,21
+524,31
+525,31
+526,32
+527,31
+528,29
+529,20
+530,67
+531,22
+532,21
+533,30
+536,22
+537,22
+538,19
+539,40
+540,23
+541,31
+542,30
+543,22
+544,38
+545,24
+546,19
+547,25
+548,46
+550,37
+551,30
+552,29
+553,42
+554,25
+555,24
+556,30
+557,44
+558,36
+560,33
+561,24
+562,23
+563,35
+564,35
+565,20
+566,40
+568,22
+569,30
+571,30
+572,21
+573,55
+574,30
+575,28
+576,21
+577,16
+578,28
+579,32
+580,42
+581,27
+582,24
+583,23
+585,23
+587,30
+589,24
+590,25
+591,29
+592,29
+593,23
+594,23
+595,33
+597,34
+598,41
+599,22
+600,15
+602,31
+603,43
+604,29
+605,30
+606,35
+607,29
+608,28
+611,22
+613,34
+614,34
+615,29
+616,30
+617,27
+618,21
+619,22
+621,23
+622,26
+623,29
+624,18
+625,32
+626,30
+627,28
+628,33
+629,14
+630,25
+631,32
+632,41
+633,52
+635,36
+636,42
+638,34
+639,24
+640,36
+642,17
+643,39
+644,19
+645,30
+646,35
+647,23
+648,58
+650,24
+652,44
+654,37
+655,21
+656,43
+657,37
+658,28
+659,28
+660,35
+661,27
+662,31
+663,24
+664,30
+665,52
+666,33
+667,36
+668,27
+669,23
+670,28
+671,29
+672,24
+673,13
+674,18
+675,28
+677,31
+678,31
+679,27
+680,36
+681,24
+682,37
+683,23
+684,27
+685,29
+686,37
+687,23
+688,19
+689,24
+691,28
+692,37
+693,33
+694,37
+695,25
+696,28
+697,35
+698,21
+699,28
+700,20
+701,29
+703,34
+704,31
+705,32
+706,40
+707,24
+708,36
+709,32
+710,15
+711,34
+712,28
+714,22
+715,41
+716,38
+717,23
+718,35
+720,34
+721,36
+722,1
+723,24
+724,39
+725,49
+726,30
+727,22
+728,22
+729,36
+731,24
+732,25
+733,50
+734,28
+735,33
+736,33
+737,52
+738,18
+739,24
+740,29
+741,22
+742,19
+743,26
+744,38
+746,32
+747,40
+748,24
+749,34
+750,21
+751,32
+752,34
+753,27
+754,55
+755,37
+756,27
+757,28
+758,31
+759,50
+760,42
+761,28
+762,45
+763,30
+764,33
+765,27
+766,37
+767,30
+768,34
+769,24
+770,29
+771,27
+772,25
+773,21
+774,26
+776,31
+777,45
+778,32
+779,24
+780,24
+781,29
+782,20
+783,22
+784,24
+785,37
+786,26
+787,29
+788,41
+789,31
+790,25
+791,24
+792,24
+793,28
+794,64
+795,22
+796,41
+797,36
+798,20
+799,21
+800,21
+801,30
+802,42
+803,39
+805,27
+806,31
+807,39
+808,44
+810,33
+811,24
+812,41
+813,43
+814,24
+815,50
+816,37
+817,23
+818,23
+819,33
+820,18
+821,29
+822,34
+823,35
+824,22
+825,26
+826,19
+828,28
+829,32
+830,36
+831,30
+832,21
+833,30
+834,28
+835,36
+837,21
+838,31
+839,32
+841,35
+842,44
+843,27
+844,27
+845,44
+846,22
+848,26
+849,18
+850,36
+851,20
+852,28
+853,26
+854,46
+855,40
+856,45
+857,23
+858,17
+859,30
+860,24
+861,27
+862,29
+863,18
+864,25
+865,27
+866,35
+867,42
+868,21
+869,30
+870,25
+871,23
+872,32
+873,23
+874,25
+875,18
+876,29
+877,49
+878,32
+879,17
+880,30
+881,20
+882,20
+883,46
+884,28
+885,23
+886,26
+887,33
+888,34
+890,28
+891,15
+892,33
+893,22
+894,27
+896,21
+898,25
+899,28
+900,26
+901,25
+902,23
+903,22
+904,40
+907,25
+909,28
+910,25
+911,22
+912,27
+913,20
+914,51
+915,38
+916,41
+917,33
+918,20
+919,32
+920,28
+921,30
+922,28
+923,31
+925,28
+926,20
+927,22
+928,27
+929,32
+930,33
+931,35
+932,34
+933,24
+934,27
+935,38
+936,16
+937,15
+938,31
+939,22
+941,20
+942,28
+943,36
+944,32
+945,27
+946,37
+947,18
+948,32
+949,24
+951,42
+952,38
+953,23
+954,19
+955,40
+957,26
+958,28
+959,35
+960,20
+962,29
+964,30
+965,22
+967,36
+968,31
+969,27
+970,53
+971,33
+972,27
+973,22
+975,28
+976,16
+977,45
+978,27
+979,40
+980,35
+981,35
+982,19
+983,29
+984,25
+985,26
+986,24
+987,20
+989,19
+990,25
+991,29
+992,20
+993,36
+994,33
+995,23
+996,18
+997,25
+999,28
+1000,25
+1001,30
+1002,20
+1003,19
+1004,38
+1005,25
+1006,25
+1007,27
+1008,38
+1009,26
+1010,27
+1013,26
+1015,32
+1016,25
+1017,27
+1018,26
+1019,32
+1021,41
+1022,24
+1023,29
+1024,26
+1025,29
+1026,25
+1027,34
+1028,22
+1029,59
+1030,29
+1031,33
+1032,25
+1033,50
+1034,26
+1035,43
+1036,40
+1037,31
+1038,21
+1039,37
+1041,35
+1042,44
+1043,35
+1045,32
+1046,23
+1047,25
+1048,27
+1050,21
+1051,40
+1052,37
+1053,18
+1054,28
+1055,25
+1056,34
+1057,38
+1061,38
+1062,25
+1063,31
+1064,29
+1065,28
+1066,40
+1067,29
+1068,27
+1069,40
+1070,35
+1071,39
+1072,20
+1073,37
+1074,28
+1075,50
+1076,27
+1077,22
+1079,24
+1080,18
+1081,38
+1082,37
+1083,22
+1084,36
+1085,32
+1086,21
+1087,19
+1088,28
+1089,28
+1090,43
+1091,21
+1092,19
+1093,21
+1094,69
+1095,31
+1096,19
+1097,26
+1098,27
+1099,33
+1101,30
+1102,53
+1103,29
+1105,65
+1106,17
+1108,21
+1109,20
+1110,30
+1111,28
+1113,38
+1114,42
+1115,18
+1116,26
+1117,25
+1118,48
+1119,17
+1120,26
+1121,22
+1122,27
+1123,37
+1124,35
+1125,19
+1127,28
+1128,27
+1129,30
+1130,33
+1131,24
+1132,29
+1133,24
+1134,19
+1135,19
+1136,28
+1137,34
+1138,21
+1141,15
+1142,25
+1143,24
+1144,36
+1145,25
+1146,23
+1147,45
+1148,30
+1149,29
+1150,42
+1151,44
+1152,33
+1153,27
+1154,28
+1155,25
+1157,23
+1158,37
+1159,28
+1161,33
+1162,27
+1164,40
+1165,28
+1166,26
+1167,49
+1169,36
+1170,55
+1173,21
+1174,22
+1175,19
+1176,35
+1177,23
+1178,27
+1179,26
+1181,23
+1182,34
+1183,29
+1184,18
+1185,27
+1186,31
+1187,29
+1188,26
+1189,25
+1190,20
+1192,40
+1193,57
+1194,38
+1195,15
+1197,27
+1198,18
+1200,28
+1201,28
+1202,32
+1203,36
+1205,28
+1206,29
+1207,26
+1208,24
+1209,31
+1210,35
+1211,34
+1212,22
+1214,28
+1215,24
+1216,25
+1217,63
+1218,15
+1219,38
+1221,23
+1222,27
+1223,37
+1224,32
+1225,34
+1226,48
+1228,27
+1229,34
+1230,39
+1232,25
+1233,30
+1234,42
+1235,23
+1236,33
+1237,32
+1238,38
+1239,29
+1240,22
+1241,34
+1243,24
+1244,37
+1245,24
+1246,37
+1247,26
+1249,18
+1250,26
+1251,18
+1253,40
+1254,37
+1255,29
+1256,19
+1257,52
+1258,42
+1259,26
+1260,28
+1262,29
+1263,23
+1264,21
+1266,33
+1267,26
+1268,48
+1269,27
+1270,50
+1271,37
+1272,25
+1273,21
+1274,46
+1275,21
+1276,23
+1277,24
+1278,55
+1279,33
+1280,28
+1281,29
+1283,59
+1284,37
+1285,25
+1286,36
+1287,23
+1288,35
+1289,35
+1290,31
+1291,22
+1292,36
+1294,23
+1295,23
+1296,32
+1297,34
+1298,32
+1299,24
+1300,28
+1301,33
+1302,29
+1303,22
+1304,30
+1305,27
+1307,39
+1308,49
+1309,43
+1310,35
+1311,16
+1312,61
+1313,25
+1314,39
+1315,28
+1316,40
+1318,36
+1319,18
+1320,28
+1321,36
+1322,43
+1323,22
+1324,30
+1325,43
+1326,42
+1328,36
+1329,33
+1330,26
+1331,33
+1332,52
+1333,22
+1334,29
+1335,24
+1336,30
+1337,42
+1339,42
+1340,22
+1341,32
+1342,23
+1343,33
+1344,28
+1345,23
+1346,28
+1347,26
+1348,32
+1349,22
+1351,23
+1354,30
+1355,22
+1356,25
+1357,36
+1358,26
+1359,29
+1360,18
+1361,24
+1362,33
+1363,35
+1364,30
+1365,27
+1367,29
+1369,22
+1370,43
+1371,42
+1372,26
+1373,38
+1374,18
+1375,31
+1376,36
+1378,40
+1379,26
+1380,20
+1381,33
+1382,32
+1383,29
+1384,19
+1385,44
+1386,31
+1387,29
+1388,38
+1390,50
+1391,27
+1392,40
+1393,27
+1395,30
+1396,40
+1397,38
+1398,67
+1399,21
+1400,62
+1401,20
+1402,32
+1403,46
+1404,31
+1405,28
+1406,20
+1407,23
+1408,34
+1409,35
+1410,28
+1411,34
+1412,33
+1413,29
+1414,26
+1417,29
+1418,19
+1419,28
+1420,38
+1421,32
+1422,42
+1423,31
+1424,20
+1425,23
+1426,26
+1427,43
+1428,37
+1429,35
+1430,28
+1431,31
+1432,54
+1433,22
+1434,22
+1435,43
+1437,29
+1438,26
+1439,22
+1440,15
+1441,33
+1443,23
+1444,30
+1445,38
+1446,46
+1449,68
+1450,30
+1451,30
+1452,28
+1453,40
+1454,32
+1455,35
+1456,51
+1457,48
+1458,32
+1459,25
+1460,26
+1461,29
+1462,24
+1463,47
+1464,23
+1466,33
+1469,24
+1470,23
+1471,30
+1472,33
+1473,34
+1474,30
+1475,34
+1477,40
+1478,25
+1480,33
+1481,36
+1482,34
+1483,20
+1484,23
+1485,25
+1486,29
+1487,35
+1488,39
+1489,25
+1490,29
+1491,33
+1492,20
+1493,28
+1496,26
+1499,38
+1500,22
+1501,24
+1502,50
+1503,27
+1504,18
+1505,34
+1506,16
+1507,22
+1508,19
+1509,25
+1510,24
+1511,34
+1512,28
+1513,38
+1514,32
+1515,24
+1516,25
+1517,30
+1518,30
+1519,27
+1520,31
+1521,28
+1522,24
+1523,30
+1524,38
+1525,41
+1527,18
+1528,17
+1529,24
+1530,28
+1531,33
+1532,28
+1533,22
+1534,23
+1535,29
+1536,33
+1537,23
+1538,45
+1539,20
+1540,27
+1541,32
+1542,42
+1543,30
+1544,26
+1545,42
+1546,49
+1548,32
+1549,26
+1550,24
+1551,25
+1552,38
+1553,30
+1554,22
+1555,17
+1556,53
+1557,30
+1558,36
+1559,27
+1560,31
+1561,24
+1563,26
+1564,39
+1565,27
+1566,24
+1567,30
+1568,21
+1569,25
+1570,17
+1571,22
+1572,32
+1573,25
+1574,15
+1575,21
+1577,30
+1578,23
+1579,26
+1580,27
+1581,17
+1583,31
+1584,22
+1585,58
+1586,24
+1588,57
+1589,30
+1590,23
+1591,52
+1592,38
+1593,30
+1594,45
+1595,19
+1597,27
+1598,32
+1599,63
+1600,34
+1601,42
+1602,28
+1603,31
+1604,28
+1605,27
+1606,40
+1607,31
+1608,44
+1609,29
+1610,34
+1611,19
+1612,26
+1613,27
+1614,30
+1616,65
+1617,54
+1619,33
+1620,29
+1621,26
+1622,23
+1623,34
+1624,22
+1625,23
+1626,44
+1627,44
+1628,35
+1629,34
+1630,22
+1632,26
+1633,54
+1634,22
+1635,28
+1636,39
+1637,44
+1639,31
+1641,28
+1642,24
+1643,35
+1644,30
+1645,34
+1647,21
+1648,28
+1649,19
+1650,32
+1651,26
+1652,28
+1653,30
+1654,24
+1655,24
+1656,25
+1657,32
+1658,30
+1659,37
+1660,23
+1661,28
+1663,16
+1664,35
+1665,31
+1666,25
+1667,49
+1668,29
+1669,28
+1670,48
+1671,33
+1673,28
+1674,34
+1675,34
+1676,24
+1677,25
+1678,42
+1679,23
+1680,26
+1681,22
+1682,35
+1683,29
+1684,34
+1685,29
+1686,21
+1687,18
+1689,42
+1690,30
+1691,73
+1692,29
+1693,33
+1694,49
+1695,21
+1696,34
+1697,24
+1698,63
+1699,31
+1702,18
+1703,32
+1704,17
+1705,25
+1706,28
+1708,27
+1709,34
+1711,53
+1712,44
+1713,33
+1714,20
+1715,38
+1716,25
+1717,35
+1719,29
+1720,20
+1722,27
+1723,30
+1724,37
+1725,48
+1726,22
+1727,23
+1728,35
+1729,16
+1730,31
+1731,36
+1732,28
+1733,24
+1734,21
+1735,35
+1736,32
+1737,27
+1738,20
+1739,26
+1740,22
+1742,25
+1743,29
+1744,50
+1745,27
+1748,41
+1749,34
+1750,42
+1751,21
+1752,32
+1753,26
+1754,30
+1755,55
+1756,32
+1758,26
+1759,23
+1761,26
+1762,39
+1763,27
+1764,23
+1766,36
+1767,25
+1768,27
+1769,25
+1770,28
+1771,42
+1772,47
+1773,24
+1774,25
+1776,33
+1777,29
+1778,23
+1779,25
+1780,25
+1781,29
+1783,22
+1784,28
+1785,24
+1786,24
+1787,30
+1788,23
+1789,34
+1790,29
+1791,24
+1793,31
+1795,23
+1796,24
+1797,33
+1798,30
+1800,23
+1801,36
+1802,29
+1803,25
+1804,28
+1805,38
+1807,24
+1808,26
+1809,27
+1811,34
+1812,52
+1813,38
+1814,33
+1815,22
+1816,26
+1817,57
+1818,14
+1819,27
+1820,34
+1821,34
+1822,26
+1823,36
+1824,27
+1825,38
+1826,33
+1827,24
+1828,61
+1829,44
+1830,28
+1831,27
+1832,23
+1833,40
+1834,29
+1835,38
+1836,31
+1837,25
+1838,28
+1839,58
+1840,30
+1841,32
+1842,38
+1843,37
+1844,44
+1845,26
+1846,25
+1847,28
+1848,32
+1849,34
+1850,40
+1851,38
+1852,35
+1853,47
+1854,38
+1855,26
+1856,27
+1857,14
+1858,22
+1859,25
+1860,50
+1861,36
+1862,39
+1863,26
+1864,48
+1865,25
+1867,39
+1868,30
+1869,28
+1870,25
+1871,32
+1873,36
+1874,37
+1875,23
+1876,15
+1877,27
+1878,33
+1879,43
+1880,39
+1881,41
+1883,34
+1884,35
+1885,25
+1886,27
+1887,35
+1888,31
+1891,31
+1892,30
+1893,26
+1894,35
+1895,27
+1896,23
+1897,29
+1898,44
+1899,21
+1900,20
+1901,18
+1902,35
+1903,36
+1904,27
+1906,33
+1907,30
+1908,35
+1909,21
+1910,41
+1911,32
+1913,27
+1914,39
+1915,30
+1916,27
+1917,28
+1918,41
+1919,39
+1920,55
+1921,30
+1922,35
+1923,29
+1924,23
+1925,27
+1928,30
+1929,23
+1931,38
+1932,21
+1933,35
+1934,29
+1935,35
+1936,30
+1937,34
+1938,49
+1939,35
+1940,32
+1941,30
+1942,30
+1943,36
+1944,34
+1946,46
+1947,22
+1948,34
+1949,26
+1950,28
+1951,26
+1952,29
+1953,41
+1954,37
+1955,25
+1956,40
+1957,27
+1958,33
+1959,34
+1960,28
+1961,37
+1962,24
+1963,25
+1964,25
+1965,19
+1966,22
+1967,50
+1968,35
+1969,28
+1970,29
+1971,24
+1973,15
+1974,28
+1975,24
+1976,24
+1977,23
+1978,36
+1979,24
+1981,22
+1982,27
+1983,31
+1984,30
+1985,47
+1986,45
+1987,17
+1988,23
+1989,23
+1990,31
+1992,25
+1993,35
+1997,50
+1999,32
+2000,29
+2001,37
+2002,17
+2003,40
+2004,34
+2005,25
+2006,32
+2007,21
+2009,36
+2010,22
+2012,43
+2013,21
+2014,27
+2016,26
+2017,43
+2018,38
+2020,25
+2021,32
+2022,20
+2024,23
+2025,40
+2026,24
+2027,24
+2028,45
+2029,21
+2030,28
+2031,28
+2032,46
+2033,27
+2034,24
+2035,36
+2036,20
+2037,31
+2038,38
+2040,18
+2041,32
+2042,32
+2044,29
+2045,37
+2046,30
+2047,25
+2049,26
+2050,30
+2051,27
+2052,32
+2053,28
+2054,24
+2055,18
+2056,27
+2057,33
+2058,33
+2059,23
+2060,17
+2061,29
+2063,22
+2064,26
+2065,22
+2068,41
+2069,22
+2070,23
+2071,22
+2073,26
+2074,31
+2075,24
+2076,28
+2077,30
+2078,20
+2079,23
+2080,28
+2081,24
+2082,29
+2083,23
+2084,20
+2085,30
+2086,39
+2087,30
+2088,31
+2089,24
+2090,41
+2092,50
+2093,24
+2094,28
+2095,28
+2096,16
+2097,41
+2098,34
+2100,45
+2101,39
+2102,27
+2104,18
+2105,25
+2106,25
+2107,33
+2108,38
+2109,32
+2110,25
+2112,29
+2113,32
+2115,29
+2116,35
+2117,22
+2118,36
+2119,35
+2120,37
+2121,31
+2123,26
+2124,34
+2125,32
+2126,28
+2127,47
+2128,28
+2129,16
+2130,25
+2131,27
+2132,38
+2133,28
+2134,50
+2135,28
+2136,37
+2137,30
+2139,28
+2140,20
+2141,35
+2142,28
+2143,22
+2144,30
+2145,26
+2146,29
+2147,29
+2148,29
+2149,26
+2150,32
+2151,25
+2152,32
+2153,21
+2156,45
+2157,27
+2158,26
+2159,23
+2161,36
+2163,23
+2164,26
+2165,29
+2166,25
+2167,18
+2168,23
+2169,32
+2170,30
+2171,45
+2172,28
+2173,24
+2174,27
+2175,24
+2177,24
+2178,38
+2179,23
+2180,23
+2181,43
+2182,38
+2184,22
+2185,23
+2187,24
+2189,32
+2190,33
+2191,33
+2192,45
+2194,34
+2195,21
+2196,45
+2197,16
+2198,33
+2199,24
+2200,26
+2201,46
+2202,23
+2204,40
+2205,27
+2206,30
+2207,39
+2208,26
+2209,55
+2210,24
+2211,17
+2212,53
+2213,23
+2214,27
+2215,27
+2216,36
+2217,25
+2218,31
+2220,28
+2221,22
+2222,31
+2223,43
+2224,31
+2225,36
+2226,30
+2227,31
+2228,38
+2229,34
+2230,44
+2231,37
+2232,21
+2234,50
+2236,29
+2237,39
+2238,43
+2239,33
+2241,23
+2242,33
+2243,16
+2244,21
+2245,24
+2246,24
+2247,58
+2248,29
+2249,31
+2250,24
+2251,31
+2252,39
+2253,26
+2254,30
+2255,37
+2256,53
+2257,28
+2258,35
+2259,19
+2260,36
+2261,31
+2262,28
+2264,22
+2265,28
+2266,31
+2267,21
+2268,22
+2269,38
+2270,27
+2271,48
+2272,41
+2273,28
+2274,21
+2275,28
+2276,34
+2277,65
+2278,41
+2279,20
+2280,35
+2282,22
+2283,36
+2284,27
+2285,27
+2286,22
+2288,29
+2289,27
+2290,31
+2291,38
+2292,22
+2293,22
+2294,43
+2295,48
+2296,31
+2297,18
+2298,26
+2299,23
+2300,34
+2301,24
+2302,26
+2303,28
+2304,20
+2305,23
+2307,41
+2309,30
+2311,29
+2312,62
+2313,23
+2314,38
+2315,26
+2316,25
+2317,24
+2318,38
+2319,25
+2320,27
+2321,37
+2323,32
+2324,25
+2325,21
+2326,42
+2327,33
+2328,34
+2329,33
+2330,33
+2331,35
+2332,24
+2333,37
+2334,38
+2335,47
+2336,31
+2337,30
+2338,20
+2339,24
+2340,26
+2341,27
+2342,24
+2343,27
+2344,24
+2345,22
+2346,24
+2348,35
+2349,47
+2350,24
+2351,26
+2352,30
+2353,38
+2354,30
+2355,18
+2357,30
+2358,32
+2359,21
+2360,24
+2361,29
+2363,47
+2364,19
+2365,22
+2366,22
+2367,26
+2368,29
+2369,49
+2371,16
+2372,23
+2373,23
+2374,35
+2375,24
+2376,19
+2377,22
+2378,22
+2379,30
+2380,19
+2381,27
+2382,41
+2383,24
+2384,33
+2385,25
+2386,43
+2387,19
+2389,31
+2390,27
+2391,27
+2392,31
+2393,33
+2394,44
+2395,22
+2396,25
+2397,16
+2398,22
+2399,35
+2400,18
+2401,22
+2402,27
+2403,34
+2404,30
+2405,27
+2406,15
+2407,27
+2408,27
+2409,23
+2410,32
+2411,55
+2412,24
+2414,29
+2415,36
+2416,44
+2417,28
+2419,34
+2420,16
+2421,36
+2422,27
+2424,46
+2425,24
+2426,21
+2427,22
+2428,33
+2429,27
+2431,26
+2432,32
+2434,48
+2435,18
+2437,30
+2438,37
+2439,27
+2440,34
+2441,26
+2442,48
+2443,35
+2444,43
+2445,15
+2447,38
+2448,25
+2449,30
+2450,38
+2451,22
+2452,22
+2453,25
+2454,39
+2455,23
+2456,34
+2457,38
+2460,38
+2462,47
+2463,26
+2464,32
+2465,30
+2466,26
+2467,25
+2468,25
+2470,28
+2472,28
+2473,16
+2474,33
+2475,27
+2476,53
+2477,27
+2478,43
+2479,29
+2480,19
+2481,18
+2482,27
+2484,30
+2485,29
+2486,21
+2487,22
+2489,32
+2490,21
+2491,25
+2492,21
+2493,34
+2494,53
+2495,28
+2496,25
+2497,26
+2498,21
+2499,25
+2500,29
+2502,38
+2503,28
+2504,28
+2505,41
+2506,23
+2507,19
+2510,22
+2511,42
+2512,28
+2513,61
+2514,33
+2515,30
+2516,23
+2517,12
+2518,27
+2519,31
+2520,26
+2521,28
+2523,52
+2524,20
+2525,32
+2526,22
+2527,22
+2528,29
+2529,24
+2531,37
+2532,36
+2533,38
+2534,28
+2535,56
+2536,24
+2537,21
+2538,29
+2539,35
+2540,29
+2541,36
+2542,33
+2543,33
+2544,14
+2545,18
+2546,25
+2547,25
+2548,20
+2549,30
+2550,26
+2551,29
+2552,27
+2553,18
+2554,23
+2555,22
+2556,24
+2558,43
+2559,22
+2560,27
+2561,52
+2562,23
+2563,17
+2564,30
+2565,27
+2567,39
+2570,28
+2571,38
+2572,26
+2573,36
+2574,21
+2575,32
+2576,29
+2577,33
+2578,26
+2580,35
+2582,29
+2583,29
+2584,25
+2585,38
+2586,26
+2587,36
+2588,27
+2589,35
+2590,20
+2591,28
+2592,28
+2593,51
+2594,24
+2596,27
+2597,43
+2598,26
+2599,21
+2600,41
+2601,26
+2602,34
+2603,15
+2604,58
+2606,33
+2607,31
+2609,24
+2610,29
+2611,32
+2612,30
+2613,26
+2614,39
+2616,36
+2617,29
+2618,25
+2619,31
+2620,26
+2621,35
+2622,21
+2623,35
+2624,29
+2625,29
+2626,20
+2627,36
+2629,27
+2631,24
+2632,64
+2634,24
+2636,28
+2637,40
+2638,23
+2639,38
+2640,27
+2641,38
+2642,33
+2643,24
+2644,21
+2645,32
+2646,39
+2647,19
+2649,31
+2650,34
+2651,27
+2652,32
+2653,20
+2654,35
+2655,42
+2656,25
+2657,28
+2658,28
+2659,30
+2660,31
+2662,21
+2663,70
+2664,27
+2665,34
+2666,29
+2667,30
+2668,25
+2669,23
+2670,56
+2671,22
+2672,59
+2673,28
+2674,29
+2675,42
+2677,27
+2678,25
+2680,30
+2681,27
+2682,23
+2684,25
+2685,22
+2687,19
+2689,47
+2690,20
+2691,32
+2692,20
+2694,43
+2695,32
+2696,22
+2697,26
+2698,28
+2699,47
+2700,22
+2701,24
+2702,17
+2703,27
+2704,25
+2705,26
+2706,26
+2708,26
+2709,40
+2710,33
+2711,56
+2712,25
+2713,41
+2714,25
+2715,32
+2716,32
+2717,29
+2718,38
+2719,42
+2720,22
+2721,19
+2722,25
+2723,34
+2724,35
+2725,36
+2726,28
+2727,20
+2728,25
+2729,24
+2730,36
+2731,22
+2732,20
+2733,28
+2734,37
+2735,35
+2736,31
+2737,34
+2738,31
+2739,32
+2740,20
+2741,25
+2742,30
+2744,51
+2745,26
+2746,42
+2748,42
+2749,28
+2750,21
+2751,41
+2752,44
+2753,55
+2755,27
+2756,42
+2757,57
+2758,40
+2759,41
+2760,30
+2761,34
+2762,28
+2763,22
+2764,28
+2766,32
+2767,20
+2769,23
+2770,30
+2771,26
+2772,23
+2773,36
+2774,22
+2775,34
+2776,28
+2778,26
+2779,31
+2780,24
+2781,23
+2783,27
+2784,40
+2785,34
+2786,35
+2787,35
+2788,52
+2789,30
+2790,30
+2791,30
+2792,36
+2793,47
+2794,31
+2795,31
+2796,35
+2797,31
+2798,21
+2799,27
+2800,28
+2801,40
+2802,25
+2803,40
+2804,23
+2805,23
+2806,20
+2808,40
+2809,24
+2811,38
+2812,24
+2813,38
+2814,24
+2815,20
+2816,40
+2817,35
+2820,29
+2821,23
+2822,34
+2824,23
+2826,29
+2828,28
+2829,19
+2830,29
+2831,29
+2832,34
+2833,32
+2834,21
+2837,35
+2838,25
+2839,24
+2841,29
+2842,29
+2843,36
+2844,28
+2845,34
+2846,30
+2847,37
+2849,25
+2851,19
+2852,48
+2853,34
+2854,33
+2855,33
+2856,25
+2858,45
+2859,26
+2860,27
+2861,36
+2862,30
+2863,36
+2864,23
+2865,28
+2866,25
+2867,30
+2868,28
+2869,41
+2870,25
+2871,25
+2872,30
+2873,41
+2874,14
+2875,21
+2876,38
+2877,29
+2878,56
+2879,40
+2880,21
+2884,38
+2885,24
+2886,30
+2887,25
+2888,38
+2889,27
+2890,30
+2891,28
+2892,26
+2893,29
+2894,26
+2895,23
+2896,34
+2897,49
+2898,28
+2899,26
+2900,23
+2902,26
+2903,29
+2904,30
+2905,20
+2906,23
+2907,41
+2908,54
+2909,40
+2912,27
+2913,26
+2914,25
+2915,50
+2916,37
+2917,31
+2918,35
+2919,30
+2920,22
+2921,38
+2922,24
+2924,24
+2925,29
+2926,26
+2927,23
+2928,22
+2930,31
+2931,32
+2932,26
+2933,18
+2934,29
+2935,43
+2936,19
+2937,34
+2938,31
+2940,28
+2941,27
+2942,27
+2943,35
+2944,26
+2945,29
+2946,23
+2947,23
+2948,22
+2949,41
+2950,16
+2951,20
+2953,33
+2954,23
+2955,60
+2956,38
+2957,52
+2958,25
+2959,26
+2960,32
+2961,22
+2962,37
+2963,27
+2964,37
+2965,27
+2966,20
+2968,21
+2969,37
+2970,44
+2972,42
+2973,23
+2974,22
+2975,21
+2976,20
+2977,41
+2978,39
+2980,39
+2981,26
+2982,20
+2983,30
+2984,22
+2985,20
+2986,17
+2987,27
+2988,27
+2989,43
+2990,34
+2993,24
+2994,21
+2995,46
+2997,30
+2998,28
+2999,30
+3000,36
+3001,30
+3002,24
+3003,23
+3004,22
+3006,27
+3007,33
+3009,29
+3010,20
+3011,31
+3012,23
+3013,21
+3014,47
+3015,29
+3016,28
+3017,27
+3018,26
+3019,24
+3020,26
+3022,43
+3023,21
+3025,22
+3026,26
+3027,38
+3028,28
+3029,28
+3030,29
+3031,32
+3032,36
+3033,46
+3034,21
+3035,31
+3036,28
+3037,51
+3038,24
+3039,23
+3040,32
+3042,21
+3043,69
+3044,29
+3046,24
+3047,24
+3048,32
+3049,28
+3050,29
+3051,32
+3052,44
+3053,27
+3054,23
+3055,20
+3056,19
+3057,42
+3058,24
+3059,36
+3060,22
+3061,36
+3062,19
+3063,43
+3064,20
+3065,34
+3066,38
+3067,53
+3068,21
+3069,18
+3071,22
+3072,64
+3073,35
+3076,23
+3077,31
+3078,22
+3079,17
+3080,31
+3081,27
+3083,43
+3084,25
+3085,26
+3086,37
+3087,38
+3088,30
+3089,12
+3090,34
+3091,35
+3092,22
+3095,24
+3096,40
+3097,44
+3098,25
+3099,28
+3100,26
+3101,32
+3102,16
+3104,35
+3105,34
+3106,34
+3107,22
+3108,50
+3109,58
+3110,50
+3111,38
+3113,22
+3114,19
+3115,25
+3116,29
+3117,24
+3118,16
+3119,39
+3121,23
+3122,40
+3123,22
+3125,24
+3126,26
+3127,20
+3128,32
+3129,31
+3130,26
+3131,20
+3132,28
+3133,28
+3134,24
+3135,47
+3136,50
+3138,24
+3139,35
+3140,29
+3141,37
+3143,35
+3144,20
+3145,27
+3146,26
+3147,25
+3148,26
+3149,20
+3150,33
+3151,30
+3152,37
+3153,26
+3154,25
+3155,30
+3156,19
+3158,60
+3159,29
+3160,32
+3162,29
+3163,31
+3164,40
+3165,28
+3166,33
+3167,20
+3168,19
+3169,25
+3170,21
+3172,24
+3173,25
+3174,31
+3175,26
+3177,37
+3179,19
+3180,32
+3181,41
+3182,25
+3183,23
+3184,21
+3185,25
+3186,28
+3187,37
+3189,34
+3190,22
+3191,34
+3192,34
+3193,49
+3195,49
+3196,50
+3197,38
+3198,35
+3200,24
+3201,24
+3202,27
+3203,45
+3205,25
+3206,27
+3207,56
+3208,25
+3209,36
+3210,28
+3211,25
+3212,34
+3213,25
+3214,36
+3215,42
+3216,55
+3217,43
+3218,34
+3219,27
+3220,25
+3221,46
+3222,33
+3223,27
+3224,26
+3226,31
+3227,33
+3228,30
+3229,28
+3230,23
+3231,30
+3232,41
+3233,32
+3234,26
+3235,28
+3236,30
+3238,32
+3239,27
+3240,25
+3241,70
+3242,35
+3243,24
+3244,34
+3245,24
+3246,25
+3248,36
+3249,42
+3250,26
+3251,24
+3252,45
+3253,26
+3254,56
+3255,34
+3256,21
+3257,24
+3258,41
+3259,29
+3260,25
+3261,31
+3262,21
+3264,27
+3265,22
+3266,39
+3267,37
+3268,18
+3269,32
+3271,37
+3272,33
+3273,41
+3274,33
+3275,41
+3276,21
+3277,32
+3278,30
+3279,42
+3280,20
+3281,23
+3282,33
+3283,29
+3284,27
+3285,26
+3286,29
+3287,23
+3288,34
+3289,30
+3290,35
+3291,31
+3292,25
+3293,40
+3294,27
+3295,23
+3296,57
+3297,35
+3298,21
+3300,21
+3301,40
+3302,23
+3303,32
+3304,20
+3305,28
+3306,12
+3307,27
+3308,27
+3309,24
+3310,32
+3311,26
+3312,26
+3313,32
+3314,24
+3315,45
+3316,21
+3317,48
+3319,38
+3320,22
+3321,31
+3322,45
+3324,32
+3325,14
+3327,26
+3328,22
+3329,21
+3330,36
+3332,44
+3334,22
+3335,36
+3336,23
+3337,28
+3338,32
+3339,29
+3340,24
+3341,42
+3342,29
+3343,32
+3344,23
+3345,21
+3346,33
+3347,26
+3349,43
+3350,29
+3351,26
+3352,44
+3353,27
+3354,33
+3355,25
+3356,48
+3357,26
+3358,34
+3359,20
+3360,19
+3362,19
+3363,21
+3364,31
+3365,53
+3366,46
+3367,41
+3368,20
+3369,27
+3370,31
+3371,43
+3372,25
+3373,33
+3374,25
+3376,32
+3377,27
+3378,48
+3379,33
+3380,25
+3381,18
+3382,22
+3383,27
+3384,36
+3385,22
+3386,22
+3387,22
+3388,21
+3389,28
+3390,23
+3391,22
+3392,23
+3393,30
+3394,24
+3396,31
+3397,26
+3399,22
+3400,22
+3401,36
+3402,47
+3403,22
+3404,28
+3405,25
+3406,52
+3407,40
+3408,40
+3409,19
+3411,36
+3412,50
+3413,22
+3414,47
+3415,29
+3416,23
+3417,36
+3418,43
+3419,22
+3420,31
+3421,26
+3422,33
+3423,34
+3424,18
+3425,32
+3426,28
+3427,32
+3428,24
+3429,23
+3430,35
+3431,29
+3432,28
+3433,46
+3434,22
+3435,16
+3436,45
+3437,27
+3438,31
+3439,24
+3440,31
+3442,34
+3443,24
+3444,30
+3445,29
+3447,27
+3449,36
+3450,32
+3451,20
+3452,20
+3454,20
+3455,28
+3458,27
+3459,31
+3460,27
+3461,28
+3462,35
+3463,23
+3464,61
+3465,29
+3466,29
+3467,26
+3469,40
+3470,42
+3472,31
+3474,44
+3476,26
+3477,25
+3478,32
+3479,24
+3480,25
+3481,27
+3483,31
+3484,53
+3486,24
+3487,26
+3488,26
+3489,28
+3490,30
+3491,30
+3492,41
+3493,32
+3494,38
+3495,46
+3496,24
+3497,30
+3498,31
+3500,19
+3501,33
+3502,23
+3503,24
+3504,23
+3505,26
+3506,31
+3507,27
+3508,37
+3510,33
+3511,26
+3512,36
+3513,33
+3515,34
+3516,22
+3517,30
+3518,29
+3519,24
+3520,23
+3521,23
+3522,39
+3523,25
+3524,29
+3525,25
+3526,29
+3527,31
+3528,27
+3529,27
+3530,21
+3531,15
+3532,54
+3533,24
+3535,31
+3536,35
+3537,35
+3538,23
+3539,26
+3541,20
+3542,50
+3543,27
+3544,24
+3545,21
+3546,28
+3547,25
+3548,37
+3549,24
+3552,37
+3553,43
+3554,25
+3555,26
+3556,23
+3557,37
+3558,33
+3559,20
+3560,39
+3561,27
+3564,27
+3565,24
+3566,27
+3567,28
+3568,26
+3569,17
+3570,35
+3571,26
+3572,30
+3574,24
+3575,38
+3576,27
+3577,32
+3578,32
+3579,42
+3581,25
+3582,41
+3584,32
+3585,29
+3586,24
+3587,21
+3588,16
+3589,30
+3590,30
+3591,37
+3592,28
+3593,30
+3594,26
+3595,27
+3596,63
+3597,27
+3599,25
+3600,31
+3601,38
+3602,27
+3603,30
+3605,28
+3606,23
+3607,29
+3608,34
+3609,20
+3610,31
+3611,29
+3612,20
+3614,37
+3615,22
+3616,22
+3617,19
+3619,22
+3620,39
+3621,26
+3622,22
+3623,35
+3626,18
+3627,36
+3628,23
+3629,19
+3630,18
+3631,16
+3632,43
+3633,51
+3634,30
+3635,19
+3636,18
+3637,23
+3638,39
+3639,33
+3640,28
+3641,23
+3642,24
+3643,30
+3644,32
+3645,37
+3646,34
+3647,40
+3648,28
+3649,27
+3650,29
+3651,34
+3652,35
+3653,31
+3654,45
+3656,42
+3657,38
+3659,24
+3660,37
+3661,46
+3662,22
+3663,35
+3664,30
+3666,26
+3667,35
+3668,60
+3669,34
+3670,30
+3671,25
+3672,24
+3673,38
+3674,21
+3675,25
+3676,25
+3677,42
+3678,31
+3679,36
+3680,31
+3681,19
+3682,28
+3683,26
+3684,13
+3685,31
+3687,31
+3688,24
+3689,39
+3691,34
+3692,30
+3693,24
+3694,27
+3695,38
+3696,42
+3697,35
+3698,44
+3699,36
+3700,17
+3701,40
+3702,28
+3703,32
+3704,26
+3705,29
+3706,19
+3707,45
+3708,19
+3709,29
+3710,33
+3711,29
+3712,21
+3713,24
+3714,24
+3715,51
+3716,29
+3717,28
+3718,23
+3719,28
+3720,26
+3721,32
+3722,37
+3723,21
+3724,25
+3725,15
+3726,29
+3727,26
+3728,18
+3729,25
+3730,38
+3731,35
+3732,44
+3733,34
+3734,36
+3735,32
+3736,31
+3737,26
+3738,20
+3739,24
+3741,31
+3742,26
+3743,49
+3744,37
+3745,20
+3746,30
+3747,34
+3748,35
+3749,23
+3750,38
+3751,35
+3752,61
+3753,22
+3755,37
+3757,32
+3760,36
+3761,43
+3763,29
+3764,33
+3765,33
+3766,23
+3767,29
+3768,25
+3769,31
+3771,21
+3773,28
+3774,27
+3775,20
+3776,25
+3777,40
+3778,28
+3779,27
+3781,29
+3782,29
+3783,34
+3784,32
+3785,18
+3786,27
+3787,35
+3788,31
+3789,30
+3790,29
+3791,28
+3792,44
+3794,22
+3795,29
+3796,26
+3797,35
+3798,20
+3800,18
+3801,27
+3802,46
+3803,28
+3805,29
+3806,25
+3807,28
+3808,23
+3809,29
+3810,42
+3811,25
+3812,31
+3813,35
+3814,42
+3815,17
+3816,25
+3817,38
+3818,25
+3819,27
+3820,21
+3821,27
+3822,29
+3823,15
+3824,22
+3825,42
+3826,37
+3827,28
+3828,33
+3829,40
+3830,32
+3831,26
+3832,22
+3833,28
+3834,21
+3835,30
+3836,45
+3837,27
+3838,23
+3839,14
+3840,18
+3841,32
+3842,38
+3843,23
+3845,28
+3846,24
+3847,41
+3848,23
+3849,19
+3850,31
+3852,31
+3853,27
+3854,26
+3856,22
+3857,29
+3859,36
+3860,27
+3861,29
+3862,26
+3863,22
+3864,33
+3865,23
+3866,34
+3867,23
+3869,40
+3870,31
+3872,26
+3873,24
+3874,30
+3875,30
+3877,34
+3878,18
+3879,24
+3880,22
+3881,46
+3882,30
+3883,35
+3884,34
+3885,34
+3886,35
+3887,27
+3888,29
+3889,24
+3890,29
+3891,25
+3892,25
+3893,19
+3894,46
+3895,37
+3896,34
+3897,27
+3898,21
+3899,31
+3901,20
+3902,26
+3905,22
+3906,28
+3907,36
+3908,25
+3909,45
+3910,24
+3911,29
+3913,34
+3915,39
+3916,25
+3917,28
+3919,48
+3920,27
+3922,24
+3924,30
+3925,20
+3926,15
+3927,28
+3928,35
+3929,36
+3930,26
+3931,20
+3932,23
+3933,40
+3935,26
+3936,28
+3937,22
+3938,25
+3939,37
+3940,27
+3941,53
+3942,37
+3943,33
+3944,25
+3945,26
+3946,24
+3947,41
+3948,27
+3949,30
+3950,18
+3951,23
+3952,22
+3953,45
+3954,42
+3955,30
+3956,28
+3957,38
+3958,24
+3959,28
+3960,37
+3961,31
+3962,23
+3963,37
+3964,22
+3965,20
+3967,18
+3968,23
+3969,34
+3971,22
+3972,16
+3973,38
+3974,28
+3975,24
+3976,28
+3977,18
+3978,32
+3979,24
+3980,27
+3981,22
+3982,56
+3983,32
+3984,27
+3985,26
+3986,42
+3988,21
+3989,25
+3990,38
+3991,46
+3992,41
+3993,32
+3994,22
+3995,37
+3996,36
+3997,34
+3998,50
+3999,44
+4000,25
+4001,28
+4002,33
+4003,17
+4004,26
+4005,38
+4006,35
+4007,44
+4008,21
+4009,31
+4011,22
+4012,29
+4013,37
+4014,39
+4015,31
+4016,29
+4017,23
+4018,27
+4019,46
+4020,23
+4021,34
+4022,39
+4023,22
+4024,33
+4025,21
+4026,29
+4027,26
+4028,36
+4029,26
+4030,36
+4031,42
+4032,38
+4033,29
+4034,19
+4035,38
+4036,21
+4037,24
+4038,23
+4039,44
+4040,17
+4041,22
+4042,30
+4044,30
+4045,38
+4046,24
+4047,27
+4048,29
+4049,30
+4050,20
+4051,27
+4052,16
+4053,18
+4054,32
+4055,31
+4056,24
+4057,34
+4058,33
+4059,14
+4060,39
+4061,43
+4062,29
+4063,23
+4064,25
+4065,52
+4066,38
+4068,30
+4069,29
+4070,20
+4071,25
+4072,23
+4073,35
+4074,30
+4075,22
+4076,22
+4077,15
+4078,29
+4079,33
+4080,30
+4081,36
+4082,24
+4083,34
+4084,29
+4085,68
+4086,32
+4087,23
+4090,42
+4091,28
+4092,26
+4093,24
+4094,32
+4095,18
+4096,40
+4098,35
+4099,23
+4100,47
+4101,39
+4102,21
+4103,53
+4104,45
+4105,30
+4106,30
+4107,20
+4108,28
+4109,34
+4110,38
+4111,38
+4112,27
+4113,32
+4114,22
+4115,30
+4116,41
+4117,36
+4118,22
+4119,19
+4121,29
+4122,47
+4123,30
+4124,38
+4125,36
+4126,23
+4127,28
+4128,35
+4129,27
+4131,26
+4132,27
+4133,26
+4134,23
+4136,19
+4137,39
+4138,24
+4139,53
+4140,25
+4141,25
+4142,35
+4143,36
+4144,19
+4145,23
+4146,28
+4147,30
+4149,32
+4150,51
+4151,28
+4154,25
+4156,19
+4157,63
+4158,24
+4160,22
+4161,37
+4162,25
+4163,31
+4164,32
+4165,36
+4166,22
+4167,35
+4168,27
+4169,27
+4170,29
+4171,25
+4172,27
+4173,25
+4174,20
+4175,26
+4177,44
+4178,25
+4179,19
+4180,23
+4181,26
+4182,36
+4183,24
+4184,30
+4185,26
+4186,33
+4187,62
+4188,25
+4189,41
+4190,20
+4191,18
+4192,33
+4193,38
+4194,23
+4195,26
+4196,30
+4197,36
+4198,26
+4199,24
+4200,24
+4201,31
+4202,19
+4203,46
+4204,25
+4205,19
+4206,22
+4207,33
+4209,28
+4211,30
+4212,27
+4213,29
+4214,31
+4215,31
+4216,39
+4217,19
+4218,54
+4219,45
+4220,28
+4221,43
+4222,37
+4223,34
+4224,22
+4225,24
+4226,22
+4227,39
+4228,30
+4229,30
+4230,53
+4231,46
+4232,22
+4233,28
+4234,26
+4235,28
+4236,22
+4237,24
+4238,33
+4239,33
+4240,32
+4241,26
+4242,30
+4243,21
+4244,31
+4245,22
+4246,38
+4250,22
+4251,24
+4252,33
+4253,35
+4254,28
+4255,25
+4256,22
+4257,19
+4258,25
+4260,27
+4261,23
+4262,33
+4263,23
+4264,37
+4265,30
+4266,41
+4267,22
+4268,18
+4269,36
+4270,56
+4272,35
+4273,31
+4274,30
+4276,29
+4277,28
+4278,45
+4280,30
+4281,37
+4284,31
+4285,25
+4286,27
+4287,25
+4288,19
+4289,28
+4290,29
+4292,33
+4293,38
+4295,34
+4296,22
+4297,30
+4298,30
+4299,25
+4300,42
+4301,21
+4302,28
+4303,32
+4304,29
+4305,30
+4306,25
+4308,21
+4309,25
+4310,37
+4311,48
+4312,24
+4313,19
+4314,36
+4315,24
+4316,16
+4317,17
+4318,35
+4319,26
+4320,20
+4321,42
+4322,27
+4323,30
+4324,29
+4325,29
+4326,26
+4327,25
+4328,24
+4329,40
+4330,29
+4331,33
+4332,43
+4333,47
+4334,27
+4335,33
+4336,21
+4337,23
+4338,36
+4339,35
+4340,29
+4341,24
+4342,18
+4343,14
+4344,41
+4345,46
+4346,29
+4347,29
+4348,28
+4349,26
+4350,22
+4351,32
+4352,30
+4353,30
+4354,34
+4355,21
+4356,17
+4357,41
+4358,39
+4359,28
+4361,22
+4362,20
+4363,21
+4365,25
+4366,27
+4367,26
+4368,25
+4370,25
+4371,28
+4372,22
+4373,42
+4374,22
+4375,38
+4376,33
+4377,43
+4378,24
+4379,30
+4381,23
+4382,22
+4383,22
+4384,28
+4385,27
+4386,28
+4387,32
+4389,27
+4390,48
+4391,35
+4392,34
+4394,26
+4395,28
+4396,21
+4397,27
+4398,40
+4399,40
+4400,14
+4401,55
+4402,36
+4403,38
+4404,29
+4405,25
+4407,31
+4408,30
+4409,36
+4410,58
+4411,21
+4412,54
+4413,41
+4414,23
+4415,25
+4416,49
+4417,26
+4418,40
+4419,33
+4420,35
+4421,24
+4422,34
+4423,25
+4424,30
+4425,32
+4426,27
+4427,28
+4428,40
+4431,30
+4432,24
+4433,48
+4434,23
+4435,30
+4436,50
+4437,26
+4439,24
+4440,23
+4441,30
+4442,35
+4443,24
+4445,31
+4446,42
+4447,23
+4448,36
+4450,31
+4451,36
+4452,29
+4453,24
+4454,34
+4455,35
+4457,23
+4458,37
+4459,27
+4460,34
+4461,23
+4462,42
+4463,26
+4464,23
+4465,25
+4466,29
+4467,34
+4468,23
+4469,35
+4470,19
+4471,20
+4472,31
+4473,27
+4474,28
+4475,24
+4476,42
+4477,23
+4478,21
+4479,23
+4480,30
+4481,28
+4482,50
+4483,26
+4484,37
+4485,26
+4486,23
+4487,37
+4488,17
+4489,37
+4490,40
+4491,24
+4492,25
+4493,21
+4494,28
+4495,25
+4496,18
+4497,38
+4498,27
+4499,15
+4502,27
+4503,28
+4504,32
+4505,39
+4506,29
+4507,23
+4509,32
+4510,27
+4511,22
+4513,35
+4514,27
+4515,43
+4516,33
+4517,30
+4518,36
+4519,26
+4520,40
+4521,22
+4522,28
+4523,31
+4524,38
+4525,21
+4526,40
+4527,36
+4528,27
+4529,32
+4530,22
+4532,43
+4533,28
+4534,24
+4535,24
+4536,40
+4537,26
+4538,38
+4539,39
+4541,20
+4543,32
+4544,26
+4545,34
+4546,11
+4548,27
+4549,18
+4550,53
+4551,37
+4552,28
+4554,31
+4555,31
+4556,33
+4557,58
+4558,43
+4560,26
+4562,30
+4564,30
+4565,43
+4566,24
+4567,41
+4568,19
+4570,37
+4571,23
+4572,36
+4573,71
+4574,26
+4576,25
+4577,27
+4578,38
+4579,23
+4580,28
+4581,27
+4582,21
+4584,19
+4585,24
+4586,33
+4588,26
+4589,21
+4590,40
+4591,32
+4592,29
+4593,27
+4595,23
+4596,30
+4597,26
+4599,39
+4600,18
+4601,32
+4602,57
+4603,22
+4604,34
+4605,18
+4606,22
+4607,32
+4608,31
+4609,27
+4610,17
+4611,20
+4614,41
+4615,13
+4616,32
+4617,21
+4618,23
+4619,13
+4621,32
+4622,36
+4623,33
+4624,32
+4626,24
+4627,18
+4628,29
+4629,35
+4630,24
+4632,37
+4633,30
+4634,25
+4635,25
+4636,48
+4637,28
+4638,27
+4639,22
+4640,25
+4641,36
+4642,39
+4643,29
+4644,25
+4646,22
+4647,38
+4648,36
+4649,29
+4650,34
+4651,37
+4652,19
+4653,36
+4654,25
+4655,26
+4656,31
+4658,24
+4659,25
+4660,13
+4661,21
+4662,26
+4663,19
+4664,20
+4665,29
+4666,50
+4667,31
+4668,26
+4669,26
+4671,27
+4672,33
+4673,27
+4674,31
+4675,27
+4676,36
+4677,40
+4678,32
+4679,27
+4680,35
+4682,29
+4683,18
+4685,39
+4686,24
+4687,30
+4688,35
+4689,58
+4690,29
+4691,25
+4692,26
+4693,32
+4694,36
+4695,30
+4696,38
+4697,30
+4698,44
+4699,29
+4700,33
+4702,43
+4703,23
+4704,22
+4705,22
+4706,23
+4707,26
+4708,20
+4709,30
+4710,29
+4711,36
+4712,25
+4713,34
+4714,24
+4715,28
+4716,23
+4717,30
+4718,28
+4719,26
+4720,20
+4721,60
+4724,27
+4725,38
+4726,40
+4728,37
+4729,50
+4730,20
+4731,35
+4732,29
+4733,21
+4734,22
+4735,17
+4736,27
+4738,44
+4739,27
+4740,24
+4741,34
+4742,34
+4743,20
+4744,24
+4745,23
+4746,36
+4747,40
+4748,22
+4749,21
+4750,32
+4751,23
+4752,29
+4753,40
+4754,22
+4755,36
+4756,45
+4757,35
+4758,31
+4759,24
+4760,42
+4761,20
+4762,33
+4763,21
+4764,68
+4765,33
+4766,27
+4767,42
+4768,24
+4770,20
+4771,28
+4772,15
+4773,23
+4774,36
+4776,23
+4777,32
+4778,30
+4779,25
+4780,33
+4781,20
+4782,22
+4783,21
+4784,17
+4785,38
+4788,45
+4789,27
+4790,23
+4791,29
+4792,36
+4793,30
+4794,31
+4795,34
+4796,32
+4797,33
+4798,30
+4800,46
+4803,36
+4804,37
+4806,24
+4807,26
+4808,30
+4810,29
+4811,19
+4812,31
+4813,38
+4814,31
+4815,29
+4816,33
+4817,19
+4818,34
+4819,20
+4820,28
+4821,19
+4822,23
+4824,27
+4825,36
+4826,27
+4828,37
+4829,14
+4830,29
+4831,32
+4832,25
+4833,40
+4835,35
+4836,27
+4837,59
+4838,22
+4839,19
+4840,23
+4841,3
+4842,24
+4844,18
+4845,22
+4846,42
+4847,37
+4848,20
+4849,21
+4850,30
+4852,37
+4853,27
+4854,49
+4855,35
+4856,38
+4858,26
+4859,30
+4860,27
+4862,32
+4863,20
+4864,44
+4865,33
+4866,33
+4867,31
+4868,21
+4869,29
+4870,27
+4872,30
+4873,25
+4875,19
+4877,28
+4878,31
+4879,31
+4880,21
+4881,41
+4882,41
+4883,23
+4884,29
+4885,33
+4886,33
+4887,35
+4888,27
+4889,36
+4890,26
+4891,30
+4892,36
+4893,62
+4894,18
+4895,33
+4896,28
+4897,23
+4898,50
+4899,28
+4900,31
+4901,32
+4902,23
+4903,27
+4904,21
+4905,25
+4907,28
+4908,20
+4909,22
+4910,48
+4911,29
+4913,28
+4914,45
+4915,36
+4916,46
+4917,29
+4918,41
+4919,23
+4920,28
+4921,47
+4922,52
+4923,32
+4925,21
+4926,40
+4927,41
+4928,23
+4929,32
+4930,24
+4931,28
+4932,28
+4935,21
+4936,15
+4937,21
+4939,18
+4940,48
+4941,29
+4942,25
+4943,45
+4944,20
+4945,44
+4946,32
+4947,19
+4949,23
+4951,24
+4952,52
+4953,50
+4954,33
+4956,25
+4957,28
+4960,18
+4961,50
+4962,28
+4963,26
+4964,36
+4965,28
+4967,32
+4968,33
+4969,23
+4971,30
+4972,41
+4973,26
+4975,13
+4976,27
+4977,48
+4978,29
+4979,15
+4980,33
+4981,41
+4982,36
+4983,34
+4984,33
+4985,22
+4986,23
+4987,29
+4988,20
+4989,26
+4990,27
+4991,42
+4992,22
+4993,26
+4994,34
+4995,12
+4996,22
+4997,28
+4998,20
+4999,22
+5000,17
+5001,23
+5002,15
+5003,26
+5004,23
+5005,36
+5006,47
+5007,23
+5008,32
+5009,30
+5010,47
+5011,26
+5012,25
+5013,22
+5015,24
+5016,25
+5017,28
+5018,30
+5019,20
+5020,23
+5021,30
+5022,26
+5023,24
+5024,36
+5025,30
+5026,13
+5028,25
+5029,21
+5030,23
+5031,42
+5032,41
+5033,28
+5034,45
+5035,48
+5036,38
+5037,35
+5038,30
+5039,29
+5041,38
+5043,29
+5044,19
+5045,60
+5046,33
+5047,32
+5048,28
+5049,25
+5050,36
+5051,25
+5053,35
+5054,26
+5055,28
+5056,26
+5057,29
+5058,22
+5060,35
+5061,23
+5063,25
+5064,71
+5065,20
+5066,32
+5067,26
+5068,25
+5069,26
+5070,25
+5071,29
+5073,27
+5075,32
+5076,41
+5077,25
+5078,34
+5082,23
+5083,27
+5084,25
+5085,26
+5086,37
+5087,30
+5088,26
+5089,46
+5092,26
+5093,22
+5094,33
+5095,27
+5096,38
+5097,28
+5098,29
+5099,58
+5100,25
+5101,24
+5102,22
+5103,38
+5104,25
+5105,40
+5106,36
+5107,52
+5108,25
+5109,31
+5110,23
+5111,25
+5112,33
+5113,33
+5114,42
+5115,26
+5116,25
+5117,33
+5118,29
+5119,35
+5120,19
+5121,20
+5122,28
+5123,30
+5124,28
+5125,23
+5126,34
+5127,27
+5129,37
+5130,29
+5131,43
+5132,22
+5135,20
+5136,21
+5137,38
+5138,23
+5139,27
+5140,28
+5141,27
+5142,33
+5143,39
+5145,38
+5146,33
+5147,21
+5148,27
+5149,47
+5150,29
+5151,54
+5152,20
+5153,20
+5154,27
+5155,23
+5156,59
+5157,27
+5158,23
+5159,22
+5160,23
+5161,22
+5162,27
+5163,39
+5164,40
+5165,30
+5166,23
+5167,29
+5168,46
+5169,40
+5170,31
+5171,22
+5172,22
+5173,32
+5174,33
+5175,21
+5177,27
+5178,28
+5179,19
+5181,42
+5183,26
+5184,32
+5185,30
+5186,29
+5187,31
+5188,33
+5189,29
+5190,28
+5191,21
+5192,20
+5193,30
+5194,32
+5195,26
+5196,22
+5197,27
+5198,27
+5199,23
+5201,21
+5202,21
+5203,23
+5204,29
+5205,29
+5206,30
+5207,24
+5208,20
+5209,32
+5210,31
+5211,38
+5212,57
+5213,27
+5214,25
+5215,53
+5216,54
+5218,52
+5219,23
+5220,39
+5221,31
+5222,28
+5223,28
+5224,29
+5225,53
+5226,21
+5227,55
+5228,18
+5229,25
+5230,28
+5231,37
+5232,20
+5233,22
+5234,27
+5235,25
+5236,21
+5238,30
+5240,44
+5241,21
+5242,27
+5244,30
+5245,50
+5246,25
+5247,25
+5248,32
+5249,39
+5250,24
+5251,31
+5252,27
+5253,22
+5254,50
+5255,51
+5256,71
+5258,29
+5259,34
+5260,24
+5261,26
+5263,23
+5264,58
+5266,34
+5267,27
+5268,20
+5269,29
+5270,40
+5271,36
+5272,44
+5273,20
+5274,21
+5275,35
+5276,28
+5277,39
+5278,29
+5279,30
+5280,35
+5282,45
+5283,27
+5284,22
+5286,19
+5287,21
+5288,28
+5290,34
+5291,34
+5292,23
+5293,24
+5294,21
+5295,20
+5296,20
+5297,27
+5298,24
+5299,30
+5300,24
+5301,29
+5302,32
+5304,37
+5305,35
+5306,27
+5307,36
+5308,20
+5309,33
+5310,27
+5311,33
+5312,32
+5313,40
+5315,23
+5316,42
+5317,27
+5318,31
+5319,30
+5320,38
+5321,34
+5322,33
+5323,28
+5324,35
+5325,33
+5326,55
+5327,24
+5328,24
+5329,25
+5330,33
+5331,28
+5332,22
+5333,61
+5334,22
+5335,29
+5336,22
+5337,35
+5338,30
+5339,31
+5340,26
+5341,34
+5342,19
+5343,16
+5344,36
+5346,24
+5347,30
+5348,17
+5349,42
+5350,35
+5351,40
+5352,38
+5353,29
+5354,29
+5355,33
+5356,26
+5357,26
+5360,22
+5361,31
+5362,31
+5363,42
+5364,55
+5365,25
+5366,28
+5367,21
+5368,26
+5369,32
+5370,29
+5371,21
+5372,30
+5373,25
+5374,40
+5375,31
+5376,43
+5377,32
+5378,28
+5379,34
+5380,35
+5381,22
+5382,22
+5383,27
+5384,30
+5385,30
+5386,55
+5387,20
+5388,36
+5389,21
+5390,26
+5392,18
+5393,39
+5394,48
+5395,25
+5396,21
+5397,39
+5399,54
+5400,35
+5401,26
+5402,48
+5403,21
+5404,49
+5406,30
+5407,42
+5408,44
+5409,25
+5410,37
+5411,22
+5412,34
+5413,25
+5415,26
+5416,21
+5418,26
+5419,27
+5420,26
+5422,24
+5423,41
+5424,20
+5425,14
+5426,18
+5427,27
+5428,20
+5430,23
+5431,41
+5432,30
+5433,30
+5435,23
+5436,20
+5437,25
+5438,26
+5440,21
+5441,15
+5442,58
+5443,20
+5444,24
+5445,48
+5446,28
+5447,43
+5448,27
+5449,24
+5450,27
+5451,29
+5452,22
+5453,23
+5454,23
+5455,23
+5457,35
+5458,22
+5460,28
+5461,36
+5462,27
+5463,25
+5464,25
+5465,21
+5466,33
+5467,17
+5468,18
+5469,31
+5470,26
+5471,26
+5472,31
+5473,29
+5474,32
+5475,38
+5476,24
+5478,32
+5479,22
+5480,21
+5482,26
+5483,39
+5484,38
+5485,97
+5486,27
+5487,30
+5488,28
+5489,50
+5490,18
+5491,24
+5492,26
+5493,25
+5494,35
+5495,17
+5496,31
+5497,36
+5498,22
+5499,28
+5500,23
+5501,23
+5502,34
+5503,26
+5505,50
+5506,35
+5507,29
+5508,29
+5509,31
+5510,33
+5511,29
+5512,22
+5513,34
+5514,30
+5515,30
+5516,26
+5517,41
+5519,31
+5520,24
+5521,20
+5522,33
+5523,21
+5524,29
+5525,29
+5526,20
+5527,35
+5528,25
+5529,37
+5530,26
+5531,23
+5532,30
+5533,22
+5534,38
+5535,27
+5536,23
+5537,26
+5538,27
+5539,31
+5541,29
+5542,21
+5543,24
+5544,32
+5545,20
+5546,27
+5548,19
+5549,31
+5550,26
+5552,28
+5553,34
+5554,21
+5555,31
+5556,30
+5557,26
+5558,38
+5559,26
+5560,25
+5561,22
+5562,28
+5563,31
+5564,31
+5565,29
+5566,33
+5567,19
+5568,34
+5569,26
+5570,14
+5573,51
+5574,20
+5575,23
+5576,28
+5577,27
+5578,22
+5579,22
+5580,26
+5581,27
+5582,25
+5583,45
+5584,33
+5585,24
+5586,32
+5587,42
+5588,20
+5589,54
+5590,15
+5591,21
+5592,13
+5593,34
+5594,34
+5595,26
+5596,38
+5597,28
+5598,34
+5599,47
+5600,37
+5601,31
+5602,35
+5603,58
+5604,47
+5605,35
+5606,41
+5607,38
+5608,31
+5609,30
+5610,40
+5611,34
+5612,37
+5613,33
+5614,18
+5615,22
+5616,23
+5618,38
+5619,14
+5620,42
+5621,18
+5622,24
+5623,36
+5624,23
+5625,37
+5626,27
+5627,45
+5628,45
+5629,23
+5630,16
+5631,34
+5632,41
+5634,34
+5636,45
+5637,39
+5639,33
+5640,36
+5641,31
+5642,25
+5643,25
+5644,26
+5645,16
+5647,38
+5648,30
+5649,28
+5650,29
+5651,36
+5652,19
+5653,23
+5654,24
+5655,23
+5656,30
+5657,45
+5658,38
+5660,51
+5661,27
+5662,23
+5663,25
+5664,13
+5665,18
+5666,24
+5667,30
+5668,24
+5669,38
+5670,34
+5671,28
+5672,32
+5673,29
+5675,34
+5676,29
+5677,32
+5678,28
+5679,22
+5680,44
+5681,22
+5683,25
+5684,53
+5685,53
+5686,23
+5687,37
+5691,35
+5692,26
+5693,49
+5694,35
+5695,16
+5696,33
+5697,26
+5698,36
+5699,45
+5700,24
+5702,33
+5703,28
+5704,19
+5705,21
+5706,34
+5707,38
+5708,30
+5709,32
+5710,30
+5711,36
+5712,26
+5713,36
+5714,25
+5715,28
+5716,24
+5717,30
+5718,24
+5719,36
+5720,29
+5721,29
+5722,34
+5723,37
+5724,40
+5725,22
+5726,47
+5727,62
+5728,30
+5729,28
+5730,30
+5731,36
+5732,39
+5733,23
+5734,35
+5736,41
+5737,24
+5738,35
+5739,29
+5740,49
+5741,20
+5742,45
+5743,23
+5744,28
+5745,38
+5746,29
+5747,25
+5748,35
+5749,35
+5750,27
+5751,26
+5752,29
+5753,23
+5754,31
+5755,28
+5756,67
+5757,23
+5759,24
+5760,30
+5761,23
+5762,23
+5763,42
+5764,23
+5765,29
+5766,32
+5767,28
+5768,25
+5769,26
+5771,36
+5772,30
+5773,23
+5774,26
+5775,33
+5776,27
+5777,24
+5778,21
+5779,23
+5780,30
+5782,22
+5783,33
+5784,24
+5785,27
+5786,25
+5787,32
+5788,35
+5789,13
+5790,26
+5791,33
+5792,28
+5793,15
+5794,25
+5796,35
+5797,30
+5798,26
+5800,27
+5801,19
+5802,35
+5803,50
+5804,30
+5805,34
+5806,39
+5807,30
+5808,37
+5811,22
+5812,28
+5813,34
+5814,19
+5815,39
+5816,16
+5817,50
+5818,25
+5819,38
+5820,35
+5821,24
+5822,32
+5825,31
+5826,26
+5827,25
+5828,38
+5829,30
+5830,33
+5832,27
+5834,30
+5835,39
+5837,13
+5838,23
+5839,27
+5841,39
+5842,24
+5843,34
+5844,28
+5845,27
+5846,47
+5847,32
+5848,25
+5849,42
+5850,29
+5851,37
+5852,32
+5853,19
+5854,25
+5855,32
+5856,38
+5857,32
+5858,27
+5859,34
+5860,22
+5861,26
+5862,29
+5864,23
+5865,20
+5866,26
+5868,24
+5869,25
+5870,24
+5872,30
+5874,38
+5875,31
+5876,27
+5877,34
+5878,49
+5879,26
+5880,27
+5881,38
+5882,28
+5883,30
+5884,33
+5885,41
+5886,28
+5887,35
+5888,24
+5889,29
+5890,17
+5891,35
+5892,45
+5893,24
+5894,46
+5895,31
+5896,27
+5897,30
+5898,71
+5899,31
+5900,34
+5901,35
+5902,20
+5903,37
+5904,51
+5905,22
+5906,23
+5907,28
+5908,18
+5909,67
+5910,34
+5911,31
+5912,23
+5913,32
+5915,34
+5916,22
+5917,25
+5918,43
+5919,32
+5920,41
+5921,25
+5922,38
+5923,38
+5924,13
+5925,31
+5926,50
+5927,32
+5928,24
+5929,26
+5930,27
+5931,34
+5932,27
+5933,25
+5934,34
+5935,39
+5936,29
+5937,28
+5938,26
+5939,29
+5940,19
+5941,44
+5942,22
+5943,32
+5944,26
+5945,26
+5946,24
+5948,44
+5949,30
+5950,28
+5951,26
+5952,25
+5953,27
+5954,24
+5955,31
+5956,30
+5957,25
+5958,27
+5960,37
+5961,32
+5962,32
+5963,26
+5964,34
+5966,20
+5967,31
+5969,68
+5970,29
+5971,29
+5972,34
+5973,19
+5974,34
+5975,56
+5976,41
+5977,35
+5978,28
+5979,24
+5982,20
+5983,27
+5984,23
+5985,31
+5986,25
+5987,35
+5988,26
+5989,21
+5990,31
+5993,32
+5994,53
+5995,15
+5996,31
+5997,26
+5998,31
+5999,21
+6000,36
+6001,30
+6002,23
+6003,25
+6005,37
+6006,49
+6007,22
+6008,26
+6009,27
+6010,34
+6011,19
+6012,29
+6013,33
+6015,45
+6016,23
+6017,34
+6019,25
+6020,35
+6022,19
+6023,35
+6026,41
+6027,21
+6028,27
+6029,20
+6030,36
+6031,63
+6032,30
+6033,27
+6034,40
+6035,23
+6036,17
+6037,26
+6039,28
+6040,23
+6041,23
+6042,24
+6044,27
+6045,38
+6046,26
+6047,26
+6048,25
+6049,43
+6050,24
+6051,31
+6052,24
+6053,39
+6054,24
+6055,33
+6056,22
+6057,29
+6058,24
+6059,21
+6060,24
+6061,24
+6062,20
+6063,30
+6064,29
+6065,38
+6066,24
+6067,27
+6068,56
+6069,30
+6070,36
+6071,24
+6075,31
+6076,24
+6077,35
+6079,32
+6080,30
+6081,25
+6082,33
+6084,24
+6085,26
+6086,26
+6087,34
+6088,21
+6089,22
+6090,35
+6091,40
+6093,36
+6094,47
+6095,29
+6096,27
+6097,24
+6098,41
+6099,28
+6101,35
+6102,25
+6103,18
+6104,32
+6105,38
+6106,32
+6107,30
+6108,50
+6109,23
+6111,31
+6112,26
+6113,27
+6114,23
+6115,28
+6116,37
+6117,32
+6118,23
+6119,27
+6120,39
+6121,38
+6122,37
+6123,29
+6124,30
+6125,37
+6126,24
+6127,20
+6128,20
+6129,20
+6131,52
+6132,31
+6133,39
+6134,31
+6135,25
+6136,28
+6139,26
+6141,19
+6142,56
+6145,26
+6146,32
+6147,30
+6148,19
+6149,16
+6150,25
+6151,20
+6152,21
+6154,20
+6155,19
+6156,29
+6157,28
+6158,23
+6159,29
+6160,32
+6162,35
+6163,23
+6164,30
+6165,39
+6166,30
+6167,35
+6168,24
+6169,22
+6170,31
+6171,31
+6172,38
+6173,28
+6174,26
+6175,20
+6177,35
+6178,24
+6179,43
+6180,28
+6181,34
+6182,44
+6183,45
+6184,38
+6185,17
+6186,26
+6187,25
+6188,48
+6190,30
+6191,27
+6192,24
+6193,30
+6194,56
+6195,29
+6196,40
+6197,24
+6198,35
+6199,19
+6200,29
+6201,26
+6202,24
+6203,23
+6204,32
+6205,32
+6206,40
+6207,30
+6209,21
+6210,41
+6211,24
+6212,36
+6213,30
+6214,26
+6217,27
+6219,35
+6220,33
+6221,24
+6222,35
+6224,25
+6225,24
+6226,12
+6227,24
+6228,36
+6229,29
+6230,21
+6231,32
+6232,35
+6233,35
+6235,30
+6236,21
+6237,24
+6238,32
+6239,77
+6240,23
+6241,26
+6242,22
+6243,28
+6244,26
+6245,24
+6246,22
+6247,29
+6248,22
+6249,26
+6250,25
+6251,25
+6253,33
+6255,24
+6256,30
+6257,50
+6259,39
+6260,28
+6261,30
+6262,28
+6263,24
+6264,26
+6265,31
+6266,32
+6267,25
+6268,37
+6269,36
+6270,36
+6273,33
+6274,43
+6275,13
+6277,23
+6278,48
+6279,18
+6280,37
+6281,28
+6282,27
+6284,41
+6285,41
+6286,29
+6287,30
+6288,25
+6289,28
+6290,47
+6291,47
+6292,39
+6293,43
+6295,17
+6296,19
+6297,37
+6299,34
+6300,25
+6301,29
+6302,30
+6303,21
+6304,25
+6305,34
+6306,20
+6307,27
+6308,19
+6309,26
+6310,35
+6311,58
+6312,46
+6313,19
+6315,20
+6316,24
+6318,64
+6319,28
+6320,39
+6321,19
+6322,22
+6323,30
+6324,23
+6325,24
+6326,23
+6327,20
+6328,28
+6329,39
+6331,26
+6332,33
+6333,31
+6335,38
+6336,22
+6338,20
+6339,46
+6340,29
+6341,29
+6344,25
+6345,18
+6346,27
+6347,37
+6348,29
+6350,33
+6351,27
+6352,23
+6353,31
+6354,18
+6355,35
+6356,33
+6357,22
+6358,21
+6359,18
+6360,21
+6362,31
+6363,32
+6364,33
+6365,18
+6366,25
+6367,35
+6368,45
+6369,28
+6370,21
+6371,36
+6373,23
+6374,22
+6375,22
+6376,57
+6377,32
+6378,34
+6379,18
+6381,36
+6383,23
+6384,30
+6385,35
+6386,37
+6387,19
+6388,30
+6389,37
+6390,21
+6391,34
+6392,31
+6393,21
+6394,22
+6395,25
+6396,22
+6397,22
+6398,46
+6399,42
+6400,44
+6401,35
+6402,43
+6403,29
+6404,29
+6405,25
+6406,38
+6407,19
+6408,25
+6409,39
+6411,59
+6412,37
+6413,29
+6414,31
+6415,27
+6416,23
+6418,24
+6419,34
+6420,28
+6421,52
+6422,49
+6423,34
+6424,29
+6426,41
+6427,21
+6428,29
+6429,39
+6430,29
+6431,36
+6432,63
+6433,22
+6434,24
+6435,24
+6436,26
+6437,30
+6438,25
+6439,36
+6440,30
+6441,32
+6442,21
+6443,22
+6444,22
+6445,29
+6446,39
+6447,29
+6448,25
+6449,21
+6450,25
+6451,32
+6452,30
+6453,21
+6454,29
+6455,30
+6457,35
+6458,36
+6459,24
+6461,37
+6463,34
+6466,32
+6467,40
+6468,26
+6470,25
+6471,22
+6472,26
+6473,27
+6474,22
+6475,35
+6476,24
+6478,31
+6479,24
+6480,42
+6482,24
+6483,38
+6484,28
+6485,38
+6486,21
+6487,38
+6488,22
+6489,41
+6490,25
+6491,31
+6492,29
+6493,23
+6494,22
+6495,31
+6496,19
+6498,37
+6499,29
+6502,33
+6503,34
+6504,36
+6505,30
+6506,36
+6507,43
+6508,27
+6509,30
+6510,29
+6511,29
+6512,27
+6513,53
+6515,25
+6516,29
+6517,32
+6518,31
+6519,44
+6520,27
+6521,38
+6524,38
+6526,29
+6527,29
+6528,20
+6529,34
+6530,31
+6532,31
+6533,30
+6534,23
+6535,29
+6537,24
+6538,51
+6539,31
+6540,39
+6541,25
+6542,33
+6543,32
+6544,40
+6546,33
+6547,30
+6548,38
+6549,29
+6550,26
+6552,41
+6553,30
+6554,29
+6555,22
+6556,22
+6557,45
+6558,25
+6560,52
+6561,23
+6562,32
+6565,31
+6566,37
+6567,34
+6569,30
+6570,74
+6571,37
+6572,40
+6573,23
+6574,25
+6576,27
+6577,25
+6578,29
+6579,28
+6580,28
+6582,45
+6583,30
+6584,46
+6585,17
+6586,30
+6587,19
+6588,21
+6589,26
+6590,24
+6592,29
+6595,33
+6596,26
+6597,19
+6598,30
+6599,24
+6600,29
+6601,25
+6602,25
+6603,19
+6604,43
+6605,33
+6606,27
+6607,35
+6608,25
+6609,22
+6610,30
+6611,34
+6612,32
+6613,36
+6614,23
+6615,23
+6616,33
+6617,27
+6618,31
+6619,29
+6620,27
+6621,29
+6622,31
+6623,21
+6625,22
+6626,14
+6627,15
+6628,31
+6629,27
+6630,37
+6631,23
+6632,40
+6633,20
+6634,25
+6635,18
+6637,24
+6638,23
+6640,26
+6641,32
+6642,45
+6643,26
+6644,39
+6645,39
+6646,28
+6647,24
+6648,45
+6650,21
+6652,44
+6653,27
+6654,18
+6655,35
+6656,28
+6657,26
+6658,39
+6659,35
+6660,23
+6661,34
+6662,30
+6663,27
+6664,53
+6665,28
+6666,31
+6667,53
+6668,29
+6669,36
+6670,37
+6671,36
+6672,20
+6673,42
+6675,24
+6676,26
+6677,39
+6678,38
+6679,27
+6680,24
+6682,32
+6683,22
+6685,32
+6686,27
+6687,21
+6688,24
+6689,48
+6690,22
+6691,25
+6692,31
+6693,33
+6694,33
+6695,33
+6696,27
+6697,45
+6698,29
+6699,23
+6700,28
+6701,35
+6702,27
+6703,21
+6704,27
+6705,27
+6706,34
+6707,36
+6708,26
+6709,26
+6710,43
+6711,31
+6712,22
+6714,21
+6715,39
+6716,36
+6717,24
+6718,35
+6719,28
+6720,29
+6721,34
+6722,30
+6723,31
+6724,52
+6725,34
+6727,31
+6728,29
+6729,23
+6730,32
+6733,41
+6735,24
+6736,46
+6737,38
+6738,25
+6739,23
+6740,27
+6741,30
+6742,25
+6744,23
+6746,29
+6747,33
+6749,25
+6752,36
+6753,27
+6754,31
+6755,22
+6756,25
+6757,45
+6758,56
+6759,24
+6760,19
+6761,21
+6762,50
+6763,35
+6765,33
+6766,30
+6767,48
+6768,25
+6769,22
+6771,28
+6772,27
+6774,33
+6775,24
+6776,24
+6777,27
+6778,26
+6779,22
+6780,21
+6781,28
+6782,30
+6783,21
+6784,36
+6785,54
+6786,25
+6787,19
+6788,30
+6790,21
+6791,45
+6792,28
+6793,28
+6794,17
+6795,18
+6796,26
+6797,18
+6798,40
+6799,34
+6800,36
+6801,28
+6802,27
+6803,42
+6804,24
+6805,25
+6806,22
+6807,37
+6808,20
+6809,32
+6810,27
+6811,22
+6812,22
+6813,23
+6814,27
+6816,29
+6817,26
+6818,48
+6819,43
+6820,41
+6822,28
+6823,35
+6824,21
+6825,21
+6826,30
+6827,25
+6828,27
+6829,21
+6830,29
+6831,25
+6832,24
+6833,40
+6834,26
+6836,34
+6837,26
+6838,27
+6840,27
+6841,18
+6843,29
+6844,16
+6845,29
+6846,27
+6847,30
+6848,36
+6849,50
+6850,20
+6851,28
+6852,31
+6853,29
+6854,42
+6855,39
+6856,31
+6857,39
+6858,40
+6859,27
+6860,28
+6861,35
+6862,25
+6863,25
+6865,25
+6867,27
+6868,28
+6869,33
+6870,24
+6871,37
+6872,34
+6874,24
+6875,35
+6877,37
+6878,37
+6879,25
+6880,34
+6881,26
+6882,62
+6883,25
+6884,24
+6886,47
+6887,37
+6888,21
+6889,27
+6890,23
+6891,60
+6892,22
+6893,22
+6894,45
+6895,29
+6896,45
+6898,23
+6899,29
+6901,31
+6902,29
+6903,22
+6904,22
+6905,28
+6906,30
+6907,19
+6908,29
+6909,29
+6910,28
+6911,39
+6912,37
+6913,37
+6914,30
+6917,22
+6918,34
+6919,18
+6920,43
+6921,25
+6922,38
+6923,28
+6924,24
+6925,31
+6926,29
+6927,33
+6928,33
+6929,20
+6930,39
+6931,32
+6932,32
+6933,26
+6934,52
+6936,37
+6937,34
+6938,30
+6939,36
+6940,34
+6941,48
+6943,30
+6944,69
+6945,25
+6946,33
+6949,36
+6951,29
+6952,32
+6953,40
+6954,28
+6955,26
+6956,30
+6957,37
+6959,20
+6960,27
+6961,37
+6962,30
+6963,22
+6964,24
+6965,25
+6966,39
+6967,29
+6968,27
+6969,24
+6970,42
+6972,31
+6973,22
+6974,30
+6975,21
+6976,51
+6977,39
+6978,35
+6979,14
+6980,31
+6981,37
+6982,30
+6983,54
+6984,21
+6985,27
+6986,22
+6988,12
+6989,30
+6990,29
+6991,21
+6992,35
+6993,48
+6994,29
+6995,31
+6996,26
+6997,37
+6998,27
+6999,27
+7000,29
+7001,42
+7002,36
+7003,22
+7004,24
+7005,35
+7006,29
+7007,31
+7008,29
+7009,67
+7010,26
+7011,55
+7012,37
+7013,28
+7014,33
+7015,32
+7017,31
+7019,32
+7021,16
+7022,50
+7023,31
+7024,27
+7025,25
+7026,26
+7027,28
+7029,20
+7030,49
+7031,38
+7032,28
+7033,33
+7035,18
+7036,42
+7037,42
+7038,28
+7039,30
+7040,47
+7041,31
+7042,35
+7043,22
+7044,24
+7045,24
+7046,32
+7047,39
+7049,23
+7050,19
+7051,23
+7052,40
+7053,25
+7055,36
+7056,26
+7057,41
+7059,29
+7060,35
+7061,32
+7062,25
+7063,39
+7064,24
+7065,33
+7066,27
+7067,16
+7068,21
+7070,30
+7071,15
+7072,30
+7073,30
+7074,30
+7076,43
+7077,26
+7078,29
+7080,33
+7081,34
+7082,21
+7083,38
+7084,32
+7085,26
+7086,30
+7087,24
+7088,29
+7090,29
+7091,32
+7093,29
+7095,32
+7096,36
+7097,36
+7098,25
+7099,18
+7100,27
+7102,40
+7103,43
+7104,28
+7105,29
+7106,30
+7107,17
+7108,36
+7109,29
+7110,25
+7112,37
+7113,23
+7114,33
+7116,25
+7117,58
+7118,28
+7119,28
+7120,39
+7121,23
+7122,24
+7123,26
+7124,43
+7125,34
+7126,15
+7127,21
+7128,29
+7129,34
+7130,23
+7131,29
+7132,22
+7134,46
+7135,24
+7136,39
+7137,27
+7138,37
+7139,28
+7140,30
+7141,23
+7142,36
+7143,33
+7144,31
+7145,22
+7146,29
+7147,44
+7148,23
+7150,24
+7151,29
+7152,26
+7153,32
+7154,25
+7155,26
+7156,28
+7158,41
+7161,28
+7162,16
+7163,22
+7164,42
+7165,26
+7166,26
+7167,17
+7168,27
+7169,32
+7170,16
+7171,47
+7172,42
+7173,26
+7174,35
+7175,28
+7177,78
+7178,19
+7179,32
+7180,35
+7181,45
+7182,16
+7183,32
+7184,39
+7185,22
+7186,34
+7187,25
+7188,24
+7189,17
+7190,34
+7191,27
+7192,31
+7193,15
+7194,34
+7195,28
+7197,35
+7198,43
+7199,28
+7200,28
+7201,20
+7202,51
+7203,27
+7204,22
+7205,34
+7206,21
+7208,20
+7209,35
+7210,22
+7211,18
+7212,23
+7213,35
+7214,24
+7215,35
+7216,60
+7217,31
+7218,29
+7219,34
+7220,33
+7222,25
+7223,31
+7224,29
+7225,25
+7226,21
+7227,30
+7228,22
+7229,24
+7231,34
+7232,24
+7233,26
+7234,29
+7235,43
+7238,26
+7239,33
+7241,23
+7242,23
+7243,27
+7244,24
+7245,22
+7246,22
+7247,22
+7248,40
+7249,48
+7250,24
+7251,33
+7252,26
+7253,19
+7254,36
+7255,22
+7257,23
+7258,36
+7259,35
+7260,18
+7261,18
+7262,18
+7263,24
+7264,31
+7265,56
+7266,30
+7267,25
+7268,26
+7269,27
+7270,30
+7271,22
+7272,21
+7273,21
+7274,35
+7275,38
+7276,33
+7277,57
+7278,37
+7279,22
+7280,28
+7281,27
+7282,43
+7283,22
+7284,34
+7285,32
+7287,29
+7288,27
+7289,25
+7291,31
+7292,28
+7293,17
+7294,29
+7295,20
+7296,25
+7297,35
+7298,23
+7299,25
+7300,36
+7301,30
+7302,26
+7303,23
+7304,21
+7305,42
+7306,26
+7307,33
+7308,29
+7309,31
+7310,46
+7311,67
+7312,25
+7313,61
+7314,29
+7315,30
+7316,50
+7317,42
+7318,26
+7319,24
+7320,36
+7321,24
+7322,30
+7323,32
+7325,34
+7326,37
+7327,37
+7328,20
+7329,49
+7330,44
+7331,28
+7332,21
+7333,24
+7334,35
+7335,37
+7337,22
+7338,32
+7339,27
+7340,27
+7341,37
+7342,27
+7344,23
+7345,27
+7347,23
+7348,18
+7349,24
+7350,64
+7351,20
+7352,30
+7354,29
+7355,37
+7356,37
+7357,50
+7358,31
+7359,23
+7360,22
+7361,21
+7362,38
+7364,27
+7365,24
+7366,29
+7367,14
+7369,35
+7370,68
+7371,44
+7372,33
+7374,27
+7375,30
+7376,45
+7377,41
+7379,32
+7380,23
+7381,38
+7382,31
+7383,38
+7384,20
+7385,31
+7386,47
+7387,25
+7388,26
+7389,31
+7390,26
+7391,28
+7392,21
+7393,29
+7394,39
+7395,25
+7396,33
+7397,30
+7398,27
+7399,23
+7401,27
+7402,33
+7403,38
+7404,52
+7405,25
+7406,35
+7407,29
+7408,23
+7409,30
+7410,26
+7411,20
+7412,30
+7413,30
+7414,23
+7415,18
+7416,46
+7417,18
+7418,36
+7419,27
+7420,23
+7421,17
+7422,32
+7423,27
+7424,32
+7425,30
+7426,48
+7428,25
+7429,19
+7430,50
+7431,22
+7432,24
+7433,35
+7434,33
+7435,25
+7436,34
+7437,19
+7439,72
+7440,23
+7441,23
+7442,26
+7443,29
+7444,30
+7445,33
+7446,33
+7447,26
+7448,46
+7449,43
+7450,32
+7451,39
+7452,28
+7453,66
+7454,27
+7455,23
+7456,25
+7457,32
+7458,22
+7459,23
+7460,38
+7462,46
+7463,22
+7464,46
+7465,21
+7466,33
+7467,49
+7468,31
+7469,36
+7470,49
+7472,28
+7473,15
+7474,36
+7475,25
+7476,49
+7477,39
+7479,29
+7480,36
+7481,19
+7482,35
+7483,36
+7484,31
+7486,21
+7487,21
+7489,35
+7490,28
+7491,27
+7492,34
+7493,26
+7494,36
+7495,25
+7496,26
+7497,37
+7498,26
+7499,35
+7500,50
+7501,21
+7502,29
+7503,34
+7507,21
+7508,18
+7509,25
+7510,28
+7512,32
+7513,31
+7514,22
+7515,24
+7516,28
+7517,30
+7518,28
+7519,23
+7520,33
+7521,39
+7523,40
+7524,30
+7525,21
+7526,22
+7527,19
+7530,23
+7531,28
+7532,24
+7533,11
+7534,23
+7535,32
+7536,32
+7537,32
+7538,37
+7539,24
+7540,27
+7541,37
+7543,33
+7544,21
+7545,25
+7546,16
+7547,22
+7548,23
+7549,28
+7550,23
+7551,28
+7552,34
+7553,28
+7554,23
+7555,37
+7556,29
+7557,38
+7558,21
+7559,23
+7560,25
+7561,31
+7562,27
+7563,24
+7564,26
+7565,33
+7566,21
+7567,32
+7568,30
+7569,35
+7570,45
+7571,23
+7574,28
+7575,26
+7576,25
+7577,30
+7578,24
+7579,37
+7580,18
+7581,26
+7582,44
+7583,14
+7584,38
+7585,34
+7586,36
+7587,25
+7588,41
+7591,29
+7592,31
+7593,36
+7595,30
+7596,26
+7597,36
+7598,19
+7599,20
+7600,48
+7601,21
+7602,22
+7603,30
+7604,33
+7605,33
+7607,25
+7608,56
+7609,29
+7610,26
+7611,26
+7612,30
+7613,29
+7615,28
+7616,43
+7617,31
+7618,25
+7619,43
+7620,29
+7621,39
+7622,29
+7623,49
+7624,21
+7625,31
+7626,24
+7627,26
+7628,16
+7629,28
+7630,25
+7631,29
+7632,41
+7633,25
+7634,47
+7635,20
+7636,32
+7637,36
+7638,32
+7639,29
+7640,22
+7641,54
+7642,24
+7643,18
+7644,23
+7645,44
+7646,30
+7647,23
+7648,14
+7649,19
+7650,25
+7651,27
+7652,42
+7653,51
+7654,20
+7655,44
+7656,27
+7657,35
+7658,31
+7659,26
+7660,29
+7662,37
+7663,27
+7664,24
+7665,44
+7666,30
+7668,25
+7669,35
+7670,36
+7671,28
+7672,48
+7673,16
+7674,49
+7675,24
+7676,19
+7677,23
+7679,24
+7680,24
+7681,30
+7682,20
+7683,21
+7684,29
+7685,27
+7686,25
+7687,31
+7688,32
+7689,35
+7690,40
+7691,38
+7692,22
+7694,20
+7696,32
+7698,32
+7699,32
+7700,44
+7702,24
+7704,50
+7705,28
+7706,29
+7707,40
+7708,23
+7709,23
+7710,27
+7711,35
+7712,27
+7713,25
+7714,29
+7715,24
+7716,33
+7717,44
+7718,29
+7719,53
+7720,71
+7721,30
+7722,23
+7723,22
+7724,45
+7725,31
+7726,31
+7727,33
+7728,23
+7729,18
+7730,19
+7731,33
+7732,21
+7734,31
+7735,26
+7736,24
+7737,27
+7738,34
+7739,47
+7742,42
+7743,22
+7744,18
+7745,55
+7746,33
+7747,30
+7748,34
+7749,26
+7751,27
+7752,28
+7753,33
+7754,39
+7755,26
+7757,26
+7758,23
+7760,33
+7762,19
+7764,45
+7766,24
+7767,26
+7768,40
+7769,17
+7770,32
+7772,47
+7773,15
+7775,29
+7776,47
+7777,50
+7778,24
+7779,24
+7782,22
+7783,23
+7785,27
+7786,25
+7787,42
+7788,25
+7789,25
+7790,26
+7791,33
+7792,33
+7793,48
+7794,66
+7795,35
+7796,23
+7797,49
+7798,29
+7799,54
+7800,14
+7801,22
+7802,25
+7803,34
+7804,47
+7805,42
+7806,45
+7807,40
+7808,28
+7809,40
+7810,51
+7811,58
+7812,49
+7813,39
+7814,15
+7815,28
+7816,38
+7817,54
+7818,24
+7819,18
+7820,35
+7821,48
+7822,40
+7823,24
+7824,28
+7825,24
+7827,28
+7828,32
+7829,26
+7830,29
+7831,28
+7832,37
+7833,25
+7835,40
+7836,23
+7837,55
+7839,45
+7840,39
+7841,22
+7842,33
+7844,25
+7845,22
+7846,28
+7847,33
+7848,26
+7849,18
+7850,24
+7852,35
+7853,31
+7854,29
+7855,28
+7856,53
+7857,24
+7858,24
+7859,16
+7860,33
+7861,25
+7862,28
+7863,33
+7864,39
+7865,30
+7866,24
+7867,24
+7868,28
+7869,22
+7870,36
+7871,45
+7872,27
+7873,25
+7874,21
+7876,44
+7877,35
+7878,29
+7879,50
+7880,26
+7881,28
+7882,33
+7883,23
+7884,29
+7885,34
+7887,30
+7888,30
+7889,48
+7890,25
+7891,33
+7892,29
+7893,25
+7894,30
+7895,24
+7896,19
+7897,38
+7898,22
+7900,31
+7901,27
+7902,30
+7903,26
+7907,53
+7909,28
+7910,38
+7911,17
+7913,25
+7914,30
+7915,29
+7916,32
+7917,26
+7918,25
+7919,27
+7920,30
+7921,27
+7922,52
+7923,25
+7924,17
+7925,33
+7926,32
+7927,20
+7928,33
+7929,64
+7930,32
+7931,12
+7932,26
+7933,30
+7934,26
+7935,55
+7936,34
+7937,46
+7938,29
+7939,21
+7940,20
+7941,25
+7942,27
+7943,14
+7944,39
+7945,28
+7946,22
+7947,34
+7948,14
+7949,26
+7950,33
+7951,41
+7952,28
+7953,19
+7954,27
+7955,21
+7956,29
+7957,39
+7958,34
+7959,39
+7960,27
+7962,26
+7963,34
+7964,29
+7965,29
+7966,26
+7967,31
+7968,25
+7969,50
+7971,29
+7972,17
+7973,35
+7975,24
+7976,23
+7977,18
+7978,22
+7979,28
+7980,22
+7982,26
+7983,20
+7984,32
+7985,28
+7986,24
+7987,19
+7988,28
+7989,25
+7990,22
+7992,31
+7993,33
+7994,20
+7995,50
+7996,36
+7998,26
+7999,22
+8000,40
+8001,36
+8002,26
+8003,16
+8004,27
+8005,28
+8006,32
+8007,26
+8008,50
+8009,20
+8010,38
+8012,34
+8013,36
+8014,39
+8016,18
+8017,36
+8018,31
+8019,24
+8020,24
+8021,32
+8023,29
+8024,26
+8025,25
+8026,26
+8029,42
+8030,33
+8031,26
+8032,43
+8033,30
+8034,40
+8035,34
+8036,30
+8037,26
+8038,19
+8039,44
+8041,37
+8042,22
+8043,27
+8044,28
+8045,24
+8046,27
+8047,25
+8048,31
+8049,23
+8050,23
+8051,28
+8053,39
+8054,21
+8055,20
+8056,48
+8059,16
+8060,21
+8062,35
+8063,29
+8064,29
+8067,43
+8068,31
+8069,41
+8070,23
+8071,32
+8072,20
+8073,28
+8074,40
+8076,29
+8077,22
+8078,35
+8079,42
+8080,30
+8082,34
+8083,38
+8084,36
+8085,27
+8086,28
+8087,43
+8088,40
+8089,24
+8090,23
+8091,26
+8093,41
+8094,46
+8095,35
+8096,39
+8097,31
+8098,31
+8100,43
+8101,31
+8102,28
+8103,33
+8104,38
+8105,37
+8106,37
+8107,30
+8108,36
+8109,46
+8111,27
+8112,32
+8113,23
+8115,48
+8116,21
+8117,38
+8118,27
+8119,26
+8121,18
+8122,21
+8123,22
+8125,47
+8126,35
+8128,58
+8129,30
+8131,23
+8132,22
+8133,28
+8134,18
+8135,30
+8136,29
+8137,23
+8138,19
+8139,24
+8140,24
+8141,24
+8142,21
+8143,23
+8144,26
+8145,39
+8146,26
+8147,18
+8148,51
+8149,24
+8151,23
+8152,54
+8153,42
+8154,28
+8155,22
+8156,16
+8157,20
+8158,14
+8159,26
+8160,26
+8161,27
+8162,28
+8163,17
+8166,53
+8167,34
+8168,18
+8169,21
+8170,23
+8171,23
+8172,22
+8173,21
+8174,26
+8175,41
+8176,41
+8177,31
+8178,38
+8179,44
+8180,40
+8181,20
+8182,28
+8183,34
+8184,22
+8186,28
+8187,29
+8188,46
+8189,29
+8190,27
+8192,32
+8193,31
+8194,41
+8195,25
+8196,31
+8197,30
+8198,25
+8199,38
+8200,31
+8201,25
+8202,20
+8204,28
+8205,32
+8206,29
+8207,32
+8208,27
+8209,27
+8210,47
+8211,16
+8212,38
+8213,48
+8214,32
+8215,21
+8216,37
+8217,27
+8218,22
+8219,16
+8221,23
+8222,26
+8223,25
+8224,30
+8225,31
+8226,23
+8227,18
+8228,31
+8230,35
+8231,24
+8232,25
+8233,38
+8234,24
+8235,36
+8236,30
+8237,46
+8238,40
+8239,33
+8240,39
+8241,26
+8242,23
+8243,21
+8245,49
+8246,26
+8247,49
+8248,19
+8250,50
+8251,34
+8252,26
+8253,24
+8254,29
+8256,17
+8257,29
+8258,44
+8259,25
+8260,29
+8261,23
+8262,27
+8263,33
+8264,24
+8265,23
+8266,28
+8267,33
+8269,21
+8270,23
+8271,23
+8272,24
+8273,36
+8275,29
+8276,30
+8277,27
+8278,31
+8279,41
+8281,22
+8282,35
+8283,30
+8284,29
+8285,19
+8286,19
+8287,28
+8288,28
+8289,38
+8290,30
+8291,50
+8293,17
+8294,19
+8295,42
+8296,24
+8297,29
+8298,20
+8299,25
+8301,37
+8302,33
+8303,29
+8304,28
+8305,20
+8306,21
+8307,17
+8308,34
+8309,30
+8312,30
+8313,24
+8314,31
+8315,44
+8316,38
+8317,15
+8318,22
+8319,36
+8320,27
+8321,21
+8322,39
+8323,28
+8324,20
+8325,25
+8326,29
+8327,29
+8328,33
+8329,63
+8330,27
+8331,24
+8332,25
+8334,32
+8335,38
+8336,28
+8337,30
+8338,27
+8339,24
+8340,24
+8342,21
+8343,22
+8344,19
+8345,24
+8346,24
+8347,30
+8348,27
+8349,24
+8350,31
+8351,22
+8352,29
+8353,28
+8354,25
+8355,25
+8356,31
+8357,27
+8358,33
+8359,21
+8360,26
+8361,21
+8364,21
+8367,30
+8368,22
+8370,30
+8371,38
+8372,34
+8374,33
+8375,26
+8376,25
+8378,28
+8379,20
+8380,27
+8382,40
+8383,26
+8384,38
+8385,32
+8386,23
+8388,32
+8389,27
+8390,30
+8392,24
+8393,55
+8394,31
+8395,28
+8396,14
+8397,30
+8398,20
+8399,37
+8400,24
+8401,18
+8402,18
+8404,27
+8405,39
+8406,35
+8407,25
+8408,32
+8409,22
+8410,40
+8411,32
+8412,34
+8413,23
+8414,43
+8415,54
+8416,23
+8417,42
+8418,20
+8419,25
+8420,29
+8421,45
+8422,27
+8423,26
+8424,25
+8425,27
+8426,30
+8427,25
+8428,27
+8429,40
+8431,32
+8433,50
+8434,51
+8435,21
+8436,30
+8438,20
+8439,37
+8440,28
+8441,32
+8442,33
+8443,27
+8444,41
+8445,20
+8446,47
+8447,50
+8448,31
+8449,38
+8450,26
+8451,28
+8452,30
+8453,40
+8454,28
+8455,32
+8456,26
+8457,29
+8458,33
+8459,27
+8460,25
+8461,18
+8462,30
+8463,25
+8464,41
+8465,32
+8466,31
+8467,29
+8468,35
+8469,28
+8470,23
+8471,23
+8472,28
+8473,25
+8474,17
+8475,25
+8476,28
+8478,21
+8479,49
+8480,13
+8481,31
+8482,24
+8483,38
+8484,26
+8485,23
+8486,24
+8487,19
+8488,35
+8489,23
+8490,43
+8491,21
+8493,32
+8494,33
+8495,23
+8496,32
+8497,20
+8498,37
+8499,13
+8500,35
+8501,29
+8502,28
+8503,41
+8504,29
+8505,27
+8506,25
+8507,28
+8508,26
+8509,27
+8510,21
+8511,33
+8513,41
+8514,31
+8517,31
+8518,21
+8519,24
+8522,27
+8523,50
+8524,45
+8525,23
+8526,26
+8527,25
+8529,28
+8530,27
+8531,36
+8532,20
+8533,43
+8534,45
+8535,39
+8536,37
+8537,32
+8538,30
+8539,20
+8540,18
+8541,33
+8542,27
+8543,30
+8544,36
+8545,23
+8547,37
+8548,29
+8549,34
+8550,58
+8551,59
+8552,31
+8553,24
+8555,39
+8556,34
+8557,28
+8558,27
+8560,43
+8561,15
+8562,32
+8563,23
+8564,39
+8565,21
+8567,28
+8568,30
+8569,43
+8570,29
+8571,27
+8572,39
+8573,26
+8574,28
+8575,47
+8576,34
+8577,16
+8578,26
+8579,25
+8580,30
+8581,34
+8583,25
+8584,28
+8585,24
+8586,33
+8589,30
+8590,34
+8591,76
+8592,35
+8593,32
+8594,23
+8595,27
+8596,25
+8597,37
+8600,23
+8601,23
+8602,23
+8603,27
+8604,20
+8605,25
+8606,23
+8607,29
+8608,26
+8609,31
+8610,24
+8611,28
+8613,27
+8614,35
+8615,31
+8616,24
+8617,24
+8618,36
+8619,26
+8620,21
+8621,26
+8623,24
+8625,24
+8626,23
+8627,23
+8628,27
+8630,22
+8631,26
+8632,37
+8634,29
+8635,42
+8637,21
+8638,46
+8639,44
+8640,33
+8641,34
+8642,25
+8643,38
+8645,25
+8646,34
+8647,29
+8648,20
+8649,30
+8650,33
+8651,25
+8652,33
+8653,25
+8654,25
+8655,27
+8656,22
+8657,30
+8658,30
+8659,35
+8661,20
+8662,31
+8663,24
+8664,32
+8665,36
+8666,25
+8667,14
+8668,25
+8669,34
+8670,32
+8671,22
+8672,23
+8673,33
+8674,30
+8675,38
+8676,27
+8677,30
+8678,26
+8679,15
+8680,24
+8681,18
+8682,27
+8683,37
+8685,24
+8687,67
+8688,28
+8689,27
+8690,32
+8691,38
+8692,33
+8693,19
+8694,29
+8695,22
+8696,26
+8697,56
+8698,36
+8699,26
+8700,44
+8702,22
+8705,26
+8706,27
+8707,25
+8709,31
+8710,21
+8711,15
+8712,32
+8713,25
+8714,24
+8715,31
+8716,24
+8717,26
+8718,25
+8720,54
+8721,29
+8722,50
+8723,31
+8724,24
+8725,22
+8726,32
+8727,44
+8728,32
+8729,26
+8730,21
+8732,46
+8733,23
+8734,27
+8735,23
+8736,33
+8737,31
+8738,52
+8739,30
+8740,32
+8741,38
+8742,40
+8744,42
+8746,56
+8747,31
+8748,42
+8749,26
+8750,36
+8751,24
+8752,27
+8753,29
+8754,25
+8755,27
+8757,26
+8758,27
+8759,38
+8760,26
+8761,23
+8762,24
+8763,26
+8764,29
+8765,53
+8766,26
+8767,22
+8768,30
+8769,17
+8771,31
+8772,24
+8774,27
+8775,34
+8776,27
+8777,29
+8778,37
+8779,44
+8780,38
+8781,31
+8783,30
+8784,28
+8785,29
+8786,29
+8787,34
+8788,35
+8789,37
+8790,24
+8791,32
+8792,23
+8794,28
+8795,33
+8796,47
+8797,35
+8798,34
+8799,57
+8800,15
+8801,25
+8802,24
+8803,25
+8805,35
+8806,30
+8807,36
+8808,49
+8809,24
+8810,27
+8811,17
+8812,21
+8813,25
+8814,52
+8815,31
+8816,18
+8817,44
+8818,21
+8819,15
+8820,36
+8821,44
+8822,30
+8823,27
+8824,22
+8825,31
+8826,43
+8827,24
+8828,46
+8829,20
+8830,33
+8831,29
+8832,39
+8833,31
+8834,21
+8835,19
+8836,51
+8838,38
+8839,24
+8840,10
+8841,22
+8842,32
+8843,23
+8844,33
+8845,32
+8846,29
+8848,37
+8849,23
+8850,34
+8851,36
+8852,27
+8853,26
+8854,38
+8855,40
+8856,28
+8857,44
+8858,55
+8859,22
+8860,20
+8861,31
+8862,17
+8863,24
+8864,25
+8865,56
+8867,51
+8868,53
+8869,26
+8870,18
+8871,31
+8872,28
+8874,32
+8875,33
+8876,26
+8877,29
+8878,33
+8879,21
+8880,37
+8881,65
+8882,24
+8883,33
+8884,26
+8885,24
+8886,27
+8887,45
+8888,36
+8889,32
+8890,45
+8891,36
+8892,17
+8893,34
+8894,27
+8895,44
+8896,23
+8897,22
+8898,37
+8899,37
+8900,24
+8901,37
+8902,25
+8903,55
+8904,21
+8905,24
+8906,25
+8907,28
+8908,28
+8909,26
+8910,28
+8911,36
+8913,32
+8914,36
+8915,52
+8917,63
+8919,23
+8920,23
+8921,31
+8922,37
+8923,27
+8924,25
+8925,56
+8926,47
+8927,29
+8928,46
+8929,19
+8930,23
+8931,24
+8932,27
+8934,30
+8936,35
+8937,40
+8938,34
+8939,22
+8941,18
+8943,19
+8944,31
+8945,31
+8946,26
+8948,34
+8949,23
+8950,20
+8951,22
+8952,54
+8955,29
+8956,70
+8957,29
+8958,25
+8959,28
+8961,33
+8962,23
+8963,35
+8964,24
+8965,22
+8966,21
+8967,38
+8968,31
+8969,22
+8970,31
+8971,28
+8972,23
+8973,33
+8974,48
+8975,30
+8976,25
+8977,24
+8978,43
+8979,32
+8980,28
+8981,13
+8982,39
+8983,28
+8984,33
+8985,36
+8986,29
+8987,24
+8988,23
+8989,28
+8991,23
+8992,31
+8993,40
+8994,30
+8995,24
+8996,33
+8997,45
+8998,25
+8999,24
+9000,27
+9001,38
+9002,46
+9003,24
+9004,19
+9005,21
+9006,33
+9007,26
+9008,32
+9009,48
+9010,54
+9011,21
+9012,26
+9013,33
+9014,21
+9015,28
+9016,24
+9017,30
+9018,17
+9019,31
+9020,39
+9021,48
+9023,24
+9024,26
+9026,24
+9027,27
+9028,29
+9030,32
+9031,30
+9032,38
+9033,24
+9034,73
+9035,25
+9036,27
+9037,23
+9038,45
+9039,34
+9040,40
+9041,19
+9042,59
+9043,24
+9046,21
+9047,21
+9048,30
+9049,36
+9050,16
+9051,27
+9052,45
+9053,26
+9054,26
+9055,24
+9056,31
+9058,34
+9059,40
+9060,33
+9061,44
+9063,32
+9065,30
+9066,22
+9067,18
+9068,36
+9069,27
+9070,44
+9071,22
+9072,46
+9073,30
+9074,28
+9076,23
+9077,22
+9078,24
+9079,54
+9080,39
+9081,33
+9082,19
+9084,22
+9085,22
+9086,31
+9087,28
+9088,34
+9089,25
+9090,20
+9091,33
+9092,19
+9093,30
+9094,39
+9095,42
+9096,30
+9097,25
+9098,24
+9099,40
+9100,29
+9101,45
+9102,21
+9103,25
+9104,24
+9105,44
+9106,39
+9107,21
+9108,27
+9110,65
+9111,28
+9112,21
+9113,39
+9114,38
+9116,29
+9117,33
+9118,28
+9119,46
+9120,25
+9121,32
+9122,20
+9123,48
+9124,23
+9125,35
+9126,36
+9127,22
+9128,25
+9129,60
+9130,42
+9131,27
+9132,23
+9133,26
+9134,34
+9135,18
+9136,31
+9137,23
+9138,75
+9139,23
+9140,29
+9141,24
+9142,26
+9143,32
+9144,43
+9145,22
+9146,20
+9147,32
+9148,28
+9149,36
+9150,35
+9151,22
+9152,25
+9153,37
+9155,29
+9156,30
+9157,29
+9158,23
+9159,27
+9160,26
+9162,28
+9163,26
+9165,27
+9166,53
+9167,27
+9168,14
+9169,44
+9170,22
+9171,25
+9172,31
+9173,36
+9174,52
+9175,14
+9176,43
+9177,28
+9178,43
+9180,37
+9182,37
+9183,22
+9184,34
+9186,26
+9187,34
+9188,34
+9189,40
+9190,25
+9192,15
+9193,25
+9194,21
+9195,38
+9196,29
+9197,28
+9198,21
+9199,18
+9200,13
+9201,35
+9202,24
+9203,27
+9204,44
+9205,24
+9206,31
+9207,30
+9208,27
+9209,26
+9210,32
+9211,31
+9212,23
+9213,63
+9214,20
+9215,30
+9216,25
+9217,14
+9218,30
+9219,30
+9220,21
+9221,38
+9222,28
+9223,29
+9224,39
+9225,30
+9226,32
+9228,29
+9230,25
+9231,23
+9232,53
+9233,29
+9234,28
+9235,25
+9236,27
+9237,30
+9238,47
+9239,31
+9240,34
+9242,40
+9243,28
+9244,30
+9245,33
+9246,42
+9247,23
+9248,25
+9249,29
+9250,28
+9252,53
+9253,24
+9255,29
+9256,25
+9257,25
+9259,28
+9260,39
+9261,27
+9262,23
+9263,38
+9264,23
+9265,54
+9266,27
+9267,22
+9268,31
+9269,21
+9270,21
+9271,25
+9272,56
+9273,40
+9274,18
+9275,29
+9276,24
+9277,22
+9278,19
+9279,34
+9280,21
+9281,18
+9282,32
+9283,23
+9284,30
+9285,16
+9286,21
+9287,44
+9288,43
+9289,18
+9290,39
+9291,20
+9292,33
+9293,28
+9294,24
+9295,17
+9297,39
+9298,23
+9299,25
+9300,35
+9301,47
+9302,32
+9303,32
+9304,31
+9305,27
+9306,29
+9307,29
+9308,35
+9309,23
+9311,26
+9312,36
+9313,30
+9314,26
+9315,21
+9316,34
+9318,24
+9319,35
+9320,35
+9321,26
+9322,25
+9323,30
+9325,14
+9326,41
+9327,44
+9328,22
+9329,43
+9330,43
+9332,24
+9333,22
+9334,34
+9335,31
+9336,21
+9337,33
+9338,37
+9339,38
+9340,18
+9341,23
+9342,28
+9343,42
+9345,38
+9346,30
+9347,23
+9348,35
+9349,29
+9350,28
+9351,25
+9352,50
+9353,27
+9355,19
+9357,39
+9358,49
+9359,23
+9360,26
+9361,33
+9362,33
+9363,26
+9364,29
+9365,26
+9366,32
+9367,25
+9369,39
+9370,22
+9371,27
+9372,31
+9373,26
+9375,29
+9376,33
+9377,32
+9378,22
+9379,32
+9381,21
+9382,24
+9383,26
+9384,27
+9385,40
+9386,30
+9387,25
+9388,31
+9389,21
+9390,56
+9391,22
+9393,27
+9394,38
+9395,22
+9396,20
+9397,23
+9398,24
+9399,39
+9401,24
+9402,31
+9404,52
+9405,21
+9406,35
+9407,29
+9408,60
+9409,28
+9410,22
+9411,32
+9412,24
+9413,27
+9414,32
+9415,42
+9416,36
+9417,15
+9418,23
+9419,26
+9420,24
+9421,38
+9422,41
+9423,57
+9424,40
+9425,28
+9426,26
+9427,23
+9428,27
+9429,35
+9430,27
+9431,40
+9432,16
+9434,37
+9435,35
+9436,27
+9437,36
+9438,30
+9439,32
+9440,56
+9441,23
+9442,25
+9443,23
+9444,16
+9445,38
+9446,21
+9447,42
+9448,29
+9449,20
+9451,39
+9452,23
+9454,23
+9455,28
+9456,25
+9457,33
+9458,27
+9459,26
+9460,28
+9461,22
+9462,27
+9463,38
+9464,24
+9465,35
+9467,29
+9468,23
+9469,29
+9470,30
+9471,27
+9472,56
+9473,30
+9474,41
+9475,26
+9477,33
+9478,30
+9479,22
+9480,40
+9481,40
+9482,33
+9483,12
+9485,30
+9486,28
+9487,27
+9488,25
+9489,35
+9491,21
+9492,36
+9493,44
+9494,23
+9495,27
+9496,22
+9497,35
+9499,21
+9500,30
+9501,30
+9502,29
+9503,39
+9504,31
+9506,23
+9507,29
+9508,25
+9509,35
+9510,35
+9511,36
+9512,44
+9513,26
+9514,22
+9515,43
+9516,41
+9517,35
+9518,23
+9519,49
+9520,36
+9521,24
+9522,34
+9523,24
+9524,22
+9525,35
+9526,36
+9527,23
+9528,26
+9529,42
+9531,24
+9532,26
+9534,20
+9535,35
+9536,35
+9537,29
+9538,35
+9539,31
+9540,39
+9541,32
+9542,29
+9543,52
+9544,29
+9545,14
+9546,32
+9548,38
+9549,23
+9550,29
+9551,35
+9552,35
+9553,24
+9554,28
+9556,41
+9557,38
+9559,34
+9560,23
+9561,39
+9562,38
+9563,46
+9564,31
+9565,29
+9566,32
+9567,30
+9568,25
+9569,23
+9570,24
+9571,22
+9572,25
+9573,28
+9574,30
+9575,33
+9576,19
+9577,24
+9578,40
+9579,38
+9580,25
+9581,33
+9582,15
+9583,25
+9584,33
+9585,37
+9586,21
+9587,26
+9588,26
+9591,30
+9592,58
+9593,20
+9594,27
+9595,20
+9596,21
+9597,25
+9598,25
+9599,21
+9600,22
+9601,38
+9602,50
+9604,27
+9605,72
+9606,22
+9607,38
+9608,25
+9609,28
+9610,23
+9611,21
+9614,36
+9615,28
+9616,30
+9617,33
+9618,32
+9619,22
+9620,59
+9621,26
+9622,34
+9623,19
+9624,23
+9625,31
+9626,31
+9627,36
+9628,35
+9629,19
+9630,58
+9631,27
+9632,26
+9633,37
+9634,23
+9635,26
+9636,28
+9637,32
+9638,49
+9639,30
+9640,16
+9641,20
+9642,53
+9645,45
+9646,27
+9647,31
+9648,42
+9649,27
+9650,29
+9651,30
+9652,26
+9653,39
+9654,1
+9655,20
+9656,19
+9657,23
+9658,28
+9659,26
+9660,48
+9661,37
+9662,26
+9663,23
+9664,29
+9666,24
+9667,45
+9668,31
+9669,34
+9670,24
+9671,25
+9672,40
+9673,50
+9674,23
+9675,33
+9676,24
+9677,28
+9678,35
+9679,34
+9680,63
+9681,39
+9682,24
+9683,22
+9684,21
+9686,24
+9687,23
+9688,28
+9690,36
+9691,50
+9692,30
+9693,33
+9694,39
+9695,27
+9696,24
+9697,36
+9698,23
+9699,25
+9700,54
+9701,24
+9702,36
+9703,28
+9704,48
+9705,36
+9706,28
+9707,35
+9708,23
+9709,20
+9710,39
+9711,29
+9712,24
+9713,31
+9715,27
+9716,31
+9717,23
+9718,57
+9719,45
+9720,27
+9721,48
+9722,29
+9723,22
+9724,15
+9725,23
+9726,49
+9727,23
+9728,29
+9729,33
+9730,22
+9731,23
+9732,34
+9734,29
+9735,20
+9736,32
+9738,26
+9739,27
+9740,23
+9741,32
+9742,30
+9743,30
+9744,27
+9745,27
+9746,26
+9747,26
+9748,20
+9750,23
+9751,26
+9752,39
+9753,38
+9754,41
+9755,39
+9756,23
+9757,30
+9758,24
+9759,23
+9760,44
+9761,30
+9762,26
+9763,36
+9764,29
+9765,41
+9766,37
+9767,29
+9768,56
+9769,16
+9770,39
+9771,32
+9772,32
+9773,31
+9774,23
+9776,49
+9777,34
+9778,27
+9779,38
+9780,24
+9781,28
+9782,19
+9783,32
+9784,20
+9785,29
+9786,29
+9787,27
+9788,34
+9789,20
+9790,25
+9791,24
+9793,29
+9794,20
+9795,27
+9797,30
+9799,36
+9800,33
+9801,19
+9802,25
+9803,37
+9804,29
+9806,30
+9807,35
+9808,33
+9809,28
+9810,29
+9811,48
+9812,50
+9813,37
+9814,31
+9815,28
+9817,25
+9818,33
+9819,27
+9820,31
+9821,31
+9822,39
+9823,24
+9824,30
+9825,21
+9826,26
+9827,28
+9829,26
+9830,22
+9831,26
+9832,20
+9833,99
+9834,19
+9835,54
+9836,20
+9837,17
+9838,29
+9839,32
+9840,33
+9841,31
+9842,26
+9843,18
+9844,22
+9845,39
+9846,32
+9847,55
+9848,46
+9849,24
+9850,43
+9851,39
+9852,22
+9853,18
+9854,33
+9855,23
+9856,18
+9857,20
+9858,22
+9859,28
+9860,28
+9861,24
+9863,26
+9864,21
+9865,33
+9866,35
+9867,32
+9868,14
+9869,36
+9870,25
+9872,19
+9873,29
+9874,30
+9875,20
+9876,52
+9877,32
+9878,27
+9879,23
+9880,33
+9882,27
+9883,38
+9884,32
+9885,39
+9886,30
+9887,30
+9888,30
+9889,28
+9890,35
+9892,37
+9893,58
+9894,24
+9895,17
+9896,23
+9897,26
+9898,23
+9899,33
+9900,28
+9902,37
+9903,43
+9904,36
+9905,22
+9906,60
+9907,25
+9908,28
+9909,24
+9910,36
+9911,28
+9914,24
+9915,31
+9916,38
+9918,43
+9919,42
+9920,39
+9921,31
+9922,20
+9923,24
+9924,47
+9925,31
+9926,24
+9927,22
+9928,20
+9929,32
+9930,26
+9931,26
+9933,27
+9934,28
+9935,35
+9936,24
+9937,32
+9939,36
+9940,39
+9941,26
+9942,44
+9943,24
+9944,28
+9945,21
+9946,23
+9947,31
+9948,24
+9949,40
+9950,39
+9951,25
+9953,25
+9954,31
+9955,37
+9957,27
+9959,50
+9960,36
+9961,15
+9962,19
+9964,70
+9965,30
+9966,34
+9967,44
+9968,34
+9969,27
+9970,20
+9971,49
+9972,28
+9973,25
+9974,29
+9975,24
+9977,23
+9978,36
+9979,30
+9980,27
+9983,35
+9984,21
+9985,32
+9986,33
+9987,24
+9989,27
+9990,32
+9992,52
+9993,22
+9994,44
+9995,31
+9996,22
+9998,20
+9999,27
+10000,22
+10001,30
+10002,32
+10003,25
+10004,28
+10005,28
+10006,26
+10007,28
+10008,14
+10009,27
+10010,34
+10011,25
+10013,17
+10014,30
+10015,59
+10016,42
+10017,25
+10019,36
+10020,35
+10021,23
+10022,40
+10023,23
+10024,24
+10025,25
+10026,28
+10027,32
+10028,33
+10029,38
+10030,27
+10031,28
+10032,30
+10033,25
+10034,24
+10035,22
+10036,33
+10037,27
+10038,53
+10039,25
+10040,28
+10041,28
+10042,39
+10043,25
+10044,22
+10045,37
+10046,24
+10048,33
+10049,25
+10050,23
+10051,37
+10052,45
+10055,44
+10056,29
+10057,24
+10058,24
+10059,30
+10060,30
+10061,22
+10062,47
+10063,34
+10064,27
+10065,42
+10066,40
+10067,27
+10068,30
+10069,34
+10070,32
+10071,53
+10072,18
+10073,34
+10074,54
+10075,20
+10077,26
+10078,28
+10079,33
+10080,15
+10081,49
+10082,34
+10083,39
+10084,23
+10085,71
+10086,26
+10087,29
+10088,21
+10089,26
+10091,19
+10092,48
+10093,27
+10095,28
+10096,21
+10097,34
+10100,24
+10101,39
+10102,28
+10103,39
+10104,23
+10105,21
+10106,67
+10107,26
+10108,33
+10109,28
+10110,27
+10111,49
+10112,19
+10113,42
+10114,28
+10115,21
+10116,75
+10117,25
+10118,43
+10119,20
+10120,39
+10121,36
+10122,42
+10123,30
+10124,32
+10125,38
+10126,42
+10127,24
+10128,34
+10129,26
+10130,39
+10131,28
+10132,30
+10133,30
+10134,22
+10135,25
+10136,52
+10137,48
+10138,28
+10139,13
+10140,27
+10141,31
+10143,19
+10144,33
+10145,24
+10147,22
+10148,30
+10149,28
+10151,23
+10152,55
+10153,32
+10154,29
+10155,31
+10156,32
+10157,30
+10158,23
+10159,39
+10161,37
+10162,26
+10163,35
+10164,25
+10165,20
+10166,28
+10167,40
+10168,45
+10169,26
+10170,19
+10171,29
+10172,22
+10173,37
+10174,56
+10175,46
+10176,53
+10177,20
+10178,39
+10180,35
+10181,14
+10182,31
+10183,28
+10184,24
+10185,29
+10186,25
+10187,22
+10188,26
+10189,50
+10190,24
+10191,38
+10192,30
+10193,34
+10194,25
+10195,35
+10196,23
+10197,39
+10198,22
+10199,47
+10200,22
+10202,42
+10203,31
+10204,34
+10205,21
+10206,33
+10207,20
+10208,28
+10209,38
+10210,31
+10211,29
+10212,31
+10213,29
+10215,26
+10216,29
+10217,27
+10218,29
+10219,24
+10220,23
+10221,39
+10222,25
+10223,35
+10225,28
+10226,24
+10227,52
+10228,32
+10229,27
+10230,41
+10231,27
+10232,26
+10233,25
+10234,19
+10236,52
+10238,27
+10239,20
+10240,20
+10241,24
+10243,46
+10244,42
+10245,24
+10246,28
+10247,39
+10248,29
+10249,34
+10251,36
+10252,22
+10253,35
+10255,22
+10256,43
+10257,29
+10258,29
+10259,19
+10260,21
+10261,25
+10262,30
+10263,22
+10264,30
+10265,42
+10266,25
+10267,17
+10268,27
+10270,19
+10271,29
+10272,36
+10273,30
+10274,18
+10275,22
+10277,33
+10278,16
+10280,28
+10281,28
+10282,31
+10283,27
+10284,19
+10285,22
+10286,54
+10287,29
+10288,37
+10289,20
+10290,39
+10291,21
+10292,26
+10293,25
+10294,29
+10295,30
+10297,30
+10299,24
+10301,26
+10302,33
+10303,25
+10304,21
+10305,26
+10306,27
+10307,25
+10308,15
+10309,30
+10311,17
+10312,32
+10313,28
+10315,39
+10316,24
+10317,14
+10318,31
+10319,32
+10320,14
+10321,29
+10322,24
+10323,20
+10324,38
+10325,24
+10326,37
+10327,29
+10328,28
+10329,39
+10330,30
+10331,20
+10332,20
+10334,24
+10335,22
+10336,21
+10338,27
+10339,44
+10340,33
+10341,21
+10342,25
+10343,24
+10344,65
+10345,28
+10346,21
+10347,46
+10348,28
+10349,30
+10350,31
+10351,27
+10352,57
+10353,26
+10354,21
+10355,45
+10356,23
+10357,37
+10358,21
+10359,38
+10360,24
+10361,28
+10362,30
+10363,22
+10364,56
+10365,34
+10367,31
+10368,51
+10369,21
+10370,22
+10371,23
+10372,34
+10373,57
+10374,38
+10375,18
+10376,41
+10377,25
+10378,24
+10379,29
+10380,59
+10381,32
+10382,24
+10383,30
+10384,38
+10385,31
+10386,30
+10387,26
+10388,50
+10389,16
+10391,22
+10392,28
+10393,23
+10394,24
+10395,27
+10396,36
+10398,44
+10399,28
+10400,21
+10403,56
+10404,24
+10405,33
+10407,23
+10408,27
+10410,35
+10411,36
+10412,35
+10413,27
+10414,28
+10415,44
+10416,33
+10417,35
+10418,35
+10419,39
+10420,24
+10422,24
+10423,34
+10424,25
+10425,24
+10426,52
+10427,26
+10428,34
+10429,36
+10430,31
+10431,34
+10432,28
+10433,34
+10434,19
+10436,26
+10437,31
+10438,39
+10439,22
+10440,22
+10442,35
+10443,34
+10444,28
+10445,24
+10446,37
+10447,55
+10448,36
+10449,26
+10450,30
+10451,43
+10452,21
+10453,26
+10454,26
+10455,39
+10456,34
+10457,52
+10458,31
+10459,20
+10460,26
+10461,33
+10462,34
+10463,42
+10465,27
+10466,24
+10467,23
+10468,25
+10469,27
+10470,18
+10471,29
+10472,25
+10473,35
+10474,27
+10475,28
+10476,27
+10477,26
+10478,49
+10480,47
+10481,32
+10482,33
+10483,30
+10484,27
+10485,29
+10486,23
+10487,32
+10488,38
+10490,29
+10491,23
+10492,21
+10493,33
+10494,22
+10495,19
+10496,28
+10497,15
+10498,25
+10499,24
+10500,22
+10502,28
+10503,27
+10504,41
+10505,31
+10506,48
+10507,31
+10508,56
+10509,35
+10510,31
+10511,26
+10512,45
+10514,29
+10515,33
+10516,32
+10517,25
+10518,18
+10519,41
+10520,29
+10521,32
+10524,31
+10525,28
+10526,23
+10528,30
+10529,26
+10530,25
+10531,30
+10532,41
+10533,29
+10534,21
+10535,24
+10536,21
+10537,12
+10538,27
+10539,25
+10540,21
+10541,23
+10542,24
+10543,31
+10544,16
+10545,28
+10546,30
+10547,27
+10548,29
+10549,24
+10550,28
+10551,32
+10553,24
+10554,21
+10556,20
+10557,25
+10558,31
+10559,41
+10562,40
+10563,21
+10564,40
+10566,37
+10567,29
+10568,19
+10569,22
+10570,23
+10571,38
+10572,13
+10574,24
+10575,28
+10576,23
+10577,19
+10578,22
+10579,40
+10580,25
+10581,27
+10582,24
+10583,34
+10584,24
+10585,28
+10586,44
+10587,30
+10588,26
+10589,36
+10590,27
+10591,35
+10592,28
+10594,34
+10595,34
+10596,42
+10597,27
+10598,33
+10600,30
+10601,37
+10602,29
+10603,32
+10604,20
+10605,44
+10606,22
+10607,32
+10609,36
+10610,23
+10611,25
+10612,27
+10613,30
+10614,31
+10615,24
+10616,28
+10617,25
+10618,29
+10619,21
+10621,50
+10622,29
+10623,44
+10624,27
+10625,35
+10626,44
+10627,48
+10628,36
+10629,21
+10630,27
+10631,30
+10632,26
+10634,21
+10635,36
+10637,23
+10638,15
+10639,49
+10640,37
+10641,25
+10643,26
+10644,36
+10645,20
+10646,27
+10647,29
+10648,46
+10649,38
+10650,14
+10651,40
+10652,54
+10653,22
+10654,58
+10655,22
+10656,33
+10657,29
+10658,52
+10659,14
+10660,23
+10661,29
+10663,28
+10664,14
+10665,32
+10666,28
+10667,20
+10668,25
+10669,36
+10670,27
+10671,30
+10672,24
+10673,21
+10674,28
+10675,37
+10676,34
+10677,14
+10678,29
+10679,32
+10680,35
+10681,26
+10682,33
+10683,20
+10684,29
+10685,16
+10686,24
+10687,59
+10689,25
+10690,29
+10691,28
+10692,32
+10694,23
+10695,41
+10696,48
+10698,21
+10699,27
+10700,41
+10701,26
+10703,36
+10704,36
+10705,25
+10707,23
+10711,38
+10712,26
+10713,32
+10714,28
+10715,27
+10716,28
+10717,23
+10718,53
+10719,33
+10720,34
+10721,30
+10722,13
+10723,36
+10725,19
+10726,40
+10727,35
+10728,27
+10730,31
+10731,20
+10732,25
+10733,21
+10734,22
+10736,23
+10737,38
+10738,14
+10739,27
+10740,32
+10741,27
+10742,34
+10743,32
+10744,26
+10745,31
+10746,24
+10747,38
+10748,38
+10749,27
+10750,30
+10751,37
+10752,28
+10753,27
+10754,33
+10756,28
+10759,30
+10760,37
+10761,40
+10762,30
+10764,26
+10765,23
+10766,27
+10767,24
+10768,33
+10769,30
+10770,19
+10771,25
+10772,22
+10773,38
+10774,31
+10775,31
+10776,25
+10777,15
+10778,24
+10779,18
+10780,30
+10781,23
+10782,29
+10783,21
+10784,46
+10785,36
+10786,24
+10787,33
+10788,42
+10790,28
+10791,31
+10792,37
+10793,37
+10794,23
+10796,34
+10797,23
+10798,48
+10799,24
+10800,34
+10801,12
+10803,23
+10804,24
+10805,45
+10806,24
+10807,48
+10808,36
+10810,26
+10811,25
+10812,24
+10813,30
+10814,25
+10816,18
+10819,44
+10821,32
+10822,33
+10823,20
+10824,21
+10826,41
+10827,26
+10828,30
+10829,48
+10830,23
+10831,20
+10832,37
+10833,45
+10834,20
+10835,26
+10836,27
+10837,28
+10838,20
+10840,29
+10841,31
+10842,32
+10843,33
+10844,31
+10845,23
+10846,20
+10847,39
+10848,37
+10849,23
+10850,19
+10851,35
+10852,29
+10853,23
+10854,24
+10855,47
+10856,30
+10857,21
+10859,42
+10860,19
+10861,32
+10862,33
+10863,31
+10864,25
+10866,31
+10868,22
+10869,24
+10870,30
+10871,30
+10873,18
+10874,23
+10875,21
+10876,25
+10877,29
+10878,26
+10879,16
+10880,23
+10881,33
+10882,29
+10883,23
+10884,47
+10885,15
+10886,24
+10887,37
+10889,30
+10890,34
+10891,36
+10892,58
+10893,50
+10894,24
+10895,25
+10896,25
+10897,22
+10898,37
+10899,24
+10900,28
+10901,38
+10902,18
+10903,19
+10904,37
+10905,31
+10906,32
+10907,28
+10908,32
+10909,28
+10910,25
+10911,28
+10912,26
+10913,32
+10914,49
+10916,25
+10917,29
+10918,39
+10919,44
+10920,22
+10922,45
+10923,36
+10924,36
+10927,26
+10928,31
+10929,46
+10930,27
+10931,30
+10932,24
+10933,17
+10934,43
+10935,23
+10936,25
+10937,30
+10938,29
+10939,57
+10940,24
+10941,46
+10942,25
+10943,32
+10944,26
+10945,49
+10946,35
+10947,38
+10948,26
+10949,18
+10950,58
+10951,26
+10952,30
+10953,24
+10954,32
+10955,36
+10957,44
+10959,23
+10960,26
+10961,25
+10962,33
+10963,32
+10964,21
+10965,24
+10966,33
+10967,35
+10968,36
+10969,33
+10970,31
+10971,22
+10972,33
+10973,50
+10974,42
+10975,22
+10976,26
+10977,37
+10978,28
+10979,26
+10980,36
+10981,25
+10982,39
+10984,27
+10985,25
+10986,41
+10987,26
+10988,26
+10989,23
+10990,36
+10992,25
+10993,27
+10994,23
+10995,20
+10996,41
+10997,29
+10999,23
+11000,26
+11001,25
+11002,17
+11004,21
+11005,33
+11006,31
+11007,28
+11008,46
+11009,28
+11011,25
+11012,32
+11013,17
+11014,30
+11015,36
+11016,34
+11017,26
+11019,29
+11022,31
+11023,26
+11024,22
+11025,24
+11026,29
+11027,26
+11028,22
+11029,21
+11030,37
+11031,28
+11032,23
+11033,29
+11034,31
+11035,34
+11037,54
+11038,30
+11039,33
+11040,26
+11041,22
+11042,30
+11043,27
+11044,35
+11045,77
+11046,33
+11047,26
+11048,27
+11049,27
+11050,19
+11051,22
+11052,30
+11053,34
+11054,24
+11055,31
+11056,24
+11057,26
+11058,47
+11060,23
+11061,37
+11062,24
+11063,24
+11065,41
+11066,26
+11067,21
+11068,26
+11069,37
+11070,21
+11071,32
+11072,33
+11073,42
+11074,29
+11075,63
+11076,41
+11077,29
+11078,20
+11079,29
+11080,21
+11081,49
+11082,23
+11083,29
+11084,34
+11086,21
+11087,33
+11088,35
+11089,25
+11090,37
+11091,34
+11092,54
+11093,26
+11094,18
+11095,27
+11097,43
+11098,19
+11099,22
+11100,25
+11102,27
+11103,25
+11104,30
+11105,31
+11106,60
+11108,34
+11109,56
+11110,24
+11112,37
+11113,55
+11114,26
+11115,37
+11116,30
+11117,27
+11118,26
+11119,32
+11120,48
+11121,22
+11122,28
+11123,24
+11124,26
+11125,30
+11126,44
+11127,32
+11128,39
+11129,28
+11130,22
+11131,47
+11132,51
+11133,50
+11134,33
+11135,16
+11136,27
+11137,23
+11138,28
+11139,46
+11140,42
+11141,39
+11142,25
+11143,34
+11144,31
+11145,31
+11146,24
+11148,25
+11149,20
+11150,30
+11151,39
+11152,25
+11153,33
+11155,70
+11156,29
+11157,30
+11160,28
+11161,23
+11162,29
+11163,38
+11164,44
+11165,52
+11166,20
+11167,25
+11168,29
+11169,26
+11171,23
+11172,27
+11173,29
+11174,36
+11176,28
+11177,42
+11178,18
+11179,35
+11180,23
+11181,30
+11182,56
+11183,34
+11185,21
+11186,29
+11187,25
+11188,33
+11189,25
+11192,21
+11193,38
+11194,58
+11195,32
+11196,31
+11197,22
+11199,22
+11200,23
+11201,24
+11202,29
+11203,33
+11204,26
+11205,26
+11206,32
+11207,35
+11208,24
+11209,16
+11210,30
+11211,26
+11212,33
+11213,38
+11214,28
+11215,37
+11216,26
+11217,24
+11218,41
+11219,54
+11220,20
+11221,27
+11223,46
+11224,60
+11225,42
+11226,30
+11227,28
+11228,29
+11229,27
+11230,23
+11231,23
+11232,59
+11233,31
+11235,16
+11236,46
+11237,28
+11238,21
+11239,32
+11240,29
+11241,26
+11242,54
+11243,24
+11244,31
+11245,26
+11246,30
+11247,22
+11248,29
+11249,22
+11250,32
+11251,30
+11252,25
+11253,21
+11254,30
+11255,26
+11256,35
+11257,29
+11258,32
+11261,29
+11262,22
+11263,31
+11264,32
+11265,22
+11266,26
+11268,31
+11269,51
+11270,28
+11271,25
+11272,33
+11273,20
+11275,20
+11276,42
+11277,36
+11278,26
+11279,21
+11281,37
+11282,39
+11283,27
+11284,28
+11285,45
+11287,33
+11289,30
+11290,24
+11291,56
+11292,31
+11293,42
+11294,32
+11295,29
+11296,49
+11297,29
+11298,38
+11299,32
+11300,25
+11301,47
+11303,26
+11305,22
+11306,52
+11307,41
+11308,15
+11309,17
+11310,26
+11311,22
+11312,21
+11313,25
+11314,24
+11315,21
+11316,42
+11317,50
+11318,25
+11319,28
+11320,37
+11321,50
+11323,19
+11324,34
+11325,28
+11326,37
+11327,27
+11328,21
+11329,46
+11330,36
+11331,36
+11332,99
+11333,47
+11334,32
+11336,22
+11337,27
+11338,26
+11339,42
+11340,24
+11341,31
+11342,33
+11343,33
+11344,38
+11345,16
+11346,30
+11347,16
+11348,36
+11349,20
+11350,33
+11351,32
+11352,24
+11353,48
+11354,23
+11355,22
+11356,35
+11357,43
+11358,37
+11359,57
+11360,32
+11361,25
+11362,19
+11363,35
+11364,24
+11365,29
+11366,25
+11367,33
+11369,23
+11370,37
+11371,26
+11372,39
+11373,31
+11374,35
+11375,48
+11376,26
+11378,26
+11379,34
+11380,34
+11381,34
+11382,29
+11384,44
+11385,30
+11386,33
+11387,58
+11388,27
+11389,36
+11390,28
+11391,28
+11392,25
+11394,29
+11395,37
+11396,26
+11397,40
+11398,23
+11399,33
+11400,16
+11401,23
+11402,34
+11403,34
+11406,26
+11407,22
+11408,31
+11409,30
+11410,51
+11412,36
+11413,34
+11414,24
+11415,51
+11416,27
+11417,23
+11419,27
+11420,34
+11421,24
+11422,21
+11423,21
+11424,40
+11425,31
+11426,24
+11428,24
+11429,19
+11430,32
+11431,37
+11432,33
+11433,19
+11434,39
+11435,22
+11436,39
+11437,34
+11438,46
+11439,30
+11440,37
+11441,22
+11442,28
+11444,25
+11445,21
+11446,19
+11447,53
+11448,24
+11449,19
+11450,34
+11451,23
+11453,51
+11454,43
+11455,56
+11456,24
+11457,54
+11459,17
+11460,24
+11461,23
+11462,39
+11463,32
+11464,23
+11465,33
+11466,25
+11467,31
+11468,32
+11469,31
+11470,32
+11471,42
+11472,30
+11473,22
+11474,24
+11476,26
+11477,30
+11480,64
+11481,25
+11482,29
+11484,19
+11485,38
+11486,35
+11487,33
+11488,30
+11489,29
+11490,28
+11491,46
+11493,39
+11494,27
+11495,18
+11496,32
+11497,30
+11498,16
+11499,32
+11500,23
+11501,24
+11502,25
+11503,19
+11504,29
+11505,24
+11506,21
+11507,32
+11508,33
+11510,27
+11511,30
+11512,24
+11513,23
+11514,45
+11515,39
+11516,22
+11517,27
+11518,27
+11519,35
+11520,20
+11521,24
+11522,21
+11523,25
+11524,45
+11525,23
+11526,30
+11527,27
+11528,34
+11530,26
+11531,21
+11532,28
+11533,26
+11534,18
+11535,14
+11536,33
+11537,35
+11538,29
+11539,28
+11540,23
+11541,34
+11542,26
+11543,44
+11544,34
+11545,33
+11546,22
+11547,28
+11548,99
+11549,22
+11550,26
+11551,30
+11552,29
+11553,24
+11554,29
+11555,36
+11556,26
+11557,23
+11558,23
+11559,34
+11560,40
+11561,32
+11562,35
+11563,34
+11564,44
+11565,42
+11566,49
+11567,34
+11568,30
+11569,28
+11570,32
+11571,25
+11572,19
+11573,48
+11574,30
+11575,30
+11576,25
+11577,23
+11579,21
+11580,33
+11581,38
+11582,32
+11583,23
+11584,43
+11585,22
+11586,38
+11587,41
+11588,35
+11589,36
+11590,23
+11591,29
+11592,37
+11593,34
+11595,40
+11596,24
+11597,24
+11598,16
+11599,19
+11600,26
+11602,25
+11603,19
+11604,20
+11605,30
+11606,24
+11607,39
+11608,25
+11609,28
+11610,23
+11611,22
+11612,49
+11614,23
+11616,26
+11617,17
+11618,23
+11619,32
+11620,35
+11621,29
+11622,26
+11623,31
+11624,21
+11625,24
+11628,23
+11629,34
+11630,34
+11631,47
+11632,23
+11633,27
+11634,39
+11635,26
+11636,21
+11637,30
+11639,23
+11640,35
+11641,19
+11642,38
+11643,27
+11644,31
+11645,22
+11646,28
+11647,26
+11648,33
+11649,30
+11651,25
+11652,38
+11653,27
+11654,40
+11655,25
+11656,23
+11657,33
+11659,30
+11660,26
+11661,26
+11663,21
+11665,28
+11666,35
+11667,25
+11670,39
+11671,28
+11672,32
+11673,24
+11674,25
+11675,16
+11676,31
+11677,34
+11678,40
+11679,19
+11682,28
+11683,24
+11684,31
+11685,30
+11686,19
+11687,22
+11688,32
+11689,40
+11690,40
+11691,33
+11692,35
+11693,26
+11694,23
+11695,34
+11696,39
+11697,19
+11698,32
+11699,31
+11700,29
+11701,24
+11702,24
+11703,39
+11704,28
+11705,30
+11706,38
+11708,33
+11709,24
+11710,29
+11711,50
+11712,25
+11713,38
+11715,30
+11716,26
+11717,29
+11718,61
+11719,29
+11720,25
+11721,29
+11722,63
+11723,56
+11724,35
+11725,37
+11726,42
+11727,34
+11729,28
+11730,20
+11731,22
+11732,42
+11733,26
+11734,31
+11735,25
+11736,21
+11738,37
+11739,34
+11740,12
+11741,39
+11742,23
+11743,28
+11744,41
+11745,48
+11746,21
+11747,34
+11748,25
+11749,43
+11750,19
+11752,30
+11753,34
+11754,35
+11755,19
+11756,22
+11757,23
+11758,37
+11759,25
+11760,41
+11761,36
+11763,42
+11764,27
+11765,32
+11766,28
+11767,23
+11769,44
+11771,45
+11772,39
+11775,28
+11776,16
+11777,32
+11778,37
+11779,36
+11780,26
+11782,23
+11783,28
+11784,38
+11785,20
+11786,29
+11787,24
+11788,23
+11789,44
+11790,16
+11791,21
+11792,31
+11793,23
+11794,28
+11796,25
+11797,38
+11798,24
+11799,24
+11800,33
+11801,25
+11802,18
+11803,26
+11804,49
+11805,20
+11806,46
+11807,27
+11808,29
+11809,34
+11810,19
+11811,31
+11812,28
+11814,16
+11815,39
+11816,35
+11817,33
+11818,30
+11819,38
+11820,26
+11821,33
+11822,39
+11824,46
+11825,34
+11826,25
+11828,19
+11830,21
+11831,24
+11834,26
+11835,29
+11836,64
+11837,47
+11838,22
+11839,55
+11840,25
+11841,28
+11842,15
+11843,21
+11844,26
+11845,25
+11847,23
+11849,22
+11850,28
+11851,22
+11852,27
+11853,1
+11854,21
+11855,21
+11856,26
+11858,27
+11859,49
+11860,32
+11861,31
+11862,23
+11863,42
+11864,21
+11865,27
+11866,30
+11867,28
+11868,30
+11869,35
+11870,25
+11871,33
+11872,40
+11873,26
+11874,28
+11875,40
+11876,26
+11877,41
+11878,23
+11879,29
+11881,26
+11882,38
+11883,26
+11884,31
+11885,30
+11887,15
+11888,36
+11889,21
+11890,26
+11891,29
+11892,25
+11893,31
+11894,19
+11895,30
+11896,28
+11897,28
+11898,33
+11899,33
+11901,26
+11902,28
+11903,37
+11904,24
+11905,40
+11906,29
+11907,35
+11908,28
+11909,25
+11910,31
+11911,34
+11912,28
+11913,31
+11915,21
+11916,23
+11917,23
+11918,60
+11919,34
+11920,32
+11921,15
+11922,26
+11925,42
+11926,28
+11927,24
+11928,34
+11929,18
+11930,21
+11931,21
+11932,25
+11934,25
+11935,33
+11936,33
+11937,30
+11939,27
+11940,53
+11941,1
+11942,27
+11943,26
+11944,20
+11945,39
+11946,16
+11947,15
+11949,22
+11950,31
+11951,19
+11952,20
+11953,27
+11954,34
+11955,36
+11956,36
+11957,44
+11958,28
+11959,19
+11960,28
+11961,18
+11962,23
+11963,21
+11965,38
+11966,35
+11967,28
+11968,31
+11969,26
+11971,28
+11972,25
+11973,50
+11974,19
+11975,19
+11976,28
+11977,39
+11978,24
+11980,41
+11981,37
+11982,39
+11983,30
+11984,35
+11985,35
+11986,51
+11987,27
+11988,28
+11989,31
+11990,47
+11991,28
+11992,43
+11994,24
+11995,25
+11996,36
+11998,25
+11999,36
+12000,23
+12001,25
+12002,30
+12004,27
+12005,22
+12006,17
+12007,35
+12008,25
+12010,27
+12011,40
+12013,23
+12014,20
+12015,28
+12016,36
+12017,30
+12018,30
+12019,32
+12021,37
+12022,22
+12023,30
+12024,33
+12025,33
+12026,27
+12027,24
+12028,20
+12029,30
+12030,28
+12031,25
+12033,45
+12034,24
+12035,33
+12036,20
+12037,23
+12038,48
+12039,33
+12040,29
+12041,23
+12042,28
+12043,23
+12044,23
+12045,49
+12046,15
+12047,15
+12048,32
+12049,38
+12050,23
+12051,48
+12052,34
+12054,57
+12055,23
+12056,39
+12057,23
+12058,24
+12059,33
+12061,24
+12062,27
+12063,27
+12064,24
+12065,25
+12066,18
+12067,26
+12068,19
+12069,32
+12070,28
+12071,19
+12072,22
+12073,36
+12075,28
+12076,32
+12077,32
+12078,21
+12079,37
+12080,34
+12081,27
+12082,45
+12083,30
+12085,23
+12086,30
+12087,33
+12088,34
+12090,30
+12091,31
+12092,17
+12093,32
+12094,24
+12095,25
+12096,29
+12097,25
+12098,26
+12099,21
+12100,40
+12101,27
+12102,30
+12103,25
+12104,28
+12105,21
+12106,36
+12108,31
+12109,50
+12110,16
+12111,38
+12112,22
+12113,28
+12114,37
+12115,22
+12117,29
+12118,18
+12119,32
+12120,26
+12121,34
+12122,40
+12123,33
+12124,42
+12125,27
+12126,45
+12127,43
+12128,29
+12129,27
+12130,61
+12131,38
+12132,32
+12133,27
+12134,25
+12135,29
+12136,19
+12137,30
+12138,53
+12139,25
+12140,25
+12141,22
+12142,26
+12143,20
+12144,35
+12145,25
+12146,29
+12147,21
+12148,35
+12150,33
+12151,29
+12152,20
+12153,26
+12154,60
+12155,23
+12156,58
+12157,30
+12158,42
+12160,55
+12161,25
+12162,23
+12163,26
+12164,41
+12165,47
+12166,34
+12167,30
+12168,30
+12169,24
+12170,31
+12171,50
+12173,21
+12174,33
+12176,30
+12177,41
+12178,32
+12180,20
+12181,29
+12182,21
+12183,32
+12185,23
+12186,29
+12187,38
+12188,33
+12189,56
+12190,24
+12191,27
+12192,52
+12193,26
+12194,70
+12195,24
+12196,26
+12197,37
+12200,25
+12201,49
+12202,52
+12203,21
+12204,39
+12206,21
+12207,20
+12208,26
+12211,17
+12212,23
+12213,29
+12214,48
+12216,31
+12217,24
+12218,1
+12219,18
+12220,19
+12221,24
+12223,31
+12224,25
+12226,28
+12227,27
+12228,35
+12229,21
+12230,33
+12231,37
+12232,25
+12233,32
+12234,20
+12235,28
+12236,34
+12237,30
+12238,28
+12239,27
+12240,29
+12241,40
+12242,37
+12243,34
+12244,35
+12246,24
+12247,38
+12248,25
+12249,34
+12250,26
+12251,22
+12252,32
+12253,20
+12255,33
+12256,38
+12257,15
+12258,31
+12259,27
+12260,29
+12261,30
+12262,25
+12263,32
+12264,40
+12265,31
+12266,25
+12267,20
+12268,48
+12269,18
+12270,40
+12271,34
+12272,30
+12273,25
+12274,40
+12275,23
+12276,27
+12277,40
+12278,34
+12279,24
+12280,26
+12281,26
+12282,35
+12283,27
+12284,28
+12285,42
+12286,25
+12287,29
+12288,32
+12290,31
+12291,36
+12292,23
+12293,23
+12294,32
+12295,28
+12297,45
+12298,39
+12299,43
+12300,28
+12301,28
+12302,32
+12303,24
+12304,28
+12305,44
+12306,31
+12307,22
+12308,33
+12309,25
+12311,28
+12312,18
+12313,25
+12314,38
+12316,33
+12317,30
+12318,35
+12319,25
+12320,30
+12321,26
+12322,23
+12323,27
+12324,21
+12325,41
+12326,21
+12327,31
+12328,26
+12330,41
+12331,22
+12332,33
+12334,15
+12335,29
+12336,42
+12337,25
+12338,39
+12339,34
+12340,32
+12341,60
+12342,51
+12343,24
+12344,27
+12345,33
+12346,40
+12347,40
+12348,24
+12349,27
+12350,45
+12351,33
+12352,23
+12353,22
+12354,32
+12355,27
+12356,26
+12357,22
+12358,15
+12359,21
+12360,26
+12361,23
+12362,29
+12363,69
+12364,35
+12365,28
+12366,19
+12367,28
+12368,34
+12369,33
+12370,34
+12371,26
+12372,28
+12373,29
+12374,31
+12375,38
+12377,27
+12378,33
+12380,27
+12381,45
+12382,31
+12383,48
+12384,35
+12385,30
+12386,25
+12387,28
+12388,26
+12389,28
+12390,20
+12391,23
+12392,28
+12393,35
+12394,30
+12395,15
+12396,25
+12398,21
+12399,54
+12400,24
+12401,31
+12402,24
+12403,39
+12405,28
+12406,23
+12407,55
+12408,22
+12409,45
+12410,29
+12411,22
+12412,28
+12413,25
+12414,26
+12415,16
+12416,24
+12417,25
+12418,18
+12419,14
+12420,27
+12421,18
+12422,44
+12423,26
+12424,36
+12425,22
+12426,42
+12427,32
+12429,46
+12431,25
+12432,34
+12434,29
+12435,28
+12436,36
+12437,22
+12438,29
+12439,28
+12440,21
+12441,23
+12442,29
+12443,27
+12444,28
+12445,48
+12446,32
+12447,29
+12448,22
+12449,50
+12450,23
+12451,21
+12452,27
+12453,35
+12454,33
+12455,60
+12456,24
+12457,38
+12458,29
+12459,31
+12460,22
+12461,35
+12462,29
+12463,30
+12464,34
+12465,51
+12466,26
+12467,53
+12468,42
+12469,32
+12470,38
+12471,29
+12472,30
+12473,43
+12475,29
+12476,29
+12477,33
+12478,19
+12479,28
+12480,30
+12481,25
+12482,16
+12483,26
+12484,22
+12485,26
+12486,19
+12487,32
+12488,34
+12489,24
+12491,28
+12492,30
+12493,28
+12494,25
+12495,36
+12497,27
+12498,23
+12499,26
+12501,33
+12502,24
+12503,29
+12504,34
+12506,21
+12507,31
+12508,30
+12509,31
+12510,51
+12511,46
+12512,29
+12513,26
+12514,30
+12515,60
+12516,31
+12517,42
+12518,25
+12519,56
+12520,34
+12522,31
+12523,28
+12524,21
+12525,26
+12526,39
+12528,23
+12529,21
+12530,19
+12531,29
+12532,34
+12533,22
+12534,35
+12535,36
+12536,35
+12537,26
+12538,45
+12540,24
+12541,38
+12542,25
+12543,37
+12544,50
+12545,23
+12546,19
+12547,13
+12548,29
+12549,47
+12550,39
+12551,27
+12553,30
+12554,28
+12555,19
+12556,22
+12557,20
+12558,41
+12559,22
+12560,39
+12561,28
+12562,24
+12563,21
+12564,18
+12565,57
+12566,31
+12567,63
+12569,28
+12570,38
+12571,26
+12573,18
+12574,28
+12575,28
+12576,20
+12577,23
+12578,26
+12579,52
+12580,26
+12581,22
+12582,24
+12583,41
+12584,29
+12585,23
+12587,48
+12588,27
+12589,29
+12590,30
+12593,24
+12594,22
+12595,24
+12596,21
+12598,26
+12599,23
+12600,36
+12601,27
+12604,24
+12605,29
+12606,35
+12607,25
+12608,35
+12609,32
+12610,41
+12613,60
+12614,26
+12615,25
+12616,36
+12617,36
+12618,27
+12619,33
+12620,20
+12621,33
+12622,27
+12623,30
+12624,38
+12625,26
+12626,28
+12627,19
+12628,32
+12629,20
+12630,43
+12631,21
+12632,18
+12633,24
+12634,26
+12635,18
+12636,26
+12638,45
+12639,42
+12640,24
+12641,31
+12642,23
+12643,25
+12644,27
+12645,53
+12646,22
+12647,25
+12648,39
+12649,31
+12650,22
+12651,24
+12652,29
+12653,35
+12654,38
+12655,31
+12656,18
+12657,36
+12658,44
+12659,38
+12660,33
+12661,15
+12662,28
+12663,15
+12664,47
+12667,49
+12669,16
+12671,25
+12672,30
+12673,31
+12674,27
+12675,30
+12676,40
+12677,27
+12678,27
+12679,22
+12680,48
+12681,42
+12682,26
+12683,24
+12685,56
+12686,21
+12687,30
+12688,26
+12689,50
+12690,31
+12692,42
+12693,23
+12694,30
+12695,27
+12696,37
+12697,19
+12698,19
+12699,20
+12700,31
+12701,38
+12702,16
+12703,21
+12704,24
+12706,26
+12707,37
+12709,24
+12710,26
+12711,29
+12712,30
+12713,38
+12714,78
+12715,29
+12716,29
+12717,21
+12719,35
+12720,26
+12721,28
+12722,22
+12723,31
+12724,28
+12725,39
+12726,32
+12727,46
+12728,30
+12729,25
+12730,62
+12731,22
+12732,33
+12733,25
+12734,24
+12736,24
+12737,28
+12738,23
+12739,44
+12740,43
+12741,39
+12743,28
+12744,25
+12745,31
+12746,38
+12747,26
+12748,23
+12749,38
+12750,37
+12751,33
+12752,24
+12754,40
+12756,12
+12757,25
+12758,36
+12759,35
+12760,37
+12761,29
+12762,29
+12763,27
+12764,22
+12765,26
+12766,33
+12767,26
+12768,55
+12770,32
+12772,41
+12774,16
+12775,28
+12776,30
+12777,32
+12778,21
+12780,42
+12781,21
+12782,22
+12783,44
+12784,38
+12785,29
+12786,35
+12787,30
+12788,35
+12789,22
+12790,24
+12791,24
+12792,25
+12793,26
+12794,15
+12795,34
+12796,45
+12797,29
+12798,24
+12799,33
+12800,39
+12801,23
+12802,29
+12803,36
+12804,25
+12805,14
+12806,34
+12807,28
+12808,21
+12809,29
+12811,35
+12812,29
+12813,26
+12814,46
+12815,28
+12817,37
+12818,32
+12820,35
+12821,19
+12822,31
+12823,30
+12824,24
+12826,17
+12827,40
+12828,46
+12829,33
+12830,23
+12831,26
+12832,22
+12833,30
+12834,31
+12835,32
+12836,26
+12837,28
+12838,19
+12839,27
+12840,34
+12841,37
+12842,27
+12843,31
+12844,35
+12845,40
+12846,33
+12847,36
+12848,45
+12849,43
+12850,31
+12851,27
+12853,36
+12855,36
+12856,25
+12857,41
+12858,35
+12859,26
+12860,27
+12861,25
+12862,28
+12863,40
+12864,30
+12865,28
+12866,28
+12868,34
+12869,39
+12870,30
+12871,31
+12872,26
+12873,25
+12874,40
+12875,43
+12876,16
+12877,24
+12879,33
+12880,36
+12882,30
+12883,35
+12884,60
+12885,36
+12886,30
+12887,40
+12888,24
+12889,17
+12890,30
+12891,19
+12892,15
+12893,26
+12894,38
+12896,31
+12897,25
+12898,29
+12899,21
+12900,33
+12901,44
+12902,22
+12903,24
+12904,33
+12905,24
+12906,36
+12907,18
+12908,48
+12909,21
+12910,31
+12912,27
+12913,28
+12914,24
+12915,27
+12916,30
+12917,37
+12918,20
+12919,32
+12920,28
+12921,35
+12922,52
+12923,37
+12924,22
+12925,34
+12926,37
+12927,18
+12928,29
+12929,30
+12930,27
+12931,36
+12932,25
+12933,25
+12934,34
+12935,36
+12936,47
+12937,30
+12938,26
+12940,19
+12941,24
+12942,23
+12943,34
+12944,23
+12945,31
+12946,18
+12947,31
+12948,36
+12949,36
+12950,21
+12951,28
+12952,43
+12953,49
+12954,35
+12955,37
+12956,51
+12957,31
+12959,34
+12960,29
+12961,21
+12962,33
+12965,23
+12967,31
+12969,23
+12971,44
+12973,39
+12974,28
+12975,22
+12976,23
+12977,27
+12979,24
+12980,44
+12981,24
+12982,29
+12984,39
+12985,24
+12986,18
+12987,24
+12988,25
+12989,40
+12990,14
+12992,28
+12993,52
+12994,26
+12995,59
+12996,22
+12997,33
+12998,21
+12999,29
+13000,16
+13001,28
+13002,29
+13003,31
+13004,47
+13005,72
+13006,20
+13007,20
+13008,28
+13009,20
+13010,28
+13011,26
+13012,25
+13014,43
+13015,28
+13016,33
+13017,28
+13018,30
+13019,30
+13020,25
+13021,29
+13023,23
+13024,41
+13025,22
+13026,31
+13027,35
+13028,29
+13029,38
+13030,29
+13032,23
+13033,18
+13034,28
+13035,14
+13036,37
+13037,26
+13038,38
+13039,26
+13040,24
+13041,43
+13042,35
+13044,33
+13046,38
+13047,23
+13049,26
+13050,23
+13051,26
+13052,27
+13053,25
+13054,24
+13055,30
+13056,21
+13059,28
+13060,28
+13061,31
+13062,23
+13063,27
+13064,32
+13065,21
+13066,28
+13067,34
+13068,52
+13070,31
+13071,33
+13072,28
+13073,32
+13074,16
+13075,26
+13076,31
+13077,31
+13078,29
+13079,25
+13080,40
+13081,42
+13082,22
+13084,29
+13085,25
+13086,26
+13087,29
+13088,28
+13089,23
+13090,24
+13091,25
+13092,28
+13093,28
+13094,49
+13095,24
+13096,21
+13097,23
+13098,34
+13100,18
+13101,28
+13102,39
+13103,43
+13104,23
+13105,25
+13106,35
+13107,39
+13108,41
+13109,21
+13110,28
+13111,38
+13112,39
+13113,26
+13114,39
+13115,25
+13116,34
+13117,31
+13119,22
+13120,48
+13121,25
+13122,34
+13123,29
+13124,19
+13125,54
+13126,12
+13127,16
+13128,35
+13129,23
+13130,25
+13132,28
+13133,42
+13134,23
+13135,17
+13136,27
+13137,35
+13138,29
+13139,17
+13140,25
+13141,24
+13142,33
+13143,21
+13144,27
+13145,25
+13146,24
+13147,25
+13148,22
+13150,22
+13152,26
+13153,33
+13154,18
+13155,21
+13156,20
+13157,38
+13159,30
+13160,21
+13161,37
+13162,34
+13163,25
+13164,29
+13165,36
+13166,30
+13167,35
+13168,33
+13169,32
+13170,45
+13171,25
+13173,28
+13174,64
+13176,23
+13178,25
+13180,34
+13181,37
+13182,30
+13183,34
+13184,31
+13185,28
+13186,24
+13187,37
+13188,22
+13189,29
+13190,23
+13191,24
+13193,33
+13194,28
+13195,21
+13197,27
+13198,42
+13199,27
+13200,30
+13201,16
+13202,41
+13203,44
+13204,24
+13205,28
+13206,28
+13207,29
+13208,21
+13209,21
+13210,29
+13211,30
+13212,37
+13213,29
+13214,25
+13215,37
+13216,22
+13217,21
+13218,26
+13220,36
+13221,42
+13222,38
+13223,28
+13224,34
+13225,24
+13226,31
+13227,28
+13228,23
+13229,25
+13230,20
+13231,24
+13232,25
+13233,31
+13234,30
+13235,56
+13236,22
+13237,16
+13238,30
+13239,25
+13240,42
+13241,27
+13242,20
+13243,21
+13244,27
+13245,39
+13246,37
+13247,29
+13248,28
+13250,47
+13254,44
+13255,42
+13256,48
+13257,22
+13258,31
+13259,40
+13260,36
+13261,20
+13262,23
+13263,20
+13264,29
+13265,37
+13266,24
+13267,20
+13268,25
+13269,21
+13270,25
+13271,43
+13272,45
+13273,18
+13274,47
+13275,24
+13276,35
+13277,37
+13278,25
+13281,22
+13282,57
+13283,16
+13284,50
+13285,31
+13286,29
+13287,38
+13289,24
+13290,48
+13292,26
+13293,23
+13294,32
+13295,23
+13296,30
+13297,32
+13298,29
+13300,22
+13301,22
+13302,23
+13303,29
+13304,35
+13306,26
+13307,29
+13308,25
+13309,32
+13310,16
+13312,23
+13313,43
+13315,41
+13316,20
+13318,29
+13319,21
+13320,26
+13321,27
+13322,27
+13324,34
+13325,25
+13327,50
+13328,13
+13330,19
+13332,41
+13333,24
+13334,27
+13335,23
+13336,29
+13337,30
+13338,20
+13339,17
+13341,19
+13342,27
+13343,26
+13344,43
+13345,28
+13346,16
+13347,48
+13348,25
+13349,32
+13351,37
+13353,39
+13354,35
+13355,41
+13356,65
+13357,22
+13358,29
+13359,27
+13360,31
+13362,25
+13363,21
+13364,29
+13365,29
+13366,21
+13367,23
+13368,43
+13369,38
+13370,42
+13371,35
+13372,50
+13374,43
+13375,32
+13376,27
+13377,15
+13378,44
+13380,24
+13381,40
+13382,16
+13383,25
+13384,27
+13385,24
+13386,24
+13387,24
+13388,36
+13389,23
+13390,24
+13391,33
+13392,25
+13393,31
+13394,33
+13395,23
+13396,30
+13397,22
+13398,38
+13399,26
+13400,29
+13403,21
+13404,30
+13405,27
+13406,27
+13407,24
+13409,28
+13410,47
+13411,27
+13412,25
+13414,21
+13415,18
+13416,21
+13417,20
+13418,18
+13420,24
+13421,25
+13422,34
+13423,48
+13424,24
+13425,20
+13426,38
+13428,26
+13430,22
+13431,30
+13432,30
+13433,18
+13434,16
+13435,38
+13437,27
+13438,28
+13439,21
+13440,44
+13441,34
+13442,31
+13443,31
+13444,30
+13445,25
+13447,31
+13449,36
+13450,27
+13451,25
+13453,20
+13455,19
+13456,27
+13457,23
+13458,22
+13459,29
+13460,36
+13461,24
+13462,28
+13463,27
+13464,37
+13465,29
+13466,33
+13467,24
+13468,55
+13469,47
+13470,39
+13471,24
+13472,29
+13473,41
+13474,25
+13475,29
+13476,40
+13477,34
+13478,25
+13479,36
+13481,22
+13482,22
+13483,24
+13484,40
+13485,47
+13486,27
+13487,39
+13488,50
+13490,27
+13491,25
+13493,42
+13494,18
+13495,19
+13496,62
+13497,19
+13498,49
+13499,28
+13500,32
+13502,20
+13503,21
+13504,22
+13505,29
+13506,22
+13507,28
+13508,21
+13509,23
+13510,28
+13511,24
+13512,37
+13513,23
+13514,45
+13515,28
+13516,46
+13517,57
+13518,15
+13519,31
+13520,42
+13522,53
+13523,25
+13524,48
+13525,40
+13527,51
+13528,39
+13529,29
+13530,19
+13531,30
+13532,27
+13534,39
+13535,33
+13536,47
+13537,38
+13538,29
+13539,45
+13540,28
+13541,50
+13542,27
+13543,24
+13544,54
+13545,24
+13546,30
+13547,30
+13548,46
+13549,23
+13551,32
+13552,24
+13553,25
+13554,33
+13555,54
+13556,29
+13557,17
+13558,48
+13559,26
+13560,22
+13562,25
+13563,36
+13564,29
+13565,41
+13566,27
+13567,31
+13568,40
+13569,26
+13570,26
+13572,27
+13573,41
+13574,21
+13575,18
+13576,27
+13577,33
+13578,24
+13579,29
+13580,32
+13581,36
+13583,29
+13585,33
+13586,20
+13587,34
+13589,28
+13590,18
+13592,29
+13593,26
+13594,25
+13595,24
+13596,31
+13597,29
+13599,27
+13600,20
+13601,30
+13602,30
+13603,15
+13604,33
+13605,27
+13606,25
+13607,12
+13608,27
+13609,22
+13610,38
+13611,33
+13612,31
+13613,23
+13614,42
+13615,27
+13616,34
+13617,36
+13618,35
+13619,32
+13620,30
+13621,64
+13623,49
+13624,26
+13625,36
+13626,27
+13627,39
+13628,19
+13629,63
+13630,66
+13631,19
+13632,23
+13633,30
+13634,48
+13635,36
+13636,20
+13637,20
+13638,28
+13639,15
+13640,33
+13641,27
+13642,22
+13643,34
+13644,28
+13645,27
+13647,26
+13648,48
+13649,40
+13650,19
+13651,56
+13652,30
+13653,30
+13654,23
+13655,39
+13656,57
+13657,32
+13658,50
+13659,20
+13660,22
+13661,30
+13662,61
+13663,28
+13665,38
+13666,22
+13667,30
+13668,29
+13669,25
+13670,28
+13672,27
+13673,33
+13674,25
+13675,21
+13676,27
+13677,37
+13678,27
+13679,20
+13682,31
+13683,60
+13684,35
+13685,23
+13686,55
+13687,26
+13688,24
+13689,25
+13690,28
+13691,28
+13692,21
+13693,28
+13694,22
+13695,23
+13696,29
+13697,21
+13698,19
+13699,19
+13700,31
+13701,20
+13702,24
+13703,38
+13704,29
+13705,43
+13706,33
+13707,21
+13708,39
+13709,22
+13710,23
+13711,29
+13712,24
+13713,22
+13714,29
+13715,30
+13716,35
+13717,83
+13718,22
+13719,26
+13720,28
+13721,29
+13722,32
+13723,23
+13724,42
+13725,30
+13726,27
+13728,33
+13729,34
+13730,19
+13731,22
+13732,33
+13733,30
+13734,29
+13735,27
+13736,50
+13738,35
+13741,33
+13742,23
+13743,41
+13744,16
+13745,18
+13746,26
+13747,42
+13748,31
+13750,32
+13751,29
+13752,28
+13753,25
+13754,27
+13755,34
+13758,27
+13759,29
+13760,26
+13761,21
+13762,29
+13763,28
+13764,52
+13765,34
+13766,40
+13768,19
+13769,30
+13770,79
+13771,22
+13772,26
+13773,25
+13774,28
+13775,26
+13776,35
+13777,28
+13778,23
+13779,31
+13780,30
+13781,32
+13782,38
+13783,46
+13784,35
+13785,29
+13786,22
+13787,43
+13788,33
+13789,25
+13791,43
+13792,40
+13793,28
+13794,26
+13796,30
+13797,36
+13798,22
+13799,23
+13800,28
+13802,43
+13803,36
+13804,24
+13805,21
+13806,35
+13807,22
+13808,39
+13809,25
+13811,33
+13812,25
+13814,43
+13815,36
+13816,43
+13817,27
+13818,42
+13819,55
+13820,23
+13821,25
+13822,23
+13823,38
+13824,21
+13825,56
+13826,43
+13828,21
+13829,28
+13830,30
+13831,26
+13832,22
+13833,26
+13834,38
+13835,44
+13838,26
+13839,29
+13840,33
+13841,33
+13842,27
+13843,20
+13844,31
+13845,24
+13846,23
+13848,32
+13850,35
+13851,34
+13852,40
+13853,21
+13854,32
+13855,37
+13856,28
+13857,47
+13858,43
+13859,32
+13860,25
+13861,36
+13862,20
+13863,35
+13864,37
+13865,36
+13866,28
+13867,27
+13868,28
+13869,20
+13870,28
+13871,26
+13872,28
+13873,26
+13874,41
+13876,27
+13877,27
+13878,28
+13880,27
+13881,44
+13882,40
+13883,39
+13884,27
+13885,30
+13886,21
+13887,29
+13888,35
+13889,29
+13890,33
+13891,30
+13892,30
+13893,32
+13894,26
+13895,27
+13896,29
+13897,27
+13898,37
+13899,13
+13900,26
+13901,20
+13902,34
+13903,27
+13904,30
+13905,23
+13906,38
+13907,63
+13908,29
+13909,19
+13910,28
+13911,23
+13912,50
+13913,31
+13914,37
+13915,26
+13916,22
+13917,36
+13918,43
+13919,34
+13920,26
+13921,34
+13922,29
+13923,23
+13924,28
+13925,27
+13926,25
+13928,26
+13929,33
+13930,28
+13931,20
+13932,29
+13933,26
+13934,23
+13935,32
+13936,16
+13937,21
+13938,30
+13939,24
+13940,25
+13941,27
+13942,31
+13943,21
+13944,29
+13945,30
+13946,32
+13947,22
+13948,37
+13949,35
+13950,25
+13951,33
+13952,20
+13953,27
+13954,36
+13955,26
+13956,31
+13957,19
+13958,15
+13959,26
+13960,21
+13961,30
+13962,13
+13963,31
+13964,26
+13965,51
+13966,18
+13967,30
+13968,60
+13969,31
+13970,25
+13971,48
+13972,30
+13973,16
+13974,15
+13975,50
+13976,28
+13978,26
+13979,34
+13980,19
+13981,22
+13982,20
+13983,16
+13984,33
+13985,21
+13986,18
+13987,37
+13988,20
+13990,22
+13991,53
+13993,18
+13994,28
+13995,34
+13996,36
+13998,25
+13999,21
+14000,28
+14001,27
+14002,42
+14003,42
+14005,42
+14007,26
+14008,27
+14009,35
+14010,26
+14011,36
+14012,54
+14013,21
+14014,27
+14016,22
+14017,31
+14019,27
+14020,28
+14021,39
+14022,31
+14025,35
+14026,27
+14027,28
+14028,53
+14029,35
+14030,24
+14032,35
+14033,26
+14034,35
+14035,42
+14036,52
+14037,24
+14038,31
+14039,23
+14040,22
+14041,34
+14042,22
+14043,21
+14044,34
+14045,25
+14046,22
+14048,34
+14049,21
+14050,34
+14051,24
+14052,26
+14053,22
+14054,28
+14055,36
+14056,32
+14058,39
+14059,26
+14060,21
+14061,63
+14063,38
+14064,20
+14065,42
+14066,27
+14067,29
+14069,30
+14070,23
+14071,32
+14072,22
+14073,25
+14077,31
+14078,47
+14079,32
+14080,26
+14081,42
+14082,17
+14083,27
+14084,25
+14085,35
+14086,22
+14087,27
+14088,25
+14089,25
+14090,23
+14093,46
+14094,22
+14095,34
+14097,24
+14100,30
+14101,23
+14102,41
+14103,28
+14104,28
+14105,20
+14106,39
+14107,33
+14108,39
+14109,34
+14110,28
+14111,14
+14112,30
+14113,42
+14114,24
+14115,34
+14116,36
+14117,44
+14118,26
+14119,47
+14120,44
+14121,19
+14122,13
+14123,26
+14124,38
+14125,22
+14126,27
+14127,22
+14128,25
+14129,21
+14130,25
+14131,27
+14132,35
+14134,27
+14135,54
+14136,32
+14137,46
+14138,31
+14139,26
+14141,37
+14142,33
+14143,30
+14144,27
+14145,47
+14146,28
+14147,23
+14148,29
+14149,29
+14150,58
+14151,31
+14152,29
+14153,30
+14154,26
+14155,25
+14156,38
+14157,21
+14158,25
+14159,25
+14160,45
+14161,38
+14162,27
+14164,41
+14165,35
+14166,28
+14167,30
+14168,20
+14169,37
+14171,49
+14172,23
+14173,45
+14174,35
+14175,24
+14176,24
+14177,44
+14178,26
+14179,24
+14181,36
+14182,25
+14183,52
+14184,20
+14185,26
+14186,29
+14187,30
+14188,26
+14189,29
+14190,38
+14191,44
+14193,31
+14194,34
+14195,32
+14196,49
+14197,26
+14198,25
+14199,25
+14200,20
+14201,37
+14202,27
+14203,26
+14204,39
+14206,24
+14207,33
+14208,43
+14209,26
+14212,47
+14213,26
+14215,24
+14216,26
+14217,23
+14218,26
+14219,28
+14220,25
+14221,32
+14224,28
+14225,31
+14226,26
+14227,30
+14228,30
+14229,38
+14230,26
+14231,43
+14232,24
+14233,25
+14234,31
+14235,23
+14236,27
+14237,23
+14238,26
+14239,29
+14240,32
+14241,27
+14243,22
+14244,34
+14245,35
+14246,32
+14248,31
+14249,23
+14251,34
+14253,28
+14254,32
+14256,15
+14257,37
+14258,25
+14259,28
+14260,18
+14261,23
+14262,28
+14263,29
+14264,22
+14265,34
+14266,40
+14267,29
+14268,37
+14269,21
+14270,25
+14271,18
+14272,30
+14273,28
+14275,34
+14276,22
+14277,24
+14278,35
+14280,30
+14281,39
+14282,54
+14283,28
+14284,31
+14285,28
+14286,37
+14287,33
+14288,27
+14289,37
+14290,29
+14291,29
+14292,32
+14293,36
+14294,28
+14295,24
+14296,24
+14297,29
+14298,27
+14299,43
+14300,15
+14302,35
+14303,30
+14304,23
+14305,24
+14306,27
+14307,28
+14308,57
+14309,34
+14310,23
+14311,21
+14312,24
+14314,29
+14315,30
+14316,37
+14317,69
+14318,29
+14319,43
+14320,22
+14322,34
+14323,17
+14324,34
+14325,32
+14326,49
+14327,27
+14329,44
+14330,36
+14331,23
+14333,28
+14334,26
+14335,42
+14336,28
+14337,28
+14338,42
+14340,44
+14341,33
+14342,23
+14343,46
+14344,31
+14345,37
+14346,29
+14347,50
+14348,24
+14349,31
+14350,66
+14352,30
+14353,26
+14354,29
+14355,42
+14356,42
+14357,32
+14358,20
+14359,27
+14360,20
+14361,25
+14362,25
+14364,20
+14365,38
+14366,31
+14367,27
+14368,41
+14369,29
+14370,26
+14371,33
+14372,30
+14374,15
+14375,26
+14376,27
+14377,46
+14378,30
+14379,52
+14380,30
+14381,39
+14382,47
+14383,41
+14384,28
+14385,25
+14386,19
+14387,29
+14389,22
+14390,22
+14391,25
+14392,39
+14393,40
+14394,22
+14395,26
+14396,33
+14397,36
+14398,24
+14399,52
+14400,30
+14401,22
+14402,27
+14403,32
+14405,22
+14406,25
+14407,19
+14408,32
+14409,22
+14410,33
+14411,30
+14412,52
+14413,22
+14414,50
+14415,33
+14416,24
+14417,25
+14418,45
+14420,24
+14421,19
+14422,41
+14423,25
+14424,40
+14425,25
+14427,24
+14429,38
+14431,20
+14432,30
+14433,30
+14435,30
+14436,42
+14437,29
+14438,25
+14439,25
+14440,37
+14442,45
+14443,52
+14445,26
+14446,29
+14447,39
+14448,39
+14449,30
+14450,39
+14452,37
+14453,18
+14454,14
+14455,25
+14456,21
+14457,35
+14458,21
+14459,24
+14460,34
+14461,37
+14462,26
+14464,33
+14465,27
+14466,40
+14467,27
+14468,28
+14470,33
+14471,31
+14472,32
+14473,27
+14474,21
+14475,16
+14476,24
+14477,26
+14479,27
+14480,33
+14481,25
+14482,50
+14483,47
+14484,42
+14485,27
+14486,25
+14487,28
+14488,25
+14489,28
+14490,32
+14491,52
+14492,48
+14493,23
+14494,29
+14495,38
+14496,40
+14497,36
+14499,25
+14500,22
+14501,44
+14502,26
+14503,34
+14504,31
+14505,20
+14507,26
+14509,22
+14510,26
+14512,31
+14513,30
+14514,25
+14515,53
+14516,38
+14517,27
+14518,30
+14520,28
+14523,38
+14524,51
+14525,29
+14526,23
+14527,25
+14529,37
+14531,46
+14532,24
+14534,29
+14535,42
+14536,23
+14537,16
+14538,22
+14539,25
+14541,34
+14542,30
+14543,50
+14545,34
+14546,22
+14547,51
+14548,37
+14549,28
+14550,32
+14551,32
+14552,25
+14553,29
+14554,29
+14555,49
+14556,30
+14557,36
+14558,38
+14559,26
+14561,34
+14562,18
+14563,35
+14565,37
+14566,28
+14567,32
+14569,42
+14570,24
+14571,50
+14572,33
+14573,19
+14574,25
+14575,26
+14576,30
+14577,38
+14578,30
+14579,35
+14580,21
+14581,30
+14582,35
+14583,31
+14584,26
+14585,18
+14586,25
+14587,55
+14588,51
+14589,29
+14590,28
+14591,29
+14592,26
+14593,21
+14594,27
+14595,33
+14596,23
+14597,17
+14598,22
+14599,29
+14600,27
+14601,33
+14602,26
+14603,28
+14604,29
+14605,25
+14607,42
+14608,41
+14609,45
+14610,25
+14611,23
+14612,27
+14613,27
+14615,42
+14616,42
+14617,35
+14618,28
+14619,26
+14620,34
+14621,33
+14622,43
+14623,37
+14624,43
+14625,25
+14626,30
+14627,20
+14628,33
+14629,26
+14630,38
+14631,28
+14632,36
+14633,25
+14635,35
+14636,29
+14637,25
+14639,28
+14640,27
+14641,19
+14642,30
+14644,38
+14645,17
+14646,26
+14647,26
+14648,24
+14649,27
+14650,26
+14651,22
+14653,31
+14654,29
+14655,34
+14656,23
+14657,34
+14658,21
+14659,28
+14660,22
+14661,28
+14662,20
+14664,37
+14665,23
+14666,28
+14667,34
+14668,28
+14669,26
+14670,28
+14671,51
+14673,33
+14675,19
+14676,36
+14677,24
+14678,51
+14679,35
+14680,32
+14681,36
+14682,39
+14683,36
+14684,21
+14685,26
+14687,27
+14688,31
+14689,39
+14690,22
+14691,28
+14692,24
+14693,30
+14694,28
+14695,29
+14696,37
+14697,34
+14698,28
+14700,29
+14701,24
+14702,50
+14703,20
+14704,31
+14705,24
+14706,27
+14707,39
+14708,22
+14709,28
+14710,21
+14712,23
+14713,34
+14714,36
+14715,24
+14716,28
+14717,41
+14718,28
+14720,26
+14721,26
+14722,23
+14723,42
+14725,17
+14726,26
+14727,69
+14728,38
+14729,38
+14731,49
+14732,21
+14733,28
+14734,24
+14735,28
+14737,21
+14739,33
+14740,30
+14741,31
+14743,32
+14744,60
+14745,21
+14746,23
+14747,30
+14748,54
+14749,54
+14751,28
+14752,30
+14753,27
+14754,46
+14755,22
+14757,34
+14758,37
+14759,30
+14760,29
+14761,28
+14762,26
+14763,48
+14764,34
+14765,25
+14766,30
+14767,29
+14768,49
+14770,18
+14771,27
+14773,35
+14774,42
+14775,33
+14776,24
+14777,32
+14778,25
+14779,15
+14780,33
+14781,19
+14782,38
+14783,21
+14784,38
+14785,24
+14786,25
+14788,20
+14789,32
+14790,38
+14791,26
+14795,34
+14796,27
+14797,23
+14798,27
+14799,26
+14800,27
+14801,33
+14802,18
+14804,21
+14805,32
+14806,26
+14807,50
+14808,56
+14809,25
+14812,54
+14813,25
+14814,52
+14815,35
+14816,42
+14817,27
+14818,27
+14819,39
+14821,38
+14822,32
+14823,29
+14824,38
+14825,48
+14827,22
+14828,25
+14829,19
+14830,23
+14831,44
+14832,30
+14833,31
+14834,39
+14835,31
+14836,44
+14838,30
+14839,34
+14840,24
+14841,22
+14842,19
+14843,32
+14844,30
+14845,20
+14846,22
+14847,24
+14849,44
+14850,42
+14851,33
+14852,24
+14853,30
+14854,62
+14855,34
+14856,34
+14857,24
+14858,39
+14859,46
+14860,26
+14862,23
+14863,24
+14864,37
+14866,29
+14867,61
+14869,27
+14870,24
+14872,28
+14873,31
+14874,29
+14875,36
+14876,40
+14877,30
+14878,28
+14879,30
+14880,28
+14881,29
+14882,47
+14883,32
+14884,23
+14885,21
+14886,26
+14888,30
+14889,25
+14890,26
+14891,33
+14892,47
+14893,38
+14894,27
+14895,32
+14896,31
+14897,38
+14898,30
+14899,31
+14900,34
+14901,37
+14902,54
+14903,41
+14904,28
+14905,36
+14906,30
+14908,25
+14909,36
+14910,23
+14911,48
+14912,59
+14914,42
+14915,24
+14916,29
+14917,33
+14918,23
+14919,27
+14920,25
+14921,22
+14922,18
+14923,35
+14924,21
+14925,33
+14926,21
+14927,36
+14928,40
+14929,24
+14930,24
+14931,27
+14932,20
+14933,41
+14934,16
+14935,29
+14936,24
+14937,33
+14938,43
+14939,26
+14940,26
+14941,19
+14942,18
+14943,24
+14944,32
+14945,22
+14946,32
+14947,27
+14948,56
+14949,29
+14950,32
+14951,21
+14952,24
+14953,28
+14956,20
+14957,25
+14958,26
+14959,34
+14960,34
+14961,51
+14962,37
+14963,38
+14964,29
+14965,33
+14966,49
+14967,27
+14968,38
+14970,22
+14971,25
+14972,23
+14973,27
+14974,20
+14975,24
+14976,33
+14977,26
+14978,21
+14980,16
+14981,39
+14982,45
+14983,30
+14984,27
+14985,43
+14986,24
+14987,28
+14989,25
+14990,35
+14992,38
+14993,31
+14994,28
+14995,32
+14996,27
+14997,31
+14998,22
+14999,23
+15000,24
+15001,27
+15002,33
+15003,31
+15004,44
+15005,38
+15006,23
+15007,27
+15008,23
+15009,27
+15010,31
+15011,27
+15012,32
+15014,34
+15015,36
+15016,36
+15017,35
+15019,45
+15020,23
+15021,24
+15023,27
+15024,33
+15025,29
+15026,29
+15027,15
+15028,22
+15029,24
+15030,48
+15031,30
+15032,34
+15033,24
+15034,32
+15035,29
+15036,47
+15037,40
+15039,22
+15040,18
+15041,21
+15042,27
+15043,36
+15044,25
+15046,21
+15047,40
+15048,26
+15049,23
+15050,43
+15052,31
+15053,32
+15054,28
+15055,31
+15056,24
+15057,24
+15058,23
+15059,41
+15061,32
+15062,27
+15063,47
+15064,20
+15065,36
+15066,28
+15067,20
+15069,26
+15070,29
+15071,33
+15072,36
+15073,22
+15074,25
+15075,55
+15076,21
+15077,25
+15078,26
+15079,32
+15081,25
+15082,47
+15083,22
+15084,26
+15086,40
+15087,26
+15088,34
+15089,38
+15090,25
+15091,42
+15092,23
+15095,20
+15096,24
+15097,35
+15098,25
+15099,30
+15100,23
+15101,29
+15102,27
+15103,38
+15104,40
+15106,28
+15107,33
+15109,29
+15110,24
+15112,24
+15113,32
+15114,24
+15115,14
+15116,24
+15117,22
+15118,38
+15119,27
+15120,43
+15121,23
+15122,32
+15123,36
+15125,26
+15126,40
+15127,24
+15128,27
+15129,18
+15130,30
+15131,25
+15132,18
+15133,27
+15134,31
+15135,33
+15136,30
+15137,30
+15138,20
+15139,30
+15140,31
+15141,25
+15142,41
+15143,43
+15144,20
+15145,25
+15146,25
+15147,30
+15148,42
+15149,37
+15151,25
+15152,25
+15153,40
+15154,27
+15155,20
+15156,41
+15157,26
+15158,33
+15159,27
+15161,27
+15162,31
+15163,36
+15164,21
+15165,34
+15166,32
+15167,30
+15168,28
+15169,31
+15170,29
+15171,18
+15172,35
+15173,41
+15174,40
+15176,24
+15178,23
+15179,27
+15180,37
+15181,46
+15182,30
+15183,33
+15186,28
+15187,25
+15188,29
+15189,30
+15190,29
+15192,35
+15193,36
+15194,37
+15195,32
+15196,20
+15197,24
+15198,41
+15200,48
+15201,29
+15203,28
+15204,30
+15206,27
+15207,22
+15209,24
+15210,19
+15211,39
+15212,23
+15213,44
+15214,28
+15215,33
+15216,33
+15217,29
+15218,34
+15219,33
+15221,24
+15222,32
+15223,38
+15224,20
+15225,26
+15226,21
+15227,21
+15228,20
+15229,36
+15230,16
+15231,27
+15232,23
+15234,40
+15235,27
+15236,42
+15237,36
+15238,32
+15240,23
+15241,23
+15242,26
+15243,24
+15245,32
+15246,28
+15247,26
+15248,27
+15249,32
+15250,28
+15251,20
+15252,37
+15253,23
+15254,35
+15255,40
+15256,21
+15257,24
+15258,29
+15259,37
+15260,27
+15261,31
+15262,20
+15263,42
+15264,29
+15265,42
+15266,40
+15267,29
+15268,30
+15269,23
+15270,35
+15272,37
+15273,39
+15274,25
+15275,26
+15276,29
+15277,35
+15280,19
+15283,27
+15284,35
+15285,26
+15286,44
+15287,33
+15288,34
+15289,22
+15290,37
+15291,26
+15292,38
+15293,25
+15294,36
+15295,29
+15296,24
+15297,41
+15298,31
+15299,35
+15300,19
+15301,28
+15302,40
+15303,24
+15304,61
+15305,23
+15306,45
+15307,35
+15308,19
+15309,25
+15310,28
+15311,57
+15312,27
+15313,19
+15314,24
+15315,36
+15316,22
+15317,28
+15318,33
+15320,38
+15321,39
+15322,34
+15323,32
+15324,19
+15325,16
+15327,23
+15328,47
+15329,28
+15330,40
+15331,23
+15332,25
+15333,18
+15334,32
+15335,34
+15336,49
+15337,47
+15338,25
+15339,26
+15340,39
+15341,34
+15342,30
+15343,31
+15344,28
+15345,23
+15346,26
+15347,29
+15349,23
+15350,47
+15351,38
+15352,29
+15354,31
+15355,29
+15356,19
+15357,25
+15358,36
+15359,31
+15360,25
+15361,23
+15362,28
+15363,41
+15364,32
+15365,30
+15366,25
+15367,32
+15368,31
+15369,29
+15370,24
+15373,25
+15374,23
+15375,33
+15376,36
+15377,26
+15378,25
+15381,29
+15382,28
+15383,31
+15384,27
+15385,18
+15386,27
+15387,38
+15388,35
+15389,28
+15390,24
+15392,31
+15393,26
+15394,27
+15395,29
+15396,32
+15398,32
+15399,34
+15400,48
+15401,28
+15402,26
+15403,21
+15404,24
+15405,23
+15406,26
+15407,39
+15408,37
+15410,22
+15411,36
+15412,51
+15413,24
+15414,45
+15416,22
+15417,36
+15418,29
+15419,18
+15420,24
+15421,44
+15422,35
+15423,16
+15424,25
+15425,35
+15426,35
+15427,26
+15428,24
+15429,21
+15430,24
+15431,31
+15432,25
+15433,19
+15434,24
+15436,41
+15437,31
+15438,33
+15439,20
+15440,35
+15441,36
+15442,27
+15443,45
+15444,21
+15445,25
+15447,23
+15448,14
+15450,38
+15451,27
+15452,32
+15453,25
+15454,25
+15455,23
+15456,31
+15457,32
+15458,32
+15459,21
+15460,21
+15461,30
+15462,17
+15463,17
+15464,27
+15466,40
+15467,27
+15468,37
+15469,28
+15470,21
+15471,45
+15472,29
+15474,21
+15476,21
+15477,63
+15478,23
+15479,33
+15480,30
+15481,25
+15482,42
+15483,30
+15484,36
+15485,34
+15486,23
+15487,23
+15488,29
+15489,35
+15490,37
+15491,23
+15492,42
+15493,20
+15494,34
+15495,40
+15496,44
+15497,28
+15498,22
+15500,41
+15501,27
+15502,31
+15503,26
+15504,27
+15505,38
+15507,53
+15508,28
+15509,27
+15510,37
+15511,41
+15512,25
+15513,41
+15515,51
+15516,22
+15517,40
+15518,44
+15519,34
+15520,25
+15521,23
+15522,22
+15523,24
+15524,36
+15525,24
+15526,27
+15527,49
+15528,31
+15529,23
+15530,50
+15531,22
+15532,30
+15533,27
+15535,52
+15536,24
+15537,28
+15538,20
+15540,33
+15541,34
+15543,24
+15544,34
+15545,26
+15546,21
+15547,36
+15548,38
+15549,23
+15550,20
+15551,42
+15552,57
+15553,50
+15556,23
+15557,20
+15558,18
+15559,19
+15560,23
+15561,28
+15562,28
+15563,23
+15564,24
+15565,25
+15566,29
+15567,30
+15568,25
+15570,33
+15572,31
+15573,21
+15574,27
+15575,23
+15576,42
+15577,24
+15578,30
+15579,30
+15581,32
+15582,23
+15583,23
+15584,17
+15585,30
+15586,22
+15587,28
+15588,37
+15589,36
+15590,32
+15591,29
+15592,28
+15593,26
+15594,34
+15595,49
+15596,19
+15597,23
+15598,34
+15599,33
+15600,48
+15601,26
+15603,23
+15605,23
+15606,26
+15607,28
+15608,18
+15610,37
+15611,29
+15612,29
+15613,35
+15614,39
+15615,31
+15616,38
+15617,26
+15618,35
+15619,37
+15621,39
+15624,20
+15625,18
+15626,32
+15627,30
+15628,30
+15630,17
+15632,30
+15633,34
+15634,34
+15635,32
+15636,27
+15637,23
+15638,20
+15639,29
+15640,59
+15641,35
+15643,35
+15644,52
+15645,24
+15646,25
+15647,37
+15648,20
+15649,36
+15650,35
+15651,28
+15652,25
+15653,26
+15654,30
+15655,30
+15656,22
+15657,23
+15658,25
+15660,29
+15661,23
+15662,26
+15663,20
+15664,18
+15665,22
+15666,24
+15667,28
+15668,55
+15669,25
+15670,24
+15671,31
+15672,40
+15673,23
+15674,20
+15675,23
+15676,35
+15677,29
+15678,24
+15679,25
+15680,42
+15681,24
+15682,33
+15683,30
+15684,33
+15685,27
+15686,23
+15687,32
+15688,38
+15689,37
+15690,20
+15691,42
+15692,26
+15693,31
+15694,25
+15695,19
+15696,19
+15697,62
+15698,29
+15699,27
+15700,24
+15702,26
+15704,29
+15705,29
+15706,20
+15707,28
+15708,33
+15709,27
+15710,23
+15711,39
+15712,24
+15713,29
+15714,18
+15715,35
+15716,34
+15717,24
+15718,16
+15719,35
+15720,29
+15721,25
+15722,38
+15723,24
+15724,18
+15725,28
+15726,29
+15727,69
+15729,37
+15730,42
+15731,16
+15732,35
+15733,49
+15734,61
+15735,27
+15736,42
+15738,46
+15739,25
+15740,28
+15741,24
+15742,19
+15743,29
+15744,23
+15745,19
+15746,26
+15747,43
+15749,41
+15750,36
+15751,34
+15752,40
+15753,25
+15754,16
+15755,31
+15756,35
+15757,39
+15758,30
+15759,20
+15760,24
+15761,40
+15762,30
+15763,38
+15764,25
+15765,36
+15766,25
+15767,26
+15768,18
+15769,33
+15770,22
+15771,24
+15774,28
+15775,32
+15776,22
+15780,28
+15781,44
+15782,48
+15784,36
+15785,25
+15786,20
+15787,29
+15788,25
+15791,27
+15792,27
+15793,19
+15794,20
+15795,26
+15796,20
+15797,19
+15799,30
+15800,37
+15802,17
+15803,25
+15804,28
+15805,28
+15806,21
+15807,20
+15808,30
+15809,41
+15810,30
+15811,37
+15813,32
+15815,29
+15816,25
+15817,33
+15818,44
+15819,14
+15820,31
+15821,29
+15822,24
+15824,33
+15825,23
+15826,15
+15827,24
+15828,28
+15829,23
+15830,22
+15831,39
+15832,26
+15833,36
+15834,34
+15835,21
+15836,32
+15837,31
+15838,53
+15839,28
+15840,18
+15841,26
+15842,26
+15843,37
+15844,31
+15845,33
+15846,48
+15847,44
+15848,33
+15849,37
+15850,34
+15851,33
+15852,13
+15853,26
+15854,36
+15855,28
+15856,24
+15857,40
+15858,55
+15859,40
+15860,33
+15861,25
+15862,25
+15863,24
+15864,24
+15865,50
+15866,62
+15867,33
+15868,28
+15869,23
+15870,27
+15871,23
+15872,50
+15873,30
+15874,25
+15875,42
+15876,30
+15877,27
+15878,37
+15880,23
+15881,42
+15882,34
+15883,22
+15884,22
+15885,24
+15886,20
+15887,29
+15889,25
+15890,23
+15891,34
+15892,44
+15893,18
+15894,31
+15895,21
+15897,26
+15899,24
+15900,23
+15901,42
+15903,25
+15904,23
+15905,32
+15906,33
+15907,37
+15908,31
+15909,24
+15910,19
+15911,32
+15912,31
+15913,23
+15915,26
+15916,26
+15917,26
+15918,42
+15919,25
+15920,20
+15921,23
+15922,32
+15923,27
+15924,30
+15925,27
+15926,28
+15927,30
+15928,22
+15929,23
+15930,41
+15931,25
+15932,32
+15933,33
+15934,33
+15935,37
+15936,28
+15937,47
+15938,20
+15939,28
+15940,18
+15941,42
+15942,22
+15943,41
+15944,37
+15945,34
+15946,22
+15947,42
+15948,20
+15949,24
+15950,36
+15951,26
+15952,36
+15953,34
+15954,23
+15955,34
+15956,20
+15957,35
+15958,41
+15959,27
+15961,37
+15962,54
+15963,33
+15964,40
+15965,19
+15966,30
+15967,38
+15968,20
+15969,30
+15970,22
+15972,27
+15973,29
+15974,34
+15975,25
+15977,21
+15978,28
+15979,27
+15981,28
+15982,31
+15983,33
+15985,28
+15986,24
+15988,27
+15989,33
+15990,52
+15991,36
+15992,36
+15993,26
+15994,31
+15995,38
+15996,43
+15997,24
+15998,30
+15999,38
+16000,45
+16001,60
+16002,21
+16003,30
+16004,39
+16005,22
+16006,26
+16007,35
+16008,27
+16009,24
+16010,30
+16011,28
+16012,25
+16013,27
+16014,33
+16015,33
+16016,24
+16017,33
+16019,42
+16020,36
+16021,35
+16022,32
+16023,28
+16024,23
+16025,17
+16026,28
+16027,62
+16028,24
+16029,37
+16030,32
+16031,24
+16032,32
+16033,26
+16034,22
+16035,29
+16036,57
+16037,24
+16038,14
+16039,32
+16040,33
+16041,22
+16042,30
+16043,23
+16044,22
+16045,21
+16046,35
+16047,34
+16050,24
+16051,22
+16052,22
+16053,40
+16054,36
+16055,22
+16056,29
+16057,20
+16058,26
+16059,23
+16060,33
+16061,21
+16062,31
+16063,25
+16064,36
+16065,25
+16066,23
+16068,18
+16069,22
+16070,30
+16071,27
+16072,26
+16073,21
+16074,27
+16076,15
+16077,29
+16078,16
+16081,38
+16083,29
+16084,22
+16085,44
+16086,35
+16087,34
+16088,27
+16089,25
+16090,19
+16091,55
+16092,53
+16093,49
+16094,31
+16095,26
+16097,43
+16098,25
+16099,28
+16100,23
+16101,42
+16104,21
+16106,14
+16107,33
+16108,33
+16110,18
+16111,27
+16112,29
+16113,48
+16115,54
+16116,41
+16117,38
+16118,24
+16120,49
+16121,34
+16122,34
+16123,28
+16125,28
+16126,34
+16128,23
+16129,21
+16130,32
+16131,50
+16134,37
+16136,27
+16138,38
+16139,37
+16140,35
+16142,25
+16143,42
+16144,24
+16145,31
+16146,23
+16147,33
+16148,29
+16150,39
+16151,25
+16152,30
+16153,28
+16154,16
+16155,35
+16156,25
+16157,24
+16158,36
+16159,35
+16160,52
+16161,27
+16162,25
+16163,33
+16164,23
+16165,37
+16167,21
+16168,25
+16169,26
+16170,35
+16171,38
+16172,21
+16173,34
+16174,21
+16175,48
+16176,42
+16177,31
+16178,42
+16179,20
+16181,28
+16182,26
+16183,24
+16184,31
+16185,21
+16186,41
+16187,18
+16188,20
+16189,27
+16190,23
+16191,39
+16192,25
+16193,32
+16195,24
+16196,25
+16197,51
+16198,25
+16199,34
+16200,29
+16202,24
+16203,23
+16204,28
+16205,29
+16206,21
+16207,30
+16208,21
+16210,23
+16211,37
+16212,36
+16213,34
+16214,99
+16215,25
+16216,22
+16217,39
+16218,30
+16219,27
+16220,31
+16221,33
+16222,31
+16223,20
+16224,23
+16225,25
+16226,30
+16227,34
+16228,31
+16229,38
+16232,37
+16233,44
+16234,33
+16235,23
+16236,22
+16237,25
+16238,33
+16239,59
+16240,44
+16241,25
+16242,29
+16243,28
+16244,19
+16245,25
+16246,35
+16247,24
+16248,34
+16249,32
+16250,23
+16251,29
+16253,16
+16254,20
+16255,30
+16256,43
+16257,42
+16258,47
+16259,24
+16260,20
+16261,24
+16262,35
+16263,21
+16264,20
+16265,29
+16266,19
+16267,26
+16268,25
+16270,25
+16271,34
+16272,53
+16273,35
+16274,25
+16275,40
+16276,32
+16277,36
+16278,30
+16279,26
+16280,20
+16281,36
+16282,23
+16283,23
+16285,27
+16286,18
+16287,29
+16288,37
+16289,36
+16290,58
+16291,39
+16292,30
+16293,26
+16294,26
+16295,46
+16296,25
+16297,28
+16298,37
+16299,27
+16300,1
+16301,45
+16302,28
+16303,31
+16304,48
+16305,24
+16306,31
+16307,26
+16308,33
+16309,30
+16310,28
+16311,22
+16312,22
+16313,37
+16315,38
+16316,24
+16317,21
+16318,35
+16319,44
+16320,29
+16322,20
+16323,29
+16324,30
+16325,39
+16326,38
+16327,21
+16328,30
+16330,35
+16331,37
+16332,36
+16333,28
+16334,39
+16335,34
+16336,30
+16337,23
+16338,55
+16340,20
+16341,26
+16342,43
+16344,24
+16345,27
+16346,53
+16347,60
+16348,25
+16349,43
+16350,36
+16351,38
+16352,21
+16353,34
+16354,21
+16355,19
+16356,36
+16357,42
+16358,18
+16359,29
+16360,26
+16361,27
+16362,36
+16363,22
+16364,32
+16365,41
+16366,32
+16367,22
+16368,32
+16369,25
+16370,44
+16371,15
+16372,22
+16373,32
+16374,24
+16375,30
+16377,32
+16378,25
+16379,28
+16380,28
+16381,22
+16382,39
+16384,22
+16385,24
+16386,25
+16387,50
+16388,21
+16389,30
+16390,18
+16393,32
+16394,43
+16395,23
+16396,34
+16397,19
+16399,26
+16400,35
+16402,26
+16403,21
+16404,28
+16405,28
+16407,38
+16408,21
+16409,26
+16411,26
+16412,32
+16413,36
+16414,20
+16415,49
+16416,21
+16417,38
+16418,28
+16419,59
+16420,33
+16421,44
+16422,22
+16423,27
+16424,34
+16425,29
+16426,26
+16427,22
+16428,45
+16430,32
+16432,29
+16433,38
+16434,22
+16435,28
+16436,35
+16437,30
+16438,31
+16439,28
+16440,25
+16441,25
+16442,24
+16443,27
+16444,36
+16445,25
+16447,32
+16448,19
+16449,32
+16450,23
+16451,28
+16452,27
+16453,26
+16454,31
+16455,28
+16456,18
+16457,51
+16458,27
+16459,25
+16460,39
+16461,23
+16462,23
+16464,31
+16465,36
+16466,30
+16467,29
+16468,20
+16469,35
+16470,15
+16471,22
+16472,51
+16473,32
+16474,33
+16475,47
+16476,33
+16477,37
+16478,38
+16479,20
+16480,33
+16481,28
+16483,46
+16484,30
+16485,21
+16486,26
+16487,29
+16488,24
+16489,33
+16490,30
+16491,18
+16492,39
+16493,46
+16495,30
+16496,31
+16497,29
+16498,23
+16499,28
+16500,21
+16501,23
+16502,25
+16503,37
+16504,23
+16505,25
+16506,38
+16507,24
+16508,30
+16509,53
+16510,22
+16511,27
+16512,37
+16513,26
+16514,31
+16515,19
+16516,50
+16517,22
+16518,23
+16519,24
+16520,28
+16522,23
+16523,29
+16524,50
+16525,24
+16526,36
+16528,28
+16529,29
+16530,21
+16531,27
+16533,28
+16534,19
+16536,28
+16537,25
+16538,30
+16539,25
+16540,52
+16541,40
+16542,34
+16543,35
+16544,31
+16546,29
+16547,24
+16548,27
+16549,20
+16550,44
+16552,42
+16553,23
+16554,28
+16555,32
+16556,43
+16557,24
+16558,34
+16559,32
+16560,30
+16561,22
+16565,38
+16566,28
+16569,40
+16570,29
+16571,21
+16572,50
+16573,30
+16574,33
+16576,22
+16577,44
+16578,26
+16579,30
+16580,26
+16581,26
+16582,26
+16583,23
+16585,61
+16586,33
+16588,22
+16589,22
+16590,29
+16591,25
+16593,38
+16594,17
+16595,65
+16596,16
+16597,16
+16598,33
+16600,17
+16601,22
+16602,31
+16603,38
+16605,30
+16606,23
+16607,23
+16608,50
+16609,17
+16610,28
+16612,21
+16614,23
+16615,43
+16617,29
+16618,20
+16619,48
+16620,28
+16621,28
+16622,30
+16623,27
+16624,25
+16625,28
+16626,25
+16627,38
+16628,41
+16630,30
+16631,36
+16632,22
+16634,27
+16635,22
+16636,20
+16638,58
+16639,21
+16640,32
+16641,38
+16642,30
+16643,40
+16644,47
+16645,19
+16646,31
+16647,44
+16649,41
+16650,21
+16651,22
+16652,24
+16653,24
+16654,49
+16655,25
+16656,26
+16657,34
+16658,20
+16659,23
+16660,20
+16661,30
+16662,14
+16664,33
+16665,40
+16666,38
+16667,13
+16668,28
+16669,23
+16670,25
+16671,25
+16672,31
+16673,22
+16674,21
+16675,26
+16676,31
+16677,27
+16678,14
+16680,31
+16681,26
+16682,23
+16683,17
+16684,24
+16685,39
+16686,25
+16687,31
+16688,18
+16689,25
+16690,37
+16691,19
+16692,36
+16695,29
+16696,33
+16697,28
+16698,27
+16699,27
+16700,25
+16702,22
+16703,37
+16704,41
+16706,58
+16707,23
+16708,21
+16709,35
+16710,25
+16711,30
+16712,31
+16713,73
+16714,25
+16715,46
+16716,19
+16717,20
+16718,45
+16719,30
+16720,19
+16721,25
+16722,27
+16723,20
+16724,26
+16725,49
+16726,28
+16727,37
+16728,45
+16729,32
+16730,18
+16731,25
+16732,37
+16733,52
+16735,26
+16736,20
+16737,28
+16738,36
+16739,46
+16740,29
+16741,41
+16742,40
+16743,52
+16745,37
+16746,30
+16747,45
+16748,38
+16750,50
+16752,32
+16753,21
+16754,27
+16755,34
+16756,26
+16759,32
+16760,27
+16761,27
+16762,30
+16763,41
+16764,26
+16765,31
+16766,50
+16767,28
+16768,18
+16769,34
+16770,26
+16771,41
+16772,27
+16773,28
+16774,39
+16775,36
+16776,41
+16777,28
+16778,15
+16779,27
+16780,26
+16783,20
+16784,31
+16785,27
+16786,20
+16787,24
+16788,37
+16789,29
+16791,27
+16792,28
+16793,27
+16795,36
+16796,32
+16797,30
+16799,22
+16800,28
+16801,32
+16802,48
+16803,21
+16804,28
+16806,26
+16807,30
+16809,33
+16810,32
+16811,26
+16812,28
+16813,32
+16814,14
+16815,26
+16816,33
+16817,15
+16818,35
+16819,25
+16821,22
+16822,34
+16823,25
+16824,29
+16825,25
+16826,17
+16827,33
+16829,33
+16830,19
+16831,25
+16833,22
+16834,35
+16836,20
+16837,22
+16838,26
+16839,29
+16840,29
+16841,38
+16843,29
+16844,31
+16845,31
+16846,40
+16847,23
+16848,27
+16849,52
+16850,41
+16851,24
+16852,26
+16853,23
+16854,24
+16855,46
+16856,33
+16857,36
+16858,49
+16859,28
+16860,28
+16861,34
+16862,22
+16863,18
+16864,26
+16865,33
+16866,23
+16867,55
+16869,39
+16870,31
+16871,29
+16872,38
+16873,27
+16874,25
+16875,28
+16876,28
+16877,25
+16879,29
+16880,35
+16882,29
+16883,37
+16885,70
+16886,27
+16887,41
+16888,20
+16889,33
+16890,30
+16891,43
+16892,29
+16894,24
+16895,24
+16896,21
+16898,61
+16899,16
+16900,34
+16901,33
+16903,46
+16905,24
+16906,37
+16907,32
+16908,34
+16909,41
+16910,29
+16911,27
+16912,31
+16914,39
+16915,28
+16916,50
+16917,28
+16918,27
+16919,23
+16920,39
+16921,24
+16922,26
+16923,21
+16924,33
+16925,27
+16926,25
+16927,27
+16929,35
+16930,25
+16931,42
+16932,36
+16933,24
+16934,32
+16935,28
+16936,21
+16938,25
+16939,26
+16940,21
+16941,59
+16942,36
+16943,23
+16945,21
+16946,36
+16947,32
+16949,38
+16950,29
+16951,19
+16952,22
+16953,36
+16954,35
+16955,25
+16956,22
+16957,29
+16958,30
+16959,31
+16960,22
+16961,34
+16962,22
+16963,28
+16964,25
+16965,28
+16966,33
+16968,35
+16969,34
+16970,21
+16971,26
+16972,21
+16973,26
+16974,24
+16975,26
+16976,40
+16977,23
+16978,31
+16979,26
+16980,24
+16981,29
+16983,21
+16984,27
+16985,26
+16986,37
+16987,33
+16988,29
+16990,26
+16991,34
+16992,29
+16993,32
+16994,22
+16995,30
+16996,40
+16997,29
+16998,20
+16999,33
+17000,36
+17001,28
+17002,25
+17003,30
+17004,24
+17006,45
+17007,39
+17008,29
+17009,49
+17011,27
+17012,28
+17013,30
+17014,35
+17015,18
+17016,34
+17017,35
+17018,30
+17019,33
+17020,31
+17021,28
+17022,21
+17024,21
+17025,23
+17026,24
+17028,49
+17029,39
+17032,40
+17033,30
+17034,38
+17035,30
+17036,27
+17038,25
+17039,20
+17040,28
+17041,37
+17042,31
+17043,24
+17044,43
+17045,21
+17046,39
+17047,26
+17048,30
+17049,27
+17050,35
+17052,20
+17053,23
+17054,28
+17055,26
+17056,29
+17057,30
+17058,22
+17059,25
+17060,22
+17061,31
+17062,30
+17063,30
+17064,50
+17065,23
+17066,35
+17068,27
+17069,18
+17071,25
+17072,27
+17073,34
+17075,30
+17076,28
+17078,29
+17079,26
+17080,22
+17081,21
+17083,32
+17084,23
+17085,30
+17086,28
+17087,24
+17088,23
+17089,22
+17090,34
+17091,22
+17092,20
+17093,29
+17094,27
+17095,37
+17096,24
+17097,31
+17098,28
+17099,30
+17100,26
+17101,43
+17102,33
+17103,23
+17104,27
+17107,25
+17108,31
+17109,25
+17110,17
+17111,37
+17112,40
+17113,41
+17114,35
+17115,45
+17116,19
+17117,21
+17118,27
+17119,43
+17120,35
+17121,28
+17123,28
+17125,19
+17126,30
+17127,30
+17128,33
+17129,27
+17130,15
+17132,38
+17133,31
+17134,34
+17135,26
+17136,26
+17137,24
+17138,38
+17140,32
+17141,62
+17142,35
+17143,31
+17144,35
+17145,21
+17146,19
+17147,31
+17148,19
+17149,44
+17150,31
+17151,38
+17152,20
+17153,31
+17155,24
+17156,28
+17158,33
+17159,24
+17160,34
+17163,25
+17164,23
+17165,25
+17166,37
+17167,23
+17168,48
+17169,20
+17170,37
+17171,21
+17172,33
+17173,30
+17174,27
+17175,23
+17176,43
+17177,35
+17178,23
+17180,28
+17181,20
+17182,50
+17183,20
+17184,23
+17185,28
+17186,37
+17187,27
+17188,25
+17189,34
+17190,26
+17191,55
+17192,45
+17193,27
+17194,23
+17195,28
+17196,59
+17197,25
+17198,43
+17199,32
+17200,25
+17201,27
+17202,33
+17203,21
+17204,42
+17205,34
+17206,48
+17208,18
+17209,27
+17210,56
+17211,35
+17212,45
+17213,51
+17214,46
+17215,40
+17216,32
+17217,20
+17218,26
+17219,30
+17221,34
+17222,35
+17224,27
+17226,39
+17227,23
+17228,27
+17229,25
+17230,39
+17231,29
+17232,31
+17233,22
+17235,40
+17236,14
+17237,30
+17239,20
+17240,26
+17241,29
+17242,35
+17243,25
+17244,23
+17245,26
+17246,35
+17247,23
+17248,29
+17249,23
+17250,29
+17251,32
+17252,14
+17253,23
+17254,33
+17255,27
+17256,30
+17257,51
+17258,24
+17259,19
+17260,22
+17261,38
+17262,33
+17263,20
+17264,47
+17265,28
+17266,43
+17267,26
+17268,33
+17269,29
+17270,52
+17271,44
+17272,37
+17273,45
+17275,34
+17276,26
+17277,37
+17278,33
+17279,28
+17280,36
+17281,37
+17282,24
+17283,30
+17284,25
+17285,37
+17286,34
+17287,17
+17288,23
+17289,30
+17290,22
+17291,33
+17292,27
+17293,33
+17294,37
+17295,22
+17296,25
+17297,20
+17298,33
+17299,23
+17300,20
+17302,20
+17303,26
+17304,27
+17306,31
+17308,27
+17309,31
+17310,37
+17311,31
+17313,24
+17315,27
+17316,21
+17317,30
+17318,27
+17319,57
+17320,21
+17321,26
+17322,27
+17323,30
+17324,29
+17325,25
+17326,25
+17327,23
+17328,41
+17331,38
+17332,36
+17333,25
+17334,24
+17335,26
+17336,23
+17337,42
+17338,41
+17339,23
+17340,27
+17341,18
+17342,17
+17344,44
+17345,26
+17346,23
+17348,41
+17349,39
+17350,23
+17351,25
+17352,23
+17353,22
+17354,25
+17355,36
+17356,21
+17357,40
+17358,24
+17359,24
+17360,21
+17361,21
+17362,44
+17363,25
+17364,31
+17365,53
+17366,25
+17367,29
+17369,27
+17371,36
+17372,36
+17373,20
+17374,53
+17375,25
+17376,31
+17377,31
+17378,33
+17379,29
+17380,23
+17381,36
+17382,36
+17383,29
+17384,30
+17386,23
+17387,30
+17388,27
+17389,27
+17390,31
+17391,20
+17392,19
+17393,21
+17394,26
+17395,28
+17396,43
+17398,21
+17399,26
+17400,32
+17401,44
+17403,33
+17404,27
+17405,22
+17406,28
+17407,48
+17408,24
+17409,41
+17410,25
+17411,37
+17412,34
+17413,22
+17415,29
+17416,38
+17417,34
+17418,34
+17420,25
+17421,36
+17423,20
+17424,29
+17426,17
+17427,26
+17428,23
+17429,24
+17430,27
+17432,23
+17433,48
+17434,34
+17435,32
+17436,30
+17437,25
+17438,29
+17439,29
+17440,23
+17441,26
+17442,58
+17443,36
+17445,36
+17447,28
+17448,30
+17449,24
+17450,22
+17451,23
+17452,31
+17453,37
+17454,41
+17456,19
+17457,78
+17458,23
+17460,31
+17461,22
+17462,38
+17464,21
+17465,29
+17467,28
+17468,33
+17469,46
+17470,27
+17471,32
+17472,35
+17473,30
+17474,27
+17475,46
+17477,32
+17478,35
+17479,24
+17481,40
+17482,35
+17483,24
+17484,25
+17485,60
+17486,23
+17487,26
+17488,40
+17491,27
+17492,40
+17493,24
+17494,25
+17495,46
+17497,37
+17498,38
+17499,34
+17500,25
+17503,34
+17504,23
+17505,32
+17507,28
+17508,44
+17510,29
+17511,24
+17513,31
+17514,28
+17515,50
+17516,44
+17517,37
+17518,21
+17520,30
+17522,36
+17523,35
+17524,21
+17525,22
+17526,27
+17527,16
+17528,24
+17530,32
+17531,54
+17532,25
+17533,29
+17535,43
+17536,26
+17537,50
+17538,38
+17539,23
+17541,36
+17542,25
+17543,40
+17544,36
+17545,27
+17546,22
+17547,27
+17548,30
+17549,30
+17550,30
+17551,43
+17552,17
+17553,33
+17555,41
+17556,36
+17559,22
+17560,23
+17561,40
+17562,29
+17563,20
+17564,46
+17565,30
+17566,33
+17567,37
+17568,39
+17570,29
+17571,38
+17572,35
+17573,30
+17574,33
+17575,33
+17576,31
+17577,24
+17578,29
+17580,25
+17581,22
+17582,31
+17583,23
+17584,25
+17586,42
+17588,25
+17589,57
+17590,31
+17591,26
+17592,24
+17593,44
+17594,26
+17595,31
+17596,23
+17597,24
+17598,33
+17599,43
+17601,30
+17602,25
+17604,36
+17605,29
+17606,35
+17607,56
+17608,20
+17609,42
+17610,26
+17611,15
+17612,15
+17613,26
+17615,31
+17616,25
+17617,24
+17618,45
+17619,27
+17620,21
+17621,17
+17622,30
+17623,22
+17624,38
+17625,26
+17626,36
+17627,21
+17628,28
+17629,20
+17631,27
+17632,27
+17633,47
+17634,25
+17636,27
+17637,35
+17639,20
+17640,26
+17642,44
+17643,19
+17644,25
+17645,18
+17646,46
+17647,23
+17649,46
+17650,30
+17651,25
+17652,31
+17653,24
+17654,25
+17655,28
+17656,24
+17657,19
+17658,21
+17659,30
+17660,33
+17661,26
+17662,27
+17663,33
+17664,25
+17666,30
+17667,29
+17668,24
+17669,24
+17670,26
+17671,19
+17672,31
+17673,38
+17674,27
+17675,35
+17676,37
+17677,31
+17678,30
+17679,20
+17680,40
+17681,20
+17682,35
+17683,29
+17684,25
+17685,29
+17686,57
+17687,40
+17688,32
+17689,25
+17691,32
+17692,40
+17693,24
+17694,30
+17695,38
+17696,29
+17697,33
+17698,20
+17699,27
+17700,32
+17701,25
+17703,24
+17704,20
+17705,28
+17707,30
+17708,26
+17709,30
+17710,23
+17711,26
+17712,48
+17713,27
+17714,31
+17715,37
+17716,35
+17717,29
+17718,33
+17719,33
+17720,25
+17721,22
+17722,53
+17723,28
+17724,27
+17725,25
+17726,23
+17727,17
+17729,26
+17730,14
+17731,61
+17732,14
+17736,33
+17738,27
+17739,30
+17740,38
+17741,25
+17742,29
+17743,40
+17744,23
+17745,25
+17746,30
+17747,48
+17748,40
+17749,33
+17750,36
+17751,36
+17752,51
+17753,26
+17754,21
+17755,52
+17756,19
+17757,29
+17758,33
+17759,33
+17761,40
+17762,25
+17763,42
+17764,26
+17765,25
+17766,20
+17767,23
+17768,23
+17769,33
+17770,24
+17771,32
+17772,27
+17773,39
+17774,20
+17775,24
+17776,22
+17777,40
+17778,21
+17779,31
+17780,35
+17781,33
+17782,24
+17783,34
+17784,49
+17785,23
+17786,20
+17787,25
+17788,19
+17790,20
+17791,25
+17792,44
+17793,21
+17794,24
+17795,23
+17796,38
+17797,26
+17798,22
+17799,36
+17800,32
+17801,28
+17802,49
+17803,26
+17804,30
+17805,33
+17806,29
+17809,25
+17810,29
+17811,26
+17812,29
+17813,32
+17814,16
+17815,27
+17816,23
+17817,31
+17818,27
+17819,17
+17820,37
+17822,26
+17823,33
+17824,23
+17825,40
+17826,42
+17827,28
+17828,21
+17829,25
+17830,35
+17831,25
+17832,24
+17833,30
+17834,23
+17836,25
+17837,27
+17838,30
+17839,49
+17841,36
+17842,36
+17843,26
+17844,44
+17845,25
+17846,24
+17847,22
+17848,25
+17849,36
+17850,33
+17851,69
+17852,26
+17853,18
+17854,40
+17855,32
+17856,27
+17857,30
+17858,33
+17859,35
+17860,21
+17861,18
+17862,30
+17863,29
+17864,20
+17865,20
+17866,22
+17867,39
+17868,27
+17869,24
+17870,35
+17871,38
+17872,33
+17873,20
+17874,26
+17875,42
+17876,19
+17877,18
+17878,25
+17879,54
+17881,23
+17882,23
+17883,30
+17885,23
+17886,24
+17887,24
+17888,56
+17889,24
+17890,29
+17893,27
+17894,18
+17895,31
+17896,27
+17897,40
+17899,50
+17900,20
+17902,41
+17903,44
+17904,29
+17906,57
+17908,22
+17909,24
+17910,28
+17911,30
+17912,32
+17913,24
+17914,25
+17915,41
+17917,26
+17918,24
+17919,36
+17920,33
+17921,39
+17922,18
+17923,34
+17925,23
+17926,29
+17927,29
+17928,16
+17929,25
+17931,36
+17932,34
+17933,39
+17934,28
+17935,38
+17936,25
+17937,23
+17938,21
+17939,23
+17940,41
+17941,16
+17942,25
+17943,17
+17944,23
+17945,33
+17946,28
+17947,29
+17948,30
+17949,36
+17950,27
+17952,27
+17953,33
+17954,23
+17956,28
+17960,54
+17961,43
+17962,17
+17964,23
+17965,23
+17966,25
+17967,28
+17968,35
+17969,26
+17970,35
+17972,24
+17973,33
+17974,26
+17975,38
+17977,16
+17978,29
+17979,32
+17980,38
+17981,25
+17982,30
+17984,40
+17985,38
+17986,31
+17987,34
+17988,18
+17989,25
+17990,41
+17992,37
+17993,26
+17994,19
+17995,39
+17996,24
+17997,23
+17998,36
+17999,30
+18000,26
+18001,23
+18002,30
+18003,27
+18004,31
+18005,31
+18006,39
+18007,28
+18008,40
+18009,20
+18010,23
+18011,26
+18012,29
+18013,32
+18014,39
+18015,18
+18016,31
+18017,47
+18018,25
+18019,27
+18020,20
+18021,36
+18022,23
+18023,28
+18025,17
+18026,55
+18027,25
+18028,45
+18030,27
+18031,54
+18032,17
+18033,40
+18034,15
+18035,21
+18036,57
+18038,26
+18039,31
+18040,62
+18042,33
+18043,28
+18044,30
+18045,20
+18046,29
+18047,27
+18049,22
+18050,21
+18051,34
+18052,19
+18053,30
+18054,54
+18055,26
+18056,40
+18057,24
+18058,25
+18059,28
+18060,26
+18061,26
+18062,31
+18064,34
+18065,25
+18066,21
+18067,26
+18068,28
+18069,27
+18070,20
+18071,23
+18072,19
+18073,30
+18074,38
+18075,20
+18076,35
+18077,25
+18078,21
+18079,22
+18080,36
+18081,34
+18082,24
+18083,24
+18084,30
+18086,26
+18087,23
+18088,43
+18089,49
+18090,35
+18091,35
+18092,24
+18093,40
+18094,42
+18095,46
+18096,26
+18097,32
+18098,25
+18099,33
+18100,28
+18101,22
+18102,24
+18103,43
+18104,29
+18105,23
+18106,40
+18107,42
+18108,24
+18109,27
+18112,27
+18113,34
+18114,23
+18115,29
+18116,27
+18117,20
+18118,18
+18119,42
+18120,31
+18121,16
+18122,44
+18123,28
+18124,24
+18127,33
+18128,15
+18129,21
+18131,22
+18132,35
+18134,36
+18135,28
+18136,20
+18137,30
+18138,40
+18139,40
+18140,23
+18141,22
+18142,52
+18143,30
+18144,51
+18145,34
+18146,40
+18147,34
+18148,24
+18149,22
+18150,42
+18151,21
+18152,40
+18154,29
+18155,47
+18156,23
+18157,43
+18158,24
+18159,21
+18160,26
+18161,37
+18162,30
+18163,30
+18164,19
+18165,20
+18166,26
+18167,37
+18168,22
+18169,23
+18170,23
+18171,39
+18172,24
+18174,24
+18175,23
+18176,31
+18178,24
+18179,34
+18180,31
+18181,39
+18182,39
+18183,34
+18184,21
+18185,22
+18186,23
+18187,44
+18188,24
+18189,46
+18190,14
+18191,28
+18192,36
+18193,30
+18194,19
+18195,18
+18196,43
+18197,24
+18198,25
+18199,33
+18200,28
+18202,39
+18203,15
+18204,22
+18206,32
+18207,62
+18208,43
+18209,26
+18210,21
+18211,39
+18212,40
+18213,17
+18214,27
+18215,24
+18216,27
+18217,23
+18218,36
+18219,24
+18220,24
+18221,48
+18223,17
+18224,37
+18225,19
+18226,39
+18227,30
+18229,48
+18230,26
+18231,27
+18232,19
+18233,35
+18235,24
+18236,24
+18237,36
+18238,54
+18239,32
+18240,28
+18241,52
+18242,35
+18243,31
+18244,38
+18245,36
+18246,34
+18247,25
+18248,22
+18249,31
+18250,33
+18251,37
+18252,32
+18253,54
+18255,22
+18257,25
+18258,28
+18259,19
+18260,32
+18261,23
+18262,21
+18263,27
+18265,36
+18266,22
+18267,29
+18269,29
+18270,35
+18271,21
+18272,34
+18273,34
+18274,24
+18275,25
+18276,19
+18277,23
+18278,22
+18279,28
+18280,23
+18281,36
+18282,22
+18283,43
+18284,25
+18285,19
+18286,42
+18287,21
+18288,27
+18289,28
+18290,18
+18291,32
+18292,36
+18293,27
+18294,32
+18295,27
+18296,29
+18297,24
+18298,20
+18299,28
+18300,21
+18301,33
+18302,35
+18303,25
+18304,26
+18305,24
+18306,28
+18307,39
+18308,31
+18309,33
+18310,27
+18312,26
+18313,30
+18315,25
+18316,24
+18317,33
+18318,29
+18319,21
+18320,35
+18321,46
+18322,44
+18324,21
+18325,26
+18326,34
+18327,22
+18328,20
+18329,26
+18330,42
+18331,39
+18332,31
+18333,16
+18334,30
+18335,28
+18336,22
+18337,24
+18338,40
+18341,26
+18342,31
+18344,31
+18345,27
+18346,30
+18347,27
+18348,27
+18349,29
+18350,34
+18351,47
+18352,27
+18353,26
+18354,15
+18355,25
+18356,24
+18358,51
+18359,23
+18360,25
+18361,36
+18362,29
+18363,36
+18364,51
+18365,33
+18366,31
+18367,61
+18368,21
+18369,21
+18370,16
+18371,21
+18372,19
+18373,24
+18374,26
+18375,32
+18376,31
+18377,30
+18379,20
+18381,20
+18382,28
+18384,28
+18385,20
+18386,33
+18387,39
+18389,28
+18390,23
+18391,38
+18392,23
+18393,24
+18394,24
+18395,27
+18396,29
+18397,46
+18398,28
+18399,35
+18400,26
+18402,34
+18403,27
+18404,48
+18405,46
+18406,30
+18407,35
+18409,23
+18410,28
+18411,13
+18412,33
+18413,24
+18414,34
+18415,33
+18416,23
+18417,30
+18418,23
+18420,32
+18421,24
+18422,24
+18423,28
+18424,27
+18426,26
+18427,41
+18428,22
+18429,23
+18430,22
+18431,34
+18432,33
+18433,26
+18434,42
+18435,23
+18436,23
+18437,33
+18438,26
+18439,27
+18440,72
+18441,33
+18442,63
+18443,32
+18445,29
+18446,24
+18448,47
+18449,29
+18450,32
+18452,39
+18453,26
+18454,31
+18455,24
+18456,24
+18457,34
+18458,28
+18460,24
+18461,31
+18462,25
+18463,17
+18464,36
+18465,25
+18466,25
+18467,21
+18468,27
+18469,22
+18470,19
+18471,42
+18472,38
+18473,28
+18474,44
+18475,37
+18476,29
+18477,27
+18478,63
+18479,29
+18480,51
+18481,26
+18482,25
+18483,33
+18484,34
+18485,26
+18486,35
+18487,27
+18488,54
+18489,39
+18490,40
+18491,28
+18492,25
+18493,30
+18494,30
+18495,27
+18496,37
+18497,18
+18498,38
+18499,27
+18500,34
+18501,49
+18502,20
+18503,37
+18504,55
+18505,33
+18506,23
+18507,24
+18509,30
+18510,27
+18513,28
+18514,34
+18515,22
+18516,33
+18517,26
+18518,34
+18519,23
+18520,23
+18521,35
+18522,21
+18523,21
+18524,42
+18525,24
+18526,33
+18527,28
+18528,36
+18529,34
+18530,16
+18532,37
+18533,27
+18534,40
+18535,31
+18536,27
+18537,31
+18538,31
+18539,33
+18540,31
+18541,31
+18542,43
+18544,25
+18545,23
+18546,39
+18547,17
+18548,20
+18549,28
+18550,27
+18551,22
+18552,36
+18553,28
+18554,20
+18555,40
+18557,22
+18559,24
+18560,29
+18561,21
+18562,60
+18563,26
+18564,20
+18565,23
+18566,28
+18567,32
+18568,36
+18569,34
+18571,39
+18572,55
+18574,33
+18576,18
+18577,39
+18578,25
+18579,27
+18580,43
+18581,34
+18582,27
+18583,26
+18584,31
+18585,25
+18586,29
+18587,48
+18588,29
+18589,38
+18590,21
+18591,30
+18592,35
+18593,38
+18594,27
+18595,26
+18596,35
+18597,24
+18598,61
+18599,20
+18600,28
+18602,32
+18603,31
+18604,31
+18605,39
+18606,40
+18607,30
+18608,40
+18609,30
+18610,21
+18611,25
+18612,37
+18614,41
+18615,42
+18616,29
+18617,29
+18618,32
+18620,51
+18621,38
+18622,26
+18623,32
+18624,30
+18625,33
+18626,28
+18627,29
+18628,27
+18629,22
+18630,24
+18631,28
+18632,22
+18633,24
+18634,34
+18636,47
+18637,23
+18638,22
+18639,23
+18640,30
+18641,57
+18642,38
+18643,24
+18644,32
+18645,33
+18646,48
+18647,24
+18648,17
+18649,24
+18651,30
+18652,31
+18654,24
+18655,29
+18656,26
+18657,29
+18658,29
+18659,24
+18660,25
+18661,27
+18662,22
+18663,26
+18664,31
+18665,22
+18666,18
+18667,32
+18668,19
+18669,29
+18670,55
+18672,49
+18673,33
+18674,23
+18675,27
+18676,55
+18677,26
+18678,25
+18679,24
+18680,33
+18681,35
+18682,28
+18683,24
+18685,30
+18687,21
+18688,23
+18689,35
+18690,60
+18691,28
+18692,39
+18693,31
+18694,23
+18695,25
+18696,14
+18697,27
+18698,19
+18700,45
+18701,28
+18703,51
+18704,34
+18705,26
+18706,23
+18707,22
+18708,38
+18710,27
+18711,36
+18712,26
+18713,30
+18714,39
+18715,41
+18717,25
+18718,41
+18719,27
+18720,30
+18721,23
+18722,29
+18723,47
+18724,36
+18725,31
+18726,25
+18727,23
+18728,26
+18729,22
+18730,24
+18731,18
+18732,19
+18733,15
+18734,24
+18735,42
+18736,46
+18737,26
+18738,40
+18739,23
+18740,44
+18742,23
+18743,24
+18744,37
+18745,23
+18746,33
+18747,24
+18748,27
+18749,38
+18750,53
+18751,27
+18752,21
+18753,25
+18755,25
+18756,49
+18757,48
+18758,26
+18759,27
+18760,22
+18761,30
+18762,26
+18763,22
+18764,24
+18765,26
+18766,49
+18767,24
+18769,24
+18770,34
+18771,43
+18772,40
+18773,36
+18774,27
+18775,26
+18776,24
+18777,24
+18778,27
+18779,50
+18780,30
+18781,23
+18782,49
+18783,25
+18784,27
+18785,27
+18786,45
+18787,22
+18789,46
+18791,25
+18792,31
+18793,35
+18794,39
+18795,37
+18796,25
+18797,27
+18798,40
+18799,30
+18800,24
+18801,30
+18802,33
+18803,35
+18805,23
+18806,30
+18807,41
+18808,25
+18809,39
+18810,27
+18811,26
+18812,29
+18813,38
+18814,33
+18815,40
+18816,38
+18817,23
+18818,30
+18819,22
+18820,35
+18821,38
+18822,30
+18824,24
+18825,20
+18826,38
+18827,27
+18828,21
+18829,45
+18830,34
+18831,24
+18832,27
+18833,20
+18834,28
+18835,39
+18836,28
+18837,19
+18838,26
+18839,24
+18840,32
+18841,17
+18842,41
+18843,33
+18844,28
+18845,30
+18846,29
+18848,23
+18849,27
+18851,29
+18852,35
+18853,50
+18854,39
+18855,16
+18856,24
+18857,28
+18859,33
+18861,32
+18862,26
+18863,58
+18864,23
+18865,33
+18866,46
+18867,27
+18868,31
+18869,22
+18871,40
+18872,18
+18873,29
+18874,25
+18875,24
+18876,49
+18877,31
+18879,31
+18880,31
+18881,26
+18882,25
+18883,35
+18884,36
+18886,29
+18887,23
+18889,25
+18890,27
+18891,21
+18892,31
+18894,30
+18895,34
+18896,18
+18897,17
+18898,35
+18899,43
+18900,23
+18901,32
+18902,23
+18904,25
+18905,51
+18906,35
+18907,18
+18909,52
+18910,40
+18911,43
+18913,22
+18914,17
+18915,40
+18916,26
+18917,34
+18919,16
+18920,28
+18921,27
+18922,27
+18923,28
+18924,25
+18925,25
+18926,22
+18927,24
+18928,33
+18929,29
+18932,30
+18933,39
+18934,26
+18935,27
+18936,33
+18937,52
+18938,31
+18939,24
+18940,32
+18941,49
+18942,20
+18943,54
+18944,26
+18945,23
+18946,31
+18947,27
+18948,22
+18950,20
+18951,23
+18952,29
+18953,35
+18954,25
+18955,28
+18957,27
+18958,40
+18959,24
+18960,26
+18962,28
+18963,30
+18964,40
+18965,32
+18967,26
+18968,33
+18969,58
+18970,21
+18971,30
+18972,35
+18973,40
+18974,28
+18975,27
+18976,25
+18978,50
+18979,20
+18980,28
+18981,53
+18982,51
+18983,27
+18984,26
+18986,30
+18987,52
+18988,24
+18989,25
+18990,24
+18991,21
+18992,27
+18993,30
+18994,27
+18995,28
+18996,27
+18997,32
+18998,26
+18999,18
+19000,32
+19001,25
+19002,41
+19003,42
+19005,26
+19006,32
+19007,46
+19008,46
+19009,22
+19010,44
+19011,32
+19012,24
+19013,25
+19014,26
+19015,38
+19016,24
+19018,32
+19019,21
+19021,22
+19022,35
+19024,21
+19025,27
+19026,36
+19027,45
+19028,54
+19029,45
+19031,19
+19032,25
+19033,21
+19034,28
+19035,27
+19036,21
+19038,31
+19039,50
+19040,45
+19041,30
+19042,34
+19043,31
+19044,30
+19045,23
+19046,46
+19047,42
+19048,20
+19049,23
+19050,36
+19051,25
+19052,24
+19053,37
+19054,34
+19055,24
+19056,36
+19057,23
+19058,38
+19059,14
+19060,28
+19061,24
+19063,41
+19064,32
+19065,57
+19069,52
+19070,32
+19071,21
+19072,24
+19073,24
+19074,37
+19075,33
+19076,26
+19077,34
+19078,39
+19079,28
+19080,21
+19082,38
+19083,25
+19085,25
+19086,22
+19088,34
+19089,38
+19090,27
+19091,33
+19092,35
+19093,20
+19094,22
+19095,38
+19096,21
+19098,25
+19100,28
+19101,34
+19103,20
+19104,53
+19105,30
+19106,33
+19107,25
+19109,34
+19110,29
+19111,38
+19112,29
+19113,43
+19114,31
+19115,27
+19116,36
+19117,19
+19118,22
+19119,30
+19120,35
+19121,28
+19122,22
+19123,26
+19124,42
+19125,28
+19126,32
+19127,26
+19128,25
+19129,26
+19130,33
+19131,26
+19132,20
+19133,38
+19134,31
+19136,27
+19137,28
+19138,30
+19140,28
+19141,32
+19142,23
+19144,28
+19146,26
+19147,27
+19148,36
+19149,23
+19151,52
+19152,29
+19153,33
+19154,43
+19155,25
+19156,15
+19157,32
+19158,23
+19159,25
+19160,19
+19162,38
+19163,25
+19164,39
+19165,57
+19166,28
+19167,16
+19168,18
+19170,31
+19171,27
+19172,31
+19173,26
+19174,30
+19175,33
+19176,22
+19177,25
+19178,29
+19179,31
+19180,58
+19181,49
+19182,31
+19183,33
+19185,20
+19186,40
+19187,30
+19188,23
+19189,20
+19190,34
+19191,37
+19192,36
+19195,26
+19196,43
+19197,21
+19198,24
+19199,48
+19201,44
+19202,30
+19203,18
+19204,50
+19205,22
+19206,22
+19207,26
+19208,20
+19209,24
+19211,29
+19212,41
+19214,54
+19215,19
+19216,30
+19217,28
+19218,21
+19219,25
+19220,20
+19221,35
+19222,33
+19223,26
+19224,19
+19225,28
+19226,31
+19227,40
+19228,26
+19229,34
+19230,28
+19231,35
+19232,24
+19233,23
+19234,30
+19235,36
+19236,28
+19237,24
+19238,17
+19239,33
+19240,29
+19241,16
+19244,25
+19245,33
+19246,31
+19247,15
+19248,26
+19249,22
+19250,29
+19251,18
+19252,30
+19253,17
+19254,25
+19255,35
+19257,30
+19258,26
+19259,32
+19260,21
+19261,24
+19262,51
+19263,30
+19264,42
+19265,31
+19266,29
+19267,38
+19268,16
+19269,48
+19270,46
+19271,33
+19272,29
+19275,18
+19276,32
+19277,53
+19278,33
+19279,28
+19281,48
+19282,41
+19283,23
+19284,32
+19285,32
+19286,36
+19287,48
+19288,37
+19289,23
+19290,37
+19291,41
+19292,31
+19293,27
+19294,47
+19295,26
+19296,61
+19297,25
+19298,39
+19299,35
+19300,50
+19301,26
+19302,25
+19304,20
+19305,50
+19306,20
+19307,23
+19308,21
+19309,41
+19310,23
+19312,32
+19313,36
+19314,37
+19316,31
+19317,24
+19318,38
+19319,40
+19320,26
+19322,29
+19323,30
+19325,42
+19326,27
+19327,27
+19328,23
+19329,28
+19331,26
+19333,40
+19335,46
+19336,24
+19337,29
+19338,28
+19339,52
+19340,32
+19341,29
+19342,31
+19343,23
+19344,20
+19345,22
+19346,18
+19347,35
+19348,37
+19349,32
+19350,29
+19354,30
+19355,29
+19356,27
+19357,24
+19358,30
+19359,27
+19360,28
+19361,22
+19362,31
+19364,30
+19365,30
+19366,21
+19367,17
+19368,18
+19369,20
+19370,45
+19371,28
+19372,35
+19373,24
+19374,38
+19375,30
+19376,23
+19377,16
+19378,23
+19379,17
+19380,35
+19381,28
+19382,21
+19383,40
+19384,35
+19386,33
+19387,29
+19389,27
+19391,28
+19392,42
+19393,34
+19394,49
+19395,24
+19396,48
+19397,20
+19398,30
+19399,49
+19400,41
+19401,25
+19402,29
+19403,19
+19404,21
+19405,29
+19406,29
+19407,33
+19409,36
+19410,37
+19412,22
+19413,36
+19414,28
+19415,27
+19416,27
+19417,29
+19418,39
+19419,28
+19421,43
+19422,39
+19424,22
+19425,40
+19426,21
+19427,25
+19430,23
+19431,39
+19432,25
+19433,58
+19434,31
+19435,23
+19439,40
+19441,41
+19442,29
+19444,49
+19445,23
+19446,42
+19447,34
+19448,37
+19449,25
+19450,22
+19451,35
+19452,25
+19453,57
+19454,23
+19455,25
+19456,24
+19457,22
+19458,32
+19460,40
+19461,29
+19462,38
+19463,36
+19464,20
+19465,24
+19466,23
+19467,19
+19468,37
+19469,24
+19470,33
+19471,27
+19472,20
+19473,23
+19474,38
+19475,15
+19476,27
+19477,33
+19478,43
+19479,23
+19480,44
+19481,27
+19482,29
+19483,39
+19484,26
+19485,36
+19486,38
+19487,34
+19488,24
+19489,41
+19490,51
+19491,30
+19492,26
+19493,26
+19494,26
+19495,32
+19496,55
+19497,46
+19498,40
+19499,34
+19500,32
+19501,27
+19503,40
+19504,25
+19507,22
+19508,47
+19509,42
+19510,44
+19511,37
+19512,36
+19514,30
+19515,28
+19516,27
+19517,31
+19518,29
+19519,43
+19520,25
+19521,20
+19522,42
+19523,18
+19524,30
+19525,19
+19526,25
+19527,37
+19528,40
+19529,25
+19530,32
+19531,21
+19532,23
+19533,37
+19534,37
+19535,27
+19536,34
+19537,29
+19538,18
+19539,29
+19540,22
+19541,25
+19542,41
+19543,50
+19544,26
+19545,24
+19546,35
+19548,42
+19549,36
+19550,23
+19551,23
+19552,23
+19553,48
+19554,35
+19555,28
+19556,32
+19557,29
+19558,26
+19559,27
+19561,44
+19562,24
+19563,41
+19564,26
+19565,23
+19566,16
+19567,29
+19568,28
+19569,40
+19570,29
+19571,24
+19572,30
+19575,55
+19576,20
+19577,28
+19578,35
+19579,32
+19580,27
+19581,24
+19582,21
+19583,29
+19584,26
+19585,14
+19586,22
+19587,24
+19588,27
+19589,45
+19590,24
+19591,34
+19592,38
+19593,28
+19594,28
+19595,27
+19596,35
+19597,26
+19598,41
+19599,27
+19600,66
+19601,27
+19603,55
+19604,42
+19605,30
+19606,27
+19607,28
+19608,31
+19609,24
+19610,28
+19611,28
+19612,18
+19613,21
+19614,35
+19615,20
+19616,26
+19617,30
+19618,27
+19619,28
+19620,25
+19621,28
+19622,31
+19623,53
+19624,31
+19625,58
+19626,48
+19627,25
+19628,41
+19629,28
+19630,31
+19631,36
+19632,30
+19633,31
+19634,53
+19636,33
+19637,40
+19638,24
+19639,31
+19640,34
+19641,50
+19642,19
+19643,25
+19644,23
+19645,25
+19646,23
+19647,37
+19648,22
+19649,21
+19650,27
+19651,23
+19652,30
+19653,23
+19655,28
+19656,24
+19658,29
+19659,22
+19660,37
+19661,40
+19662,22
+19664,35
+19665,22
+19666,20
+19667,29
+19668,26
+19669,23
+19670,28
+19671,23
+19672,21
+19673,31
+19674,27
+19675,23
+19676,29
+19677,28
+19678,42
+19680,37
+19681,32
+19682,23
+19683,20
+19684,33
+19686,25
+19687,45
+19688,20
+19689,34
+19691,23
+19692,47
+19693,23
+19694,23
+19695,36
+19696,42
+19698,44
+19699,24
+19700,43
+19701,32
+19702,40
+19703,32
+19705,22
+19706,27
+19707,33
+19708,33
+19709,19
+19710,30
+19711,49
+19713,25
+19714,31
+19715,29
+19716,30
+19717,45
+19718,43
+19719,40
+19720,35
+19721,31
+19722,23
+19723,38
+19724,37
+19725,29
+19726,23
+19727,29
+19728,22
+19729,27
+19730,29
+19731,25
+19732,32
+19733,21
+19734,27
+19735,24
+19736,34
+19738,34
+19739,36
+19740,28
+19741,44
+19742,29
+19743,28
+19744,35
+19745,34
+19746,31
+19747,30
+19750,29
+19751,30
+19752,23
+19756,32
+19757,27
+19759,22
+19760,27
+19762,39
+19763,19
+19764,36
+19765,38
+19766,30
+19767,44
+19768,26
+19769,62
+19770,38
+19771,35
+19772,30
+19773,30
+19774,22
+19775,61
+19776,25
+19777,24
+19778,23
+19779,25
+19780,28
+19781,36
+19782,30
+19785,46
+19786,28
+19787,29
+19788,27
+19789,28
+19790,26
+19791,40
+19792,37
+19793,23
+19794,26
+19795,26
+19797,22
+19798,40
+19799,36
+19800,17
+19801,36
+19802,32
+19803,30
+19804,25
+19805,29
+19806,27
+19807,21
+19808,25
+19809,54
+19811,22
+19812,57
+19813,38
+19814,20
+19815,49
+19816,25
+19817,41
+19819,22
+19820,43
+19821,27
+19822,27
+19823,31
+19824,51
+19826,33
+19828,32
+19829,36
+19830,34
+19831,30
+19832,26
+19833,35
+19834,30
+19835,23
+19836,33
+19837,40
+19838,26
+19839,24
+19840,25
+19841,40
+19842,22
+19843,26
+19844,47
+19845,41
+19846,31
+19847,23
+19848,26
+19849,22
+19850,25
+19851,21
+19852,25
+19853,24
+19855,29
+19857,22
+19858,22
+19859,27
+19860,23
+19861,24
+19862,48
+19863,22
+19866,37
+19867,24
+19868,31
+19869,44
+19870,31
+19871,29
+19873,31
+19874,25
+19875,25
+19876,29
+19877,27
+19878,35
+19880,27
+19881,44
+19882,21
+19885,25
+19886,26
+19887,34
+19888,34
+19889,30
+19890,18
+19891,17
+19892,33
+19893,26
+19895,30
+19896,26
+19897,21
+19898,28
+19899,20
+19900,24
+19901,23
+19902,36
+19903,26
+19904,55
+19905,27
+19906,22
+19907,40
+19908,33
+19909,35
+19911,28
+19912,45
+19913,38
+19914,35
+19915,23
+19916,18
+19917,34
+19919,33
+19920,25
+19921,30
+19922,53
+19924,37
+19925,28
+19926,17
+19927,25
+19928,33
+19929,20
+19931,23
+19932,32
+19933,35
+19934,29
+19936,24
+19937,17
+19938,30
+19939,34
+19941,50
+19942,22
+19944,40
+19945,32
+19946,30
+19947,33
+19948,31
+19949,24
+19950,25
+19951,31
+19952,39
+19953,49
+19954,24
+19955,31
+19957,22
+19958,28
+19959,39
+19961,25
+19962,36
+19963,26
+19964,29
+19965,53
+19966,28
+19967,20
+19968,48
+19970,26
+19971,33
+19973,30
+19974,29
+19975,16
+19976,27
+19978,35
+19979,13
+19980,23
+19981,19
+19982,30
+19983,36
+19984,31
+19985,29
+19986,23
+19987,21
+19988,28
+19989,29
+19990,37
+19991,24
+19992,21
+19993,24
+19996,23
+19997,30
+19998,26
+19999,34
+20001,15
+20002,26
+20003,18
+20004,31
+20005,24
+20006,15
+20007,29
+20009,45
+20010,26
+20011,19
+20012,33
+20013,37
+20014,26
+20015,45
+20016,30
+20017,26
+20018,37
+20020,28
+20021,21
+20022,50
+20023,29
+20024,22
+20025,25
+20026,38
+20029,24
+20030,36
+20031,20
+20032,25
+20033,25
+20034,24
+20035,30
+20036,19
+20038,32
+20039,19
+20040,32
+20041,23
+20042,24
+20043,31
+20044,29
+20045,29
+20046,34
+20047,42
+20048,37
+20049,41
+20050,22
+20051,20
+20053,24
+20054,30
+20055,35
+20056,30
+20057,23
+20058,44
+20059,16
+20061,25
+20062,35
+20063,22
+20064,48
+20065,19
+20066,21
+20067,29
+20068,68
+20069,27
+20070,26
+20071,16
+20072,56
+20073,30
+20074,28
+20075,45
+20076,23
+20077,29
+20078,38
+20079,28
+20080,50
+20081,49
+20082,22
+20083,43
+20084,35
+20085,28
+20086,35
+20087,25
+20088,25
+20089,27
+20090,26
+20092,31
+20093,19
+20094,23
+20095,17
+20097,30
+20098,30
+20099,24
+20100,23
+20101,23
+20102,30
+20103,30
+20104,23
+20105,27
+20106,21
+20107,28
+20108,15
+20109,26
+20111,24
+20112,37
+20114,26
+20115,28
+20116,33
+20117,30
+20118,27
+20119,48
+20120,16
+20121,42
+20122,51
+20123,23
+20124,23
+20125,22
+20126,28
+20127,25
+20128,21
+20129,26
+20130,53
+20131,29
+20132,33
+20133,31
+20134,38
+20135,36
+20136,25
+20137,27
+20138,21
+20139,34
+20140,34
+20141,28
+20142,18
+20143,30
+20144,60
+20145,40
+20147,24
+20148,15
+20149,32
+20150,28
+20151,35
+20153,18
+20154,25
+20155,41
+20156,36
+20157,26
+20158,37
+20159,35
+20160,21
+20161,32
+20162,47
+20163,24
+20164,27
+20165,28
+20166,39
+20167,25
+20168,34
+20170,27
+20171,24
+20174,29
+20175,26
+20176,22
+20177,27
+20178,24
+20179,25
+20181,28
+20182,30
+20183,29
+20185,20
+20186,31
+20187,27
+20188,22
+20189,40
+20190,22
+20192,27
+20193,33
+20194,21
+20195,64
+20196,25
+20197,35
+20198,28
+20199,99
+20200,31
+20201,25
+20202,33
+20203,28
+20204,37
+20205,26
+20206,31
+20207,26
+20208,28
+20210,37
+20211,23
+20212,37
+20213,24
+20214,34
+20215,28
+20216,24
+20217,28
+20218,34
+20220,21
+20221,32
+20222,37
+20223,41
+20224,26
+20225,24
+20226,30
+20227,29
+20228,29
+20229,29
+20230,23
+20231,26
+20232,25
+20233,36
+20235,23
+20236,29
+20237,25
+20238,22
+20239,38
+20240,38
+20241,27
+20242,41
+20243,22
+20244,30
+20245,27
+20246,24
+20248,28
+20249,27
+20250,25
+20251,24
+20252,28
+20254,27
+20255,38
+20256,29
+20257,32
+20258,31
+20260,35
+20262,25
+20263,38
+20264,20
+20265,27
+20266,20
+20267,40
+20268,34
+20270,21
+20271,25
+20272,25
+20273,47
+20274,24
+20275,26
+20276,21
+20277,34
+20278,26
+20279,24
+20280,27
+20281,36
+20282,35
+20283,26
+20284,35
+20285,33
+20286,72
+20287,26
+20288,23
+20289,32
+20290,30
+20291,46
+20292,23
+20293,29
+20294,34
+20295,39
+20297,43
+20298,23
+20299,30
+20300,31
+20301,24
+20302,30
+20303,20
+20304,23
+20305,39
+20306,28
+20309,32
+20311,35
+20312,24
+20313,35
+20314,23
+20315,30
+20317,34
+20318,23
+20319,24
+20320,24
+20321,26
+20322,29
+20323,22
+20324,28
+20325,40
+20326,27
+20327,23
+20331,30
+20332,21
+20333,22
+20334,27
+20335,26
+20336,25
+20338,37
+20339,22
+20341,42
+20342,28
+20343,36
+20344,32
+20345,34
+20346,34
+20347,21
+20348,23
+20349,27
+20350,37
+20351,19
+20352,31
+20353,36
+20354,46
+20356,39
+20357,24
+20358,49
+20359,23
+20360,34
+20361,18
+20362,31
+20363,34
+20364,26
+20365,36
+20366,40
+20367,46
+20369,26
+20372,34
+20373,26
+20374,45
+20375,43
+20376,22
+20377,24
+20378,30
+20379,36
+20380,20
+20382,43
+20383,32
+20384,24
+20385,29
+20386,32
+20387,38
+20388,59
+20389,21
+20390,38
+20391,38
+20392,38
+20394,32
+20395,25
+20396,38
+20397,26
+20398,21
+20399,37
+20400,20
+20401,22
+20403,38
+20405,33
+20406,24
+20407,32
+20408,22
+20409,43
+20410,35
+20411,26
+20412,29
+20413,23
+20414,23
+20415,29
+20416,23
+20419,40
+20420,28
+20421,26
+20422,36
+20424,32
+20425,47
+20426,28
+20427,41
+20428,50
+20429,28
+20431,20
+20432,28
+20433,45
+20435,30
+20436,30
+20437,23
+20438,32
+20439,36
+20440,28
+20441,29
+20443,30
+20444,25
+20445,33
+20446,32
+20447,28
+20448,22
+20449,25
+20450,22
+20451,28
+20452,23
+20453,29
+20454,13
+20455,27
+20456,37
+20457,22
+20458,25
+20459,24
+20460,23
+20461,29
+20462,26
+20463,32
+20465,24
+20466,34
+20467,26
+20468,30
+20469,35
+20470,44
+20472,22
+20474,33
+20475,33
+20476,42
+20477,27
+20478,22
+20479,21
+20480,39
+20481,23
+20482,43
+20483,25
+20484,29
+20485,33
+20486,24
+20487,39
+20488,60
+20489,40
+20490,27
+20491,16
+20492,29
+20493,42
+20494,43
+20495,26
+20496,33
+20497,28
+20499,37
+20500,30
+20501,40
+20502,26
+20503,22
+20504,23
+20505,79
+20506,24
+20509,19
+20510,22
+20511,20
+20513,30
+20514,32
+20515,27
+20517,24
+20518,28
+20519,16
+20520,37
+20522,28
+20523,33
+20524,17
+20525,25
+20526,22
+20529,43
+20530,25
+20531,33
+20532,24
+20533,24
+20534,30
+20535,25
+20536,49
+20537,22
+20538,20
+20540,27
+20541,23
+20542,24
+20543,22
+20544,19
+20545,30
+20546,32
+20547,32
+20548,34
+20549,34
+20551,23
+20553,25
+20554,26
+20555,24
+20556,31
+20558,32
+20559,24
+20560,35
+20561,41
+20562,49
+20563,17
+20564,21
+20565,31
+20566,33
+20568,39
+20569,45
+20570,49
+20571,33
+20572,28
+20573,36
+20574,31
+20575,56
+20576,49
+20577,28
+20578,17
+20579,26
+20580,25
+20581,35
+20582,20
+20583,19
+20584,23
+20585,40
+20586,25
+20588,24
+20589,31
+20590,26
+20591,21
+20592,33
+20593,27
+20594,26
+20595,34
+20596,21
+20597,28
+20598,29
+20599,27
+20600,33
+20601,28
+20602,19
+20603,23
+20604,33
+20605,29
+20606,34
+20607,37
+20608,24
+20609,24
+20610,24
+20611,27
+20612,24
+20613,25
+20614,29
+20615,20
+20616,36
+20617,18
+20618,30
+20619,26
+20620,29
+20622,39
+20623,36
+20624,28
+20625,24
+20626,24
+20627,28
+20628,33
+20629,33
+20630,27
+20631,22
+20632,20
+20633,37
+20634,33
+20635,38
+20636,35
+20637,30
+20638,34
+20639,34
+20640,37
+20641,37
+20642,25
+20644,19
+20645,39
+20646,34
+20648,27
+20649,48
+20650,58
+20651,34
+20652,23
+20653,35
+20654,33
+20655,25
+20656,23
+20657,36
+20660,23
+20661,20
+20662,28
+20664,31
+20666,24
+20667,17
+20668,25
+20670,20
+20671,38
+20672,31
+20673,26
+20674,41
+20676,22
+20677,15
+20678,24
+20679,32
+20680,19
+20681,25
+20682,28
+20683,42
+20684,22
+20685,29
+20686,44
+20687,37
+20688,38
+20689,45
+20690,45
+20691,19
+20692,32
+20693,31
+20694,35
+20695,25
+20696,25
+20697,28
+20698,29
+20699,31
+20700,26
+20701,27
+20702,41
+20703,28
+20704,31
+20705,23
+20706,25
+20707,30
+20708,31
+20709,17
+20711,18
+20712,24
+20713,22
+20714,22
+20715,20
+20716,28
+20717,39
+20718,32
+20719,31
+20720,30
+20721,37
+20722,27
+20723,24
+20724,44
+20725,33
+20726,24
+20727,27
+20728,23
+20729,20
+20730,20
+20731,29
+20732,36
+20733,45
+20734,23
+20735,21
+20736,41
+20738,29
+20739,40
+20740,41
+20741,23
+20742,31
+20743,25
+20744,27
+20745,36
+20746,31
+20747,37
+20749,32
+20750,55
+20751,24
+20752,23
+20753,33
+20754,26
+20756,24
+20757,24
+20758,37
+20759,34
+20760,21
+20761,37
+20762,26
+20763,16
+20765,34
+20766,42
+20767,21
+20768,42
+20769,42
+20770,33
+20771,25
+20772,31
+20773,31
+20774,12
+20775,23
+20776,15
+20777,26
+20778,26
+20779,33
+20780,23
+20781,19
+20782,25
+20783,27
+20784,24
+20785,26
+20786,25
+20788,33
+20789,28
+20790,55
+20791,20
+20792,16
+20793,45
+20794,25
+20795,23
+20796,29
+20797,40
+20798,32
+20800,29
+20801,44
+20802,32
+20803,23
+20804,31
+20805,23
+20806,33
+20807,29
+20808,41
+20809,23
+20810,64
+20811,17
+20812,28
+20814,19
+20815,21
+20816,25
+20817,37
+20818,21
+20820,42
+20821,26
+20822,26
+20823,13
+20824,27
+20826,28
+20827,34
+20828,33
+20829,30
+20830,30
+20831,23
+20832,32
+20833,23
+20834,23
+20835,22
+20836,16
+20837,43
+20838,47
+20839,32
+20841,24
+20842,31
+20843,31
+20844,37
+20845,29
+20847,23
+20849,47
+20850,33
+20851,26
+20852,29
+20853,31
+20854,33
+20856,40
+20857,24
+20858,25
+20859,28
+20860,49
+20862,30
+20863,50
+20864,31
+20865,19
+20866,38
+20867,28
+20868,23
+20869,18
+20870,21
+20871,42
+20872,34
+20873,30
+20874,29
+20875,24
+20876,44
+20877,29
+20879,63
+20880,17
+20881,24
+20882,37
+20883,27
+20884,40
+20885,34
+20886,24
+20887,32
+20888,32
+20890,27
+20891,20
+20893,36
+20894,43
+20895,25
+20896,34
+20897,57
+20898,15
+20899,21
+20900,27
+20901,25
+20902,22
+20903,18
+20904,49
+20906,32
+20907,26
+20908,26
+20909,16
+20910,24
+20911,22
+20913,32
+20914,17
+20915,31
+20916,26
+20917,28
+20918,34
+20919,29
+20920,44
+20921,36
+20922,51
+20923,47
+20924,32
+20925,29
+20926,24
+20927,27
+20928,28
+20929,23
+20930,43
+20931,17
+20932,30
+20933,25
+20934,25
+20935,23
+20936,55
+20937,23
+20938,39
+20939,25
+20940,18
+20941,22
+20943,27
+20944,23
+20945,40
+20946,31
+20947,31
+20948,25
+20949,51
+20950,42
+20951,25
+20952,28
+20953,31
+20954,24
+20955,23
+20956,29
+20958,45
+20959,40
+20961,23
+20962,28
+20963,52
+20964,29
+20965,15
+20966,46
+20967,20
+20969,20
+20970,37
+20971,19
+20972,34
+20973,32
+20974,45
+20975,28
+20976,32
+20977,33
+20978,26
+20979,27
+20983,21
+20984,26
+20985,17
+20986,34
+20987,30
+20988,42
+20989,23
+20990,37
+20991,48
+20992,67
+20993,38
+20995,24
+20996,31
+20997,27
+20998,36
+20999,16
+21000,20
+21002,28
+21004,20
+21005,28
+21006,26
+21007,39
+21008,32
+21009,27
+21010,23
+21011,31
+21013,20
+21014,30
+21015,47
+21016,31
+21017,33
+21018,25
+21019,25
+21020,28
+21021,21
+21022,19
+21024,27
+21025,47
+21026,24
+21027,20
+21028,33
+21029,21
+21030,31
+21031,40
+21032,52
+21033,40
+21034,21
+21035,24
+21036,25
+21037,42
+21038,41
+21039,33
+21040,28
+21041,45
+21042,30
+21043,25
+21044,45
+21047,21
+21048,28
+21049,26
+21050,19
+21051,52
+21052,35
+21053,36
+21054,27
+21055,32
+21056,16
+21057,24
+21058,35
+21059,20
+21060,44
+21061,21
+21062,25
+21063,28
+21064,30
+21065,33
+21066,23
+21067,36
+21068,18
+21069,30
+21070,30
+21071,38
+21072,30
+21073,27
+21075,30
+21076,26
+21077,34
+21079,22
+21080,33
+21082,44
+21083,26
+21084,35
+21085,37
+21086,55
+21087,26
+21088,17
+21089,25
+21090,25
+21091,35
+21092,26
+21093,23
+21095,45
+21096,33
+21097,36
+21098,47
+21100,24
+21101,24
+21102,39
+21103,24
+21104,49
+21105,22
+21106,28
+21107,38
+21108,39
+21109,46
+21110,30
+21111,35
+21112,49
+21113,25
+21115,18
+21116,33
+21117,24
+21118,20
+21119,26
+21120,16
+21122,22
+21123,42
+21124,47
+21125,25
+21126,23
+21127,45
+21128,25
+21129,33
+21130,27
+21132,30
+21133,28
+21134,47
+21135,20
+21136,23
+21138,29
+21139,35
+21140,33
+21142,40
+21143,26
+21144,24
+21145,26
+21146,18
+21147,35
+21149,18
+21150,33
+21151,22
+21152,22
+21153,19
+21154,29
+21155,26
+21156,20
+21157,53
+21158,28
+21159,34
+21160,29
+21161,21
+21162,16
+21163,29
+21164,22
+21165,30
+21166,29
+21167,19
+21168,41
+21169,34
+21170,27
+21171,22
+21173,46
+21174,35
+21175,30
+21176,26
+21177,27
+21178,21
+21179,22
+21180,38
+21181,34
+21182,26
+21183,33
+21184,54
+21185,34
+21186,33
+21187,26
+21188,72
+21189,61
+21191,35
+21192,42
+21193,25
+21194,38
+21196,38
+21197,35
+21199,27
+21200,32
+21201,29
+21202,34
+21203,42
+21204,17
+21206,38
+21207,22
+21208,20
+21209,20
+21210,59
+21211,19
+21213,28
+21215,34
+21216,22
+21217,25
+21218,33
+21219,23
+21220,26
+21221,33
+21222,48
+21223,32
+21225,41
+21226,30
+21227,23
+21228,29
+21229,48
+21230,33
+21231,25
+21232,17
+21233,28
+21234,21
+21235,32
+21236,28
+21237,20
+21238,46
+21239,32
+21240,32
+21241,28
+21242,40
+21243,26
+21244,29
+21245,37
+21247,30
+21248,23
+21250,32
+21251,29
+21252,32
+21253,33
+21254,42
+21255,28
+21256,35
+21257,24
+21258,35
+21259,37
+21260,23
+21261,29
+21262,22
+21264,31
+21265,33
+21266,24
+21267,22
+21268,27
+21269,57
+21270,28
+21271,37
+21272,17
+21273,34
+21274,27
+21275,17
+21276,31
+21277,16
+21278,38
+21279,18
+21280,41
+21281,41
+21282,26
+21283,49
+21284,19
+21286,21
+21287,32
+21288,19
+21289,23
+21290,30
+21291,26
+21292,19
+21293,20
+21294,53
+21296,53
+21297,54
+21298,73
+21299,30
+21300,54
+21301,17
+21302,43
+21303,34
+21304,27
+21305,25
+21306,53
+21307,29
+21309,33
+21310,25
+21314,27
+21315,29
+21316,35
+21317,39
+21318,18
+21319,28
+21320,47
+21321,39
+21322,29
+21324,29
+21326,33
+21327,22
+21328,28
+21329,23
+21330,25
+21331,30
+21332,44
+21333,40
+21335,22
+21337,33
+21338,23
+21340,24
+21341,29
+21342,32
+21343,30
+21344,30
+21345,39
+21346,31
+21347,35
+21348,18
+21349,21
+21350,49
+21351,49
+21352,39
+21353,27
+21354,28
+21355,30
+21356,34
+21357,17
+21359,30
+21360,26
+21361,29
+21363,32
+21364,25
+21365,41
+21366,20
+21367,29
+21368,23
+21369,50
+21370,21
+21372,36
+21373,24
+21375,54
+21376,52
+21377,29
+21378,24
+21379,28
+21380,22
+21381,23
+21382,16
+21383,18
+21384,49
+21385,44
+21386,37
+21387,19
+21388,42
+21389,24
+21390,47
+21391,20
+21392,30
+21393,21
+21394,22
+21395,28
+21397,25
+21398,29
+21399,28
+21400,35
+21401,43
+21402,34
+21403,98
+21404,62
+21405,26
+21406,23
+21407,39
+21408,19
+21409,18
+21410,18
+21411,34
+21412,30
+21414,39
+21415,33
+21416,49
+21417,29
+21418,19
+21420,27
+21421,25
+21422,35
+21423,40
+21424,31
+21425,28
+21426,25
+21427,46
+21428,40
+21429,22
+21430,31
+21431,25
+21432,27
+21433,26
+21435,16
+21436,35
+21437,27
+21438,19
+21439,26
+21440,22
+21441,18
+21442,25
+21443,50
+21444,24
+21445,46
+21446,34
+21448,24
+21449,24
+21450,23
+21451,44
+21452,27
+21453,36
+21455,23
+21456,48
+21457,25
+21458,22
+21459,31
+21460,26
+21461,30
+21462,27
+21463,30
+21464,40
+21465,23
+21466,25
+21467,31
+21468,28
+21469,27
+21470,20
+21471,20
+21472,26
+21473,27
+21474,49
+21475,17
+21476,39
+21477,21
+21478,27
+21479,26
+21480,29
+21481,23
+21482,53
+21483,30
+21486,21
+21487,26
+21488,34
+21489,25
+21490,45
+21491,28
+21492,21
+21493,21
+21494,21
+21495,26
+21496,24
+21497,32
+21498,29
+21500,28
+21501,21
+21502,20
+21503,25
+21504,31
+21505,33
+21506,25
+21507,23
+21509,25
+21510,29
+21511,30
+21512,25
+21513,37
+21514,44
+21515,25
+21516,46
+21518,26
+21520,29
+21521,29
+21522,28
+21523,20
+21525,28
+21526,28
+21527,48
+21528,22
+21529,43
+21530,40
+21531,40
+21532,33
+21533,27
+21534,58
+21536,46
+21537,45
+21538,45
+21539,41
+21540,29
+21541,25
+21542,22
+21543,21
+21544,29
+21545,41
+21546,26
+21547,48
+21548,20
+21549,28
+21550,55
+21553,30
+21554,30
+21555,27
+21556,48
+21557,28
+21559,23
+21560,35
+21562,40
+21563,33
+21564,24
+21565,27
+21566,40
+21567,38
+21568,22
+21569,38
+21571,36
+21572,40
+21573,39
+21574,50
+21575,34
+21576,27
+21577,52
+21578,29
+21579,28
+21580,36
+21581,32
+21582,35
+21583,28
+21584,39
+21585,31
+21586,31
+21587,32
+21588,26
+21589,44
+21590,22
+21592,31
+21594,33
+21596,38
+21597,42
+21598,29
+21599,27
+21600,33
+21601,38
+21602,38
+21604,24
+21605,27
+21606,24
+21607,30
+21608,40
+21609,20
+21610,21
+21611,23
+21612,28
+21613,26
+21614,49
+21615,25
+21616,33
+21617,49
+21618,35
+21619,27
+21621,27
+21622,31
+21623,36
+21624,21
+21625,26
+21627,33
+21629,23
+21630,25
+21631,22
+21633,28
+21634,50
+21635,36
+21636,32
+21638,27
+21639,26
+21640,25
+21641,54
+21642,31
+21644,15
+21645,38
+21646,35
+21647,29
+21648,22
+21649,24
+21650,35
+21651,18
+21652,26
+21653,33
+21654,25
+21655,46
+21656,26
+21657,28
+21658,26
+21659,27
+21660,26
+21661,19
+21662,29
+21665,42
+21666,14
+21667,36
+21668,23
+21669,17
+21670,21
+21671,27
+21673,12
+21674,32
+21675,21
+21676,25
+21677,24
+21678,30
+21680,25
+21681,28
+21682,39
+21683,29
+21684,21
+21685,42
+21686,30
+21687,34
+21688,45
+21689,44
+21690,26
+21691,33
+21693,21
+21694,26
+21695,28
+21696,38
+21697,33
+21698,64
+21699,25
+21700,22
+21701,42
+21702,17
+21703,20
+21704,30
+21705,28
+21706,23
+21707,28
+21708,19
+21709,27
+21711,27
+21713,22
+21715,29
+21716,43
+21717,27
+21718,24
+21719,38
+21720,22
+21721,23
+21722,30
+21723,49
+21724,42
+21725,30
+21726,22
+21727,20
+21728,21
+21729,30
+21730,35
+21731,26
+21732,42
+21733,29
+21734,48
+21735,21
+21736,27
+21737,36
+21738,31
+21739,29
+21741,23
+21742,34
+21744,19
+21745,34
+21746,21
+21749,18
+21750,24
+21751,24
+21752,56
+21755,32
+21756,32
+21757,28
+21758,24
+21759,26
+21760,58
+21761,21
+21762,36
+21764,54
+21765,26
+21766,30
+21767,32
+21769,29
+21770,43
+21771,27
+21772,33
+21773,48
+21774,20
+21775,53
+21776,32
+21777,22
+21778,21
+21779,38
+21781,26
+21782,35
+21783,19
+21786,35
+21788,35
+21789,19
+21790,25
+21792,25
+21793,26
+21796,35
+21797,38
+21798,24
+21799,25
+21800,31
+21801,33
+21802,37
+21803,22
+21804,28
+21805,19
+21806,31
+21807,26
+21808,23
+21809,47
+21810,58
+21811,19
+21812,25
+21813,63
+21814,49
+21815,14
+21817,36
+21818,35
+21819,36
+21820,24
+21821,29
+21822,36
+21823,36
+21824,26
+21825,23
+21827,25
+21828,34
+21829,21
+21830,17
+21831,23
+21832,40
+21834,30
+21835,32
+21836,31
+21837,28
+21838,35
+21840,30
+21841,41
+21842,25
+21843,23
+21844,23
+21845,29
+21846,57
+21847,48
+21848,34
+21849,27
+21850,33
+21851,26
+21853,16
+21854,27
+21855,21
+21856,41
+21858,25
+21859,35
+21860,30
+21861,35
+21862,25
+21863,30
+21864,19
+21865,30
+21867,29
+21868,55
+21869,21
+21870,24
+21871,21
+21872,32
+21873,25
+21874,39
+21875,26
+21876,53
+21877,30
+21878,31
+21880,37
+21881,31
+21882,26
+21884,39
+21885,23
+21886,24
+21887,28
+21888,35
+21889,35
+21891,24
+21892,29
+21893,32
+21894,24
+21895,12
+21896,23
+21897,32
+21898,25
+21899,24
+21900,29
+21901,29
+21902,34
+21903,39
+21904,36
+21905,28
+21906,30
+21907,33
+21908,25
+21909,32
+21911,23
+21912,35
+21913,36
+21914,37
+21915,15
+21916,29
+21917,34
+21918,40
+21919,33
+21920,19
+21921,31
+21922,37
+21923,45
+21924,31
+21925,37
+21926,25
+21928,23
+21929,26
+21930,22
+21932,23
+21933,34
+21934,29
+21935,40
+21936,21
+21937,27
+21938,23
+21939,30
+21940,51
+21941,32
+21942,55
+21944,30
+21945,26
+21946,38
+21947,27
+21948,39
+21949,27
+21950,21
+21951,50
+21952,31
+21953,25
+21954,28
+21955,21
+21956,25
+21957,20
+21958,51
+21959,30
+21960,22
+21961,24
+21962,29
+21964,37
+21965,36
+21966,29
+21967,24
+21968,25
+21969,48
+21970,29
+21971,23
+21972,13
+21973,25
+21974,21
+21976,48
+21977,53
+21978,26
+21979,19
+21980,24
+21981,31
+21982,29
+21983,19
+21984,25
+21985,26
+21986,23
+21987,41
+21989,36
+21990,53
+21991,29
+21992,47
+21993,35
+21994,21
+21995,24
+21996,39
+21997,22
+21998,35
+22001,15
+22002,49
+22003,39
+22004,35
+22005,35
+22006,21
+22007,15
+22008,22
+22009,25
+22010,24
+22011,24
+22012,27
+22014,32
+22015,65
+22016,32
+22017,32
+22018,21
+22020,34
+22021,42
+22022,15
+22023,33
+22025,23
+22026,33
+22027,26
+22028,26
+22029,28
+22030,35
+22031,39
+22032,52
+22033,24
+22034,30
+22035,23
+22036,38
+22037,26
+22038,23
+22039,26
+22040,26
+22041,23
+22043,28
+22044,22
+22045,27
+22047,26
+22048,16
+22050,25
+22051,21
+22052,26
+22053,38
+22054,24
+22055,16
+22057,39
+22058,28
+22059,22
+22060,34
+22061,28
+22062,21
+22063,32
+22064,29
+22065,42
+22066,35
+22068,21
+22069,58
+22070,32
+22071,30
+22074,53
+22075,23
+22076,29
+22077,26
+22079,23
+22080,17
+22081,48
+22082,29
+22083,30
+22084,29
+22085,24
+22086,38
+22087,30
+22088,22
+22089,31
+22091,35
+22092,22
+22093,18
+22094,35
+22095,67
+22096,24
+22097,24
+22098,39
+22099,30
+22100,30
+22101,28
+22102,29
+22103,16
+22104,28
+22105,31
+22106,33
+22107,43
+22108,33
+22109,21
+22110,23
+22111,44
+22112,33
+22113,33
+22114,26
+22116,40
+22117,29
+22118,39
+22119,37
+22120,26
+22121,30
+22122,26
+22123,40
+22124,51
+22126,22
+22127,35
+22128,51
+22130,29
+22131,29
+22132,24
+22134,29
+22136,35
+22137,31
+22139,35
+22140,24
+22141,56
+22142,28
+22144,27
+22145,31
+22146,28
+22147,37
+22148,31
+22150,23
+22152,28
+22153,36
+22154,34
+22155,28
+22158,28
+22159,30
+22160,24
+22161,39
+22162,19
+22163,24
+22166,28
+22167,62
+22169,32
+22171,44
+22172,31
+22173,27
+22174,24
+22176,30
+22177,35
+22178,22
+22179,38
+22181,35
+22183,18
+22184,22
+22185,26
+22186,39
+22187,35
+22188,37
+22189,38
+22190,28
+22191,35
+22193,33
+22195,30
+22196,26
+22197,23
+22198,24
+22199,32
+22200,20
+22201,33
+22202,41
+22203,29
+22204,31
+22205,37
+22206,22
+22207,26
+22208,35
+22209,23
+22211,17
+22212,29
+22213,35
+22214,27
+22215,42
+22216,30
+22217,22
+22218,25
+22219,20
+22220,25
+22221,53
+22222,24
+22223,47
+22225,27
+22226,31
+22228,29
+22229,42
+22230,25
+22231,30
+22232,28
+22233,45
+22234,32
+22235,26
+22236,26
+22237,27
+22238,33
+22240,33
+22241,26
+22242,42
+22243,23
+22244,37
+22245,39
+22246,27
+22247,37
+22248,49
+22249,17
+22250,20
+22251,32
+22252,25
+22253,35
+22254,23
+22255,23
+22256,27
+22257,33
+22258,40
+22260,38
+22261,38
+22262,19
+22263,40
+22264,24
+22265,27
+22266,24
+22267,26
+22268,39
+22269,31
+22270,30
+22271,30
+22273,36
+22274,24
+22275,33
+22276,23
+22277,34
+22278,25
+22279,32
+22280,37
+22281,22
+22282,21
+22283,29
+22284,40
+22285,22
+22286,25
+22287,27
+22288,28
+22290,32
+22291,26
+22292,59
+22293,53
+22294,28
+22295,42
+22296,28
+22297,12
+22298,24
+22300,31
+22301,19
+22303,14
+22304,20
+22305,26
+22306,29
+22307,31
+22308,32
+22309,30
+22310,21
+22311,30
+22312,22
+22313,26
+22314,34
+22315,68
+22316,48
+22317,22
+22318,42
+22319,20
+22320,28
+22321,48
+22324,32
+22325,29
+22326,51
+22327,37
+22328,21
+22329,34
+22330,19
+22331,42
+22332,32
+22333,31
+22334,22
+22336,26
+22338,21
+22339,24
+22340,30
+22341,37
+22343,22
+22344,34
+22345,54
+22346,21
+22347,22
+22348,32
+22350,35
+22351,23
+22352,31
+22353,35
+22354,25
+22356,39
+22358,22
+22359,18
+22360,27
+22361,42
+22362,33
+22363,30
+22364,31
+22366,29
+22367,30
+22368,32
+22369,17
+22370,24
+22371,35
+22372,35
+22373,22
+22374,24
+22375,20
+22376,28
+22377,29
+22378,18
+22379,30
+22380,33
+22381,20
+22382,30
+22383,22
+22384,33
+22385,23
+22386,35
+22387,27
+22389,24
+22390,24
+22391,29
+22392,24
+22393,40
+22394,33
+22395,35
+22396,26
+22397,54
+22398,20
+22399,46
+22400,40
+22401,21
+22402,66
+22403,20
+22405,30
+22406,32
+22407,22
+22408,35
+22409,26
+22410,32
+22411,26
+22412,26
+22413,41
+22415,43
+22417,49
+22418,36
+22419,33
+22420,26
+22422,23
+22423,19
+22424,35
+22425,32
+22426,31
+22428,16
+22429,31
+22430,23
+22431,27
+22433,23
+22434,25
+22435,26
+22436,27
+22438,25
+22439,37
+22440,19
+22441,25
+22442,33
+22443,28
+22444,31
+22445,50
+22446,29
+22447,22
+22448,30
+22449,28
+22450,24
+22452,24
+22453,38
+22454,21
+22456,29
+22457,35
+22458,22
+22459,26
+22460,24
+22462,25
+22463,22
+22464,26
+22465,32
+22466,29
+22467,28
+22470,27
+22471,27
+22472,28
+22473,24
+22474,24
+22475,36
+22476,23
+22478,32
+22479,26
+22480,27
+22481,31
+22482,54
+22483,28
+22484,32
+22485,44
+22486,26
+22487,25
+22488,24
+22489,20
+22490,18
+22491,21
+22493,26
+22494,14
+22495,43
+22496,20
+22497,30
+22498,40
+22499,16
+22500,47
+22501,22
+22502,26
+22504,30
+22505,28
+22506,26
+22507,32
+22508,40
+22509,25
+22510,23
+22511,58
+22512,17
+22514,25
+22515,27
+22516,21
+22517,39
+22518,28
+22519,21
+22520,26
+22521,46
+22522,24
+22523,34
+22524,26
+22525,23
+22526,15
+22527,28
+22528,20
+22529,45
+22530,34
+22531,30
+22532,17
+22533,22
+22534,32
+22535,56
+22536,66
+22537,41
+22538,37
+22539,30
+22540,22
+22541,34
+22542,32
+22543,41
+22544,30
+22545,32
+22546,32
+22547,30
+22548,16
+22549,37
+22550,25
+22551,29
+22552,26
+22553,24
+22554,32
+22555,40
+22556,15
+22557,25
+22558,48
+22559,27
+22560,25
+22561,32
+22562,45
+22563,40
+22564,23
+22565,35
+22566,34
+22567,26
+22568,24
+22569,34
+22570,40
+22571,29
+22572,25
+22573,18
+22574,38
+22575,23
+22576,24
+22577,30
+22578,27
+22579,35
+22580,47
+22581,45
+22582,24
+22583,37
+22584,31
+22585,17
+22586,35
+22587,28
+22588,33
+22589,31
+22591,41
+22592,28
+22593,25
+22594,25
+22595,32
+22596,16
+22597,28
+22598,23
+22599,48
+22600,40
+22602,20
+22603,39
+22604,23
+22606,19
+22607,20
+22608,34
+22609,29
+22611,28
+22612,33
+22613,27
+22614,38
+22615,25
+22617,31
+22618,33
+22619,36
+22620,30
+22621,29
+22622,34
+22623,28
+22624,26
+22625,26
+22626,32
+22627,26
+22628,34
+22629,28
+22630,30
+22631,27
+22634,31
+22635,29
+22637,26
+22638,49
+22639,29
+22640,62
+22641,45
+22642,61
+22643,46
+22644,32
+22646,20
+22648,33
+22649,16
+22650,30
+22651,31
+22652,28
+22653,23
+22654,25
+22655,29
+22656,33
+22658,26
+22659,26
+22661,25
+22662,17
+22663,38
+22664,28
+22666,34
+22667,18
+22668,31
+22669,30
+22670,30
+22671,26
+22672,28
+22673,26
+22674,29
+22675,30
+22676,39
+22677,28
+22678,26
+22679,26
+22680,24
+22681,34
+22682,26
+22685,34
+22686,28
+22687,28
+22688,19
+22690,34
+22691,33
+22692,29
+22693,32
+22694,30
+22695,25
+22696,26
+22698,47
+22699,28
+22700,21
+22701,17
+22702,22
+22703,32
+22704,45
+22705,35
+22706,30
+22709,26
+22710,27
+22711,38
+22712,20
+22713,19
+22714,24
+22715,25
+22716,26
+22717,34
+22718,24
+22719,29
+22720,22
+22721,49
+22722,23
+22723,34
+22724,32
+22725,25
+22726,29
+22727,27
+22728,21
+22729,36
+22731,38
+22733,29
+22735,29
+22736,17
+22737,21
+22738,59
+22739,61
+22740,25
+22741,32
+22742,24
+22743,23
+22744,45
+22745,32
+22747,15
+22748,39
+22749,28
+22750,31
+22751,52
+22752,27
+22753,24
+22754,32
+22755,27
+22756,24
+22758,46
+22759,40
+22760,28
+22761,27
+22762,30
+22763,50
+22764,31
+22765,26
+22766,26
+22767,37
+22768,28
+22769,25
+22770,22
+22771,27
+22772,20
+22773,40
+22774,39
+22775,34
+22776,35
+22777,25
+22778,30
+22779,36
+22780,20
+22781,48
+22782,31
+22783,20
+22784,33
+22786,24
+22787,26
+22788,22
+22789,24
+22790,38
+22791,35
+22792,27
+22793,18
+22794,29
+22795,35
+22796,20
+22797,26
+22798,35
+22799,25
+22800,38
+22801,29
+22802,46
+22803,18
+22805,48
+22806,25
+22807,45
+22809,35
+22810,26
+22811,28
+22812,36
+22814,34
+22815,24
+22816,31
+22817,32
+22818,25
+22820,17
+22821,52
+22822,31
+22823,62
+22824,34
+22825,27
+22826,25
+22827,18
+22828,22
+22831,35
+22833,21
+22834,34
+22835,25
+22836,22
+22837,29
+22838,20
+22839,37
+22842,42
+22843,65
+22844,20
+22846,30
+22847,26
+22848,28
+22849,25
+22850,32
+22851,25
+22852,15
+22853,27
+22854,18
+22855,29
+22856,20
+22857,35
+22858,17
+22859,42
+22860,26
+22862,36
+22863,33
+22864,27
+22866,38
+22867,52
+22868,45
+22869,33
+22871,38
+22872,33
+22873,29
+22874,32
+22875,28
+22877,34
+22878,35
+22879,49
+22880,28
+22881,53
+22882,29
+22883,47
+22884,26
+22885,23
+22886,29
+22887,21
+22888,35
+22891,29
+22892,26
+22893,29
+22894,24
+22895,23
+22897,36
+22899,38
+22900,42
+22901,32
+22903,37
+22904,38
+22905,21
+22907,33
+22908,28
+22909,21
+22910,62
+22911,16
+22912,36
+22913,35
+22914,38
+22915,32
+22916,23
+22917,23
+22919,44
+22920,32
+22921,13
+22922,31
+22923,24
+22924,36
+22926,26
+22927,24
+22928,23
+22929,24
+22930,40
+22931,27
+22932,34
+22933,45
+22934,29
+22935,29
+22936,42
+22937,29
+22938,35
+22939,30
+22940,32
+22941,20
+22942,31
+22944,30
+22945,31
+22946,52
+22948,46
+22949,46
+22950,15
+22951,22
+22952,36
+22953,30
+22954,20
+22955,37
+22956,61
+22957,31
+22958,27
+22959,32
+22960,30
+22961,39
+22962,17
+22963,33
+22964,28
+22965,32
+22966,33
+22967,31
+22968,24
+22969,17
+22970,19
+22971,26
+22972,36
+22973,41
+22974,27
+22975,25
+22976,25
+22977,17
+22979,37
+22980,24
+22981,28
+22982,20
+22983,31
+22984,34
+22985,38
+22986,26
+22987,24
+22988,26
+22989,25
+22991,27
+22992,35
+22993,19
+22995,34
+22996,31
+22997,30
+22998,24
+22999,52
+23000,21
+23001,32
+23002,28
+23003,64
+23005,36
+23007,30
+23008,32
+23009,31
+23010,22
+23011,44
+23012,17
+23013,39
+23014,36
+23015,31
+23016,26
+23017,43
+23019,30
+23020,21
+23021,28
+23025,25
+23026,27
+23027,31
+23028,18
+23029,21
+23030,32
+23031,40
+23032,26
+23033,29
+23034,23
+23035,30
+23036,32
+23037,28
+23038,28
+23039,29
+23040,32
+23042,47
+23043,27
+23044,23
+23045,33
+23046,22
+23047,35
+23048,22
+23049,30
+23050,60
+23052,22
+23053,28
+23054,39
+23055,16
+23056,28
+23057,32
+23058,37
+23059,30
+23061,25
+23063,34
+23064,21
+23065,31
+23066,34
+23067,39
+23068,26
+23069,39
+23070,25
+23071,31
+23072,27
+23073,29
+23075,38
+23076,27
+23077,29
+23078,24
+23079,26
+23080,19
+23081,29
+23082,28
+23083,45
+23084,46
+23085,27
+23086,62
+23087,23
+23089,32
+23091,22
+23092,39
+23093,17
+23094,32
+23095,31
+23096,33
+23097,19
+23098,17
+23099,31
+23100,48
+23101,35
+23102,27
+23103,21
+23104,39
+23105,23
+23106,35
+23107,29
+23109,24
+23110,36
+23111,31
+23112,32
+23113,29
+23114,28
+23115,24
+23116,26
+23117,28
+23119,25
+23120,24
+23121,18
+23123,37
+23124,26
+23125,26
+23126,42
+23127,28
+23129,55
+23131,34
+23132,36
+23133,33
+23134,32
+23135,30
+23136,25
+23137,25
+23138,27
+23139,21
+23140,20
+23141,46
+23142,19
+23143,45
+23144,26
+23145,17
+23146,28
+23147,54
+23150,22
+23151,20
+23152,19
+23153,21
+23154,20
+23155,22
+23156,18
+23157,23
+23159,35
+23160,25
+23161,24
+23162,25
+23163,22
+23164,38
+23165,47
+23168,35
+23169,52
+23170,23
+23171,16
+23172,36
+23173,33
+23174,55
+23176,26
+23177,39
+23178,40
+23179,27
+23180,20
+23181,25
+23182,47
+23183,34
+23184,32
+23185,28
+23186,20
+23187,21
+23188,25
+23189,44
+23191,27
+23192,32
+23194,27
+23195,31
+23196,31
+23197,41
+23198,20
+23199,42
+23200,23
+23201,25
+23203,30
+23204,36
+23205,33
+23206,27
+23207,21
+23209,35
+23210,25
+23211,39
+23212,29
+23213,25
+23214,28
+23215,19
+23216,28
+23217,25
+23218,23
+23220,27
+23221,23
+23222,22
+23225,19
+23226,38
+23227,23
+23228,30
+23229,33
+23230,22
+23233,23
+23234,32
+23235,50
+23236,19
+23238,14
+23239,42
+23240,63
+23242,25
+23243,24
+23245,21
+23246,45
+23247,30
+23248,28
+23249,33
+23250,39
+23251,23
+23252,37
+23253,31
+23254,21
+23255,19
+23256,23
+23257,29
+23260,29
+23261,33
+23262,24
+23263,63
+23264,55
+23265,33
+23266,37
+23267,37
+23268,21
+23269,33
+23270,23
+23271,21
+23272,30
+23273,32
+23274,30
+23275,24
+23276,24
+23277,24
+23278,25
+23280,22
+23281,59
+23282,20
+23283,30
+23284,40
+23285,16
+23286,30
+23287,62
+23288,26
+23289,23
+23290,31
+23291,24
+23292,18
+23293,22
+23295,24
+23297,24
+23298,28
+23299,37
+23300,40
+23301,16
+23302,35
+23303,25
+23304,30
+23305,41
+23306,62
+23307,26
+23308,26
+23309,28
+23310,38
+23311,42
+23312,34
+23313,24
+23314,40
+23315,23
+23316,40
+23317,25
+23318,44
+23320,24
+23321,65
+23322,38
+23323,18
+23324,33
+23325,30
+23326,25
+23327,24
+23328,23
+23329,27
+23330,64
+23331,32
+23332,41
+23333,23
+23334,29
+23337,59
+23338,16
+23339,39
+23340,26
+23341,23
+23342,21
+23343,56
+23344,29
+23345,34
+23346,32
+23347,42
+23349,37
+23350,15
+23352,46
+23353,31
+23354,31
+23356,32
+23358,37
+23359,27
+23360,25
+23361,27
+23362,32
+23363,49
+23364,26
+23365,39
+23367,35
+23368,24
+23369,49
+23370,22
+23371,36
+23372,44
+23373,32
+23375,30
+23376,29
+23377,25
+23379,22
+23380,30
+23381,30
+23382,34
+23383,23
+23385,30
+23386,49
+23387,23
+23388,38
+23389,20
+23390,34
+23391,25
+23392,39
+23393,31
+23394,27
+23395,25
+23396,37
+23397,32
+23398,27
+23399,13
+23400,29
+23401,28
+23402,45
+23403,50
+23404,31
+23405,28
+23406,52
+23407,28
+23408,36
+23409,40
+23410,30
+23411,21
+23412,28
+23413,25
+23414,32
+23415,24
+23416,22
+23418,32
+23419,36
+23420,27
+23422,29
+23423,26
+23424,24
+23425,30
+23426,28
+23427,41
+23428,27
+23429,37
+23430,24
+23431,28
+23432,20
+23433,40
+23434,22
+23435,42
+23436,43
+23437,28
+23438,33
+23439,47
+23440,22
+23441,46
+23442,28
+23443,39
+23444,24
+23446,33
+23447,18
+23448,22
+23449,28
+23450,26
+23451,23
+23452,29
+23453,23
+23454,26
+23455,27
+23456,35
+23457,38
+23458,50
+23459,30
+23460,32
+23461,22
+23462,26
+23463,40
+23464,32
+23465,28
+23466,24
+23467,14
+23468,22
+23469,44
+23470,24
+23471,22
+23472,38
+23473,45
+23474,39
+23475,22
+23477,37
+23478,34
+23479,48
+23480,22
+23481,27
+23482,40
+23483,21
+23484,20
+23485,22
+23486,33
+23488,23
+23489,19
+23491,22
+23492,25
+23493,43
+23494,31
+23497,26
+23498,20
+23499,34
+23501,43
+23502,22
+23503,36
+23504,19
+23505,30
+23506,24
+23507,31
+23508,22
+23509,19
+23510,50
+23511,23
+23512,24
+23513,28
+23515,34
+23516,26
+23517,23
+23518,28
+23519,48
+23520,26
+23521,20
+23522,31
+23523,25
+23524,23
+23525,27
+23526,27
+23527,26
+23528,51
+23529,35
+23530,33
+23531,18
+23532,33
+23533,37
+23534,20
+23535,26
+23536,30
+23539,27
+23540,61
+23541,40
+23542,27
+23543,31
+23544,23
+23547,24
+23548,35
+23549,30
+23551,21
+23552,19
+23553,21
+23554,28
+23555,26
+23557,16
+23558,24
+23559,27
+23560,33
+23561,26
+23563,42
+23564,28
+23565,45
+23566,23
+23567,21
+23568,38
+23569,26
+23570,26
+23571,26
+23572,29
+23573,51
+23574,37
+23575,26
+23576,40
+23577,25
+23578,37
+23579,22
+23580,50
+23581,36
+23582,34
+23583,23
+23585,23
+23586,32
+23587,19
+23588,23
+23589,48
+23590,48
+23591,25
+23592,37
+23593,24
+23594,30
+23596,31
+23597,43
+23598,28
+23599,31
+23600,30
+23601,25
+23603,21
+23604,36
+23607,20
+23608,38
+23609,41
+23610,48
+23611,35
+23612,33
+23614,45
+23615,56
+23616,31
+23617,25
+23618,30
+23619,27
+23621,26
+23622,39
+23623,27
+23624,24
+23626,36
+23627,26
+23628,26
+23630,27
+23631,19
+23632,18
+23633,37
+23634,37
+23635,21
+23637,30
+23638,35
+23639,18
+23640,24
+23642,34
+23643,26
+23644,18
+23645,22
+23646,33
+23647,36
+23649,36
+23650,29
+23651,25
+23652,22
+23653,26
+23654,51
+23655,25
+23656,23
+23657,25
+23658,23
+23659,24
+23660,20
+23661,31
+23662,25
+23663,24
+23664,21
+23666,25
+23668,46
+23669,31
+23670,22
+23672,22
+23673,31
+23675,28
+23676,39
+23677,20
+23678,24
+23679,67
+23680,25
+23681,47
+23682,33
+23683,35
+23684,28
+23685,50
+23686,22
+23687,29
+23688,23
+23689,25
+23691,36
+23692,15
+23693,38
+23694,23
+23695,39
+23696,28
+23698,27
+23699,30
+23700,23
+23701,27
+23702,42
+23704,51
+23705,54
+23706,31
+23707,26
+23708,47
+23709,35
+23710,37
+23711,28
+23712,32
+23713,29
+23714,39
+23715,33
+23716,30
+23718,22
+23719,39
+23720,22
+23721,32
+23722,32
+23723,28
+23724,35
+23725,18
+23727,28
+23728,27
+23730,50
+23731,32
+23732,26
+23733,19
+23734,27
+23737,29
+23740,29
+23741,23
+23742,21
+23743,42
+23744,24
+23745,45
+23746,35
+23747,27
+23748,29
+23749,27
+23750,27
+23751,28
+23752,34
+23755,31
+23756,30
+23757,19
+23758,37
+23759,20
+23761,24
+23762,41
+23763,45
+23764,30
+23765,72
+23766,17
+23767,28
+23768,48
+23770,23
+23771,31
+23774,40
+23776,26
+23777,28
+23780,28
+23781,39
+23782,32
+23783,22
+23784,29
+23786,20
+23787,22
+23788,30
+23789,36
+23790,23
+23791,24
+23792,36
+23794,35
+23795,28
+23796,22
+23797,30
+23798,28
+23799,17
+23800,25
+23801,14
+23802,27
+23804,38
+23805,37
+23806,46
+23807,24
+23808,27
+23809,24
+23810,46
+23811,20
+23812,36
+23813,26
+23814,22
+23815,19
+23816,28
+23817,28
+23818,22
+23819,31
+23820,42
+23821,31
+23822,25
+23823,29
+23824,32
+23825,30
+23826,34
+23827,27
+23828,23
+23829,40
+23830,43
+23831,17
+23832,38
+23833,37
+23834,32
+23835,28
+23836,21
+23837,26
+23838,30
+23839,33
+23840,24
+23841,23
+23842,25
+23843,25
+23844,27
+23845,35
+23846,38
+23848,34
+23849,25
+23851,23
+23852,56
+23853,36
+23854,29
+23855,24
+23856,31
+23858,22
+23859,33
+23860,25
+23861,28
+23862,31
+23863,21
+23865,32
+23866,29
+23867,23
+23868,39
+23869,45
+23870,22
+23871,37
+23873,29
+23874,52
+23875,30
+23876,25
+23877,56
+23879,38
+23880,29
+23881,30
+23882,31
+23883,26
+23884,30
+23885,21
+23886,19
+23887,32
+23890,26
+23891,21
+23892,16
+23894,41
+23895,29
+23896,38
+23897,30
+23898,24
+23899,30
+23900,24
+23901,27
+23902,40
+23903,31
+23904,45
+23905,37
+23906,40
+23907,27
+23908,34
+23909,27
+23910,16
+23911,34
+23913,22
+23914,29
+23915,33
+23916,18
+23917,26
+23919,30
+23920,23
+23921,28
+23922,22
+23923,26
+23924,28
+23925,23
+23926,34
+23927,35
+23928,28
+23929,24
+23930,31
+23931,36
+23932,37
+23933,22
+23934,28
+23937,35
+23938,33
+23939,17
+23940,29
+23941,24
+23943,33
+23944,24
+23945,44
+23946,38
+23947,42
+23948,20
+23949,37
+23950,33
+23951,23
+23952,33
+23953,25
+23954,17
+23955,28
+23956,33
+23957,25
+23958,32
+23959,23
+23960,21
+23961,32
+23962,28
+23963,34
+23964,24
+23965,23
+23966,56
+23967,27
+23968,24
+23969,31
+23971,26
+23974,29
+23975,25
+23976,32
+23977,38
+23978,18
+23979,37
+23981,33
+23982,28
+23984,34
+23985,33
+23986,27
+23987,35
+23988,29
+23989,29
+23991,16
+23992,26
+23993,43
+23994,78
+23995,64
+23996,25
+23997,26
+23998,35
+23999,19
+24000,23
+24001,39
+24002,27
+24003,35
+24004,38
+24005,38
+24007,39
+24008,27
+24009,29
+24010,28
+24011,31
+24012,54
+24013,32
+24014,31
+24015,22
+24016,23
+24017,25
+24019,33
+24020,27
+24021,26
+24022,19
+24023,22
+24024,28
+24025,26
+24026,32
+24027,28
+24028,17
+24029,26
+24030,26
+24031,40
+24032,41
+24034,31
+24035,33
+24036,45
+24037,26
+24038,34
+24039,24
+24040,37
+24041,29
+24042,30
+24043,26
+24044,39
+24045,20
+24046,25
+24047,21
+24048,17
+24049,43
+24050,33
+24051,28
+24052,33
+24053,27
+24054,33
+24055,27
+24056,27
+24057,23
+24058,22
+24059,31
+24060,34
+24061,22
+24063,28
+24064,34
+24065,30
+24066,41
+24067,49
+24069,26
+24070,25
+24071,40
+24072,31
+24073,35
+24074,20
+24075,24
+24076,24
+24077,51
+24078,26
+24079,38
+24080,33
+24081,21
+24082,29
+24083,26
+24084,22
+24085,33
+24086,21
+24087,30
+24088,45
+24089,29
+24090,31
+24092,25
+24093,20
+24094,21
+24095,27
+24096,31
+24097,27
+24098,28
+24099,23
+24100,25
+24101,26
+24102,30
+24104,29
+24105,40
+24106,37
+24107,39
+24108,23
+24109,23
+24110,32
+24111,20
+24113,31
+24114,28
+24115,29
+24116,37
+24117,17
+24118,21
+24119,39
+24120,36
+24121,32
+24122,35
+24123,23
+24124,21
+24125,26
+24126,23
+24127,27
+24128,21
+24129,23
+24130,15
+24131,23
+24132,20
+24134,28
+24135,27
+24136,31
+24137,27
+24138,24
+24140,25
+24141,32
+24143,26
+24144,27
+24145,18
+24146,23
+24147,24
+24148,23
+24149,43
+24150,24
+24152,29
+24153,32
+24154,32
+24155,14
+24156,28
+24157,20
+24158,20
+24159,42
+24160,28
+24161,35
+24162,42
+24163,38
+24164,25
+24166,55
+24167,41
+24168,38
+24169,26
+24170,46
+24171,40
+24172,20
+24173,51
+24175,22
+24176,24
+24177,28
+24178,28
+24179,28
+24180,27
+24181,42
+24182,27
+24183,27
+24184,14
+24185,16
+24186,20
+24188,39
+24189,23
+24190,17
+24191,29
+24192,42
+24193,28
+24194,28
+24195,36
+24196,35
+24197,17
+24198,34
+24199,34
+24200,40
+24201,32
+24202,37
+24203,25
+24204,18
+24206,40
+24207,26
+24208,32
+24209,22
+24210,18
+24211,35
+24212,30
+24213,34
+24214,42
+24215,48
+24216,32
+24217,34
+24218,32
+24219,23
+24220,29
+24221,29
+24222,28
+24224,26
+24225,28
+24226,22
+24227,40
+24228,19
+24229,28
+24230,24
+24231,28
+24232,22
+24234,17
+24235,23
+24236,23
+24237,25
+24239,41
+24240,34
+24241,28
+24242,21
+24243,24
+24244,28
+24245,27
+24246,22
+24247,47
+24249,19
+24250,22
+24251,35
+24252,34
+24253,40
+24255,32
+24257,38
+24258,27
+24259,29
+24261,26
+24262,32
+24263,23
+24264,17
+24265,22
+24266,61
+24267,15
+24268,41
+24270,48
+24272,28
+24273,60
+24274,21
+24275,19
+24276,41
+24279,27
+24280,31
+24281,25
+24282,32
+24283,35
+24284,28
+24285,20
+24286,30
+24287,33
+24288,40
+24289,21
+24290,31
+24291,23
+24292,29
+24293,49
+24294,27
+24295,46
+24296,28
+24297,30
+24298,28
+24299,30
+24300,27
+24301,19
+24302,21
+24303,35
+24304,22
+24305,28
+24306,27
+24308,50
+24309,35
+24310,47
+24312,37
+24313,31
+24314,35
+24316,42
+24317,23
+24318,26
+24321,34
+24322,45
+24323,29
+24324,43
+24325,47
+24326,33
+24327,19
+24328,18
+24329,18
+24330,21
+24331,40
+24332,29
+24333,32
+24334,18
+24335,24
+24336,21
+24337,28
+24338,18
+24339,23
+24340,34
+24341,16
+24342,26
+24343,21
+24344,43
+24345,26
+24346,50
+24347,45
+24348,29
+24349,23
+24350,18
+24351,43
+24352,22
+24353,23
+24354,21
+24355,52
+24356,30
+24357,63
+24359,30
+24360,35
+24361,24
+24362,28
+24364,24
+24365,47
+24366,17
+24367,28
+24369,34
+24370,24
+24371,44
+24372,24
+24373,25
+24374,32
+24375,35
+24376,31
+24377,21
+24378,33
+24380,24
+24381,32
+24383,23
+24384,30
+24385,24
+24386,32
+24387,35
+24388,24
+24389,34
+24390,22
+24391,26
+24392,28
+24393,31
+24394,25
+24395,23
+24396,52
+24397,25
+24398,36
+24399,23
+24400,25
+24401,31
+24402,44
+24403,24
+24404,51
+24405,25
+24406,30
+24407,26
+24408,21
+24409,27
+24410,32
+24411,26
+24412,30
+24413,25
+24414,17
+24415,16
+24416,22
+24417,25
+24418,22
+24419,30
+24420,47
+24422,35
+24423,26
+24424,57
+24425,47
+24426,18
+24427,28
+24428,24
+24429,19
+24430,22
+24431,17
+24432,17
+24433,25
+24434,21
+24435,22
+24436,40
+24437,22
+24439,20
+24440,49
+24441,22
+24442,14
+24446,33
+24447,31
+24448,36
+24449,25
+24450,39
+24451,28
+24452,35
+24453,25
+24454,22
+24455,35
+24456,17
+24457,44
+24458,22
+24459,16
+24460,17
+24461,22
+24462,25
+24463,48
+24465,26
+24466,52
+24467,32
+24468,40
+24469,19
+24471,15
+24472,28
+24473,49
+24474,23
+24475,30
+24476,27
+24477,33
+24478,28
+24479,32
+24480,27
+24481,40
+24482,27
+24483,32
+24484,41
+24485,19
+24486,35
+24487,46
+24488,34
+24489,72
+24490,23
+24491,27
+24492,20
+24494,21
+24496,35
+24497,28
+24498,44
+24499,32
+24501,22
+24502,20
+24503,22
+24504,24
+24505,37
+24506,21
+24507,32
+24508,24
+24509,29
+24510,35
+24511,26
+24512,34
+24513,23
+24514,46
+24515,28
+24516,33
+24517,51
+24518,17
+24519,33
+24520,37
+24522,33
+24523,30
+24524,28
+24525,28
+24526,33
+24527,25
+24528,27
+24529,25
+24530,33
+24531,16
+24532,41
+24533,25
+24534,26
+24535,22
+24536,33
+24537,27
+24538,26
+24539,32
+24540,34
+24541,45
+24542,23
+24543,28
+24544,38
+24545,28
+24546,26
+24547,28
+24548,37
+24549,23
+24550,31
+24552,30
+24553,23
+24554,21
+24555,35
+24556,33
+24557,29
+24558,32
+24560,14
+24561,44
+24562,23
+24563,23
+24564,31
+24565,30
+24566,27
+24567,15
+24568,33
+24569,29
+24570,28
+24571,19
+24572,40
+24573,26
+24574,28
+24575,24
+24576,23
+24577,16
+24578,31
+24579,21
+24580,38
+24581,27
+24582,37
+24583,24
+24584,43
+24585,27
+24586,38
+24587,31
+24588,34
+24589,25
+24590,49
+24591,25
+24592,27
+24593,38
+24594,26
+24595,19
+24596,24
+24597,16
+24598,27
+24599,23
+24601,39
+24602,23
+24603,24
+24604,30
+24605,26
+24607,30
+24608,22
+24609,15
+24610,30
+24612,22
+24613,37
+24614,42
+24615,48
+24616,35
+24617,25
+24618,26
+24619,32
+24620,38
+24622,38
+24623,24
+24624,66
+24626,70
+24627,38
+24628,22
+24629,26
+24631,27
+24632,24
+24633,62
+24634,16
+24635,35
+24636,18
+24637,30
+24638,49
+24639,28
+24640,33
+24641,33
+24643,34
+24645,24
+24646,37
+24647,22
+24648,42
+24649,22
+24650,41
+24651,26
+24652,25
+24653,33
+24654,45
+24655,33
+24656,26
+24657,17
+24659,31
+24660,32
+24661,28
+24662,26
+24663,26
+24664,52
+24665,21
+24666,26
+24667,33
+24668,65
+24669,39
+24670,26
+24671,38
+24672,30
+24673,28
+24674,41
+24675,23
+24676,26
+24677,25
+24678,34
+24679,28
+24680,33
+24681,27
+24682,29
+24683,34
+24684,27
+24685,20
+24686,28
+24687,29
+24689,33
+24691,21
+24692,25
+24693,20
+24694,33
+24695,44
+24696,24
+24697,32
+24698,68
+24699,33
+24700,36
+24701,30
+24702,31
+24703,27
+24704,78
+24705,22
+24706,64
+24707,23
+24708,23
+24709,43
+24710,55
+24711,23
+24712,26
+24713,29
+24715,18
+24716,23
+24717,25
+24719,27
+24720,41
+24721,42
+24722,34
+24723,32
+24724,42
+24726,35
+24727,36
+24728,28
+24729,25
+24730,28
+24732,24
+24733,29
+24734,21
+24736,25
+24737,26
+24738,30
+24739,47
+24741,20
+24742,29
+24743,22
+24744,35
+24745,28
+24746,25
+24748,21
+24749,31
+24751,24
+24752,24
+24753,19
+24754,29
+24755,22
+24756,46
+24757,21
+24758,30
+24759,19
+24760,20
+24761,38
+24762,25
+24763,27
+24764,35
+24765,30
+24767,37
+24768,18
+24769,24
+24772,22
+24773,38
+24774,23
+24775,34
+24776,25
+24777,21
+24778,27
+24779,35
+24780,48
+24781,34
+24782,31
+24783,30
+24784,18
+24785,38
+24786,54
+24787,22
+24788,29
+24790,32
+24791,45
+24792,26
+24793,22
+24794,43
+24795,22
+24796,41
+24797,42
+24798,21
+24799,33
+24800,40
+24801,24
+24802,32
+24803,24
+24804,16
+24805,24
+24806,25
+24807,24
+24808,34
+24810,26
+24811,20
+24813,32
+24814,18
+24815,15
+24816,43
+24817,32
+24818,33
+24819,35
+24820,23
+24821,25
+24823,18
+24824,21
+24825,33
+24827,34
+24828,28
+24829,49
+24830,37
+24831,28
+24833,23
+24834,20
+24835,31
+24836,23
+24837,31
+24838,27
+24839,14
+24840,27
+24841,24
+24842,20
+24843,23
+24845,23
+24846,25
+24847,24
+24848,29
+24849,21
+24850,27
+24852,48
+24853,28
+24854,18
+24855,27
+24856,28
+24857,31
+24858,23
+24859,41
+24860,24
+24862,33
+24864,31
+24865,22
+24866,39
+24867,22
+24868,26
+24869,36
+24870,26
+24871,18
+24873,35
+24875,37
+24877,26
+24878,29
+24879,35
+24881,22
+24882,53
+24883,35
+24884,27
+24885,28
+24887,22
+24888,32
+24889,52
+24890,21
+24891,31
+24892,21
+24893,33
+24894,35
+24896,17
+24897,38
+24898,33
+24899,23
+24900,23
+24901,29
+24902,19
+24903,24
+24904,31
+24907,22
+24908,30
+24909,33
+24910,29
+24911,32
+24912,24
+24913,21
+24914,41
+24915,27
+24916,33
+24917,24
+24918,26
+24919,20
+24920,53
+24921,21
+24922,25
+24923,23
+24924,32
+24925,23
+24926,24
+24927,26
+24928,21
+24929,56
+24930,47
+24931,45
+24932,27
+24933,48
+24934,51
+24935,15
+24936,42
+24937,25
+24938,25
+24939,37
+24940,33
+24941,36
+24942,21
+24943,25
+24944,16
+24945,37
+24946,31
+24947,31
+24948,25
+24949,25
+24950,32
+24952,23
+24953,28
+24954,18
+24955,39
+24956,27
+24957,40
+24958,32
+24959,20
+24961,20
+24962,36
+24963,20
+24964,32
+24965,20
+24966,20
+24967,23
+24968,37
+24969,28
+24970,30
+24971,24
+24972,36
+24973,30
+24975,39
+24976,42
+24977,33
+24978,24
+24981,19
+24982,30
+24983,21
+24985,20
+24986,28
+24987,20
+24988,30
+24989,21
+24990,28
+24991,27
+24992,39
+24993,53
+24994,23
+24995,42
+24996,20
+24997,21
+24998,23
+24999,21
+25000,20
+25001,28
+25002,34
+25003,25
+25004,27
+25005,18
+25006,22
+25007,39
+25008,24
+25009,22
+25010,32
+25011,30
+25012,28
+25013,41
+25014,25
+25015,28
+25016,45
+25017,32
+25019,27
+25020,39
+25021,18
+25022,46
+25023,28
+25024,36
+25025,27
+25026,59
+25027,31
+25028,30
+25029,22
+25030,28
+25031,42
+25032,18
+25033,20
+25036,48
+25037,24
+25038,32
+25039,43
+25040,26
+25041,44
+25042,41
+25043,30
+25044,33
+25045,27
+25047,39
+25048,23
+25049,26
+25050,43
+25051,33
+25053,32
+25054,19
+25056,22
+25057,20
+25058,25
+25059,41
+25060,32
+25062,21
+25063,26
+25064,19
+25066,52
+25067,32
+25068,23
+25069,26
+25070,37
+25071,25
+25072,43
+25073,32
+25074,30
+25075,20
+25077,30
+25078,33
+25079,47
+25080,28
+25081,18
+25082,35
+25083,26
+25084,42
+25085,19
+25086,24
+25087,23
+25088,28
+25089,32
+25091,50
+25092,50
+25093,25
+25094,30
+25095,33
+25096,57
+25097,41
+25098,19
+25099,42
+25100,35
+25101,35
+25102,24
+25103,23
+25105,22
+25106,27
+25107,28
+25108,31
+25109,21
+25110,29
+25111,27
+25112,33
+25113,23
+25115,53
+25116,22
+25117,26
+25118,31
+25119,19
+25120,32
+25121,32
+25122,25
+25123,28
+25124,26
+25125,26
+25126,24
+25127,26
+25128,26
+25129,63
+25130,29
+25131,33
+25132,21
+25133,32
+25134,32
+25136,36
+25137,25
+25138,34
+25140,35
+25141,25
+25142,30
+25143,28
+25144,24
+25145,21
+25146,45
+25147,29
+25148,37
+25149,38
+25150,28
+25151,19
+25152,65
+25153,17
+25154,26
+25155,33
+25156,34
+25157,21
+25158,41
+25159,40
+25160,25
+25162,64
+25164,25
+25166,34
+25167,22
+25168,27
+25169,33
+25170,19
+25171,40
+25172,22
+25174,19
+25175,27
+25176,20
+25177,34
+25178,31
+25180,47
+25181,46
+25182,31
+25183,37
+25184,35
+25185,26
+25186,35
+25187,42
+25188,29
+25190,16
+25191,32
+25192,36
+25193,24
+25194,57
+25195,27
+25196,32
+25197,30
+25198,19
+25200,26
+25201,45
+25202,25
+25203,32
+25204,35
+25206,24
+25207,30
+25208,21
+25210,30
+25211,23
+25212,26
+25213,15
+25214,21
+25215,29
+25216,27
+25217,32
+25218,32
+25219,39
+25220,35
+25221,33
+25222,36
+25223,35
+25225,25
+25226,33
+25228,69
+25230,31
+25231,21
+25232,50
+25233,28
+25234,29
+25235,29
+25237,18
+25238,30
+25239,35
+25240,31
+25241,29
+25242,37
+25243,29
+25244,24
+25245,27
+25246,22
+25247,27
+25248,28
+25249,20
+25250,32
+25251,40
+25253,26
+25254,29
+25255,35
+25256,22
+25257,16
+25259,24
+25260,22
+25261,34
+25262,27
+25263,36
+25264,17
+25265,30
+25266,40
+25267,39
+25268,23
+25269,23
+25270,30
+25271,15
+25272,28
+25273,29
+25274,25
+25275,15
+25276,26
+25277,48
+25278,26
+25279,23
+25280,21
+25281,24
+25283,42
+25284,27
+25285,22
+25286,40
+25287,31
+25290,29
+25291,28
+25292,22
+25293,26
+25294,99
+25295,35
+25296,33
+25297,36
+25298,31
+25300,36
+25301,26
+25302,35
+25304,42
+25305,20
+25306,26
+25307,23
+25309,45
+25310,29
+25311,30
+25312,28
+25313,21
+25314,26
+25315,34
+25316,51
+25317,31
+25318,28
+25319,12
+25320,23
+25321,18
+25322,25
+25323,30
+25324,35
+25325,20
+25326,30
+25327,38
+25328,69
+25329,25
+25330,30
+25331,29
+25332,26
+25333,20
+25334,32
+25335,52
+25336,34
+25337,30
+25338,36
+25339,23
+25340,33
+25341,18
+25342,36
+25343,34
+25344,23
+25345,29
+25347,30
+25348,35
+25349,26
+25350,25
+25351,35
+25352,37
+25353,21
+25354,21
+25355,29
+25356,39
+25357,32
+25358,25
+25359,23
+25360,23
+25361,35
+25362,24
+25363,17
+25364,36
+25365,40
+25366,24
+25367,29
+25368,30
+25369,35
+25371,22
+25372,21
+25373,21
+25374,27
+25375,24
+25376,50
+25378,25
+25379,32
+25381,30
+25382,25
+25383,20
+25384,43
+25385,21
+25386,37
+25387,54
+25388,33
+25389,36
+25390,36
+25391,27
+25392,22
+25393,19
+25395,48
+25396,20
+25397,22
+25398,37
+25399,20
+25400,36
+25401,19
+25402,26
+25403,23
+25405,30
+25406,27
+25407,23
+25408,31
+25409,20
+25410,17
+25411,24
+25412,28
+25413,21
+25414,29
+25415,24
+25416,22
+25417,34
+25418,34
+25419,42
+25420,18
+25421,31
+25423,34
+25424,32
+25425,30
+25426,32
+25427,27
+25428,21
+25429,31
+25430,38
+25431,36
+25432,20
+25434,25
+25435,34
+25436,28
+25437,24
+25438,20
+25439,25
+25440,31
+25441,33
+25442,24
+25443,18
+25444,39
+25445,25
+25446,30
+25447,26
+25448,27
+25449,33
+25450,35
+25451,34
+25452,27
+25453,21
+25455,25
+25456,26
+25457,35
+25458,26
+25459,24
+25460,19
+25461,34
+25462,52
+25463,40
+25464,19
+25465,34
+25466,28
+25467,30
+25468,35
+25469,31
+25470,21
+25471,45
+25472,25
+25473,28
+25475,62
+25476,26
+25478,31
+25480,38
+25481,28
+25483,30
+25484,29
+25487,23
+25489,26
+25490,20
+25491,15
+25492,45
+25493,33
+25494,24
+25495,46
+25496,23
+25497,33
+25498,23
+25499,32
+25500,25
+25501,26
+25502,25
+25503,22
+25504,23
+25505,42
+25506,23
+25507,29
+25508,24
+25510,22
+25511,23
+25512,23
+25513,32
+25514,33
+25515,37
+25516,29
+25517,22
+25518,34
+25519,46
+25521,23
+25522,22
+25523,33
+25524,33
+25526,32
+25528,25
+25529,29
+25530,28
+25531,25
+25532,21
+25533,48
+25534,30
+25535,24
+25536,23
+25537,25
+25538,38
+25539,27
+25540,27
+25541,36
+25542,25
+25543,30
+25544,28
+25545,31
+25546,25
+25547,22
+25548,28
+25549,31
+25550,20
+25551,39
+25552,25
+25553,23
+25554,32
+25555,39
+25556,36
+25557,17
+25558,22
+25559,31
+25560,50
+25561,30
+25562,27
+25564,40
+25565,32
+25566,26
+25567,23
+25568,34
+25569,19
+25570,27
+25571,28
+25572,32
+25573,32
+25574,34
+25575,27
+25576,45
+25577,30
+25578,28
+25579,25
+25580,31
+25581,30
+25582,22
+25583,52
+25584,21
+25585,36
+25586,36
+25587,26
+25588,21
+25589,21
+25590,35
+25591,24
+25592,20
+25593,22
+25594,20
+25595,33
+25596,25
+25597,46
+25598,45
+25599,22
+25600,27
+25601,23
+25602,48
+25603,27
+25605,58
+25606,15
+25607,24
+25608,23
+25609,32
+25610,39
+25611,33
+25612,24
+25613,31
+25614,31
+25615,34
+25616,40
+25617,21
+25618,33
+25619,50
+25620,20
+25621,23
+25623,37
+25624,35
+25625,48
+25626,27
+25627,40
+25628,34
+25630,24
+25631,28
+25632,28
+25636,27
+25637,36
+25638,30
+25639,27
+25640,23
+25641,44
+25642,19
+25643,21
+25644,30
+25645,28
+25646,29
+25648,32
+25649,17
+25650,35
+25651,34
+25653,29
+25654,25
+25655,27
+25656,25
+25657,38
+25658,16
+25659,38
+25661,37
+25662,14
+25663,27
+25664,59
+25665,29
+25666,31
+25667,24
+25668,26
+25669,65
+25670,47
+25671,31
+25673,26
+25674,52
+25675,19
+25676,23
+25677,24
+25678,25
+25679,38
+25680,37
+25681,20
+25682,21
+25683,26
+25684,33
+25685,19
+25686,38
+25687,31
+25688,24
+25689,43
+25690,21
+25691,38
+25692,18
+25693,25
+25694,26
+25695,38
+25696,24
+25698,23
+25699,23
+25700,26
+25701,18
+25702,25
+25703,28
+25704,63
+25705,36
+25706,34
+25707,28
+25708,48
+25709,27
+25710,33
+25711,38
+25712,16
+25713,21
+25714,35
+25715,29
+25717,33
+25718,36
+25719,57
+25720,30
+25722,21
+25723,16
+25724,22
+25726,45
+25727,26
+25728,24
+25730,29
+25731,20
+25732,34
+25733,30
+25734,22
+25735,23
+25736,30
+25737,26
+25738,21
+25739,34
+25740,37
+25742,40
+25743,35
+25745,32
+25746,56
+25747,37
+25748,25
+25749,30
+25750,46
+25751,25
+25752,20
+25753,22
+25754,34
+25755,33
+25756,34
+25757,47
+25758,38
+25759,58
+25760,26
+25761,25
+25762,30
+25763,24
+25764,33
+25765,30
+25766,27
+25767,25
+25768,33
+25769,21
+25771,36
+25773,18
+25774,26
+25775,42
+25776,22
+25778,39
+25779,33
+25780,29
+25781,32
+25783,23
+25784,18
+25785,30
+25786,25
+25788,28
+25789,45
+25790,28
+25792,26
+25793,25
+25794,29
+25795,22
+25797,20
+25798,24
+25799,32
+25800,58
+25801,40
+25802,30
+25805,28
+25806,24
+25807,54
+25808,26
+25809,22
+25810,20
+25811,29
+25812,25
+25813,37
+25814,23
+25815,19
+25816,28
+25817,45
+25818,41
+25819,17
+25820,25
+25821,22
+25822,31
+25823,33
+25824,30
+25826,24
+25827,24
+25828,38
+25829,34
+25830,28
+25833,29
+25835,20
+25836,24
+25837,31
+25838,20
+25839,24
+25840,21
+25841,32
+25842,38
+25843,28
+25844,26
+25845,48
+25846,25
+25848,22
+25850,30
+25851,22
+25852,24
+25853,17
+25854,26
+25855,23
+25856,26
+25857,19
+25858,25
+25859,48
+25860,26
+25861,34
+25862,29
+25864,29
+25865,23
+25866,38
+25867,24
+25869,45
+25870,23
+25871,31
+25872,32
+25873,55
+25874,29
+25875,26
+25876,30
+25877,35
+25878,29
+25879,21
+25880,31
+25881,22
+25882,23
+25883,24
+25884,24
+25886,36
+25887,27
+25888,23
+25889,21
+25891,30
+25893,19
+25894,59
+25895,37
+25896,40
+25897,38
+25898,30
+25899,27
+25900,26
+25901,30
+25902,23
+25903,30
+25904,23
+25905,25
+25907,39
+25909,47
+25910,39
+25911,26
+25912,28
+25913,24
+25914,24
+25915,42
+25917,30
+25918,27
+25919,20
+25920,25
+25921,22
+25922,27
+25923,22
+25924,26
+25926,42
+25927,22
+25928,24
+25929,20
+25930,34
+25931,37
+25932,30
+25933,23
+25934,29
+25935,48
+25936,27
+25938,27
+25939,54
+25940,33
+25941,20
+25942,28
+25943,24
+25944,26
+25945,29
+25948,30
+25949,40
+25950,23
+25951,39
+25952,23
+25953,26
+25954,60
+25955,27
+25956,20
+25957,27
+25958,25
+25959,24
+25960,21
+25961,37
+25962,24
+25963,36
+25964,32
+25965,24
+25966,40
+25967,43
+25968,18
+25969,32
+25970,21
+25972,34
+25973,67
+25974,42
+25976,28
+25978,27
+25979,24
+25980,27
+25981,34
+25982,41
+25983,24
+25984,23
+25985,37
+25987,20
+25988,34
+25989,51
+25991,28
+25992,26
+25993,44
+25995,34
+25996,28
+25997,28
+25998,21
+25999,27
+26001,46
+26004,22
+26006,33
+26007,29
+26008,32
+26009,40
+26010,21
+26012,23
+26014,34
+26015,25
+26017,20
+26018,28
+26019,37
+26021,31
+26022,38
+26023,33
+26024,18
+26025,28
+26026,24
+26027,22
+26029,35
+26030,18
+26031,29
+26032,33
+26033,35
+26034,26
+26035,24
+26036,43
+26037,40
+26038,13
+26039,34
+26041,13
+26042,29
+26043,28
+26045,22
+26046,41
+26047,30
+26048,24
+26049,35
+26050,22
+26051,41
+26052,29
+26053,27
+26054,46
+26055,31
+26056,29
+26057,31
+26059,36
+26060,25
+26061,26
+26062,21
+26063,29
+26064,34
+26065,33
+26066,20
+26067,27
+26068,27
+26069,24
+26070,21
+26071,19
+26072,55
+26073,37
+26074,33
+26075,29
+26076,33
+26077,23
+26078,18
+26079,50
+26080,24
+26081,25
+26082,21
+26084,38
+26085,31
+26087,25
+26088,26
+26089,29
+26090,27
+26091,38
+26092,18
+26093,31
+26094,33
+26095,28
+26096,30
+26097,20
+26098,41
+26099,14
+26100,30
+26101,23
+26102,27
+26103,34
+26104,35
+26106,21
+26107,39
+26108,35
+26110,22
+26111,24
+26112,40
+26113,40
+26116,30
+26117,30
+26118,35
+26119,21
+26120,19
+26121,29
+26122,29
+26123,34
+26124,27
+26125,30
+26126,33
+26127,23
+26128,20
+26129,25
+26130,24
+26132,37
+26133,60
+26134,29
+26135,30
+26136,41
+26137,27
+26138,53
+26139,19
+26140,26
+26141,52
+26143,28
+26144,17
+26145,30
+26146,23
+26147,23
+26148,33
+26150,39
+26151,23
+26152,21
+26153,28
+26154,23
+26155,28
+26156,43
+26157,35
+26158,28
+26159,31
+26160,40
+26163,45
+26164,27
+26165,30
+26166,34
+26167,24
+26168,31
+26169,26
+26170,15
+26171,20
+26173,25
+26174,30
+26175,31
+26176,20
+26178,23
+26179,35
+26180,30
+26182,33
+26183,34
+26184,31
+26185,24
+26186,26
+26187,18
+26189,34
+26190,34
+26192,27
+26193,22
+26194,24
+26195,29
+26197,24
+26199,27
+26201,26
+26202,27
+26203,28
+26204,21
+26205,27
+26206,41
+26207,29
+26208,23
+26210,52
+26211,17
+26212,21
+26214,20
+26215,37
+26216,40
+26217,21
+26218,25
+26219,31
+26220,34
+26221,44
+26222,25
+26223,22
+26225,41
+26226,21
+26227,25
+26228,28
+26229,31
+26230,18
+26231,27
+26232,38
+26233,28
+26234,27
+26235,24
+26236,39
+26237,28
+26238,27
+26239,28
+26240,46
+26241,44
+26242,29
+26243,44
+26244,30
+26245,30
+26246,25
+26247,29
+26249,30
+26250,28
+26251,38
+26252,71
+26253,25
+26254,27
+26255,19
+26256,38
+26257,26
+26258,21
+26259,31
+26260,21
+26262,30
+26263,38
+26265,14
+26266,31
+26267,20
+26268,32
+26271,35
+26272,32
+26273,31
+26274,25
+26275,24
+26276,49
+26278,24
+26279,23
+26280,28
+26281,24
+26282,36
+26283,60
+26284,22
+26285,28
+26286,31
+26287,34
+26288,29
+26289,28
+26290,34
+26291,20
+26292,27
+26293,24
+26294,22
+26295,24
+26296,49
+26297,32
+26298,29
+26299,27
+26300,26
+26301,27
+26302,18
+26303,36
+26304,19
+26305,39
+26306,30
+26307,35
+26310,22
+26311,28
+26312,24
+26313,28
+26315,18
+26317,39
+26318,38
+26319,26
+26320,39
+26321,19
+26322,43
+26323,38
+26324,28
+26325,28
+26327,32
+26328,26
+26329,21
+26330,60
+26331,18
+26332,52
+26333,25
+26334,23
+26335,33
+26336,39
+26337,28
+26338,42
+26339,29
+26341,30
+26342,28
+26343,24
+26344,34
+26345,30
+26346,23
+26347,36
+26348,23
+26350,26
+26351,29
+26352,26
+26353,24
+26354,37
+26355,20
+26356,24
+26357,27
+26358,25
+26359,30
+26360,19
+26361,40
+26363,22
+26364,24
+26365,36
+26366,36
+26367,25
+26368,29
+26369,27
+26370,28
+26371,31
+26372,24
+26373,28
+26374,36
+26375,31
+26376,27
+26380,18
+26381,25
+26382,33
+26384,21
+26385,21
+26386,41
+26387,28
+26388,34
+26389,45
+26391,29
+26392,24
+26393,32
+26394,29
+26395,59
+26397,23
+26398,30
+26401,41
+26403,35
+26404,32
+26405,32
+26406,26
+26407,35
+26408,26
+26409,23
+26410,34
+26411,18
+26412,19
+26413,32
+26414,24
+26415,32
+26417,34
+26420,37
+26421,27
+26422,23
+26423,25
+26424,49
+26426,43
+26427,30
+26428,21
+26429,46
+26430,29
+26431,26
+26432,36
+26434,17
+26436,22
+26437,20
+26438,38
+26439,27
+26440,35
+26441,23
+26442,25
+26443,25
+26444,23
+26445,19
+26446,39
+26448,19
+26449,24
+26450,61
+26451,52
+26452,34
+26454,60
+26455,35
+26456,31
+26457,43
+26458,41
+26459,25
+26460,25
+26462,28
+26463,13
+26464,25
+26465,30
+26466,23
+26467,51
+26468,22
+26469,27
+26470,27
+26471,30
+26472,24
+26473,21
+26474,27
+26475,22
+26476,23
+26477,21
+26478,22
+26479,22
+26480,15
+26481,25
+26482,19
+26483,27
+26484,25
+26485,29
+26486,27
+26487,29
+26488,21
+26489,34
+26490,26
+26491,16
+26492,24
+26493,25
+26495,50
+26496,21
+26497,26
+26498,23
+26499,19
+26500,23
+26501,41
+26502,32
+26503,33
+26504,22
+26505,22
+26506,26
+26507,31
+26508,25
+26509,37
+26510,37
+26511,40
+26512,29
+26513,26
+26514,21
+26516,21
+26517,24
+26518,27
+26520,23
+26521,23
+26522,34
+26523,25
+26524,35
+26525,26
+26526,34
+26527,20
+26528,27
+26529,31
+26530,26
+26531,29
+26532,34
+26534,64
+26535,25
+26536,25
+26537,36
+26538,27
+26539,23
+26541,28
+26542,27
+26543,31
+26544,20
+26545,29
+26546,30
+26547,25
+26548,32
+26549,26
+26550,38
+26551,29
+26552,22
+26553,35
+26554,29
+26555,34
+26556,37
+26557,27
+26558,30
+26560,47
+26561,37
+26563,17
+26564,34
+26565,28
+26567,72
+26568,25
+26569,23
+26570,27
+26573,34
+26575,42
+26576,40
+26577,54
+26578,32
+26579,22
+26580,24
+26581,40
+26582,33
+26583,23
+26584,29
+26585,46
+26586,24
+26587,19
+26588,33
+26589,27
+26591,21
+26592,49
+26593,26
+26594,23
+26595,18
+26596,26
+26597,37
+26598,59
+26599,21
+26600,24
+26601,39
+26602,33
+26603,15
+26604,34
+26606,56
+26607,25
+26608,24
+26609,55
+26610,18
+26611,21
+26612,21
+26613,26
+26614,18
+26615,31
+26617,26
+26618,41
+26619,45
+26620,32
+26621,30
+26622,50
+26623,26
+26624,33
+26626,26
+26627,21
+26628,31
+26630,24
+26631,17
+26632,37
+26633,28
+26634,45
+26635,26
+26636,31
+26637,30
+26638,34
+26639,45
+26640,15
+26641,21
+26642,42
+26643,55
+26644,30
+26645,28
+26646,34
+26647,20
+26648,24
+26649,25
+26650,26
+26652,36
+26653,34
+26654,26
+26655,27
+26656,34
+26657,36
+26658,22
+26659,30
+26660,20
+26661,28
+26662,30
+26663,25
+26664,31
+26665,29
+26666,28
+26667,31
+26669,26
+26670,29
+26671,25
+26672,29
+26675,27
+26676,28
+26677,33
+26678,25
+26679,33
+26680,29
+26683,55
+26684,27
+26685,28
+26686,30
+26687,35
+26689,25
+26690,39
+26692,30
+26693,29
+26694,32
+26695,27
+26696,26
+26697,22
+26698,29
+26700,22
+26701,27
+26703,19
+26704,31
+26705,52
+26706,37
+26707,22
+26708,31
+26709,34
+26710,44
+26711,20
+26712,28
+26713,30
+26714,48
+26715,39
+26716,31
+26718,41
+26719,28
+26720,48
+26721,41
+26723,27
+26724,24
+26725,36
+26727,28
+26728,32
+26731,27
+26732,40
+26733,15
+26734,21
+26735,35
+26736,29
+26737,30
+26738,38
+26739,36
+26740,30
+26742,33
+26743,24
+26744,28
+26745,42
+26746,21
+26747,45
+26748,26
+26749,29
+26750,31
+26751,30
+26752,21
+26753,36
+26754,36
+26755,27
+26756,16
+26757,22
+26758,43
+26759,28
+26760,25
+26761,35
+26762,28
+26763,23
+26764,26
+26765,34
+26767,27
+26768,20
+26769,26
+26770,50
+26772,36
+26773,24
+26774,18
+26775,41
+26777,30
+26778,18
+26779,34
+26780,20
+26781,28
+26782,34
+26783,28
+26784,37
+26785,19
+26787,24
+26788,29
+26789,31
+26790,29
+26792,38
+26793,20
+26794,21
+26795,21
+26796,21
+26797,40
+26798,20
+26799,21
+26801,32
+26802,27
+26803,30
+26804,35
+26805,23
+26807,34
+26808,25
+26809,27
+26810,30
+26811,18
+26813,36
+26814,17
+26815,35
+26816,58
+26817,42
+26818,48
+26819,27
+26820,26
+26821,29
+26822,33
+26823,25
+26824,32
+26825,34
+26826,35
+26827,37
+26828,32
+26829,21
+26830,28
+26831,20
+26832,34
+26833,33
+26835,22
+26836,31
+26838,39
+26839,36
+26840,26
+26841,21
+26842,23
+26843,36
+26844,30
+26845,39
+26846,62
+26847,28
+26848,33
+26849,22
+26850,23
+26851,36
+26852,27
+26855,19
+26856,28
+26857,25
+26858,26
+26859,15
+26861,29
+26863,33
+26864,23
+26865,36
+26866,26
+26867,27
+26868,38
+26869,32
+26870,27
+26871,30
+26872,27
+26873,27
+26874,24
+26875,37
+26876,29
+26877,22
+26879,25
+26880,38
+26881,42
+26882,24
+26883,27
+26884,26
+26885,33
+26886,40
+26887,21
+26888,32
+26889,41
+26890,44
+26891,24
+26893,34
+26894,26
+26895,22
+26896,22
+26897,50
+26898,23
+26899,37
+26900,25
+26901,28
+26902,50
+26903,55
+26904,36
+26905,29
+26907,41
+26910,34
+26911,38
+26912,26
+26914,28
+26915,23
+26916,29
+26917,30
+26918,28
+26919,25
+26920,44
+26921,33
+26922,38
+26923,28
+26925,33
+26928,32
+26929,21
+26930,36
+26931,36
+26932,32
+26933,50
+26934,22
+26935,36
+26937,39
+26938,28
+26939,20
+26940,30
+26942,25
+26943,35
+26944,27
+26945,22
+26946,32
+26947,24
+26948,33
+26949,30
+26950,23
+26951,27
+26952,32
+26954,30
+26955,25
+26956,43
+26957,24
+26958,32
+26959,44
+26960,23
+26961,25
+26962,38
+26963,32
+26964,59
+26965,40
+26966,19
+26967,28
+26968,16
+26969,21
+26970,21
+26971,38
+26972,30
+26973,25
+26974,21
+26975,26
+26976,20
+26978,27
+26979,18
+26982,24
+26983,42
+26984,34
+26985,16
+26986,40
+26987,26
+26989,27
+26990,37
+26991,26
+26992,31
+26993,28
+26994,47
+26995,30
+26996,28
+26997,19
+26998,23
+26999,22
+27000,23
+27001,67
+27002,23
+27003,19
+27004,39
+27005,26
+27006,15
+27007,20
+27008,30
+27009,23
+27010,39
+27011,16
+27012,47
+27013,16
+27014,33
+27015,29
+27016,34
+27017,23
+27018,21
+27019,47
+27020,65
+27021,23
+27023,53
+27024,25
+27025,26
+27026,46
+27027,24
+27028,22
+27029,28
+27030,25
+27031,33
+27032,32
+27033,26
+27034,59
+27036,47
+27037,25
+27038,30
+27039,26
+27040,28
+27041,33
+27042,36
+27043,33
+27045,14
+27046,29
+27047,38
+27048,23
+27049,48
+27050,28
+27051,27
+27052,28
+27053,28
+27054,26
+27055,20
+27056,25
+27058,31
+27059,20
+27060,14
+27061,18
+27063,47
+27064,28
+27065,20
+27066,26
+27067,24
+27068,43
+27069,23
+27070,20
+27071,28
+27072,41
+27073,24
+27074,24
+27075,18
+27076,32
+27077,26
+27078,28
+27079,26
+27081,22
+27082,31
+27083,32
+27084,23
+27085,36
+27086,37
+27088,32
+27090,25
+27091,21
+27092,18
+27093,20
+27094,21
+27095,31
+27096,48
+27097,33
+27098,29
+27100,29
+27101,23
+27102,28
+27103,40
+27104,32
+27105,39
+27106,29
+27107,28
+27108,25
+27110,31
+27111,27
+27112,20
+27113,34
+27114,22
+27115,37
+27116,23
+27117,26
+27118,27
+27119,24
+27120,26
+27121,26
+27122,30
+27123,28
+27124,25
+27125,26
+27126,38
+27127,23
+27128,45
+27129,24
+27130,21
+27131,31
+27132,51
+27133,29
+27135,28
+27136,23
+27138,28
+27139,35
+27141,23
+27142,29
+27143,25
+27144,22
+27145,23
+27146,37
+27147,31
+27149,22
+27150,23
+27151,39
+27152,20
+27153,30
+27154,55
+27155,27
+27156,29
+27157,26
+27158,27
+27159,24
+27160,29
+27161,45
+27162,29
+27163,28
+27164,42
+27165,23
+27167,24
+27168,35
+27169,31
+27170,22
+27171,22
+27172,30
+27173,39
+27174,28
+27175,21
+27176,36
+27177,17
+27178,32
+27179,22
+27181,36
+27183,58
+27184,34
+27185,22
+27187,40
+27188,12
+27189,29
+27191,32
+27192,27
+27193,33
+27195,29
+27196,30
+27197,37
+27199,28
+27200,30
+27201,27
+27202,23
+27203,21
+27204,30
+27205,37
+27206,24
+27207,16
+27208,27
+27209,31
+27210,26
+27211,25
+27212,27
+27213,32
+27214,19
+27215,26
+27216,37
+27217,27
+27218,36
+27219,28
+27220,24
+27221,30
+27222,31
+27223,31
+27224,31
+27225,28
+27226,38
+27227,27
+27228,22
+27230,23
+27231,24
+27232,32
+27233,26
+27234,18
+27235,30
+27237,59
+27238,32
+27239,31
+27240,31
+27241,25
+27242,39
+27243,34
+27244,57
+27245,30
+27246,30
+27247,29
+27248,24
+27249,35
+27250,30
+27251,26
+27252,27
+27253,25
+27254,44
+27255,40
+27257,25
+27258,21
+27259,31
+27260,23
+27261,31
+27262,25
+27263,14
+27264,40
+27265,27
+27266,25
+27267,40
+27268,40
+27269,22
+27270,27
+27271,22
+27272,29
+27273,25
+27274,45
+27275,19
+27276,21
+27277,15
+27278,42
+27279,25
+27280,35
+27281,36
+27282,46
+27283,22
+27284,28
+27285,55
+27288,47
+27289,46
+27290,30
+27291,37
+27293,20
+27294,33
+27295,29
+27296,60
+27297,29
+27298,28
+27299,23
+27300,35
+27301,25
+27302,38
+27303,23
+27304,25
+27305,43
+27306,26
+27307,21
+27308,20
+27309,31
+27311,32
+27312,26
+27313,27
+27314,33
+27316,43
+27317,61
+27318,25
+27319,27
+27320,28
+27321,28
+27323,15
+27324,20
+27325,40
+27326,30
+27327,51
+27328,20
+27329,35
+27330,24
+27331,26
+27332,33
+27333,38
+27334,32
+27335,24
+27337,56
+27338,24
+27340,20
+27341,40
+27344,30
+27345,16
+27346,28
+27348,34
+27349,20
+27350,42
+27351,37
+27352,55
+27353,27
+27354,29
+27355,48
+27356,25
+27357,38
+27358,35
+27359,41
+27360,67
+27361,55
+27362,25
+27363,41
+27364,15
+27365,27
+27366,38
+27367,27
+27368,29
+27369,39
+27370,27
+27371,30
+27372,43
+27374,27
+27375,38
+27376,22
+27377,32
+27378,50
+27379,53
+27380,36
+27382,37
+27383,29
+27384,28
+27385,22
+27386,33
+27387,50
+27388,26
+27389,21
+27390,41
+27391,31
+27392,29
+27393,28
+27394,30
+27395,37
+27397,31
+27398,30
+27399,23
+27400,19
+27401,21
+27402,25
+27403,44
+27404,28
+27405,23
+27406,24
+27407,27
+27408,30
+27409,34
+27411,29
+27412,21
+27415,34
+27417,19
+27418,18
+27419,20
+27420,33
+27422,26
+27423,29
+27424,32
+27425,28
+27426,21
+27427,25
+27428,37
+27429,49
+27430,30
+27431,21
+27432,32
+27433,37
+27434,24
+27435,22
+27436,31
+27437,53
+27438,30
+27440,38
+27441,30
+27442,45
+27443,26
+27444,28
+27445,56
+27446,37
+27447,23
+27448,37
+27449,22
+27450,42
+27451,28
+27452,35
+27454,21
+27455,21
+27456,42
+27457,26
+27458,31
+27459,25
+27460,31
+27461,45
+27462,43
+27463,33
+27464,45
+27465,38
+27466,27
+27467,24
+27468,30
+27469,29
+27470,29
+27471,28
+27472,22
+27473,35
+27474,30
+27475,30
+27476,30
+27477,27
+27478,28
+27479,19
+27481,50
+27482,21
+27483,38
+27484,36
+27485,27
+27486,26
+27487,28
+27488,25
+27489,16
+27490,26
+27491,21
+27495,51
+27498,29
+27500,30
+27501,25
+27502,35
+27504,32
+27505,18
+27506,39
+27507,28
+27508,33
+27509,24
+27510,47
+27512,39
+27513,36
+27514,45
+27515,20
+27516,28
+27517,28
+27518,57
+27519,25
+27520,28
+27521,58
+27522,53
+27523,37
+27524,52
+27525,19
+27526,25
+27527,25
+27528,27
+27529,28
+27530,25
+27531,34
+27532,26
+27533,28
+27534,22
+27535,12
+27537,42
+27540,48
+27541,28
+27542,38
+27543,21
+27545,16
+27546,59
+27547,28
+27548,21
+27549,34
+27550,28
+27551,39
+27552,21
+27553,32
+27554,29
+27555,41
+27556,20
+27557,39
+27558,24
+27560,27
+27561,49
+27562,33
+27563,24
+27564,25
+27565,14
+27566,34
+27567,21
+27568,28
+27569,23
+27570,16
+27571,29
+27572,46
+27573,30
+27574,52
+27575,22
+27576,21
+27577,26
+27578,37
+27579,46
+27580,45
+27581,26
+27582,41
+27583,24
+27584,34
+27585,22
+27586,25
+27587,26
+27588,23
+27589,23
+27590,37
+27591,27
+27592,26
+27593,34
+27595,31
+27596,32
+27597,25
+27598,43
+27599,25
+27601,20
+27602,30
+27603,22
+27604,31
+27605,21
+27606,33
+27607,28
+27608,25
+27609,27
+27610,32
+27611,37
+27612,31
+27613,22
+27614,22
+27615,37
+27616,49
+27618,26
+27619,29
+27620,25
+27621,30
+27622,37
+27624,30
+27625,23
+27626,26
+27627,32
+27628,23
+27629,24
+27631,45
+27632,48
+27633,45
+27634,27
+27635,23
+27636,24
+27637,29
+27638,33
+27639,47
+27640,22
+27642,25
+27643,23
+27644,35
+27645,38
+27646,25
+27647,27
+27648,25
+27649,32
+27650,46
+27651,33
+27652,30
+27653,19
+27654,45
+27655,40
+27656,29
+27657,43
+27658,47
+27660,25
+27661,28
+27662,24
+27663,52
+27664,37
+27665,42
+27666,28
+27667,31
+27668,46
+27669,51
+27670,40
+27671,39
+27672,26
+27674,33
+27675,25
+27677,18
+27678,20
+27679,31
+27680,18
+27681,19
+27682,25
+27683,23
+27684,23
+27687,25
+27688,37
+27690,45
+27691,22
+27692,45
+27693,29
+27694,19
+27695,24
+27696,27
+27698,24
+27700,24
+27701,43
+27702,25
+27703,23
+27704,34
+27705,55
+27706,39
+27707,21
+27708,32
+27709,24
+27710,28
+27711,28
+27712,21
+27713,18
+27714,27
+27715,22
+27716,26
+27717,29
+27718,29
+27719,28
+27720,14
+27721,23
+27722,30
+27723,34
+27724,25
+27725,25
+27726,27
+27727,31
+27728,50
+27729,36
+27730,25
+27731,26
+27732,76
+27733,27
+27734,24
+27735,33
+27736,25
+27737,37
+27738,17
+27739,29
+27740,29
+27741,38
+27742,34
+27743,26
+27744,20
+27745,13
+27746,19
+27747,32
+27748,34
+27749,24
+27750,36
+27751,26
+27752,22
+27753,35
+27754,22
+27755,21
+27756,30
+27757,40
+27758,31
+27759,24
+27760,36
+27761,26
+27762,21
+27763,34
+27764,13
+27765,27
+27767,24
+27768,58
+27769,35
+27770,23
+27771,25
+27772,19
+27773,23
+27774,47
+27775,21
+27776,41
+27777,19
+27778,31
+27779,24
+27780,43
+27781,24
+27782,25
+27783,23
+27784,31
+27786,31
+27787,61
+27788,29
+27789,25
+27790,31
+27791,30
+27792,29
+27793,25
+27794,21
+27796,21
+27797,19
+27798,35
+27799,53
+27800,27
+27801,27
+27802,31
+27804,38
+27805,34
+27806,30
+27807,30
+27808,23
+27809,24
+27810,35
+27811,28
+27812,30
+27814,46
+27817,34
+27818,29
+27819,29
+27821,27
+27823,30
+27824,35
+27825,49
+27826,28
+27827,24
+27829,36
+27830,43
+27831,22
+27832,23
+27834,43
+27835,43
+27836,61
+27837,30
+27839,34
+27841,99
+27842,36
+27843,34
+27844,31
+27845,23
+27846,31
+27847,36
+27848,20
+27850,30
+27851,26
+27852,50
+27853,22
+27854,32
+27855,27
+27856,42
+27857,28
+27859,26
+27860,37
+27861,27
+27862,25
+27863,50
+27864,25
+27865,71
+27866,32
+27867,32
+27868,23
+27869,24
+27870,20
+27871,36
+27872,32
+27874,55
+27875,35
+27876,31
+27877,46
+27878,25
+27879,32
+27880,19
+27881,28
+27882,21
+27884,28
+27885,43
+27886,36
+27887,53
+27888,32
+27889,19
+27890,25
+27891,26
+27892,31
+27894,23
+27895,20
+27896,15
+27897,36
+27898,24
+27899,20
+27900,18
+27901,32
+27903,38
+27904,26
+27905,27
+27906,30
+27907,24
+27908,17
+27909,25
+27911,42
+27912,29
+27913,30
+27915,21
+27916,25
+27917,33
+27918,26
+27919,17
+27920,41
+27921,24
+27922,24
+27923,24
+27924,28
+27925,22
+27926,27
+27927,30
+27928,22
+27929,24
+27930,25
+27931,32
+27932,21
+27933,29
+27934,17
+27935,40
+27936,26
+27937,31
+27938,29
+27939,36
+27940,23
+27941,34
+27942,16
+27943,54
+27944,30
+27945,30
+27946,22
+27947,28
+27948,28
+27949,26
+27950,41
+27952,22
+27953,22
+27954,28
+27956,30
+27957,21
+27959,33
+27960,31
+27961,21
+27962,43
+27963,26
+27964,34
+27965,29
+27966,31
+27968,30
+27969,22
+27970,45
+27971,22
+27972,28
+27973,43
+27974,23
+27975,38
+27976,28
+27977,32
+27978,30
+27979,30
+27980,40
+27981,34
+27982,22
+27983,23
+27984,27
+27986,28
+27987,30
+27988,27
+27989,43
+27990,23
+27991,37
+27992,36
+27994,37
+27995,32
+27996,38
+27997,24
+27998,43
+27999,62
+28000,37
+28001,30
+28002,36
+28003,42
+28004,39
+28005,39
+28007,41
+28008,28
+28009,20
+28010,29
+28011,27
+28012,31
+28014,23
+28015,46
+28016,35
+28017,35
+28018,38
+28019,72
+28021,24
+28022,24
+28023,24
+28024,24
+28025,39
+28027,20
+28028,30
+28029,31
+28030,24
+28031,39
+28032,24
+28033,20
+28034,23
+28035,43
+28036,32
+28037,26
+28039,25
+28040,28
+28041,14
+28044,20
+28045,25
+28047,59
+28048,18
+28049,36
+28050,24
+28051,15
+28052,25
+28053,23
+28054,30
+28055,31
+28056,32
+28057,27
+28058,29
+28059,19
+28060,26
+28062,19
+28063,36
+28064,50
+28065,22
+28066,22
+28067,32
+28068,31
+28069,23
+28071,27
+28072,28
+28073,20
+28075,16
+28076,32
+28078,36
+28079,33
+28080,33
+28081,36
+28082,29
+28083,26
+28084,19
+28085,55
+28086,26
+28087,30
+28088,23
+28089,29
+28090,32
+28091,34
+28092,18
+28094,55
+28095,43
+28096,25
+28097,37
+28098,23
+28099,30
+28100,20
+28101,24
+28103,20
+28104,29
+28105,45
+28106,22
+28107,30
+28108,37
+28109,37
+28110,30
+28111,35
+28113,28
+28114,29
+28115,24
+28116,25
+28117,34
+28118,22
+28119,27
+28120,37
+28121,24
+28122,25
+28123,35
+28124,30
+28125,49
+28126,30
+28127,35
+28128,30
+28129,40
+28130,30
+28131,28
+28133,26
+28134,25
+28135,28
+28136,33
+28137,20
+28138,18
+28139,56
+28140,21
+28141,25
+28142,45
+28143,23
+28145,23
+28146,24
+28147,25
+28148,37
+28149,22
+28151,26
+28152,31
+28153,28
+28154,29
+28155,25
+28156,27
+28157,21
+28158,23
+28159,28
+28160,25
+28161,19
+28163,33
+28164,23
+28165,34
+28166,19
+28167,40
+28168,31
+28169,29
+28172,28
+28173,28
+28174,27
+28175,33
+28176,27
+28177,39
+28178,26
+28179,27
+28180,39
+28182,17
+28183,39
+28184,19
+28185,29
+28186,27
+28187,22
+28188,36
+28189,43
+28190,22
+28191,20
+28193,41
+28195,35
+28196,22
+28197,12
+28198,19
+28199,21
+28200,21
+28201,29
+28202,21
+28203,32
+28204,32
+28205,24
+28206,25
+28207,30
+28208,25
+28209,24
+28210,34
+28211,19
+28212,33
+28213,24
+28214,42
+28217,24
+28218,42
+28219,44
+28220,28
+28222,27
+28223,33
+28224,55
+28225,23
+28226,23
+28227,34
+28228,29
+28229,35
+28230,38
+28231,27
+28232,26
+28233,19
+28234,37
+28235,22
+28236,22
+28237,26
+28238,32
+28239,34
+28240,25
+28241,19
+28242,25
+28244,43
+28246,29
+28247,21
+28248,22
+28249,23
+28250,30
+28251,30
+28252,35
+28253,24
+28254,28
+28255,30
+28256,28
+28257,25
+28259,24
+28260,56
+28261,44
+28263,53
+28264,26
+28265,38
+28266,25
+28267,18
+28269,34
+28270,23
+28271,21
+28273,20
+28274,19
+28275,26
+28276,31
+28277,29
+28278,44
+28279,20
+28280,31
+28281,26
+28282,24
+28283,25
+28284,26
+28285,38
+28286,33
+28287,36
+28288,34
+28289,25
+28290,33
+28291,17
+28292,29
+28294,28
+28295,29
+28296,40
+28297,55
+28298,20
+28299,21
+28300,23
+28301,25
+28302,42
+28303,39
+28304,21
+28305,30
+28306,31
+28307,31
+28308,25
+28309,24
+28310,30
+28311,24
+28312,22
+28313,59
+28314,26
+28315,22
+28316,20
+28317,34
+28318,25
+28320,47
+28321,12
+28322,29
+28323,37
+28325,24
+28326,23
+28327,34
+28328,28
+28329,22
+28331,26
+28332,41
+28333,40
+28334,42
+28335,24
+28336,25
+28337,24
+28338,20
+28339,25
+28340,25
+28341,21
+28342,17
+28343,40
+28344,33
+28345,33
+28346,40
+28347,34
+28348,50
+28349,32
+28350,45
+28351,32
+28352,53
+28353,30
+28354,25
+28356,26
+28357,35
+28358,22
+28359,35
+28360,26
+28361,24
+28362,32
+28363,34
+28365,19
+28366,21
+28367,40
+28368,23
+28369,27
+28370,23
+28372,53
+28374,32
+28375,22
+28376,24
+28377,27
+28378,50
+28379,31
+28380,30
+28381,35
+28382,22
+28384,29
+28385,33
+28386,25
+28387,30
+28389,23
+28390,26
+28391,35
+28392,29
+28393,40
+28394,43
+28395,32
+28396,28
+28397,37
+28398,27
+28399,19
+28401,26
+28402,27
+28403,24
+28405,25
+28406,25
+28407,27
+28409,27
+28410,18
+28411,41
+28412,45
+28415,23
+28416,32
+28417,29
+28419,24
+28420,47
+28422,37
+28423,26
+28424,27
+28425,29
+28426,23
+28427,32
+28428,37
+28429,22
+28430,14
+28431,27
+28432,25
+28433,35
+28434,39
+28435,41
+28436,26
+28437,33
+28438,26
+28439,43
+28440,34
+28441,33
+28442,23
+28444,30
+28446,30
+28447,22
+28448,32
+28449,37
+28450,12
+28451,47
+28452,60
+28453,27
+28454,18
+28455,32
+28456,22
+28457,24
+28458,37
+28459,25
+28460,26
+28461,31
+28462,21
+28463,40
+28464,25
+28466,36
+28467,30
+28468,32
+28469,24
+28470,33
+28471,22
+28472,24
+28473,31
+28474,29
+28475,32
+28476,36
+28477,27
+28479,36
+28480,35
+28481,43
+28482,22
+28484,20
+28485,38
+28486,41
+28488,18
+28489,39
+28490,14
+28491,25
+28492,23
+28493,26
+28494,30
+28495,30
+28496,44
+28497,29
+28498,37
+28499,24
+28500,31
+28501,23
+28502,31
+28503,16
+28504,30
+28505,37
+28506,35
+28507,35
+28508,47
+28509,27
+28510,36
+28511,28
+28512,28
+28513,35
+28514,37
+28515,37
+28516,49
+28517,36
+28518,14
+28519,23
+28520,43
+28521,31
+28522,26
+28523,29
+28525,33
+28526,30
+28527,22
+28528,25
+28529,51
+28530,30
+28531,19
+28532,28
+28533,27
+28534,24
+28535,41
+28536,20
+28537,37
+28538,28
+28539,31
+28541,27
+28542,20
+28543,50
+28544,26
+28545,26
+28546,24
+28547,41
+28549,20
+28550,39
+28551,55
+28552,30
+28553,50
+28554,26
+28555,49
+28558,26
+28559,34
+28560,36
+28561,27
+28562,34
+28563,23
+28564,37
+28565,32
+28566,26
+28567,26
+28568,31
+28569,54
+28570,39
+28571,39
+28572,29
+28573,25
+28574,19
+28575,23
+28576,21
+28577,32
+28578,28
+28579,72
+28580,42
+28581,37
+28582,27
+28583,30
+28584,25
+28586,30
+28587,40
+28588,24
+28589,35
+28590,29
+28592,33
+28593,28
+28594,30
+28595,31
+28596,20
+28597,44
+28599,16
+28600,24
+28601,27
+28603,25
+28604,44
+28605,35
+28607,29
+28609,36
+28610,21
+28611,26
+28612,43
+28613,28
+28614,52
+28615,29
+28616,33
+28618,29
+28619,23
+28620,31
+28621,36
+28622,27
+28623,15
+28624,25
+28625,21
+28626,23
+28627,43
+28628,28
+28630,21
+28631,26
+28632,20
+28633,34
+28634,26
+28635,33
+28636,24
+28637,27
+28639,43
+28640,23
+28641,26
+28642,32
+28643,44
+28644,27
+28645,28
+28646,38
+28647,20
+28649,35
+28650,23
+28651,36
+28652,19
+28653,25
+28654,30
+28655,19
+28656,17
+28657,22
+28658,33
+28661,43
+28662,22
+28663,38
+28665,55
+28666,33
+28667,29
+28668,28
+28669,38
+28670,39
+28672,28
+28675,48
+28676,17
+28677,48
+28678,19
+28680,23
+28681,26
+28682,1
+28683,23
+28684,27
+28686,26
+28687,35
+28688,30
+28689,35
+28690,23
+28691,31
+28692,29
+28693,35
+28694,37
+28695,28
+28696,45
+28697,30
+28698,34
+28699,36
+28700,38
+28701,20
+28703,19
+28704,30
+28705,41
+28706,40
+28707,21
+28708,19
+28709,35
+28711,28
+28712,20
+28714,23
+28715,35
+28716,22
+28717,27
+28718,61
+28719,29
+28720,27
+28721,51
+28722,29
+28723,40
+28724,38
+28725,29
+28726,38
+28727,31
+28728,25
+28729,15
+28730,45
+28732,26
+28733,34
+28734,21
+28735,26
+28736,40
+28737,21
+28738,35
+28739,24
+28740,26
+28741,22
+28742,24
+28743,29
+28744,27
+28745,23
+28746,27
+28747,26
+28748,25
+28750,27
+28751,23
+28752,38
+28753,25
+28754,22
+28755,46
+28756,21
+28757,28
+28758,24
+28760,41
+28761,31
+28762,21
+28763,30
+28765,32
+28766,22
+28767,21
+28768,26
+28769,23
+28770,28
+28771,35
+28772,21
+28773,30
+28774,25
+28775,24
+28776,19
+28777,22
+28778,54
+28779,30
+28781,38
+28782,29
+28783,31
+28784,50
+28785,23
+28786,41
+28787,20
+28788,23
+28789,25
+28790,38
+28791,28
+28792,26
+28794,38
+28795,28
+28798,36
+28799,24
+28800,29
+28801,26
+28802,28
+28803,20
+28804,33
+28805,47
+28806,28
+28807,36
+28808,41
+28809,31
+28810,41
+28811,28
+28812,27
+28813,32
+28814,25
+28815,28
+28816,24
+28817,24
+28818,37
+28819,35
+28820,23
+28821,35
+28822,20
+28824,23
+28826,32
+28827,32
+28828,26
+28829,19
+28830,26
+28832,27
+28833,33
+28834,35
+28835,25
+28836,42
+28837,26
+28838,18
+28839,31
+28840,39
+28841,28
+28842,30
+28843,31
+28844,28
+28845,27
+28846,39
+28847,25
+28848,33
+28849,24
+28850,21
+28851,48
+28852,33
+28853,25
+28854,22
+28855,22
+28856,25
+28857,22
+28858,60
+28859,37
+28860,17
+28861,39
+28862,24
+28863,40
+28864,36
+28865,53
+28866,23
+28867,32
+28869,23
+28870,40
+28871,39
+28872,25
+28873,29
+28874,38
+28875,36
+28876,20
+28877,32
+28878,26
+28879,43
+28880,24
+28881,26
+28882,32
+28883,34
+28884,18
+28885,20
+28886,33
+28887,21
+28888,33
+28890,25
+28891,30
+28892,31
+28893,43
+28894,27
+28895,31
+28896,21
+28898,15
+28899,44
+28902,36
+28903,32
+28904,19
+28905,28
+28906,30
+28907,32
+28908,23
+28910,56
+28911,34
+28912,32
+28913,25
+28914,26
+28915,30
+28916,31
+28917,26
+28918,31
+28919,17
+28920,49
+28921,32
+28922,28
+28923,22
+28924,17
+28925,39
+28926,22
+28927,24
+28929,23
+28930,23
+28931,28
+28932,34
+28933,32
+28934,34
+28935,22
+28936,30
+28937,54
+28938,25
+28939,28
+28940,30
+28942,31
+28943,27
+28944,26
+28945,18
+28946,15
+28947,35
+28948,65
+28949,40
+28950,23
+28951,37
+28952,33
+28953,27
+28954,24
+28955,28
+28956,31
+28957,29
+28958,22
+28959,20
+28961,25
+28963,22
+28964,26
+28965,27
+28966,27
+28967,25
+28968,46
+28969,37
+28970,22
+28971,25
+28972,23
+28973,28
+28974,45
+28975,32
+28976,15
+28977,37
+28978,27
+28979,42
+28980,25
+28981,22
+28982,44
+28983,21
+28984,26
+28986,28
+28988,33
+28989,34
+28990,24
+28991,22
+28992,22
+28993,43
+28994,20
+28995,35
+28996,22
+28997,37
+28998,28
+28999,37
+29000,31
+29002,25
+29003,22
+29004,26
+29005,28
+29006,37
+29007,27
+29009,34
+29010,37
+29012,29
+29013,25
+29014,28
+29016,25
+29017,22
+29018,70
+29019,24
+29020,22
+29021,19
+29022,28
+29023,25
+29024,35
+29025,37
+29026,30
+29027,32
+29028,41
+29029,32
+29030,42
+29031,33
+29032,26
+29033,37
+29034,27
+29035,28
+29036,27
+29037,41
+29038,58
+29039,27
+29040,31
+29041,23
+29042,28
+29043,29
+29044,31
+29047,13
+29048,24
+29049,24
+29050,25
+29051,30
+29052,27
+29053,24
+29054,42
+29055,33
+29056,17
+29057,23
+29058,25
+29059,24
+29060,72
+29062,32
+29063,38
+29064,19
+29065,20
+29066,35
+29067,36
+29068,21
+29069,15
+29071,20
+29072,33
+29076,32
+29077,26
+29079,31
+29080,34
+29082,32
+29083,56
+29084,18
+29085,23
+29086,42
+29087,25
+29088,31
+29090,31
+29091,29
+29092,40
+29093,66
+29094,20
+29095,31
+29096,25
+29097,30
+29098,29
+29099,26
+29101,33
+29102,30
+29103,21
+29104,24
+29105,24
+29106,35
+29107,26
+29108,27
+29110,29
+29111,25
+29112,35
+29113,42
+29114,31
+29115,25
+29116,31
+29117,48
+29118,25
+29119,26
+29120,29
+29121,30
+29122,46
+29124,49
+29125,36
+29126,34
+29127,25
+29128,28
+29129,56
+29130,35
+29131,34
+29132,28
+29133,19
+29134,58
+29135,33
+29136,30
+29137,27
+29138,54
+29139,25
+29140,26
+29141,30
+29142,23
+29143,73
+29144,77
+29145,26
+29146,23
+29147,43
+29148,31
+29149,48
+29150,34
+29152,30
+29153,29
+29154,23
+29155,18
+29156,32
+29157,28
+29158,24
+29159,35
+29160,29
+29161,25
+29162,26
+29164,26
+29165,44
+29166,18
+29167,20
+29168,31
+29169,29
+29170,27
+29171,27
+29172,29
+29173,25
+29174,33
+29177,44
+29178,34
+29179,35
+29180,23
+29181,18
+29184,23
+29185,29
+29186,52
+29187,32
+29188,31
+29189,28
+29190,19
+29191,24
+29192,21
+29193,32
+29194,20
+29195,41
+29196,28
+29197,28
+29198,31
+29199,25
+29200,59
+29201,22
+29203,30
+29204,23
+29205,28
+29206,30
+29207,27
+29208,65
+29209,48
+29210,30
+29211,35
+29212,27
+29213,26
+29214,37
+29215,19
+29216,36
+29217,49
+29218,31
+29219,29
+29220,28
+29221,33
+29222,34
+29223,29
+29225,32
+29226,33
+29227,54
+29228,27
+29229,28
+29230,46
+29231,30
+29232,24
+29233,22
+29234,24
+29236,24
+29237,20
+29238,39
+29239,33
+29241,40
+29243,12
+29244,33
+29245,39
+29246,17
+29247,23
+29248,25
+29249,27
+29250,27
+29251,28
+29252,29
+29253,49
+29254,17
+29255,38
+29256,26
+29257,27
+29258,27
+29259,23
+29261,32
+29262,23
+29263,27
+29264,19
+29265,27
+29266,31
+29267,26
+29268,29
+29269,26
+29270,26
+29271,26
+29272,27
+29274,40
+29276,18
+29277,23
+29278,33
+29280,23
+29281,29
+29282,21
+29283,29
+29284,22
+29285,25
+29286,22
+29287,38
+29288,24
+29289,29
+29290,26
+29291,32
+29292,21
+29293,32
+29294,29
+29295,35
+29296,35
+29297,41
+29298,28
+29299,29
+29301,27
+29302,26
+29304,40
+29305,28
+29306,34
+29307,26
+29308,35
+29309,25
+29310,38
+29311,30
+29312,36
+29313,22
+29314,38
+29315,30
+29316,33
+29317,43
+29318,21
+29319,17
+29320,35
+29321,47
+29322,28
+29323,24
+29324,25
+29325,29
+29326,26
+29327,40
+29328,33
+29329,35
+29330,24
+29331,28
+29332,60
+29333,42
+29334,37
+29335,22
+29337,24
+29338,28
+29340,27
+29341,27
+29342,21
+29343,25
+29344,37
+29345,18
+29346,27
+29347,22
+29348,29
+29349,27
+29350,41
+29351,37
+29353,41
+29354,13
+29355,22
+29356,31
+29357,31
+29359,18
+29360,33
+29361,37
+29362,24
+29363,28
+29364,28
+29366,37
+29368,29
+29369,25
+29370,29
+29372,43
+29373,43
+29376,26
+29377,32
+29378,24
+29379,24
+29380,23
+29382,29
+29383,27
+29384,26
+29385,24
+29386,24
+29387,28
+29388,25
+29389,37
+29390,28
+29391,21
+29393,42
+29394,31
+29395,44
+29396,37
+29397,27
+29398,15
+29399,33
+29400,24
+29401,32
+29402,24
+29403,34
+29404,30
+29405,35
+29406,30
+29408,30
+29409,18
+29410,24
+29412,35
+29414,38
+29416,20
+29418,20
+29419,50
+29420,31
+29421,25
+29422,26
+29423,50
+29424,24
+29425,29
+29426,44
+29427,45
+29428,23
+29429,28
+29430,39
+29431,26
+29432,33
+29433,22
+29434,28
+29435,22
+29436,25
+29437,37
+29438,34
+29439,30
+29440,29
+29441,26
+29442,56
+29443,24
+29444,32
+29445,27
+29446,38
+29447,23
+29448,19
+29449,49
+29451,40
+29452,23
+29453,22
+29454,32
+29455,26
+29456,48
+29457,25
+29458,27
+29459,38
+29460,30
+29463,29
+29464,33
+29465,23
+29466,31
+29467,26
+29468,27
+29469,40
+29471,37
+29472,24
+29473,24
+29474,24
+29475,35
+29476,38
+29477,29
+29478,24
+29479,21
+29480,42
+29481,32
+29482,33
+29483,21
+29485,28
+29486,25
+29487,22
+29488,19
+29489,38
+29492,33
+29493,28
+29494,39
+29495,20
+29496,38
+29497,42
+29498,42
+29499,16
+29500,22
+29501,35
+29502,27
+29503,31
+29504,26
+29505,24
+29506,29
+29507,26
+29508,21
+29510,34
+29511,34
+29512,46
+29515,24
+29516,29
+29517,21
+29519,38
+29521,31
+29522,23
+29523,22
+29524,29
+29526,49
+29527,2
+29528,23
+29529,28
+29531,32
+29533,24
+29534,25
+29535,31
+29536,37
+29537,41
+29538,26
+29539,27
+29540,21
+29541,21
+29542,31
+29543,31
+29544,26
+29545,24
+29546,23
+29547,27
+29548,36
+29549,37
+29550,35
+29551,20
+29553,28
+29554,27
+29555,29
+29556,25
+29557,34
+29559,18
+29560,22
+29561,31
+29562,51
+29563,28
+29564,24
+29565,22
+29567,27
+29568,26
+29570,39
+29571,22
+29572,42
+29574,22
+29575,32
+29577,44
+29578,32
+29580,23
+29582,35
+29583,30
+29584,30
+29585,37
+29586,30
+29587,30
+29588,33
+29589,24
+29590,53
+29591,21
+29592,51
+29593,14
+29594,35
+29595,36
+29596,35
+29599,37
+29600,29
+29602,17
+29603,55
+29604,71
+29605,32
+29606,36
+29607,26
+29608,28
+29609,22
+29610,32
+29611,34
+29612,27
+29613,28
+29614,42
+29615,32
+29617,27
+29618,25
+29621,26
+29622,50
+29623,30
+29624,30
+29625,19
+29626,24
+29627,22
+29629,25
+29630,43
+29631,25
+29634,34
+29635,24
+29636,24
+29637,20
+29638,15
+29639,22
+29640,55
+29641,36
+29642,28
+29643,56
+29644,34
+29645,26
+29646,20
+29648,33
+29649,31
+29650,30
+29651,20
+29652,21
+29654,25
+29655,28
+29656,43
+29657,26
+29658,27
+29659,26
+29660,49
+29661,24
+29662,25
+29663,28
+29664,35
+29666,37
+29667,21
+29668,25
+29669,27
+29670,40
+29671,26
+29672,40
+29673,26
+29674,38
+29675,26
+29676,34
+29677,30
+29678,28
+29679,50
+29680,23
+29681,24
+29682,29
+29683,16
+29684,42
+29685,30
+29686,26
+29687,37
+29688,48
+29689,24
+29690,34
+29691,31
+29692,21
+29693,30
+29694,26
+29695,26
+29696,18
+29699,35
+29700,21
+29702,25
+29703,29
+29704,17
+29705,33
+29706,26
+29707,19
+29708,18
+29710,33
+29711,34
+29712,24
+29713,29
+29714,24
+29715,35
+29716,30
+29717,20
+29718,25
+29720,34
+29721,23
+29722,15
+29723,25
+29724,39
+29725,24
+29727,31
+29728,31
+29729,39
+29730,34
+29731,25
+29732,31
+29733,30
+29734,25
+29735,27
+29736,26
+29737,30
+29738,19
+29739,20
+29740,21
+29741,32
+29742,28
+29744,29
+29745,27
+29746,33
+29747,39
+29748,46
+29749,29
+29750,18
+29751,25
+29753,23
+29754,31
+29755,14
+29756,21
+29757,25
+29758,37
+29759,21
+29761,33
+29762,24
+29763,18
+29766,26
+29767,46
+29768,20
+29771,23
+29773,26
+29774,53
+29775,22
+29776,36
+29777,32
+29778,38
+29779,27
+29780,23
+29781,34
+29782,47
+29784,26
+29785,24
+29786,23
+29787,46
+29788,18
+29789,32
+29790,27
+29791,26
+29792,31
+29793,23
+29794,25
+29795,19
+29796,43
+29797,52
+29798,24
+29799,42
+29800,54
+29801,35
+29802,62
+29803,38
+29805,24
+29806,23
+29807,24
+29808,54
+29809,24
+29810,23
+29811,24
+29812,26
+29814,32
+29815,22
+29816,26
+29817,39
+29818,48
+29819,33
+29820,28
+29821,30
+29822,28
+29823,33
+29824,39
+29827,21
+29828,26
+29829,28
+29830,30
+29831,31
+29832,41
+29833,32
+29834,37
+29835,20
+29836,26
+29838,25
+29839,45
+29840,29
+29841,30
+29842,35
+29843,41
+29844,23
+29845,24
+29846,21
+29847,31
+29848,36
+29850,34
+29851,32
+29853,37
+29854,60
+29855,30
+29856,21
+29857,38
+29858,37
+29859,22
+29860,33
+29861,37
+29862,30
+29863,28
+29864,22
+29865,26
+29866,33
+29867,30
+29868,38
+29870,32
+29871,30
+29872,38
+29874,30
+29876,29
+29877,33
+29878,35
+29880,41
+29881,26
+29882,35
+29883,25
+29884,99
+29885,24
+29887,32
+29888,24
+29889,29
+29890,28
+29891,25
+29892,46
+29893,27
+29895,20
+29896,25
+29897,24
+29898,33
+29899,24
+29900,25
+29901,31
+29902,28
+29903,27
+29904,33
+29905,26
+29906,29
+29907,25
+29909,45
+29910,32
+29911,27
+29912,40
+29913,34
+29915,39
+29916,38
+29917,21
+29918,24
+29919,32
+29920,27
+29921,22
+29922,21
+29923,27
+29924,26
+29926,27
+29927,27
+29931,34
+29932,24
+29933,28
+29934,61
+29935,32
+29936,17
+29937,24
+29939,36
+29940,33
+29941,26
+29942,33
+29943,44
+29944,31
+29945,27
+29946,28
+29949,27
+29950,27
+29951,38
+29952,35
+29953,24
+29954,28
+29955,32
+29956,25
+29957,49
+29959,27
+29960,23
+29961,18
+29963,21
+29964,56
+29965,45
+29966,34
+29967,30
+29968,28
+29969,25
+29970,27
+29971,50
+29972,27
+29973,30
+29974,21
+29975,25
+29976,19
+29977,25
+29978,26
+29979,22
+29980,37
+29981,38
+29982,29
+29983,23
+29984,27
+29985,32
+29986,22
+29987,35
+29988,17
+29989,26
+29990,62
+29991,33
+29992,28
+29993,38
+29994,35
+29995,29
+29996,31
+29997,23
+29999,24
+30001,23
+30002,43
+30003,27
+30004,48
+30005,30
+30007,23
+30008,29
+30009,28
+30010,25
+30011,27
+30012,25
+30013,47
+30014,29
+30015,32
+30016,47
+30017,33
+30018,23
+30019,24
+30022,40
+30023,31
+30024,39
+30025,57
+30027,28
+30028,23
+30029,30
+30030,56
+30031,44
+30033,37
+30035,30
+30036,23
+30038,30
+30039,23
+30040,44
+30042,25
+30044,21
+30045,21
+30046,39
+30047,30
+30048,24
+30049,51
+30050,26
+30051,25
+30052,22
+30055,25
+30056,26
+30060,33
+30061,31
+30063,26
+30066,30
+30067,15
+30068,33
+30070,21
+30071,29
+30072,15
+30073,32
+30074,35
+30076,23
+30077,28
+30078,32
+30079,21
+30080,35
+30081,36
+30082,32
+30083,23
+30084,17
+30085,22
+30086,30
+30087,30
+30088,50
+30089,21
+30090,29
+30091,21
+30092,18
+30093,24
+30094,49
+30095,16
+30096,21
+30097,37
+30098,28
+30099,26
+30100,18
+30101,75
+30102,37
+30105,47
+30107,24
+30108,38
+30109,25
+30110,26
+30111,32
+30112,23
+30113,25
+30114,55
+30115,30
+30116,35
+30118,27
+30119,30
+30120,26
+30121,26
+30123,28
+30124,27
+30125,30
+30126,30
+30127,26
+30128,32
+30129,44
+30130,33
+30131,37
+30132,34
+30133,30
+30134,22
+30135,27
+30136,29
+30137,23
+30138,19
+30139,28
+30140,34
+30142,26
+30143,27
+30144,30
+30145,35
+30146,34
+30147,32
+30148,37
+30149,37
+30150,27
+30151,33
+30154,31
+30155,25
+30156,32
+30157,30
+30158,32
+30159,22
+30160,35
+30161,29
+30162,39
+30164,34
+30165,70
+30166,36
+30167,45
+30168,20
+30169,28
+30170,26
+30171,26
+30172,21
+30174,25
+30175,56
+30176,21
+30177,22
+30178,21
+30179,30
+30180,20
+30181,54
+30182,28
+30183,35
+30184,25
+30185,28
+30186,36
+30188,32
+30189,32
+30190,36
+30191,23
+30192,36
+30193,49
+30194,20
+30195,24
+30196,37
+30197,27
+30198,24
+30199,32
+30200,35
+30202,22
+30203,23
+30204,40
+30205,30
+30206,37
+30208,23
+30209,44
+30210,30
+30211,25
+30212,28
+30213,35
+30214,18
+30215,41
+30216,24
+30217,63
+30218,46
+30219,16
+30220,24
+30222,33
+30224,23
+30226,26
+30227,75
+30228,24
+30229,32
+30230,25
+30232,29
+30233,31
+30234,31
+30236,23
+30237,33
+30239,28
+30240,48
+30241,42
+30242,36
+30243,24
+30244,36
+30245,34
+30246,34
+30247,49
+30248,18
+30249,23
+30250,32
+30251,24
+30252,23
+30253,28
+30254,30
+30255,33
+30256,19
+30257,35
+30258,17
+30259,31
+30260,36
+30261,26
+30262,32
+30263,26
+30264,39
+30265,59
+30266,39
+30267,33
+30268,31
+30269,28
+30270,29
+30271,36
+30273,18
+30274,34
+30275,39
+30276,19
+30277,40
+30278,29
+30279,27
+30280,32
+30281,45
+30282,30
+30283,24
+30285,31
+30286,32
+30287,26
+30288,37
+30290,23
+30291,17
+30292,27
+30293,34
+30294,41
+30295,32
+30296,38
+30297,38
+30298,47
+30300,28
+30301,25
+30302,29
+30303,29
+30305,40
+30306,25
+30307,34
+30308,40
+30309,29
+30310,45
+30311,39
+30312,29
+30313,32
+30314,17
+30315,30
+30316,26
+30317,19
+30318,49
+30320,24
+30321,24
+30322,33
+30324,40
+30325,36
+30326,29
+30327,29
+30328,23
+30329,23
+30331,31
+30332,25
+30333,31
+30334,32
+30335,37
+30336,19
+30337,29
+30338,20
+30339,30
+30340,27
+30341,33
+30342,38
+30343,24
+30345,41
+30346,41
+30347,27
+30348,29
+30349,35
+30350,47
+30351,35
+30352,22
+30353,24
+30354,31
+30355,23
+30356,50
+30357,42
+30358,29
+30359,25
+30360,24
+30361,32
+30362,24
+30363,32
+30364,21
+30365,26
+30366,35
+30367,20
+30368,26
+30371,27
+30372,32
+30373,25
+30374,21
+30375,29
+30376,24
+30377,24
+30378,29
+30379,22
+30380,56
+30381,43
+30382,26
+30383,36
+30384,36
+30385,37
+30386,16
+30387,33
+30388,29
+30390,16
+30392,26
+30393,23
+30394,28
+30395,25
+30396,45
+30398,22
+30399,32
+30400,26
+30401,22
+30402,24
+30403,22
+30404,58
+30405,31
+30406,29
+30407,52
+30410,26
+30411,33
+30412,26
+30413,48
+30415,34
+30416,20
+30417,28
+30418,20
+30419,22
+30420,28
+30421,38
+30422,22
+30424,27
+30425,25
+30426,24
+30427,25
+30428,50
+30429,31
+30430,54
+30431,29
+30432,32
+30433,27
+30435,46
+30437,33
+30438,25
+30439,25
+30441,32
+30442,37
+30443,28
+30444,26
+30445,45
+30446,50
+30447,25
+30448,17
+30449,31
+30450,20
+30451,32
+30453,26
+30454,43
+30455,23
+30456,25
+30457,24
+30458,22
+30459,30
+30460,32
+30461,26
+30462,30
+30463,42
+30464,27
+30465,42
+30466,52
+30467,21
+30468,23
+30469,33
+30470,34
+30471,38
+30473,27
+30475,41
+30476,26
+30477,46
+30478,25
+30479,46
+30480,40
+30481,21
+30483,31
+30484,34
+30485,21
+30486,61
+30487,31
+30488,21
+30489,31
+30490,29
+30492,17
+30493,28
+30495,27
+30496,26
+30497,31
+30498,21
+30499,28
+30500,27
+30501,50
+30502,26
+30503,30
+30504,31
+30507,38
+30508,50
+30509,28
+30510,25
+30511,27
+30512,18
+30513,27
+30515,36
+30517,20
+30518,27
+30519,15
+30520,27
+30521,24
+30522,33
+30523,33
+30524,32
+30525,26
+30526,18
+30527,28
+30528,18
+30529,27
+30530,33
+30533,28
+30534,31
+30536,37
+30537,26
+30538,41
+30540,41
+30541,27
+30542,29
+30544,31
+30545,24
+30546,30
+30547,57
+30549,33
+30550,26
+30552,32
+30554,19
+30555,27
+30556,26
+30557,19
+30558,30
+30559,18
+30560,29
+30561,48
+30562,32
+30563,28
+30565,28
+30566,32
+30567,36
+30569,25
+30570,35
+30571,33
+30572,22
+30573,28
+30574,38
+30575,25
+30576,26
+30577,33
+30578,36
+30579,34
+30581,23
+30583,41
+30584,31
+30585,57
+30586,20
+30587,28
+30588,30
+30589,47
+30590,48
+30592,26
+30593,27
+30594,22
+30595,21
+30596,24
+30597,40
+30598,21
+30599,26
+30600,19
+30601,23
+30602,18
+30603,30
+30604,28
+30605,27
+30606,19
+30607,17
+30609,24
+30610,28
+30611,31
+30612,22
+30613,33
+30615,43
+30616,35
+30617,33
+30618,23
+30619,38
+30621,35
+30622,27
+30623,56
+30624,33
+30625,25
+30626,29
+30627,17
+30628,27
+30629,31
+30630,43
+30632,34
+30633,25
+30634,21
+30635,24
+30636,61
+30637,34
+30638,33
+30639,36
+30640,38
+30641,21
+30643,30
+30644,20
+30646,31
+30647,25
+30648,23
+30649,33
+30650,24
+30651,27
+30652,43
+30653,63
+30654,22
+30655,22
+30657,33
+30658,28
+30659,20
+30660,27
+30661,19
+30662,22
+30664,19
+30665,29
+30666,26
+30667,14
+30668,33
+30669,33
+30670,26
+30671,21
+30672,41
+30674,24
+30675,27
+30676,26
+30677,24
+30678,36
+30679,32
+30680,22
+30681,50
+30682,51
+30683,33
+30684,30
+30685,26
+30686,44
+30687,38
+30688,30
+30689,33
+30690,30
+30691,28
+30692,33
+30693,23
+30694,26
+30695,28
+30696,36
+30698,25
+30699,24
+30700,36
+30702,53
+30703,30
+30704,48
+30705,22
+30706,24
+30707,21
+30708,28
+30709,26
+30711,21
+30713,27
+30714,34
+30715,24
+30716,32
+30717,23
+30718,18
+30719,27
+30720,23
+30721,30
+30722,20
+30723,24
+30724,34
+30725,28
+30726,25
+30727,25
+30728,34
+30729,21
+30730,32
+30731,23
+30732,27
+30733,34
+30734,32
+30735,34
+30736,40
+30737,30
+30738,27
+30739,39
+30740,27
+30741,28
+30742,27
+30743,24
+30745,37
+30746,27
+30747,28
+30748,48
+30749,49
+30750,31
+30752,22
+30753,32
+30754,24
+30755,29
+30756,14
+30757,26
+30758,33
+30759,34
+30760,24
+30761,33
+30762,42
+30763,19
+30764,20
+30765,23
+30767,19
+30770,32
+30771,22
+30772,29
+30773,29
+30774,1
+30775,23
+30776,76
+30777,26
+30778,17
+30779,32
+30780,37
+30781,28
+30782,21
+30783,28
+30784,27
+30785,48
+30786,30
+30788,27
+30789,34
+30790,32
+30792,29
+30793,28
+30794,40
+30795,22
+30796,52
+30797,39
+30798,41
+30799,54
+30800,29
+30801,23
+30802,28
+30803,25
+30804,36
+30805,40
+30806,31
+30807,38
+30808,40
+30809,23
+30811,32
+30812,36
+30813,38
+30814,31
+30815,29
+30816,26
+30818,57
+30819,36
+30820,23
+30822,38
+30823,25
+30824,47
+30825,33
+30826,32
+30827,33
+30829,51
+30830,34
+30831,24
+30832,21
+30833,28
+30834,20
+30835,25
+30836,27
+30837,56
+30838,26
+30839,34
+30840,47
+30841,34
+30842,40
+30843,26
+30844,35
+30845,25
+30846,61
+30847,37
+30848,24
+30849,24
+30850,28
+30851,37
+30853,28
+30854,46
+30855,26
+30857,19
+30858,29
+30859,24
+30860,26
+30861,21
+30862,21
+30864,45
+30865,52
+30866,34
+30867,18
+30868,17
+30869,42
+30870,37
+30871,20
+30872,38
+30873,39
+30874,22
+30875,27
+30876,24
+30879,17
+30880,32
+30881,24
+30883,27
+30884,26
+30886,28
+30887,31
+30888,27
+30889,21
+30890,26
+30891,21
+30892,34
+30893,26
+30894,17
+30895,30
+30896,27
+30897,32
+30898,31
+30899,25
+30901,24
+30902,26
+30904,33
+30906,38
+30908,23
+30909,26
+30910,22
+30911,22
+30912,27
+30914,26
+30916,30
+30917,21
+30918,19
+30919,20
+30920,18
+30921,32
+30923,29
+30924,31
+30925,25
+30926,35
+30927,22
+30928,30
+30929,34
+30930,33
+30931,35
+30932,27
+30933,53
+30934,56
+30935,25
+30936,36
+30937,41
+30938,19
+30939,50
+30940,25
+30941,31
+30942,28
+30943,29
+30944,51
+30946,31
+30947,43
+30949,29
+30950,27
+30951,73
+30952,40
+30953,42
+30954,22
+30955,27
+30956,48
+30957,32
+30958,26
+30959,50
+30960,24
+30961,42
+30962,25
+30963,20
+30964,24
+30965,14
+30966,36
+30967,29
+30968,33
+30969,26
+30970,26
+30971,27
+30972,25
+30973,23
+30974,36
+30976,30
+30979,28
+30980,23
+30982,29
+30983,41
+30984,32
+30985,25
+30986,20
+30987,43
+30988,27
+30989,26
+30990,32
+30992,26
+30993,36
+30994,23
+30995,22
+30996,29
+30997,25
+30998,66
+30999,33
+31000,30
+31001,38
+31002,39
+31003,28
+31004,26
+31005,33
+31006,29
+31007,18
+31008,25
+31009,25
+31010,25
+31011,25
+31012,40
+31013,36
+31014,23
+31015,25
+31016,31
+31017,24
+31021,20
+31022,30
+31023,28
+31024,29
+31025,34
+31026,32
+31027,20
+31028,22
+31029,29
+31030,38
+31032,30
+31033,26
+31035,60
+31036,23
+31037,31
+31038,26
+31039,27
+31040,40
+31041,19
+31042,24
+31043,24
+31044,37
+31045,34
+31046,39
+31047,47
+31048,22
+31050,22
+31051,25
+31052,32
+31053,30
+31054,28
+31055,37
+31056,26
+31057,35
+31059,37
+31060,19
+31061,42
+31062,27
+31063,18
+31064,40
+31065,35
+31066,28
+31067,35
+31068,53
+31069,24
+31070,30
+31071,27
+31073,25
+31074,39
+31075,18
+31076,30
+31077,51
+31078,19
+31079,31
+31080,23
+31082,31
+31084,34
+31085,22
+31086,27
+31087,32
+31088,20
+31089,36
+31090,31
+31091,47
+31092,32
+31093,20
+31094,25
+31095,26
+31097,42
+31098,31
+31099,19
+31100,37
+31101,24
+31102,23
+31103,55
+31104,30
+31105,29
+31106,37
+31107,25
+31108,24
+31109,33
+31110,37
+31111,30
+31112,24
+31113,44
+31114,34
+31115,40
+31116,39
+31117,23
+31118,28
+31119,28
+31120,54
+31122,26
+31123,44
+31124,25
+31125,23
+31126,54
+31127,48
+31128,19
+31129,33
+31130,17
+31131,25
+31133,34
+31134,27
+31135,17
+31136,39
+31137,30
+31138,29
+31139,18
+31140,25
+31141,19
+31142,38
+31144,20
+31145,28
+31146,37
+31147,30
+31148,36
+31149,31
+31150,27
+31151,38
+31153,34
+31154,32
+31155,28
+31156,75
+31157,41
+31158,34
+31159,50
+31160,24
+31161,44
+31163,25
+31164,23
+31166,26
+31167,28
+31168,31
+31169,36
+31170,24
+31171,39
+31172,21
+31173,27
+31174,26
+31175,31
+31176,35
+31177,17
+31178,32
+31179,39
+31181,21
+31182,32
+31183,22
+31184,48
+31185,25
+31187,24
+31188,24
+31189,19
+31190,33
+31191,26
+31192,48
+31193,31
+31195,36
+31196,28
+31197,25
+31198,27
+31199,25
+31200,26
+31201,43
+31202,21
+31203,31
+31205,23
+31206,47
+31207,21
+31208,27
+31211,43
+31212,21
+31213,24
+31214,24
+31215,23
+31216,36
+31217,35
+31218,30
+31219,25
+31220,35
+31221,30
+31222,55
+31223,30
+31224,33
+31225,30
+31226,35
+31227,41
+31229,26
+31231,31
+31232,34
+31233,26
+31234,20
+31235,22
+31237,27
+31238,32
+31239,33
+31240,36
+31241,46
+31243,19
+31244,13
+31245,32
+31246,19
+31247,37
+31248,25
+31249,18
+31250,31
+31251,30
+31252,32
+31253,20
+31254,20
+31255,41
+31256,42
+31259,28
+31261,31
+31263,25
+31264,44
+31265,58
+31266,36
+31268,40
+31270,37
+31271,25
+31273,24
+31275,24
+31276,50
+31277,61
+31278,24
+31279,53
+31280,31
+31281,32
+31282,27
+31283,38
+31285,17
+31286,31
+31287,28
+31289,29
+31290,35
+31291,32
+31292,41
+31293,27
+31294,26
+31295,36
+31296,21
+31297,31
+31298,47
+31299,32
+31300,42
+31301,30
+31302,29
+31303,45
+31305,27
+31306,25
+31307,31
+31308,19
+31309,15
+31310,25
+31311,36
+31312,28
+31313,36
+31314,27
+31315,26
+31316,23
+31317,29
+31318,39
+31319,22
+31321,50
+31322,27
+31323,36
+31324,34
+31325,26
+31326,39
+31327,36
+31328,19
+31329,40
+31330,32
+31331,23
+31332,19
+31333,36
+31334,49
+31336,24
+31337,29
+31338,30
+31339,21
+31340,34
+31341,25
+31342,27
+31343,52
+31344,34
+31345,25
+31346,23
+31347,27
+31348,15
+31349,48
+31350,41
+31351,56
+31352,52
+31353,15
+31354,33
+31356,47
+31357,44
+31358,24
+31359,30
+31360,40
+31361,30
+31362,31
+31363,52
+31364,38
+31365,29
+31366,25
+31368,58
+31369,28
+31371,41
+31372,35
+31373,27
+31374,26
+31376,23
+31377,24
+31378,54
+31379,20
+31380,36
+31381,22
+31382,20
+31383,35
+31384,35
+31386,20
+31387,36
+31388,27
+31389,14
+31390,27
+31391,29
+31392,28
+31393,39
+31394,25
+31395,31
+31396,30
+31397,32
+31398,26
+31399,25
+31400,41
+31401,17
+31402,31
+31403,23
+31404,26
+31405,17
+31406,44
+31407,24
+31408,33
+31410,21
+31412,25
+31413,32
+31414,29
+31415,23
+31416,32
+31417,30
+31418,24
+31419,41
+31421,36
+31423,29
+31424,40
+31425,22
+31426,28
+31427,25
+31428,27
+31429,37
+31430,45
+31431,29
+31432,27
+31434,19
+31435,34
+31436,42
+31437,24
+31439,25
+31440,31
+31441,35
+31443,33
+31444,25
+31446,48
+31447,27
+31448,28
+31449,27
+31450,40
+31451,32
+31452,15
+31454,30
+31455,32
+31456,35
+31457,22
+31458,34
+31459,31
+31460,39
+31461,24
+31462,27
+31463,30
+31464,29
+31465,25
+31467,44
+31468,14
+31469,32
+31470,21
+31471,15
+31473,55
+31474,35
+31475,31
+31476,33
+31477,27
+31478,26
+31479,32
+31481,32
+31482,33
+31483,27
+31484,20
+31485,37
+31486,37
+31487,24
+31488,41
+31489,21
+31490,34
+31491,36
+31492,30
+31493,42
+31494,19
+31495,20
+31496,27
+31497,26
+31498,27
+31499,23
+31500,27
+31501,28
+31502,25
+31503,23
+31504,33
+31505,38
+31506,41
+31508,18
+31509,19
+31510,26
+31511,44
+31512,32
+31514,22
+31515,28
+31516,28
+31517,14
+31518,24
+31519,30
+31520,21
+31521,28
+31522,71
+31523,24
+31524,24
+31525,28
+31526,13
+31527,30
+31528,27
+31529,24
+31530,34
+31531,36
+31532,26
+31533,24
+31534,37
+31535,41
+31536,31
+31537,48
+31538,29
+31539,44
+31540,28
+31541,45
+31542,30
+31543,26
+31544,21
+31546,23
+31547,43
+31548,33
+31549,31
+31550,26
+31551,25
+31552,33
+31553,44
+31554,33
+31555,34
+31556,28
+31557,32
+31558,29
+31559,27
+31560,26
+31562,38
+31563,24
+31564,34
+31566,33
+31567,46
+31568,22
+31569,24
+31570,39
+31571,35
+31572,23
+31573,41
+31574,28
+31575,19
+31576,30
+31578,36
+31580,24
+31581,27
+31582,55
+31583,22
+31584,24
+31585,19
+31587,26
+31588,40
+31589,18
+31590,32
+31592,46
+31593,33
+31594,28
+31595,49
+31596,42
+31597,24
+31598,27
+31599,32
+31600,34
+31601,41
+31602,28
+31603,43
+31604,34
+31605,15
+31606,38
+31607,27
+31608,27
+31609,29
+31610,22
+31612,42
+31613,21
+31614,25
+31616,31
+31617,27
+31618,23
+31619,38
+31620,20
+31621,34
+31622,20
+31623,29
+31624,20
+31625,24
+31626,24
+31627,21
+31629,33
+31630,29
+31631,29
+31632,26
+31633,41
+31635,23
+31636,27
+31637,38
+31638,29
+31639,38
+31641,22
+31642,31
+31643,27
+31644,37
+31645,24
+31646,24
+31647,27
+31648,31
+31649,34
+31650,38
+31651,35
+31652,13
+31653,19
+31654,28
+31655,45
+31656,24
+31658,31
+31659,28
+31660,26
+31661,42
+31662,29
+31663,24
+31664,25
+31665,44
+31666,28
+31667,26
+31668,25
+31669,39
+31670,25
+31671,27
+31672,31
+31673,36
+31675,24
+31677,34
+31678,40
+31679,26
+31680,31
+31681,23
+31682,34
+31683,19
+31684,33
+31685,23
+31686,34
+31687,31
+31688,37
+31689,36
+31690,24
+31691,49
+31692,27
+31693,23
+31694,24
+31696,26
+31697,39
+31698,27
+31700,30
+31701,31
+31703,29
+31704,28
+31705,27
+31708,17
+31709,18
+31710,25
+31711,24
+31712,25
+31713,29
+31714,44
+31715,29
+31716,43
+31717,19
+31718,42
+31719,33
+31720,21
+31721,33
+31722,35
+31723,27
+31724,39
+31725,23
+31726,27
+31727,43
+31728,35
+31729,29
+31731,29
+31732,22
+31733,46
+31734,39
+31735,27
+31736,29
+31737,24
+31738,43
+31739,22
+31740,16
+31741,26
+31742,38
+31743,19
+31744,35
+31745,28
+31746,24
+31747,35
+31748,26
+31749,25
+31750,22
+31751,31
+31752,22
+31753,30
+31754,20
+31756,39
+31757,32
+31758,52
+31759,26
+31760,31
+31761,26
+31762,33
+31763,33
+31764,22
+31765,26
+31766,24
+31767,48
+31769,36
+31770,42
+31771,31
+31772,44
+31773,27
+31774,56
+31776,25
+31777,31
+31778,44
+31780,36
+31781,30
+31783,24
+31784,32
+31785,40
+31786,21
+31788,23
+31789,29
+31790,26
+31791,40
+31792,28
+31793,28
+31794,30
+31795,27
+31796,64
+31797,27
+31798,32
+31799,26
+31800,22
+31801,38
+31802,21
+31803,49
+31804,32
+31805,22
+31806,31
+31807,37
+31808,24
+31810,36
+31811,21
+31812,22
+31813,37
+31814,21
+31816,41
+31817,25
+31818,52
+31819,33
+31820,35
+31821,24
+31822,25
+31823,55
+31824,27
+31825,23
+31826,21
+31827,18
+31828,28
+31829,24
+31831,30
+31832,25
+31836,33
+31837,36
+31838,20
+31839,31
+31840,35
+31842,40
+31844,24
+31847,41
+31848,28
+31850,23
+31851,26
+31852,34
+31853,34
+31854,49
+31855,29
+31856,22
+31857,22
+31858,57
+31859,27
+31860,27
+31861,30
+31862,26
+31864,38
+31865,28
+31866,30
+31868,25
+31869,27
+31870,32
+31871,41
+31872,23
+31873,34
+31874,27
+31875,23
+31876,48
+31877,44
+31878,32
+31879,40
+31880,35
+31882,40
+31883,24
+31884,30
+31885,22
+31887,32
+31888,29
+31889,28
+31890,33
+31891,30
+31892,27
+31894,23
+31895,27
+31896,26
+31898,26
+31899,39
+31900,47
+31901,38
+31902,28
+31903,28
+31904,30
+31905,25
+31907,20
+31908,36
+31909,36
+31910,21
+31911,22
+31912,28
+31913,28
+31914,39
+31915,34
+31917,25
+31918,27
+31919,41
+31920,28
+31922,35
+31923,31
+31924,22
+31926,27
+31927,27
+31928,31
+31929,50
+31931,34
+31932,29
+31933,15
+31934,68
+31935,24
+31936,25
+31937,23
+31938,25
+31939,25
+31940,30
+31941,27
+31942,32
+31943,38
+31944,33
+31945,25
+31946,26
+31947,15
+31948,28
+31949,30
+31950,25
+31951,29
+31952,34
+31953,15
+31954,26
+31956,31
+31957,27
+31958,25
+31959,43
+31960,19
+31961,36
+31962,35
+31963,31
+31964,21
+31965,34
+31966,38
+31967,27
+31968,27
+31969,23
+31970,21
+31971,28
+31972,51
+31973,20
+31975,20
+31976,49
+31977,29
+31978,33
+31979,28
+31980,25
+31981,21
+31982,23
+31983,28
+31984,30
+31985,30
+31986,23
+31988,28
+31989,29
+31990,26
+31991,26
+31993,23
+31995,24
+31996,35
+31997,39
+31998,19
+31999,26
+32000,25
+32001,50
+32003,31
+32004,29
+32005,49
+32006,31
+32007,30
+32008,29
+32009,34
+32010,25
+32011,30
+32012,22
+32013,28
+32014,33
+32015,22
+32017,26
+32019,40
+32021,32
+32022,19
+32023,20
+32024,22
+32025,29
+32026,26
+32027,54
+32028,34
+32029,22
+32030,38
+32031,28
+32032,31
+32033,28
+32035,31
+32037,25
+32038,27
+32039,24
+32040,35
+32042,42
+32043,31
+32044,17
+32045,20
+32046,29
+32047,39
+32048,39
+32049,23
+32050,30
+32051,35
+32052,34
+32053,24
+32054,23
+32055,43
+32056,36
+32057,28
+32058,32
+32059,26
+32060,33
+32061,27
+32063,41
+32064,18
+32065,31
+32066,29
+32067,29
+32068,21
+32072,28
+32073,28
+32074,32
+32075,42
+32077,25
+32078,32
+32079,24
+32080,39
+32081,27
+32082,26
+32083,24
+32084,21
+32085,21
+32086,42
+32087,26
+32088,40
+32089,23
+32090,33
+32092,28
+32093,35
+32094,27
+32095,20
+32097,30
+32098,29
+32099,19
+32101,26
+32102,32
+32103,26
+32104,26
+32105,46
+32107,53
+32110,38
+32111,62
+32112,23
+32113,25
+32114,21
+32115,41
+32116,41
+32117,21
+32118,20
+32119,23
+32120,24
+32121,17
+32122,46
+32123,24
+32124,32
+32125,20
+32126,23
+32127,45
+32128,28
+32129,18
+32130,35
+32131,34
+32135,38
+32136,24
+32137,40
+32138,24
+32139,29
+32140,21
+32141,33
+32142,29
+32143,29
+32144,26
+32145,23
+32146,38
+32147,32
+32148,26
+32149,25
+32150,33
+32151,43
+32152,38
+32153,41
+32154,22
+32155,25
+32156,62
+32158,25
+32159,27
+32160,31
+32161,63
+32162,25
+32163,26
+32164,21
+32165,34
+32166,19
+32167,60
+32168,26
+32169,30
+32170,26
+32172,35
+32173,21
+32174,22
+32175,28
+32176,22
+32177,25
+32178,19
+32179,44
+32180,45
+32181,53
+32182,23
+32183,39
+32184,29
+32185,42
+32186,20
+32187,33
+32188,25
+32189,24
+32190,39
+32191,26
+32192,50
+32193,24
+32195,24
+32196,30
+32197,25
+32198,21
+32199,38
+32200,29
+32201,20
+32202,40
+32203,37
+32204,23
+32205,30
+32206,37
+32207,30
+32208,28
+32209,28
+32210,32
+32211,13
+32212,21
+32213,32
+32214,34
+32215,36
+32217,24
+32218,35
+32219,22
+32220,27
+32221,26
+32222,47
+32223,27
+32224,33
+32225,29
+32226,21
+32227,27
+32228,27
+32229,29
+32230,33
+32231,29
+32232,22
+32233,21
+32235,23
+32236,19
+32237,42
+32238,24
+32239,24
+32240,35
+32242,30
+32243,21
+32244,23
+32245,43
+32246,26
+32247,22
+32248,23
+32249,38
+32250,30
+32251,27
+32252,23
+32253,29
+32254,21
+32255,26
+32256,14
+32257,32
+32258,28
+32259,33
+32260,21
+32261,24
+32262,24
+32263,57
+32264,28
+32265,32
+32266,22
+32267,24
+32268,20
+32269,21
+32270,24
+32271,17
+32272,34
+32273,32
+32274,40
+32275,43
+32276,28
+32277,34
+32279,16
+32281,28
+32282,37
+32283,25
+32284,34
+32285,37
+32286,21
+32287,22
+32289,60
+32290,28
+32291,23
+32292,23
+32293,32
+32294,34
+32295,32
+32296,23
+32298,21
+32299,39
+32300,27
+32301,24
+32303,29
+32304,22
+32305,48
+32306,34
+32307,20
+32308,21
+32309,27
+32310,28
+32312,22
+32314,55
+32315,26
+32316,43
+32317,17
+32319,34
+32320,66
+32321,45
+32323,32
+32324,27
+32325,27
+32326,22
+32327,36
+32328,26
+32329,28
+32330,25
+32331,34
+32332,25
+32333,20
+32334,61
+32335,23
+32336,26
+32337,32
+32339,39
+32341,30
+32342,22
+32343,27
+32344,24
+32345,25
+32346,23
+32347,28
+32348,25
+32349,16
+32350,43
+32351,33
+32352,28
+32353,31
+32354,23
+32355,25
+32356,26
+32357,24
+32358,38
+32359,34
+32360,21
+32361,33
+32362,28
+32363,24
+32364,30
+32365,28
+32367,33
+32368,31
+32369,33
+32370,28
+32371,23
+32373,71
+32375,38
+32376,43
+32377,23
+32378,25
+32379,30
+32381,25
+32382,23
+32383,45
+32384,23
+32385,42
+32386,39
+32387,21
+32389,34
+32390,24
+32392,37
+32393,21
+32395,20
+32396,36
+32397,21
+32398,29
+32400,21
+32401,31
+32402,41
+32404,38
+32405,25
+32406,26
+32407,32
+32408,33
+32410,19
+32411,19
+32412,24
+32413,22
+32414,31
+32415,39
+32416,21
+32417,29
+32418,32
+32419,49
+32420,29
+32421,22
+32422,42
+32423,22
+32424,31
+32425,38
+32426,35
+32427,30
+32428,31
+32429,36
+32430,29
+32431,28
+32432,39
+32433,35
+32434,20
+32435,35
+32436,46
+32438,33
+32439,39
+32442,31
+32443,30
+32444,31
+32445,32
+32446,29
+32447,22
+32448,29
+32450,57
+32451,20
+32452,27
+32453,27
+32454,28
+32455,45
+32456,24
+32457,29
+32458,47
+32460,26
+32462,51
+32463,28
+32464,28
+32465,37
+32466,50
+32467,20
+32468,30
+32470,16
+32471,32
+32472,33
+32473,26
+32474,43
+32475,27
+32476,22
+32477,34
+32478,26
+32479,34
+32481,19
+32482,28
+32483,19
+32484,27
+32486,41
+32487,56
+32488,25
+32489,29
+32490,40
+32491,37
+32492,23
+32493,41
+32494,39
+32495,23
+32496,28
+32497,20
+32498,22
+32499,35
+32500,51
+32501,21
+32502,73
+32503,25
+32504,28
+32507,22
+32508,22
+32509,26
+32510,64
+32511,27
+32512,24
+32513,37
+32514,28
+32515,26
+32516,26
+32517,26
+32518,23
+32519,24
+32520,30
+32522,28
+32523,25
+32525,25
+32526,41
+32527,57
+32528,15
+32529,54
+32530,34
+32531,53
+32532,28
+32533,25
+32534,19
+32535,29
+32536,32
+32538,53
+32539,28
+32540,36
+32542,32
+32543,22
+32544,26
+32545,27
+32546,38
+32548,30
+32549,25
+32550,25
+32551,25
+32552,25
+32553,27
+32554,36
+32555,23
+32556,39
+32557,27
+32558,40
+32559,50
+32560,21
+32561,30
+32562,21
+32563,29
+32564,31
+32565,23
+32566,50
+32568,31
+32569,32
+32570,54
+32571,17
+32572,39
+32573,22
+32574,34
+32575,33
+32576,33
+32577,27
+32579,23
+32580,35
+32582,34
+32583,74
+32584,68
+32585,19
+32586,25
+32587,27
+32588,27
+32589,44
+32590,47
+32591,35
+32592,23
+32593,20
+32594,23
+32595,24
+32596,29
+32597,26
+32598,36
+32599,15
+32600,32
+32602,37
+32604,26
+32605,62
+32606,27
+32608,25
+32609,22
+32610,24
+32611,29
+32612,22
+32613,37
+32614,29
+32615,28
+32617,33
+32619,33
+32620,28
+32621,27
+32623,39
+32624,58
+32625,39
+32626,21
+32627,34
+32628,39
+32629,56
+32630,23
+32631,32
+32633,27
+32635,33
+32636,27
+32637,26
+32638,32
+32639,53
+32640,27
+32641,18
+32642,23
+32643,37
+32644,34
+32645,22
+32646,21
+32647,23
+32648,35
+32649,39
+32651,26
+32653,18
+32654,25
+32656,25
+32658,17
+32659,39
+32660,19
+32661,36
+32662,35
+32663,28
+32664,36
+32665,42
+32667,32
+32668,46
+32669,26
+32671,34
+32672,27
+32673,29
+32674,25
+32675,39
+32676,28
+32678,28
+32679,34
+32680,33
+32681,23
+32682,25
+32683,27
+32684,25
+32685,13
+32686,26
+32687,27
+32688,32
+32689,42
+32690,38
+32691,44
+32692,23
+32693,36
+32694,32
+32695,28
+32696,30
+32697,24
+32698,29
+32699,29
+32700,26
+32701,29
+32702,35
+32703,28
+32704,27
+32705,31
+32706,30
+32707,42
+32708,26
+32709,27
+32710,22
+32711,21
+32712,25
+32713,33
+32714,25
+32716,38
+32717,28
+32718,31
+32719,55
+32720,29
+32721,25
+32723,37
+32724,48
+32725,29
+32726,16
+32727,24
+32728,52
+32729,26
+32730,36
+32731,34
+32733,28
+32734,23
+32735,43
+32737,27
+32738,56
+32739,25
+32740,31
+32741,26
+32742,27
+32743,28
+32744,18
+32745,41
+32746,44
+32747,37
+32748,29
+32749,34
+32751,21
+32752,33
+32754,27
+32755,41
+32756,35
+32757,20
+32761,33
+32762,26
+32763,39
+32764,55
+32765,29
+32766,27
+32767,29
+32769,30
+32770,25
+32772,21
+32773,40
+32774,29
+32775,29
+32776,24
+32777,35
+32778,20
+32779,24
+32780,22
+32781,24
+32783,34
+32784,38
+32785,20
+32786,18
+32787,23
+32788,32
+32789,35
+32790,38
+32791,23
+32792,33
+32793,17
+32794,29
+32795,23
+32796,29
+32797,18
+32798,30
+32799,49
+32800,32
+32802,21
+32803,44
+32804,29
+32805,28
+32806,26
+32807,17
+32808,26
+32809,52
+32810,26
+32812,24
+32813,29
+32814,56
+32815,38
+32816,30
+32817,23
+32818,24
+32819,21
+32820,34
+32822,41
+32823,52
+32824,42
+32827,36
+32828,23
+32829,45
+32830,36
+32831,32
+32832,53
+32833,32
+32835,24
+32836,28
+32837,22
+32838,29
+32840,23
+32841,41
+32842,75
+32843,30
+32844,27
+32845,42
+32846,26
+32847,24
+32848,36
+32850,34
+32851,20
+32852,19
+32853,26
+32854,32
+32855,22
+32856,20
+32858,55
+32859,40
+32860,27
+32861,25
+32862,34
+32863,41
+32865,23
+32866,30
+32867,35
+32868,56
+32870,30
+32871,24
+32872,31
+32873,26
+32874,35
+32875,21
+32876,31
+32877,25
+32878,29
+32880,28
+32881,36
+32882,18
+32883,27
+32884,28
+32885,28
+32886,47
+32887,24
+32888,21
+32890,28
+32891,71
+32892,19
+32893,30
+32895,31
+32896,28
+32897,24
+32898,36
+32899,37
+32900,47
+32902,30
+32903,31
+32904,22
+32905,31
+32907,16
+32908,32
+32909,19
+32910,29
+32911,21
+32912,23
+32913,30
+32914,27
+32915,30
+32916,28
+32917,17
+32918,31
+32919,35
+32920,47
+32921,19
+32922,52
+32923,23
+32924,28
+32925,43
+32926,23
+32927,26
+32928,28
+32929,29
+32931,42
+32932,43
+32933,41
+32934,39
+32935,26
+32936,23
+32939,26
+32940,40
+32942,33
+32943,38
+32944,19
+32945,23
+32946,17
+32948,15
+32949,43
+32950,48
+32951,24
+32952,19
+32953,23
+32954,27
+32958,35
+32959,28
+32961,31
+32962,20
+32963,29
+32964,39
+32965,41
+32966,23
+32967,22
+32968,25
+32969,23
+32970,36
+32972,25
+32973,16
+32974,26
+32976,54
+32977,33
+32978,30
+32979,26
+32980,28
+32982,27
+32983,30
+32984,21
+32985,34
+32986,57
+32987,23
+32988,25
+32989,19
+32990,36
+32991,28
+32992,29
+32993,34
+32994,21
+32995,44
+32996,22
+32998,30
+32999,21
+33000,31
+33001,31
+33002,26
+33003,27
+33004,27
+33005,26
+33006,40
+33008,46
+33009,35
+33010,30
+33011,24
+33013,28
+33014,26
+33015,18
+33017,28
+33018,24
+33019,38
+33020,23
+33021,32
+33022,42
+33023,31
+33024,52
+33025,32
+33026,38
+33027,29
+33028,38
+33029,15
+33030,19
+33031,33
+33032,28
+33033,19
+33034,30
+33035,29
+33036,22
+33037,35
+33038,26
+33040,36
+33041,40
+33042,52
+33043,24
+33044,23
+33045,32
+33046,32
+33047,33
+33048,43
+33049,35
+33051,30
+33052,29
+33053,23
+33054,32
+33056,20
+33058,23
+33059,46
+33060,32
+33061,28
+33063,32
+33064,31
+33065,35
+33066,31
+33067,25
+33069,35
+33071,39
+33073,30
+33074,23
+33075,30
+33076,23
+33077,18
+33078,39
+33079,25
+33080,26
+33082,19
+33083,59
+33084,26
+33085,37
+33086,26
+33088,23
+33089,43
+33090,34
+33091,20
+33093,26
+33094,27
+33095,19
+33096,36
+33098,26
+33099,33
+33100,24
+33101,57
+33102,48
+33103,32
+33104,24
+33105,34
+33106,29
+33107,20
+33108,38
+33109,30
+33111,22
+33112,47
+33113,27
+33114,26
+33116,30
+33117,43
+33118,21
+33119,38
+33120,26
+33121,30
+33123,22
+33124,33
+33125,19
+33126,33
+33127,34
+33128,29
+33129,26
+33131,26
+33132,32
+33133,20
+33134,28
+33135,18
+33136,28
+33137,23
+33138,25
+33140,25
+33141,45
+33142,28
+33143,28
+33145,21
+33146,30
+33147,30
+33148,18
+33149,33
+33150,22
+33151,67
+33152,26
+33153,21
+33154,41
+33155,36
+33156,28
+33157,25
+33159,58
+33160,20
+33161,22
+33162,32
+33163,25
+33164,30
+33165,39
+33166,41
+33167,46
+33168,15
+33169,21
+33170,27
+33171,28
+33172,38
+33173,26
+33174,37
+33175,27
+33176,55
+33177,38
+33179,33
+33180,24
+33181,27
+33182,31
+33183,33
+33184,30
+33185,46
+33186,30
+33188,24
+33189,38
+33190,35
+33191,24
+33195,26
+33196,14
+33198,24
+33200,38
+33202,17
+33203,25
+33204,25
+33206,23
+33207,20
+33208,38
+33210,20
+33211,29
+33212,26
+33213,24
+33214,24
+33215,38
+33216,25
+33217,29
+33218,57
+33220,24
+33223,33
+33224,16
+33225,28
+33226,39
+33227,20
+33228,24
+33229,37
+33230,34
+33231,26
+33232,26
+33233,28
+33234,25
+33235,38
+33236,31
+33237,25
+33238,25
+33239,20
+33240,19
+33241,30
+33242,37
+33243,28
+33244,32
+33245,31
+33246,30
+33248,20
+33249,29
+33251,23
+33253,32
+33254,22
+33256,25
+33257,31
+33258,39
+33259,24
+33260,46
+33261,21
+33262,23
+33263,28
+33264,32
+33265,27
+33266,30
+33267,22
+33268,31
+33269,26
+33270,28
+33271,30
+33273,29
+33274,23
+33275,65
+33276,33
+33277,36
+33278,40
+33279,30
+33280,39
+33281,28
+33282,46
+33283,27
+33284,36
+33285,38
+33286,25
+33287,23
+33288,17
+33289,46
+33290,26
+33291,22
+33292,20
+33293,36
+33294,22
+33295,24
+33296,29
+33298,30
+33299,39
+33301,43
+33303,26
+33304,31
+33305,22
+33306,24
+33308,25
+33309,40
+33310,23
+33311,25
+33312,28
+33313,41
+33314,28
+33315,29
+33316,26
+33317,24
+33318,25
+33319,43
+33320,35
+33321,30
+33322,33
+33323,20
+33324,30
+33325,23
+33326,24
+33327,25
+33328,27
+33329,24
+33330,27
+33332,22
+33333,25
+33334,32
+33335,25
+33336,28
+33337,23
+33338,33
+33339,30
+33340,40
+33341,19
+33342,64
+33343,24
+33344,31
+33345,24
+33346,29
+33347,24
+33348,33
+33349,40
+33350,25
+33351,27
+33352,39
+33353,18
+33354,27
+33355,26
+33356,33
+33357,18
+33358,21
+33359,18
+33360,30
+33362,32
+33363,29
+33364,24
+33366,42
+33367,50
+33369,27
+33370,34
+33374,47
+33375,33
+33376,30
+33378,22
+33379,27
+33380,29
+33381,27
+33382,27
+33383,38
+33384,36
+33386,23
+33387,26
+33388,49
+33389,40
+33390,24
+33391,25
+33392,18
+33393,38
+33394,47
+33395,20
+33396,24
+33397,22
+33398,15
+33399,35
+33400,37
+33401,25
+33402,34
+33403,30
+33404,25
+33405,22
+33407,24
+33408,34
+33409,36
+33410,36
+33411,31
+33412,50
+33413,40
+33414,14
+33415,27
+33416,25
+33417,32
+33418,52
+33419,44
+33421,25
+33422,30
+33425,47
+33426,25
+33427,24
+33428,34
+33429,20
+33430,30
+33431,31
+33433,38
+33434,42
+33435,50
+33436,31
+33438,27
+33439,29
+33440,23
+33441,26
+33442,18
+33443,28
+33444,29
+33445,31
+33446,30
+33447,49
+33448,38
+33449,35
+33451,28
+33452,31
+33453,35
+33454,17
+33455,28
+33456,21
+33457,23
+33458,22
+33460,24
+33461,31
+33462,27
+33463,31
+33464,31
+33465,14
+33466,55
+33468,32
+33469,22
+33470,33
+33471,35
+33472,32
+33473,51
+33474,30
+33475,15
+33476,29
+33477,34
+33478,38
+33479,17
+33480,26
+33482,22
+33483,27
+33485,21
+33486,23
+33487,26
+33488,26
+33489,30
+33490,20
+33491,32
+33493,24
+33494,45
+33495,25
+33496,28
+33497,16
+33498,19
+33499,32
+33500,23
+33501,29
+33502,27
+33504,30
+33505,26
+33506,30
+33507,36
+33508,21
+33509,39
+33510,24
+33511,26
+33512,25
+33513,19
+33514,36
+33515,25
+33518,16
+33519,29
+33520,29
+33521,48
+33522,70
+33523,27
+33524,19
+33525,26
+33526,32
+33527,44
+33529,28
+33530,55
+33531,26
+33532,37
+33533,35
+33534,33
+33535,23
+33536,23
+33537,29
+33538,31
+33539,21
+33540,22
+33541,50
+33542,37
+33543,33
+33544,28
+33545,26
+33546,31
+33547,48
+33548,26
+33550,55
+33551,35
+33552,30
+33553,18
+33554,40
+33555,19
+33556,24
+33558,43
+33559,19
+33561,22
+33562,20
+33563,51
+33564,30
+33565,36
+33566,23
+33567,29
+33568,26
+33570,26
+33571,38
+33572,30
+33573,26
+33574,24
+33575,26
+33576,38
+33577,16
+33578,14
+33579,47
+33580,36
+33581,23
+33582,32
+33583,23
+33584,21
+33585,25
+33586,67
+33587,26
+33588,33
+33589,41
+33590,24
+33591,31
+33592,65
+33593,19
+33594,33
+33597,27
+33598,22
+33600,31
+33601,27
+33602,41
+33603,29
+33604,35
+33605,23
+33606,34
+33607,31
+33608,15
+33609,33
+33611,31
+33612,36
+33613,24
+33614,27
+33615,27
+33616,25
+33617,43
+33618,29
+33619,42
+33620,24
+33621,43
+33622,25
+33623,25
+33624,17
+33625,23
+33626,25
+33627,47
+33628,32
+33629,21
+33631,22
+33632,31
+33633,28
+33634,29
+33635,24
+33636,24
+33637,34
+33638,24
+33639,38
+33640,35
+33641,24
+33642,33
+33643,33
+33644,16
+33645,19
+33648,20
+33649,28
+33650,32
+33651,24
+33652,32
+33653,36
+33654,23
+33655,31
+33656,38
+33657,24
+33660,42
+33661,26
+33662,18
+33663,21
+33664,40
+33665,19
+33667,22
+33668,30
+33669,37
+33670,20
+33671,27
+33672,30
+33673,35
+33674,20
+33675,40
+33677,30
+33678,41
+33679,22
+33680,23
+33681,20
+33682,25
+33683,23
+33684,20
+33685,22
+33687,20
+33688,15
+33689,20
+33690,28
+33691,24
+33692,33
+33693,23
+33694,43
+33696,24
+33697,29
+33698,58
+33699,53
+33700,39
+33701,32
+33702,57
+33703,26
+33704,22
+33705,21
+33706,23
+33707,25
+33708,29
+33709,27
+33710,25
+33712,35
+33713,20
+33715,22
+33716,23
+33717,15
+33718,28
+33719,22
+33720,20
+33721,32
+33722,29
+33723,24
+33724,20
+33725,30
+33726,24
+33727,31
+33728,13
+33729,25
+33730,32
+33731,27
+33732,40
+33733,25
+33734,28
+33735,29
+33736,30
+33737,47
+33739,26
+33740,27
+33741,35
+33742,37
+33743,20
+33745,23
+33746,54
+33747,39
+33748,23
+33749,34
+33750,22
+33751,29
+33753,33
+33754,31
+33755,26
+33757,25
+33758,31
+33759,46
+33760,27
+33763,32
+33764,25
+33765,24
+33766,29
+33767,46
+33768,28
+33770,24
+33771,24
+33772,28
+33774,27
+33775,29
+33776,30
+33777,25
+33778,27
+33779,24
+33780,33
+33781,28
+33782,28
+33783,31
+33785,37
+33787,32
+33788,28
+33789,33
+33790,26
+33791,42
+33792,27
+33793,29
+33794,32
+33795,23
+33796,27
+33797,22
+33798,25
+33799,19
+33800,35
+33801,39
+33802,24
+33804,23
+33805,26
+33806,30
+33807,56
+33808,16
+33810,24
+33811,25
+33812,23
+33813,46
+33814,22
+33815,44
+33816,38
+33817,31
+33818,27
+33819,32
+33820,33
+33821,30
+33822,26
+33823,43
+33824,49
+33825,34
+33826,17
+33827,44
+33828,35
+33830,30
+33831,28
+33832,16
+33833,23
+33834,28
+33835,26
+33836,56
+33837,26
+33838,33
+33839,25
+33840,32
+33841,40
+33842,28
+33843,16
+33844,27
+33846,30
+33847,32
+33848,21
+33849,25
+33851,44
+33852,30
+33853,32
+33854,22
+33855,27
+33856,21
+33857,29
+33858,24
+33859,29
+33860,19
+33861,32
+33862,33
+33863,24
+33864,50
+33865,31
+33866,32
+33867,18
+33869,25
+33870,34
+33871,30
+33872,53
+33873,30
+33874,27
+33877,17
+33878,29
+33879,42
+33881,38
+33882,19
+33883,30
+33885,34
+33886,25
+33887,42
+33888,34
+33889,54
+33890,37
+33891,34
+33892,41
+33893,26
+33894,29
+33895,40
+33896,32
+33898,40
+33900,35
+33901,22
+33902,22
+33903,23
+33904,29
+33906,27
+33907,18
+33908,49
+33909,25
+33910,30
+33911,39
+33912,47
+33913,20
+33914,24
+33915,24
+33916,23
+33917,37
+33919,25
+33920,27
+33922,30
+33923,24
+33924,24
+33925,28
+33927,19
+33928,27
+33929,22
+33930,26
+33931,34
+33932,24
+33933,42
+33934,23
+33935,24
+33936,17
+33937,30
+33938,29
+33939,35
+33940,25
+33942,32
+33943,20
+33945,28
+33946,31
+33947,34
+33948,32
+33949,50
+33950,36
+33951,31
+33952,19
+33954,36
+33955,32
+33956,57
+33957,31
+33958,28
+33959,32
+33960,26
+33961,47
+33962,49
+33963,40
+33964,24
+33965,30
+33966,31
+33967,32
+33968,32
+33970,24
+33971,34
+33972,22
+33973,15
+33974,32
+33975,75
+33976,18
+33977,22
+33978,36
+33980,33
+33981,23
+33982,18
+33983,22
+33985,34
+33986,23
+33988,18
+33989,25
+33990,27
+33991,36
+33992,40
+33993,27
+33994,23
+33995,25
+33996,21
+33997,34
+33998,38
+33999,31
+34000,38
+34001,21
+34002,47
+34003,23
+34004,23
+34005,32
+34006,35
+34007,42
+34008,68
+34009,38
+34011,39
+34012,22
+34013,22
+34014,62
+34016,18
+34017,32
+34018,25
+34019,18
+34020,35
+34021,22
+34022,30
+34023,41
+34024,28
+34025,22
+34026,31
+34027,57
+34028,34
+34029,31
+34030,30
+34031,31
+34032,47
+34033,33
+34034,21
+34035,24
+34036,49
+34037,28
+34038,22
+34039,66
+34040,30
+34041,32
+34042,56
+34043,29
+34044,46
+34045,27
+34046,43
+34047,29
+34048,26
+34049,55
+34050,44
+34052,22
+34054,21
+34055,36
+34056,45
+34057,41
+34058,42
+34059,25
+34060,22
+34061,38
+34063,27
+34064,31
+34065,50
+34066,27
+34069,28
+34070,19
+34071,27
+34072,34
+34073,35
+34074,24
+34075,30
+34076,30
+34077,34
+34078,28
+34079,38
+34080,44
+34081,33
+34082,25
+34083,53
+34084,20
+34085,36
+34086,13
+34087,23
+34088,27
+34089,35
+34090,23
+34091,26
+34092,33
+34093,28
+34094,25
+34095,31
+34096,62
+34097,22
+34098,37
+34099,35
+34100,28
+34101,23
+34102,34
+34103,59
+34104,30
+34105,24
+34106,27
+34107,25
+34108,38
+34109,29
+34110,30
+34111,37
+34112,32
+34113,32
+34114,25
+34115,24
+34116,28
+34117,17
+34118,33
+34119,24
+34120,20
+34121,32
+34122,24
+34123,27
+34124,23
+34125,24
+34126,42
+34127,26
+34128,22
+34129,33
+34130,26
+34131,43
+34132,20
+34133,30
+34134,30
+34135,35
+34136,23
+34137,26
+34139,36
+34140,29
+34141,30
+34142,39
+34143,27
+34145,38
+34147,24
+34148,42
+34149,19
+34150,33
+34151,29
+34152,24
+34153,24
+34154,23
+34155,45
+34156,55
+34158,27
+34159,22
+34160,20
+34161,25
+34163,33
+34164,28
+34165,24
+34166,26
+34167,33
+34168,57
+34169,30
+34170,29
+34171,44
+34172,17
+34173,24
+34174,25
+34175,30
+34176,23
+34177,27
+34178,24
+34179,24
+34180,39
+34181,24
+34182,28
+34183,22
+34184,33
+34185,36
+34186,44
+34187,22
+34189,34
+34190,40
+34191,18
+34193,30
+34194,32
+34195,25
+34196,22
+34198,25
+34199,40
+34200,40
+34201,42
+34202,36
+34203,32
+34204,38
+34205,25
+34208,24
+34209,20
+34210,18
+34212,33
+34213,26
+34214,48
+34215,20
+34216,36
+34217,27
+34220,35
+34221,23
+34222,45
+34223,25
+34224,33
+34225,46
+34226,21
+34227,35
+34228,20
+34229,28
+34230,25
+34231,25
+34232,35
+34233,23
+34234,25
+34235,29
+34236,25
+34237,35
+34238,32
+34239,53
+34240,20
+34241,33
+34243,38
+34244,41
+34245,35
+34246,37
+34247,73
+34248,31
+34249,33
+34250,22
+34251,45
+34252,47
+34253,49
+34254,29
+34255,21
+34256,38
+34257,28
+34258,36
+34259,19
+34260,41
+34261,17
+34262,32
+34263,22
+34264,31
+34265,59
+34266,29
+34267,13
+34268,31
+34269,28
+34270,32
+34271,24
+34272,18
+34273,29
+34274,39
+34275,28
+34276,19
+34277,61
+34278,46
+34279,35
+34280,38
+34281,50
+34282,44
+34283,22
+34284,23
+34285,51
+34286,28
+34288,33
+34289,41
+34290,33
+34291,28
+34293,20
+34294,26
+34295,30
+34296,41
+34297,40
+34298,33
+34299,21
+34300,55
+34302,25
+34303,34
+34304,20
+34305,41
+34306,33
+34307,14
+34308,28
+34309,25
+34310,31
+34311,28
+34312,21
+34313,32
+34314,30
+34315,25
+34316,27
+34317,44
+34318,26
+34319,55
+34320,38
+34321,48
+34322,31
+34323,24
+34324,23
+34325,23
+34326,27
+34328,28
+34329,34
+34330,20
+34331,26
+34332,25
+34334,44
+34335,34
+34336,27
+34337,26
+34338,44
+34339,40
+34340,36
+34341,20
+34342,29
+34343,29
+34344,30
+34345,30
+34346,28
+34347,34
+34348,26
+34349,29
+34351,29
+34352,23
+34353,33
+34354,19
+34355,27
+34356,36
+34357,26
+34358,34
+34359,28
+34360,29
+34361,38
+34362,33
+34363,29
+34366,49
+34367,33
+34371,17
+34372,21
+34373,21
+34374,53
+34375,35
+34376,35
+34377,29
+34378,37
+34379,26
+34380,16
+34381,33
+34382,23
+34383,33
+34385,38
+34386,27
+34387,24
+34388,34
+34389,27
+34390,23
+34391,31
+34392,27
+34393,29
+34394,46
+34395,26
+34396,29
+34397,36
+34398,23
+34401,21
+34403,23
+34404,24
+34405,30
+34406,27
+34407,23
+34408,32
+34409,29
+34410,39
+34411,27
+34413,27
+34415,20
+34416,29
+34417,22
+34418,26
+34419,33
+34420,37
+34421,42
+34422,41
+34423,37
+34424,41
+34425,35
+34426,21
+34427,27
+34428,27
+34429,50
+34430,22
+34431,31
+34432,19
+34433,29
+34434,26
+34435,45
+34436,27
+34437,35
+34438,29
+34440,29
+34441,39
+34443,50
+34444,30
+34445,22
+34446,22
+34448,24
+34449,24
+34451,23
+34452,33
+34453,27
+34455,21
+34456,28
+34457,28
+34458,33
+34459,33
+34461,32
+34462,46
+34463,18
+34464,39
+34465,25
+34466,56
+34467,23
+34469,25
+34470,34
+34471,27
+34472,21
+34473,24
+34474,35
+34475,26
+34476,42
+34477,22
+34478,42
+34479,24
+34480,32
+34481,36
+34483,25
+34484,22
+34485,22
+34486,37
+34487,23
+34488,37
+34489,25
+34490,20
+34491,33
+34492,23
+34493,37
+34494,33
+34495,25
+34496,28
+34497,38
+34498,41
+34500,25
+34501,25
+34502,33
+34504,29
+34505,27
+34506,39
+34507,31
+34510,25
+34511,36
+34512,20
+34514,23
+34515,28
+34516,32
+34517,22
+34518,25
+34519,14
+34520,25
+34521,27
+34522,27
+34523,19
+34524,25
+34525,20
+34526,27
+34527,32
+34528,23
+34529,19
+34530,18
+34531,27
+34532,62
+34533,41
+34534,54
+34536,19
+34537,36
+34538,37
+34539,27
+34541,25
+34542,22
+34543,29
+34544,35
+34545,27
+34547,21
+34548,21
+34549,39
+34550,27
+34551,44
+34552,26
+34553,24
+34554,24
+34555,32
+34556,50
+34558,24
+34559,25
+34560,32
+34561,34
+34562,35
+34563,30
+34564,23
+34566,31
+34567,26
+34568,23
+34569,29
+34570,19
+34571,39
+34572,28
+34573,24
+34574,22
+34575,32
+34576,26
+34577,30
+34578,21
+34580,31
+34581,28
+34582,26
+34583,23
+34585,36
+34586,31
+34587,30
+34588,33
+34589,27
+34590,24
+34591,35
+34592,22
+34593,35
+34594,31
+34595,42
+34596,34
+34597,36
+34598,29
+34599,28
+34600,24
+34601,35
+34602,25
+34603,30
+34604,20
+34605,28
+34606,29
+34607,16
+34608,28
+34610,31
+34611,59
+34612,43
+34613,42
+34614,23
+34615,38
+34617,40
+34618,17
+34619,31
+34620,40
+34621,35
+34622,24
+34623,26
+34624,38
+34625,42
+34626,27
+34627,29
+34628,28
+34629,19
+34630,23
+34631,31
+34632,24
+34633,28
+34634,34
+34635,22
+34636,32
+34637,43
+34638,19
+34639,34
+34640,33
+34641,27
+34642,33
+34643,30
+34644,23
+34645,39
+34647,28
+34648,22
+34649,28
+34650,26
+34652,28
+34654,31
+34655,55
+34656,30
+34657,29
+34658,23
+34659,21
+34660,23
+34661,22
+34662,33
+34663,36
+34664,25
+34665,35
+34667,33
+34668,73
+34669,41
+34670,44
+34671,31
+34672,31
+34673,26
+34674,30
+34675,25
+34676,31
+34678,21
+34679,42
+34680,28
+34683,19
+34684,37
+34685,22
+34686,26
+34687,18
+34688,23
+34689,22
+34690,24
+34691,27
+34692,28
+34693,37
+34694,38
+34695,60
+34696,31
+34697,32
+34698,29
+34699,20
+34700,22
+34701,30
+34703,31
+34704,19
+34705,27
+34706,36
+34707,51
+34709,24
+34710,30
+34711,23
+34712,28
+34713,42
+34714,30
+34715,19
+34716,24
+34717,23
+34719,19
+34720,32
+34722,62
+34723,24
+34724,36
+34725,29
+34726,27
+34728,33
+34729,26
+34730,27
+34731,28
+34732,37
+34733,20
+34734,20
+34735,31
+34737,27
+34738,25
+34739,23
+34740,28
+34741,41
+34742,37
+34743,36
+34744,19
+34745,19
+34746,18
+34747,41
+34748,40
+34749,27
+34750,36
+34751,25
+34752,17
+34753,23
+34754,32
+34755,24
+34756,31
+34757,31
+34758,29
+34759,32
+34760,18
+34762,23
+34763,35
+34764,43
+34765,53
+34767,20
+34768,51
+34769,20
+34770,33
+34771,37
+34772,44
+34773,34
+34774,19
+34775,30
+34778,34
+34779,24
+34780,27
+34781,59
+34782,25
+34783,27
+34785,41
+34786,25
+34787,25
+34788,50
+34789,19
+34790,28
+34791,36
+34792,36
+34793,31
+34794,31
+34795,39
+34796,25
+34797,30
+34798,34
+34800,39
+34801,35
+34802,24
+34803,40
+34804,27
+34805,28
+34806,26
+34808,49
+34809,25
+34810,31
+34811,28
+34812,25
+34813,32
+34814,21
+34815,44
+34817,29
+34818,23
+34819,25
+34820,31
+34821,25
+34822,28
+34823,32
+34824,25
+34825,38
+34826,21
+34827,30
+34828,21
+34829,26
+34830,25
+34831,31
+34832,24
+34833,25
+34834,30
+34837,23
+34838,22
+34839,44
+34840,29
+34841,26
+34842,31
+34843,43
+34844,23
+34845,24
+34846,28
+34847,26
+34849,37
+34852,32
+34853,33
+34854,30
+34855,51
+34856,30
+34857,28
+34858,31
+34859,22
+34860,24
+34861,21
+34862,29
+34863,28
+34864,35
+34865,28
+34866,30
+34867,36
+34868,24
+34870,34
+34871,39
+34872,34
+34873,29
+34874,29
+34875,22
+34876,24
+34877,44
+34878,37
+34879,28
+34880,24
+34882,30
+34883,31
+34884,30
+34885,25
+34886,60
+34887,31
+34888,22
+34889,18
+34890,21
+34891,17
+34892,22
+34893,36
+34894,21
+34895,40
+34896,10
+34897,44
+34898,47
+34899,38
+34901,41
+34902,22
+34903,25
+34904,25
+34905,21
+34906,30
+34907,16
+34908,34
+34909,27
+34910,31
+34911,30
+34912,23
+34913,34
+34914,30
+34915,36
+34916,21
+34917,27
+34918,32
+34919,23
+34920,25
+34921,35
+34922,31
+34923,43
+34924,30
+34925,27
+34926,37
+34927,23
+34928,59
+34929,22
+34930,29
+34931,25
+34933,22
+34934,54
+34936,23
+34937,41
+34938,43
+34939,42
+34940,48
+34941,28
+34942,30
+34943,21
+34944,20
+34945,27
+34946,34
+34947,31
+34948,20
+34950,15
+34951,46
+34952,37
+34953,45
+34954,24
+34955,26
+34956,28
+34957,46
+34958,23
+34959,33
+34961,32
+34962,48
+34964,25
+34965,23
+34966,36
+34967,19
+34969,23
+34971,25
+34972,23
+34973,99
+34974,36
+34975,28
+34976,31
+34977,20
+34978,19
+34979,37
+34980,19
+34981,27
+34982,40
+34983,24
+34984,25
+34985,26
+34986,39
+34987,30
+34989,66
+34990,28
+34991,30
+34992,38
+34993,35
+34995,40
+34996,37
+34997,30
+34998,34
+34999,30
+35000,26
+35001,22
+35002,40
+35003,24
+35004,32
+35005,49
+35007,28
+35009,20
+35011,45
+35012,42
+35013,24
+35014,49
+35015,38
+35016,36
+35019,32
+35020,25
+35021,27
+35022,65
+35023,21
+35024,28
+35025,56
+35026,22
+35027,31
+35028,25
+35029,23
+35030,24
+35031,30
+35032,26
+35033,23
+35034,41
+35035,25
+35036,26
+35038,32
+35039,34
+35040,19
+35041,25
+35042,57
+35043,33
+35044,17
+35045,23
+35046,29
+35048,38
+35049,29
+35051,23
+35052,21
+35053,27
+35054,30
+35055,21
+35056,25
+35057,32
+35058,22
+35059,30
+35060,17
+35061,23
+35062,32
+35064,47
+35065,25
+35066,28
+35067,30
+35068,33
+35069,39
+35071,33
+35072,18
+35073,28
+35074,54
+35075,32
+35076,30
+35077,24
+35078,28
+35079,23
+35080,42
+35081,25
+35082,29
+35083,33
+35085,30
+35086,37
+35087,31
+35088,33
+35089,37
+35090,27
+35091,56
+35092,29
+35093,27
+35094,22
+35095,24
+35096,28
+35097,48
+35098,39
+35099,32
+35100,36
+35101,22
+35102,26
+35103,26
+35104,41
+35105,30
+35106,31
+35107,22
+35108,26
+35109,22
+35110,41
+35111,31
+35112,22
+35113,15
+35114,26
+35115,23
+35116,28
+35117,39
+35118,28
+35119,25
+35120,30
+35121,26
+35122,31
+35123,32
+35124,34
+35125,38
+35126,35
+35127,35
+35128,30
+35129,28
+35130,23
+35132,41
+35133,51
+35134,26
+35135,32
+35136,30
+35137,23
+35139,31
+35140,19
+35141,25
+35142,29
+35143,45
+35144,26
+35145,32
+35146,21
+35147,46
+35149,27
+35150,33
+35152,33
+35153,55
+35154,22
+35155,52
+35156,40
+35157,29
+35158,42
+35159,40
+35160,23
+35162,23
+35163,51
+35165,35
+35166,20
+35167,24
+35169,26
+35170,24
+35171,31
+35172,37
+35173,39
+35174,48
+35175,26
+35177,31
+35178,23
+35180,50
+35181,27
+35182,27
+35183,41
+35184,35
+35185,23
+35186,23
+35187,21
+35188,39
+35189,28
+35190,24
+35191,24
+35192,28
+35193,44
+35195,27
+35196,48
+35197,24
+35198,25
+35200,44
+35202,28
+35203,21
+35204,26
+35205,17
+35206,39
+35208,32
+35209,39
+35210,17
+35215,25
+35216,36
+35217,44
+35218,39
+35219,20
+35220,21
+35221,33
+35222,22
+35223,49
+35224,34
+35226,23
+35227,31
+35228,17
+35229,33
+35230,31
+35231,19
+35233,18
+35234,58
+35235,23
+35236,25
+35237,30
+35238,22
+35239,30
+35240,41
+35241,31
+35242,20
+35243,35
+35245,17
+35246,45
+35247,19
+35248,35
+35249,38
+35250,35
+35252,20
+35253,25
+35254,23
+35255,29
+35256,40
+35257,34
+35258,39
+35259,27
+35260,35
+35261,54
+35262,25
+35263,31
+35265,28
+35266,25
+35267,28
+35268,20
+35269,45
+35270,30
+35271,25
+35272,24
+35273,20
+35274,28
+35275,27
+35277,19
+35278,40
+35279,31
+35280,26
+35281,24
+35282,36
+35283,50
+35284,24
+35286,30
+35287,28
+35288,29
+35289,30
+35290,26
+35291,30
+35292,27
+35293,24
+35294,39
+35295,41
+35296,28
+35297,37
+35298,25
+35300,34
+35301,23
+35302,19
+35303,18
+35304,26
+35305,32
+35306,28
+35307,28
+35308,28
+35309,39
+35310,44
+35311,37
+35312,31
+35313,26
+35314,22
+35315,32
+35316,30
+35318,44
+35321,25
+35322,44
+35323,24
+35324,34
+35325,27
+35326,34
+35327,32
+35328,23
+35329,29
+35330,22
+35331,30
+35332,34
+35333,29
+35335,25
+35336,33
+35337,20
+35338,19
+35339,24
+35340,39
+35342,25
+35343,48
+35344,23
+35345,30
+35347,39
+35348,28
+35349,29
+35350,33
+35351,38
+35352,18
+35353,26
+35354,28
+35355,28
+35356,38
+35357,26
+35358,39
+35359,26
+35360,36
+35361,52
+35362,24
+35363,40
+35364,33
+35365,31
+35366,25
+35368,43
+35369,40
+35370,28
+35371,31
+35372,21
+35373,46
+35375,27
+35376,15
+35377,24
+35378,30
+35379,42
+35380,30
+35381,45
+35382,31
+35383,26
+35384,51
+35385,29
+35386,28
+35387,26
+35388,28
+35389,31
+35391,31
+35392,40
+35393,25
+35394,36
+35396,41
+35397,32
+35398,34
+35399,26
+35400,31
+35401,50
+35402,26
+35403,13
+35404,20
+35405,26
+35407,43
+35408,26
+35409,30
+35410,23
+35411,19
+35412,32
+35413,29
+35414,24
+35415,26
+35417,32
+35418,28
+35419,21
+35420,35
+35421,40
+35422,33
+35423,39
+35424,30
+35425,28
+35427,29
+35428,27
+35430,40
+35431,27
+35432,37
+35433,23
+35434,35
+35435,45
+35436,24
+35437,43
+35438,17
+35439,28
+35440,46
+35442,25
+35443,31
+35444,32
+35445,46
+35446,30
+35447,26
+35448,37
+35449,30
+35450,65
+35451,21
+35452,33
+35453,29
+35454,17
+35455,30
+35456,38
+35458,32
+35459,44
+35460,35
+35461,22
+35462,25
+35463,25
+35464,49
+35465,26
+35466,28
+35467,40
+35468,29
+35470,34
+35471,22
+35472,20
+35473,26
+35474,25
+35476,25
+35477,22
+35478,45
+35479,54
+35480,24
+35481,36
+35482,42
+35483,26
+35484,46
+35485,27
+35486,40
+35487,22
+35488,34
+35489,28
+35490,22
+35491,40
+35493,37
+35494,24
+35495,25
+35497,39
+35498,57
+35499,27
+35500,32
+35501,29
+35502,27
+35503,48
+35504,39
+35505,29
+35506,32
+35507,26
+35508,22
+35509,32
+35510,61
+35511,15
+35512,23
+35513,24
+35514,35
+35515,23
+35516,40
+35517,41
+35518,44
+35519,52
+35521,23
+35522,20
+35523,35
+35524,29
+35525,51
+35526,46
+35527,31
+35528,28
+35531,30
+35532,28
+35533,25
+35535,29
+35536,21
+35537,26
+35538,26
+35539,24
+35540,31
+35541,18
+35542,29
+35543,28
+35544,29
+35545,28
+35546,22
+35547,23
+35548,18
+35549,36
+35550,54
+35551,25
+35552,22
+35553,35
+35554,51
+35556,21
+35557,23
+35558,28
+35559,35
+35560,62
+35561,20
+35563,31
+35564,22
+35565,25
+35566,26
+35567,35
+35568,30
+35570,20
+35571,48
+35572,35
+35573,32
+35574,29
+35575,31
+35576,25
+35577,21
+35578,36
+35579,26
+35580,40
+35581,39
+35582,35
+35583,31
+35584,27
+35585,24
+35586,37
+35587,28
+35588,36
+35589,29
+35591,19
+35592,20
+35593,30
+35594,43
+35595,23
+35596,55
+35598,29
+35599,38
+35600,41
+35601,39
+35602,25
+35603,38
+35604,48
+35605,28
+35606,40
+35607,15
+35608,27
+35609,27
+35610,34
+35611,33
+35612,37
+35613,24
+35614,28
+35615,19
+35616,36
+35617,27
+35618,25
+35619,23
+35620,26
+35621,40
+35622,28
+35623,25
+35624,17
+35625,46
+35626,21
+35628,24
+35629,23
+35630,34
+35631,19
+35632,28
+35633,40
+35634,24
+35635,36
+35636,44
+35638,22
+35639,52
+35640,30
+35641,18
+35642,35
+35643,42
+35644,29
+35645,47
+35646,24
+35647,24
+35648,20
+35649,25
+35651,28
+35652,13
+35653,19
+35654,21
+35655,23
+35656,29
+35657,31
+35658,36
+35660,36
+35661,30
+35662,17
+35663,25
+35664,34
+35665,18
+35666,23
+35667,25
+35668,26
+35669,22
+35670,31
+35671,64
+35672,39
+35673,34
+35674,30
+35676,34
+35678,60
+35679,26
+35680,26
+35681,19
+35682,30
+35683,24
+35684,18
+35685,25
+35686,25
+35687,45
+35688,24
+35689,20
+35691,15
+35692,29
+35693,40
+35694,20
+35695,40
+35696,31
+35697,20
+35698,29
+35699,51
+35700,30
+35701,24
+35702,21
+35703,32
+35704,19
+35705,28
+35706,30
+35707,39
+35708,24
+35709,34
+35710,23
+35711,27
+35712,25
+35714,28
+35715,29
+35716,27
+35717,24
+35718,35
+35719,36
+35720,49
+35721,28
+35722,37
+35723,15
+35724,32
+35725,36
+35726,44
+35727,20
+35728,25
+35729,23
+35730,30
+35732,34
+35733,39
+35735,23
+35736,21
+35737,27
+35739,46
+35740,30
+35741,41
+35742,47
+35743,77
+35744,28
+35745,27
+35746,31
+35747,31
+35748,25
+35749,30
+35750,24
+35751,22
+35753,23
+35754,29
+35755,29
+35756,29
+35757,28
+35758,30
+35760,18
+35761,21
+35762,32
+35763,31
+35764,29
+35765,26
+35766,23
+35767,27
+35769,24
+35770,27
+35771,22
+35772,30
+35773,29
+35774,24
+35775,21
+35776,48
+35777,21
+35778,34
+35779,31
+35780,27
+35781,23
+35782,21
+35783,22
+35784,42
+35785,26
+35786,29
+35787,20
+35789,30
+35791,21
+35792,20
+35794,27
+35795,33
+35796,25
+35797,25
+35798,45
+35799,32
+35800,21
+35801,28
+35802,48
+35803,25
+35804,40
+35805,55
+35806,36
+35807,24
+35808,20
+35809,16
+35810,47
+35811,37
+35812,38
+35813,35
+35814,22
+35815,15
+35817,28
+35818,22
+35819,27
+35820,37
+35821,19
+35822,22
+35823,18
+35824,24
+35825,37
+35827,33
+35828,21
+35829,34
+35830,35
+35831,23
+35832,23
+35833,21
+35834,31
+35836,44
+35837,33
+35838,37
+35839,46
+35840,23
+35841,22
+35843,26
+35844,29
+35845,40
+35846,33
+35847,18
+35848,24
+35850,38
+35851,45
+35852,19
+35853,19
+35854,30
+35855,23
+35856,29
+35857,26
+35858,25
+35859,44
+35860,31
+35861,29
+35862,33
+35863,20
+35864,18
+35865,29
+35866,19
+35867,48
+35869,18
+35870,35
+35871,27
+35872,21
+35873,19
+35874,17
+35875,23
+35876,27
+35877,29
+35878,24
+35879,31
+35880,30
+35881,40
+35882,56
+35883,26
+35884,39
+35885,38
+35886,25
+35888,33
+35889,33
+35890,37
+35891,15
+35892,28
+35894,49
+35895,26
+35896,39
+35897,36
+35898,42
+35899,32
+35900,31
+35901,29
+35902,41
+35903,24
+35904,29
+35905,59
+35906,22
+35907,24
+35908,31
+35909,22
+35910,31
+35911,25
+35912,19
+35913,31
+35914,33
+35915,33
+35916,33
+35917,19
+35918,43
+35919,31
+35920,27
+35922,18
+35923,23
+35924,21
+35925,27
+35927,26
+35928,23
+35929,38
+35930,17
+35931,18
+35932,34
+35933,24
+35934,29
+35935,46
+35936,22
+35937,34
+35939,20
+35941,24
+35942,34
+35943,53
+35944,27
+35945,28
+35946,38
+35947,23
+35948,32
+35949,27
+35950,32
+35952,34
+35953,27
+35954,62
+35955,22
+35956,25
+35957,48
+35958,38
+35959,19
+35960,19
+35961,33
+35962,29
+35963,34
+35964,29
+35965,57
+35966,57
+35967,25
+35968,29
+35969,40
+35970,25
+35971,65
+35972,21
+35974,35
+35975,28
+35976,28
+35977,37
+35978,22
+35979,38
+35980,31
+35981,49
+35982,31
+35984,27
+35985,27
+35988,55
+35989,34
+35990,43
+35991,60
+35992,32
+35993,20
+35994,21
+35995,30
+35996,25
+35997,21
+35998,34
+35999,24
+36000,25
+36001,26
+36002,26
+36005,31
+36006,23
+36008,13
+36009,26
+36011,39
+36012,24
+36013,23
+36014,27
+36015,23
+36017,27
+36018,27
+36019,30
+36021,20
+36022,32
+36023,24
+36024,32
+36025,25
+36026,35
+36027,28
+36028,25
+36029,32
+36030,28
+36031,43
+36032,26
+36034,41
+36035,27
+36036,24
+36037,24
+36038,40
+36039,36
+36040,23
+36041,26
+36042,18
+36043,36
+36044,28
+36045,21
+36047,27
+36048,45
+36049,23
+36050,23
+36051,47
+36052,22
+36053,19
+36055,27
+36056,54
+36057,38
+36058,30
+36059,17
+36060,34
+36061,21
+36062,26
+36063,40
+36064,37
+36065,27
+36067,19
+36068,32
+36069,26
+36070,30
+36071,40
+36072,31
+36073,21
+36074,41
+36075,38
+36076,23
+36077,35
+36078,31
+36079,47
+36080,44
+36082,40
+36083,26
+36084,25
+36085,24
+36087,28
+36088,37
+36089,44
+36090,30
+36091,31
+36092,28
+36094,30
+36095,24
+36096,43
+36097,20
+36098,25
+36099,25
+36100,28
+36101,30
+36102,25
+36103,42
+36104,33
+36105,48
+36106,30
+36107,27
+36108,27
+36109,27
+36110,32
+36111,28
+36112,24
+36113,32
+36114,24
+36115,35
+36116,39
+36117,21
+36119,23
+36120,31
+36121,25
+36122,26
+36123,29
+36124,28
+36125,23
+36126,28
+36128,25
+36129,27
+36131,46
+36132,43
+36133,42
+36134,37
+36136,32
+36138,41
+36139,25
+36140,45
+36141,19
+36143,19
+36144,32
+36145,40
+36146,20
+36147,19
+36148,26
+36149,30
+36150,25
+36151,31
+36152,32
+36153,43
+36154,25
+36155,35
+36156,32
+36157,48
+36158,48
+36159,35
+36160,32
+36161,19
+36162,24
+36163,24
+36164,23
+36165,37
+36166,24
+36167,21
+36168,24
+36169,47
+36170,21
+36171,35
+36172,32
+36173,55
+36174,27
+36175,17
+36177,17
+36178,35
+36180,28
+36181,30
+36182,37
+36183,28
+36184,17
+36185,54
+36186,20
+36187,23
+36188,35
+36189,31
+36190,19
+36191,52
+36192,40
+36193,36
+36194,33
+36195,33
+36196,47
+36197,27
+36198,22
+36199,27
+36200,37
+36201,34
+36202,24
+36203,46
+36204,29
+36206,29
+36207,26
+36208,21
+36209,27
+36210,31
+36211,23
+36212,27
+36213,46
+36214,36
+36215,28
+36216,39
+36217,22
+36218,29
+36219,34
+36220,52
+36222,24
+36223,90
+36224,27
+36226,34
+36227,39
+36228,30
+36229,24
+36231,23
+36232,28
+36233,53
+36234,40
+36235,21
+36236,58
+36238,28
+36239,25
+36240,27
+36241,22
+36242,18
+36243,35
+36244,26
+36245,25
+36246,25
+36247,34
+36250,30
+36251,25
+36252,41
+36253,28
+36254,48
+36257,26
+36258,30
+36259,62
+36260,33
+36262,24
+36263,38
+36264,24
+36265,32
+36266,25
+36267,46
+36268,29
+36269,32
+36271,24
+36272,33
+36273,36
+36274,29
+36276,41
+36277,46
+36278,26
+36279,41
+36280,27
+36281,33
+36282,21
+36283,35
+36284,29
+36285,20
+36286,42
+36287,32
+36288,41
+36290,25
+36291,36
+36292,32
+36293,36
+36294,28
+36295,27
+36297,37
+36298,26
+36299,28
+36300,33
+36301,27
+36302,48
+36303,21
+36304,24
+36305,16
+36307,38
+36308,30
+36309,22
+36312,99
+36313,19
+36314,26
+36315,20
+36316,24
+36317,32
+36318,32
+36320,30
+36322,40
+36323,24
+36324,17
+36327,27
+36328,34
+36329,23
+36330,58
+36331,30
+36332,29
+36333,54
+36334,27
+36335,28
+36337,30
+36338,32
+36339,24
+36340,44
+36341,26
+36342,37
+36343,21
+36344,44
+36345,29
+36346,24
+36347,19
+36348,23
+36349,39
+36351,35
+36352,30
+36353,24
+36354,28
+36355,29
+36356,23
+36357,22
+36358,40
+36359,31
+36360,22
+36361,36
+36362,38
+36363,21
+36364,39
+36365,19
+36366,28
+36367,28
+36368,21
+36369,34
+36370,35
+36371,26
+36372,23
+36373,18
+36374,25
+36375,60
+36376,38
+36377,33
+36378,28
+36379,25
+36380,40
+36381,33
+36382,24
+36383,43
+36384,27
+36385,27
+36386,26
+36387,46
+36388,37
+36389,40
+36390,36
+36391,31
+36392,24
+36393,22
+36394,38
+36395,29
+36396,18
+36397,32
+36398,17
+36399,36
+36400,15
+36401,52
+36402,21
+36403,26
+36404,19
+36405,26
+36406,36
+36408,28
+36409,27
+36410,26
+36412,31
+36413,34
+36414,33
+36415,62
+36416,22
+36417,31
+36418,32
+36419,39
+36420,35
+36421,21
+36422,36
+36423,32
+36424,27
+36425,25
+36426,36
+36427,34
+36428,21
+36429,38
+36430,53
+36431,40
+36432,27
+36433,27
+36434,23
+36435,29
+36436,34
+36437,38
+36438,19
+36439,35
+36440,23
+36441,28
+36442,33
+36443,19
+36445,19
+36446,40
+36448,25
+36449,39
+36452,19
+36455,31
+36456,31
+36458,29
+36459,14
+36460,33
+36461,25
+36462,25
+36463,30
+36464,58
+36465,24
+36466,24
+36467,38
+36468,36
+36470,35
+36471,24
+36472,20
+36473,25
+36474,35
+36475,34
+36476,21
+36477,31
+36478,31
+36479,30
+36480,19
+36481,29
+36482,41
+36483,32
+36484,38
+36485,24
+36486,23
+36487,26
+36488,27
+36489,27
+36490,37
+36491,30
+36492,29
+36493,30
+36494,32
+36495,28
+36496,28
+36497,76
+36498,35
+36499,25
+36500,25
+36501,40
+36502,20
+36503,23
+36504,60
+36507,28
+36508,24
+36509,24
+36510,60
+36512,29
+36514,43
+36515,45
+36516,20
+36517,15
+36518,26
+36519,30
+36520,31
+36521,30
+36522,19
+36523,31
+36525,24
+36526,26
+36527,26
+36528,28
+36532,32
+36533,20
+36534,39
+36536,31
+36537,35
+36538,31
+36539,22
+36540,26
+36541,31
+36542,15
+36543,16
+36544,32
+36545,30
+36546,29
+36547,41
+36549,38
+36551,20
+36552,28
+36553,51
+36554,27
+36555,36
+36556,29
+36557,24
+36558,29
+36559,34
+36560,26
+36561,21
+36562,26
+36563,24
+36564,27
+36565,19
+36566,21
+36567,28
+36568,27
+36569,58
+36570,30
+36571,30
+36572,26
+36573,41
+36574,24
+36575,23
+36576,27
+36577,46
+36578,23
+36580,61
+36581,31
+36583,33
+36584,36
+36585,41
+36586,38
+36587,46
+36588,44
+36589,22
+36590,37
+36591,28
+36592,46
+36595,22
+36596,19
+36597,27
+36598,13
+36599,28
+36600,30
+36601,41
+36602,23
+36603,23
+36604,36
+36606,61
+36608,49
+36609,29
+36610,24
+36611,30
+36612,45
+36614,35
+36615,27
+36616,37
+36617,29
+36618,29
+36619,28
+36620,29
+36621,22
+36622,33
+36623,43
+36624,27
+36625,37
+36626,48
+36627,19
+36628,27
+36629,22
+36630,24
+36631,38
+36632,20
+36633,35
+36634,51
+36636,48
+36637,35
+36638,20
+36639,25
+36640,47
+36641,21
+36642,38
+36643,26
+36645,37
+36647,22
+36648,22
+36649,23
+36650,36
+36651,27
+36652,35
+36653,25
+36654,35
+36655,28
+36656,20
+36658,28
+36659,30
+36660,38
+36661,27
+36662,24
+36663,30
+36664,24
+36665,25
+36666,22
+36667,23
+36668,28
+36669,29
+36670,40
+36672,32
+36673,30
+36675,43
+36676,65
+36677,32
+36678,20
+36679,59
+36680,29
+36681,29
+36683,36
+36685,23
+36686,27
+36687,24
+36688,20
+36689,31
+36690,24
+36691,26
+36692,38
+36693,29
+36694,30
+36695,33
+36696,32
+36697,29
+36698,45
+36699,26
+36700,26
+36701,24
+36703,23
+36704,33
+36705,28
+36707,25
+36708,40
+36710,35
+36711,32
+36712,25
+36713,38
+36715,26
+36717,26
+36718,21
+36719,18
+36720,24
+36721,39
+36722,35
+36723,30
+36724,24
+36726,40
+36727,24
+36728,31
+36729,30
+36730,25
+36732,25
+36733,27
+36734,34
+36735,33
+36736,51
+36737,22
+36738,32
+36739,37
+36740,31
+36741,26
+36742,26
+36743,28
+36744,29
+36745,26
+36746,30
+36747,46
+36748,26
+36751,68
+36753,15
+36754,25
+36755,26
+36756,37
+36757,28
+36758,18
+36759,22
+36760,25
+36761,40
+36762,24
+36763,27
+36764,43
+36765,26
+36766,22
+36769,31
+36771,23
+36772,38
+36773,40
+36774,35
+36775,37
+36776,36
+36777,22
+36778,25
+36779,43
+36780,15
+36781,30
+36782,21
+36783,32
+36784,24
+36785,32
+36786,34
+36787,26
+36788,31
+36789,27
+36790,27
+36791,39
+36792,47
+36793,51
+36794,18
+36795,11
+36796,20
+36797,56
+36799,31
+36801,30
+36802,30
+36803,20
+36805,21
+36806,18
+36807,29
+36809,34
+36810,20
+36811,32
+36812,29
+36813,26
+36814,30
+36815,35
+36816,37
+36817,25
+36818,23
+36819,40
+36820,24
+36821,22
+36822,29
+36824,45
+36825,29
+36826,48
+36827,24
+36828,29
+36829,26
+36830,25
+36831,23
+36832,29
+36833,39
+36834,26
+36835,22
+36836,37
+36837,42
+36838,40
+36839,37
+36841,39
+36842,24
+36843,34
+36844,27
+36845,35
+36846,31
+36847,22
+36849,30
+36851,29
+36852,24
+36853,25
+36854,40
+36855,33
+36856,18
+36857,22
+36858,27
+36859,36
+36860,28
+36861,25
+36862,29
+36863,28
+36864,30
+36866,34
+36867,28
+36868,29
+36869,35
+36870,35
+36871,30
+36872,28
+36873,30
+36874,26
+36875,38
+36876,42
+36877,31
+36878,30
+36879,37
+36880,46
+36881,24
+36882,24
+36885,29
+36886,25
+36887,61
+36888,30
+36889,32
+36890,26
+36891,46
+36892,28
+36894,28
+36895,30
+36896,31
+36897,21
+36899,21
+36900,14
+36901,19
+36902,24
+36903,28
+36904,33
+36905,30
+36906,26
+36907,28
+36908,35
+36909,28
+36910,42
+36911,59
+36912,28
+36913,30
+36914,38
+36915,41
+36916,23
+36917,33
+36918,32
+36919,32
+36920,21
+36921,41
+36922,52
+36923,15
+36925,23
+36926,23
+36927,31
+36928,25
+36929,28
+36930,32
+36931,27
+36932,34
+36934,32
+36935,61
+36936,17
+36937,24
+36939,22
+36940,27
+36941,29
+36942,30
+36943,22
+36944,25
+36945,27
+36946,27
+36947,29
+36948,32
+36949,26
+36950,25
+36951,30
+36952,24
+36953,26
+36954,32
+36955,29
+36956,40
+36957,39
+36958,31
+36959,29
+36960,48
+36961,28
+36962,25
+36964,21
+36965,36
+36966,34
+36967,34
+36968,35
+36969,37
+36970,29
+36971,29
+36972,25
+36974,26
+36975,23
+36976,51
+36977,41
+36978,27
+36980,26
+36981,23
+36982,22
+36983,29
+36984,23
+36985,16
+36986,35
+36987,24
+36988,39
+36990,16
+36991,40
+36992,23
+36994,45
+36995,27
+36996,36
+36997,38
+36998,31
+36999,50
+37000,23
+37001,37
+37002,35
+37003,18
+37004,26
+37005,38
+37006,22
+37007,43
+37008,22
+37009,31
+37010,15
+37011,24
+37012,25
+37014,25
+37015,21
+37017,55
+37018,32
+37019,27
+37020,26
+37021,40
+37022,21
+37023,23
+37025,50
+37026,26
+37027,21
+37028,29
+37030,31
+37031,22
+37032,34
+37034,28
+37035,25
+37036,44
+37037,53
+37038,38
+37039,43
+37040,37
+37041,24
+37042,24
+37043,48
+37044,21
+37045,31
+37046,28
+37047,23
+37048,34
+37049,29
+37050,30
+37051,46
+37052,42
+37053,81
+37054,42
+37055,29
+37056,22
+37057,27
+37058,31
+37060,22
+37061,27
+37062,19
+37064,19
+37065,28
+37066,45
+37067,31
+37068,25
+37069,28
+37070,27
+37071,27
+37072,38
+37073,35
+37074,22
+37075,33
+37076,31
+37077,35
+37078,28
+37079,37
+37081,26
+37082,40
+37083,24
+37084,42
+37085,22
+37087,24
+37088,37
+37090,18
+37091,21
+37092,24
+37093,34
+37094,44
+37095,33
+37096,28
+37097,29
+37098,23
+37099,31
+37100,27
+37101,42
+37102,29
+37103,51
+37105,22
+37106,40
+37107,21
+37108,24
+37109,21
+37110,32
+37111,24
+37112,27
+37113,30
+37114,31
+37115,29
+37116,48
+37117,26
+37118,31
+37119,24
+37120,17
+37121,16
+37122,21
+37124,25
+37125,20
+37126,28
+37127,23
+37128,33
+37129,36
+37130,21
+37131,23
+37132,25
+37133,29
+37134,31
+37135,31
+37136,26
+37137,26
+37138,21
+37139,34
+37140,35
+37141,27
+37142,17
+37143,23
+37144,30
+37145,28
+37146,31
+37147,23
+37148,26
+37149,26
+37150,27
+37151,22
+37152,37
+37153,37
+37154,23
+37156,22
+37157,27
+37158,45
+37160,47
+37162,25
+37163,27
+37164,25
+37165,31
+37166,19
+37167,25
+37168,26
+37169,30
+37170,50
+37172,42
+37173,37
+37174,43
+37176,28
+37177,48
+37178,49
+37179,47
+37180,30
+37181,33
+37182,28
+37183,27
+37184,23
+37185,30
+37186,21
+37187,23
+37190,36
+37191,28
+37193,38
+37194,20
+37195,22
+37196,39
+37198,35
+37199,37
+37201,22
+37202,27
+37205,51
+37206,33
+37207,30
+37208,38
+37209,40
+37210,25
+37211,27
+37213,21
+37214,51
+37215,23
+37216,28
+37217,28
+37218,29
+37219,24
+37220,34
+37221,38
+37222,34
+37223,28
+37224,34
+37225,24
+37226,49
+37227,27
+37228,30
+37229,29
+37230,24
+37232,38
+37233,24
+37234,32
+37235,20
+37237,33
+37238,32
+37239,18
+37240,29
+37241,23
+37243,24
+37244,33
+37245,38
+37246,16
+37247,37
+37248,26
+37249,41
+37250,27
+37252,62
+37253,20
+37254,39
+37255,35
+37256,20
+37257,37
+37258,30
+37259,30
+37260,22
+37261,34
+37262,36
+37263,26
+37264,25
+37265,22
+37266,30
+37267,19
+37268,40
+37269,26
+37270,23
+37271,13
+37272,24
+37274,37
+37276,32
+37277,62
+37278,27
+37279,20
+37280,54
+37281,33
+37283,24
+37284,43
+37285,23
+37286,60
+37287,37
+37288,28
+37289,31
+37290,26
+37291,22
+37292,26
+37293,35
+37294,42
+37295,22
+37296,27
+37297,23
+37298,29
+37299,21
+37300,27
+37301,22
+37302,23
+37303,24
+37304,36
+37305,53
+37306,25
+37307,31
+37308,36
+37309,45
+37310,23
+37311,19
+37312,18
+37313,31
+37314,31
+37315,27
+37316,28
+37317,36
+37318,29
+37319,29
+37320,39
+37321,28
+37322,20
+37323,35
+37325,27
+37326,28
+37327,33
+37328,36
+37329,62
+37330,27
+37331,28
+37332,21
+37333,30
+37334,28
+37335,18
+37336,36
+37337,21
+37338,29
+37339,28
+37340,42
+37341,24
+37342,23
+37343,22
+37344,28
+37346,30
+37347,21
+37348,21
+37351,26
+37352,25
+37353,52
+37354,21
+37355,26
+37356,22
+37357,34
+37358,14
+37359,31
+37360,67
+37361,25
+37362,44
+37363,18
+37364,30
+37365,24
+37366,28
+37367,16
+37368,47
+37369,15
+37370,34
+37371,37
+37372,51
+37373,40
+37374,33
+37375,15
+37376,32
+37378,22
+37379,25
+37380,19
+37381,43
+37382,37
+37383,32
+37384,28
+37385,25
+37386,16
+37387,19
+37388,19
+37389,24
+37390,28
+37391,45
+37392,22
+37393,19
+37395,30
+37396,33
+37397,34
+37398,43
+37399,30
+37401,22
+37403,31
+37404,24
+37406,40
+37407,33
+37408,24
+37409,45
+37410,33
+37411,26
+37412,37
+37414,32
+37415,47
+37416,50
+37417,33
+37418,26
+37419,26
+37420,18
+37421,19
+37422,25
+37423,21
+37424,45
+37425,58
+37426,24
+37427,21
+37428,24
+37429,43
+37430,24
+37431,34
+37432,29
+37433,41
+37435,41
+37436,39
+37438,20
+37439,40
+37440,26
+37441,24
+37442,24
+37443,31
+37444,22
+37445,25
+37446,30
+37447,25
+37448,26
+37449,18
+37450,22
+37451,29
+37452,15
+37453,28
+37454,29
+37455,34
+37456,19
+37458,34
+37459,30
+37460,34
+37461,24
+37463,27
+37464,26
+37465,37
+37466,24
+37467,41
+37468,23
+37470,29
+37471,24
+37472,17
+37473,23
+37474,23
+37475,23
+37476,31
+37477,44
+37478,34
+37479,36
+37480,43
+37481,33
+37482,38
+37483,30
+37484,28
+37485,33
+37488,39
+37490,36
+37491,24
+37492,27
+37493,25
+37494,27
+37496,42
+37497,25
+37498,21
+37499,26
+37501,38
+37502,33
+37504,36
+37505,40
+37506,35
+37508,24
+37509,18
+37510,15
+37512,29
+37513,22
+37514,32
+37515,25
+37516,19
+37517,30
+37518,30
+37519,29
+37520,21
+37521,20
+37522,51
+37523,22
+37524,31
+37525,37
+37526,29
+37528,27
+37529,28
+37530,22
+37531,21
+37532,28
+37533,32
+37534,27
+37535,31
+37536,26
+37537,25
+37538,30
+37539,21
+37540,37
+37542,22
+37543,38
+37544,22
+37545,20
+37546,20
+37547,42
+37548,35
+37549,29
+37550,27
+37551,29
+37552,30
+37553,37
+37554,53
+37555,34
+37558,26
+37559,40
+37560,25
+37561,40
+37562,29
+37563,27
+37564,28
+37565,37
+37566,45
+37567,16
+37568,24
+37569,33
+37570,38
+37572,23
+37573,27
+37574,52
+37575,29
+37576,30
+37577,35
+37578,23
+37579,29
+37580,53
+37581,29
+37582,35
+37583,17
+37584,34
+37585,27
+37586,38
+37587,27
+37588,48
+37589,41
+37590,33
+37591,34
+37592,38
+37593,18
+37594,59
+37595,28
+37596,25
+37597,25
+37598,27
+37599,29
+37600,22
+37601,27
+37602,25
+37603,24
+37604,33
+37605,25
+37606,27
+37607,38
+37609,32
+37610,36
+37611,27
+37612,52
+37613,47
+37614,64
+37615,56
+37617,54
+37618,24
+37619,30
+37620,27
+37621,31
+37622,22
+37623,26
+37624,33
+37625,30
+37626,37
+37628,30
+37630,33
+37631,24
+37632,23
+37633,22
+37634,32
+37635,30
+37636,36
+37637,38
+37638,23
+37639,62
+37640,23
+37641,25
+37642,22
+37643,25
+37644,29
+37645,45
+37646,22
+37647,25
+37649,28
+37650,33
+37651,62
+37652,28
+37653,20
+37654,43
+37656,31
+37657,35
+37659,45
+37660,25
+37661,22
+37662,42
+37664,39
+37666,23
+37667,25
+37668,45
+37669,31
+37670,36
+37671,32
+37673,33
+37675,32
+37676,30
+37677,28
+37678,34
+37679,38
+37680,22
+37681,62
+37682,30
+37683,29
+37684,37
+37685,24
+37687,25
+37688,20
+37689,32
+37690,44
+37691,24
+37693,58
+37694,46
+37695,37
+37696,35
+37697,15
+37698,45
+37699,36
+37700,24
+37701,38
+37702,30
+37703,42
+37704,35
+37705,29
+37706,22
+37707,31
+37708,29
+37709,34
+37710,43
+37711,53
+37712,40
+37713,18
+37714,20
+37715,23
+37716,30
+37717,48
+37719,26
+37720,36
+37722,45
+37723,40
+37724,27
+37725,25
+37727,22
+37728,18
+37729,24
+37730,21
+37731,35
+37733,31
+37734,19
+37735,21
+37736,46
+37737,15
+37738,26
+37739,22
+37740,18
+37741,24
+37742,26
+37743,60
+37744,25
+37745,32
+37746,25
+37747,29
+37748,32
+37749,31
+37750,34
+37751,26
+37752,20
+37753,26
+37754,18
+37755,20
+37757,25
+37758,16
+37759,43
+37760,36
+37761,34
+37762,32
+37763,24
+37764,28
+37765,34
+37766,15
+37767,41
+37768,27
+37769,22
+37770,27
+37773,24
+37774,34
+37775,28
+37776,20
+37777,14
+37778,44
+37779,36
+37780,25
+37781,25
+37782,33
+37783,26
+37784,42
+37785,33
+37786,27
+37787,30
+37788,62
+37789,39
+37790,30
+37791,27
+37793,48
+37794,32
+37795,18
+37796,29
+37797,24
+37798,26
+37799,30
+37800,31
+37801,20
+37803,22
+37804,25
+37805,28
+37806,26
+37808,32
+37809,32
+37810,25
+37811,23
+37812,29
+37815,13
+37816,32
+37817,29
+37818,25
+37819,32
+37820,20
+37823,34
+37826,30
+37827,53
+37828,22
+37829,15
+37830,22
+37831,41
+37832,24
+37833,27
+37835,24
+37836,50
+37838,48
+37839,24
+37840,37
+37841,38
+37842,22
+37843,25
+37844,22
+37845,22
+37846,26
+37847,30
+37849,20
+37851,55
+37852,29
+37853,43
+37854,26
+37855,22
+37856,27
+37857,26
+37860,24
+37861,27
+37862,26
+37863,36
+37864,38
+37865,26
+37866,27
+37867,30
+37869,44
+37870,26
+37871,24
+37872,38
+37873,28
+37874,35
+37875,24
+37876,23
+37877,36
+37878,19
+37879,19
+37880,37
+37881,37
+37882,20
+37883,23
+37884,31
+37885,26
+37886,63
+37887,36
+37888,29
+37889,28
+37891,40
+37892,29
+37893,24
+37894,25
+37895,36
+37896,22
+37897,28
+37899,48
+37900,26
+37901,20
+37903,23
+37904,27
+37905,25
+37906,33
+37908,31
+37910,25
+37911,27
+37912,26
+37913,29
+37915,26
+37916,25
+37918,32
+37919,38
+37920,41
+37922,27
+37923,36
+37924,29
+37925,27
+37926,27
+37927,26
+37928,29
+37929,21
+37931,51
+37932,15
+37933,23
+37934,32
+37935,34
+37936,32
+37937,31
+37939,42
+37940,23
+37941,38
+37942,20
+37943,23
+37944,30
+37945,36
+37946,30
+37947,29
+37948,17
+37949,26
+37950,47
+37952,15
+37953,28
+37954,36
+37956,33
+37957,47
+37958,32
+37959,25
+37960,19
+37961,26
+37962,26
+37963,26
+37964,24
+37965,36
+37966,28
+37967,19
+37968,41
+37970,37
+37971,28
+37972,34
+37973,30
+37974,25
+37975,24
+37976,30
+37978,28
+37979,22
+37980,30
+37983,28
+37984,25
+37985,26
+37986,20
+37987,48
+37988,24
+37989,46
+37990,28
+37991,26
+37992,25
+37993,30
+37994,17
+37995,19
+37997,28
+37998,42
+37999,29
+38000,53
+38001,30
+38002,22
+38003,27
+38004,37
+38005,17
+38006,20
+38007,23
+38008,23
+38009,25
+38010,21
+38011,36
+38013,51
+38014,35
+38015,35
+38016,27
+38017,25
+38018,39
+38019,23
+38020,36
+38021,14
+38022,16
+38023,24
+38024,25
+38025,26
+38026,37
+38027,28
+38028,27
+38029,30
+38031,39
+38032,34
+38033,46
+38036,33
+38037,28
+38038,30
+38039,35
+38040,18
+38041,28
+38042,50
+38043,39
+38044,29
+38045,38
+38046,40
+38048,18
+38049,28
+38050,44
+38051,32
+38053,55
+38054,52
+38055,37
+38056,19
+38057,47
+38058,40
+38059,23
+38060,31
+38061,29
+38063,37
+38064,22
+38065,38
+38066,26
+38067,29
+38069,36
+38070,29
+38071,15
+38072,26
+38073,33
+38075,34
+38076,33
+38077,26
+38078,54
+38079,28
+38080,24
+38081,34
+38082,29
+38083,44
+38084,23
+38086,30
+38089,34
+38090,30
+38091,26
+38092,25
+38093,35
+38094,35
+38095,43
+38096,39
+38098,43
+38101,21
+38102,24
+38103,19
+38104,18
+38105,20
+38106,41
+38107,38
+38108,26
+38109,37
+38110,35
+38111,33
+38112,23
+38113,34
+38114,29
+38115,44
+38116,46
+38117,39
+38118,26
+38119,24
+38120,25
+38121,29
+38123,24
+38124,33
+38125,34
+38126,22
+38127,29
+38128,37
+38129,16
+38130,29
+38131,24
+38132,39
+38133,42
+38134,28
+38135,53
+38136,32
+38137,45
+38138,13
+38139,38
+38140,37
+38141,42
+38142,41
+38143,59
+38144,76
+38145,36
+38146,26
+38147,38
+38149,23
+38150,36
+38151,24
+38152,51
+38154,26
+38155,23
+38157,24
+38158,20
+38159,29
+38160,28
+38161,18
+38162,33
+38163,30
+38164,29
+38165,25
+38166,30
+38167,32
+38168,23
+38170,31
+38171,26
+38172,30
+38174,25
+38175,29
+38176,29
+38177,44
+38178,24
+38180,22
+38181,29
+38184,45
+38185,23
+38187,45
+38188,40
+38189,38
+38190,18
+38191,42
+38192,29
+38193,16
+38194,28
+38195,40
+38196,34
+38197,34
+38199,23
+38200,47
+38201,24
+38202,25
+38203,24
+38204,43
+38205,21
+38206,25
+38207,21
+38208,39
+38209,58
+38210,25
+38211,45
+38212,24
+38213,27
+38214,40
+38215,35
+38216,40
+38217,28
+38218,25
+38219,37
+38220,27
+38221,28
+38222,51
+38223,33
+38224,28
+38225,31
+38226,27
+38227,26
+38228,39
+38229,22
+38230,34
+38231,30
+38232,34
+38233,29
+38234,44
+38235,24
+38236,42
+38237,31
+38238,29
+38240,29
+38241,31
+38242,30
+38244,40
+38245,32
+38246,30
+38248,38
+38249,31
+38250,24
+38251,37
+38252,24
+38254,29
+38255,22
+38256,22
+38257,26
+38259,31
+38260,26
+38261,25
+38262,37
+38263,26
+38264,22
+38265,23
+38266,28
+38267,18
+38268,53
+38270,29
+38271,35
+38272,32
+38273,30
+38274,27
+38275,35
+38276,24
+38277,29
+38278,37
+38279,33
+38280,25
+38281,31
+38282,26
+38283,25
+38284,22
+38286,20
+38287,21
+38288,55
+38289,31
+38291,34
+38292,27
+38293,28
+38295,28
+38296,20
+38297,29
+38298,65
+38299,25
+38301,24
+38302,39
+38303,20
+38305,36
+38307,64
+38308,25
+38309,28
+38310,31
+38311,43
+38312,38
+38313,47
+38314,24
+38315,21
+38316,37
+38317,50
+38318,25
+38319,25
+38321,33
+38322,19
+38323,37
+38324,28
+38325,15
+38326,27
+38328,35
+38329,30
+38330,27
+38331,39
+38332,39
+38333,28
+38334,38
+38335,25
+38337,33
+38338,28
+38339,26
+38340,40
+38341,36
+38342,27
+38344,25
+38345,27
+38346,33
+38347,29
+38349,46
+38350,28
+38351,34
+38352,31
+38353,35
+38355,23
+38357,23
+38358,35
+38359,26
+38360,24
+38361,30
+38362,22
+38363,44
+38364,23
+38365,23
+38366,30
+38367,23
+38368,27
+38369,29
+38370,31
+38371,25
+38372,28
+38373,30
+38374,34
+38375,33
+38376,60
+38377,21
+38378,32
+38379,40
+38380,28
+38382,24
+38383,28
+38384,35
+38385,21
+38386,21
+38387,30
+38389,34
+38390,38
+38391,37
+38393,4
+38394,40
+38395,30
+38396,26
+38397,26
+38398,24
+38399,24
+38401,26
+38402,49
+38403,24
+38404,28
+38405,28
+38406,18
+38407,32
+38408,31
+38409,13
+38410,66
+38411,34
+38412,28
+38413,29
+38415,27
+38416,22
+38418,45
+38419,32
+38420,39
+38421,36
+38422,32
+38423,34
+38424,31
+38425,23
+38426,15
+38427,25
+38428,34
+38429,19
+38430,24
+38431,21
+38433,25
+38434,30
+38435,20
+38436,53
+38437,17
+38438,19
+38440,37
+38441,31
+38442,38
+38443,27
+38444,42
+38445,29
+38446,28
+38447,31
+38448,23
+38449,33
+38450,29
+38451,21
+38452,37
+38453,26
+38454,35
+38455,29
+38456,35
+38457,19
+38458,27
+38460,24
+38461,26
+38462,20
+38463,50
+38464,23
+38465,24
+38466,26
+38467,34
+38468,27
+38469,24
+38470,28
+38471,38
+38472,25
+38473,40
+38474,30
+38475,23
+38476,32
+38477,28
+38478,19
+38480,35
+38481,44
+38482,24
+38483,31
+38484,24
+38485,29
+38486,25
+38487,21
+38488,24
+38489,23
+38490,24
+38491,23
+38492,23
+38493,27
+38494,32
+38495,31
+38496,19
+38497,20
+38498,30
+38499,18
+38500,21
+38501,27
+38502,47
+38503,17
+38504,60
+38505,29
+38506,18
+38507,41
+38508,27
+38510,32
+38511,26
+38513,19
+38514,31
+38515,46
+38516,29
+38517,21
+38518,28
+38519,23
+38520,21
+38521,33
+38522,29
+38523,24
+38524,21
+38525,29
+38526,22
+38527,34
+38528,29
+38529,24
+38530,48
+38531,29
+38532,17
+38533,23
+38534,23
+38535,38
+38538,25
+38539,36
+38540,36
+38541,24
+38542,40
+38544,25
+38545,34
+38546,23
+38547,25
+38548,36
+38549,23
+38550,38
+38551,41
+38552,52
+38553,28
+38554,26
+38555,35
+38557,24
+38558,31
+38559,21
+38561,30
+38562,34
+38563,23
+38564,31
+38565,25
+38566,24
+38567,36
+38569,20
+38570,34
+38571,41
+38572,32
+38573,33
+38574,26
+38575,24
+38576,23
+38577,24
+38578,22
+38579,28
+38580,28
+38581,41
+38582,24
+38583,26
+38584,29
+38585,48
+38586,24
+38587,50
+38588,27
+38591,24
+38592,39
+38593,23
+38594,22
+38595,31
+38596,20
+38597,22
+38598,25
+38599,41
+38600,30
+38601,31
+38602,38
+38603,46
+38604,22
+38606,30
+38607,28
+38608,27
+38609,37
+38610,26
+38611,41
+38612,27
+38613,25
+38615,28
+38616,23
+38617,28
+38618,29
+38619,31
+38620,33
+38621,29
+38622,33
+38623,18
+38624,29
+38625,27
+38626,23
+38628,33
+38630,36
+38631,46
+38632,23
+38634,35
+38635,40
+38637,24
+38639,21
+38640,30
+38641,26
+38643,21
+38644,27
+38645,21
+38646,28
+38647,29
+38648,23
+38649,30
+38650,31
+38651,19
+38652,35
+38653,38
+38655,28
+38656,30
+38657,37
+38658,32
+38659,31
+38661,28
+38663,27
+38664,26
+38666,37
+38668,36
+38669,24
+38670,26
+38671,29
+38672,30
+38673,26
+38674,43
+38675,24
+38676,45
+38677,13
+38678,15
+38679,10
+38680,41
+38682,20
+38683,62
+38684,28
+38685,27
+38686,37
+38687,53
+38688,32
+38689,31
+38690,34
+38691,22
+38692,26
+38693,26
+38694,33
+38695,24
+38696,25
+38697,26
+38698,22
+38699,33
+38700,25
+38702,30
+38703,22
+38704,53
+38705,32
+38706,25
+38708,29
+38709,20
+38710,23
+38711,29
+38712,31
+38713,38
+38714,31
+38715,28
+38716,42
+38717,33
+38718,41
+38719,47
+38720,26
+38721,28
+38722,27
+38724,29
+38725,28
+38726,43
+38728,28
+38729,33
+38730,27
+38731,30
+38732,41
+38733,30
+38734,23
+38735,25
+38736,41
+38737,27
+38738,31
+38739,32
+38740,35
+38741,31
+38742,26
+38743,52
+38744,33
+38745,32
+38746,29
+38747,31
+38748,32
+38749,21
+38751,51
+38752,25
+38754,25
+38755,21
+38756,21
+38757,41
+38758,33
+38759,43
+38760,15
+38761,30
+38762,19
+38763,25
+38764,54
+38765,31
+38766,34
+38768,31
+38769,29
+38770,21
+38771,35
+38772,34
+38774,30
+38775,72
+38776,48
+38777,45
+38778,23
+38779,40
+38780,37
+38781,25
+38782,24
+38783,30
+38785,25
+38786,21
+38787,33
+38788,23
+38789,35
+38791,27
+38793,26
+38794,35
+38795,34
+38796,33
+38797,24
+38798,42
+38799,38
+38800,21
+38801,22
+38802,21
+38803,34
+38804,40
+38805,37
+38806,22
+38807,51
+38808,15
+38809,48
+38810,29
+38811,25
+38812,37
+38813,29
+38814,24
+38815,39
+38817,24
+38818,31
+38820,27
+38821,21
+38824,32
+38826,24
+38827,35
+38828,21
+38829,42
+38830,32
+38831,26
+38832,22
+38834,31
+38835,33
+38836,38
+38837,25
+38838,30
+38839,61
+38840,24
+38842,35
+38843,36
+38844,23
+38845,19
+38846,22
+38847,22
+38848,22
+38850,25
+38851,36
+38852,34
+38853,48
+38854,32
+38855,23
+38856,32
+38857,19
+38858,36
+38859,34
+38860,28
+38861,25
+38862,55
+38863,50
+38864,37
+38865,33
+38868,32
+38869,22
+38870,20
+38871,24
+38872,32
+38873,38
+38874,34
+38875,29
+38876,64
+38877,36
+38878,28
+38879,31
+38880,48
+38881,24
+38884,36
+38885,24
+38886,16
+38887,24
+38888,44
+38889,43
+38890,27
+38891,23
+38892,24
+38893,37
+38895,30
+38896,36
+38898,35
+38899,26
+38902,38
+38903,22
+38904,22
+38905,35
+38906,18
+38907,22
+38909,53
+38910,33
+38911,21
+38912,30
+38913,49
+38914,23
+38915,24
+38916,23
+38917,26
+38918,43
+38919,34
+38920,23
+38921,18
+38922,33
+38923,44
+38924,27
+38925,25
+38927,33
+38928,28
+38929,26
+38930,33
+38931,34
+38933,26
+38934,32
+38935,47
+38936,26
+38937,23
+38938,54
+38939,27
+38940,28
+38941,34
+38942,13
+38943,25
+38944,30
+38946,25
+38947,29
+38949,34
+38951,30
+38952,26
+38953,33
+38954,33
+38955,26
+38956,32
+38957,24
+38958,34
+38959,31
+38961,48
+38962,24
+38963,23
+38964,32
+38965,26
+38966,19
+38967,23
+38968,31
+38969,23
+38970,21
+38971,25
+38972,34
+38973,24
+38974,32
+38975,40
+38976,22
+38977,45
+38978,35
+38979,20
+38980,37
+38981,28
+38982,31
+38983,23
+38984,32
+38986,20
+38987,22
+38988,31
+38989,25
+38990,18
+38991,31
+38992,18
+38993,22
+38994,31
+38995,23
+38996,20
+38997,47
+38998,56
+39002,12
+39003,34
+39005,27
+39006,26
+39007,29
+39009,32
+39010,38
+39011,31
+39013,15
+39014,46
+39015,24
+39016,34
+39017,33
+39018,22
+39020,40
+39021,25
+39022,59
+39023,20
+39024,26
+39025,26
+39026,33
+39027,33
+39028,21
+39030,25
+39033,32
+39034,13
+39038,23
+39039,32
+39040,30
+39041,27
+39042,42
+39043,25
+39044,28
+39045,39
+39046,32
+39047,40
+39048,34
+39049,39
+39050,33
+39051,23
+39052,28
+39054,25
+39055,31
+39056,25
+39057,28
+39059,26
+39060,21
+39061,17
+39062,27
+39063,23
+39064,29
+39065,42
+39066,39
+39068,28
+39070,22
+39071,32
+39072,27
+39073,36
+39074,28
+39075,20
+39076,24
+39077,32
+39079,32
+39080,26
+39081,19
+39083,19
+39084,30
+39085,28
+39086,22
+39087,24
+39089,33
+39090,53
+39091,30
+39093,40
+39094,24
+39095,28
+39096,32
+39097,28
+39098,29
+39099,28
+39101,16
+39102,28
+39103,28
+39104,35
+39105,16
+39106,22
+39107,21
+39108,28
+39109,24
+39110,22
+39111,26
+39112,55
+39113,31
+39114,32
+39115,46
+39116,30
+39119,24
+39120,33
+39124,30
+39126,27
+39127,34
+39128,42
+39129,29
+39130,26
+39132,23
+39133,59
+39134,58
+39135,23
+39138,30
+39139,33
+39140,30
+39141,31
+39142,21
+39143,29
+39144,32
+39145,35
+39146,20
+39147,21
+39148,39
+39149,20
+39150,41
+39151,26
+39152,52
+39153,18
+39154,38
+39155,34
+39156,35
+39157,56
+39158,33
+39159,35
+39160,21
+39161,34
+39162,32
+39164,39
+39165,42
+39166,33
+39167,28
+39168,15
+39169,28
+39170,75
+39171,29
+39172,32
+39174,27
+39175,30
+39176,37
+39177,15
+39178,42
+39179,19
+39180,26
+39181,23
+39182,25
+39183,26
+39184,22
+39185,30
+39186,28
+39187,25
+39188,37
+39189,26
+39190,18
+39191,28
+39192,32
+39193,21
+39194,33
+39195,36
+39196,41
+39197,58
+39199,32
+39200,26
+39201,29
+39203,39
+39204,22
+39205,41
+39206,42
+39207,32
+39208,36
+39209,40
+39211,31
+39214,33
+39215,49
+39216,30
+39218,38
+39219,46
+39220,27
+39221,25
+39222,44
+39224,33
+39225,20
+39226,30
+39227,25
+39228,26
+39229,25
+39230,16
+39231,36
+39232,33
+39234,37
+39235,32
+39236,23
+39237,46
+39238,24
+39239,25
+39240,67
+39242,13
+39243,23
+39244,31
+39245,27
+39246,20
+39247,39
+39248,53
+39249,39
+39250,45
+39251,27
+39252,21
+39253,31
+39255,27
+39256,24
+39257,30
+39258,26
+39259,24
+39260,45
+39261,27
+39262,25
+39263,28
+39265,25
+39266,26
+39267,25
+39269,30
+39270,23
+39271,54
+39272,38
+39273,23
+39274,52
+39275,26
+39276,53
+39278,17
+39279,48
+39280,48
+39281,48
+39284,33
+39285,29
+39286,47
+39287,41
+39290,29
+39291,21
+39292,27
+39293,13
+39294,31
+39295,40
+39296,24
+39298,25
+39299,35
+39300,26
+39301,24
+39302,26
+39303,27
+39304,59
+39305,22
+39306,31
+39307,15
+39308,27
+39309,23
+39310,25
+39311,22
+39312,26
+39313,21
+39314,31
+39315,19
+39317,31
+39318,20
+39319,45
+39320,19
+39321,16
+39323,43
+39324,29
+39325,34
+39326,21
+39327,29
+39328,54
+39329,29
+39330,44
+39331,25
+39332,29
+39333,24
+39334,27
+39335,24
+39336,23
+39338,40
+39339,40
+39341,25
+39343,20
+39344,22
+39345,32
+39346,29
+39347,24
+39349,27
+39350,37
+39352,38
+39353,43
+39354,20
+39356,26
+39357,30
+39358,29
+39359,15
+39360,23
+39361,62
+39362,19
+39363,22
+39364,24
+39365,27
+39367,39
+39368,24
+39369,22
+39370,24
+39371,27
+39372,26
+39373,21
+39375,26
+39376,35
+39377,41
+39378,34
+39379,26
+39380,43
+39381,27
+39383,27
+39384,38
+39385,46
+39386,25
+39387,25
+39388,26
+39389,29
+39391,35
+39392,25
+39393,22
+39394,39
+39395,29
+39397,40
+39398,30
+39399,14
+39400,18
+39401,25
+39402,33
+39403,29
+39404,34
+39405,28
+39406,25
+39407,32
+39409,33
+39410,23
+39411,32
+39412,15
+39414,32
+39415,29
+39416,46
+39417,35
+39419,27
+39420,27
+39421,31
+39422,15
+39423,35
+39424,22
+39426,30
+39427,27
+39429,19
+39430,42
+39431,33
+39433,27
+39434,39
+39435,26
+39436,26
+39438,27
+39439,27
+39440,32
+39441,21
+39442,22
+39443,25
+39444,44
+39445,24
+39446,28
+39447,26
+39448,36
+39450,22
+39451,30
+39452,27
+39453,19
+39455,31
+39456,34
+39457,28
+39458,31
+39459,39
+39460,28
+39462,37
+39463,24
+39464,25
+39465,30
+39466,37
+39467,38
+39468,25
+39469,49
+39470,25
+39471,39
+39472,37
+39473,32
+39474,38
+39475,27
+39476,37
+39477,17
+39479,24
+39483,17
+39484,22
+39485,41
+39486,38
+39487,25
+39488,22
+39490,23
+39491,25
+39492,23
+39494,32
+39495,25
+39496,44
+39497,33
+39498,20
+39499,28
+39501,23
+39502,29
+39503,20
+39504,28
+39505,40
+39506,22
+39507,20
+39510,35
+39511,31
+39512,43
+39513,14
+39514,54
+39516,30
+39517,42
+39518,26
+39519,45
+39520,53
+39522,31
+39523,59
+39524,25
+39525,40
+39527,24
+39528,33
+39530,31
+39531,42
+39532,24
+39533,43
+39534,21
+39535,30
+39536,25
+39537,18
+39538,20
+39541,22
+39542,31
+39543,25
+39544,41
+39546,31
+39547,39
+39548,23
+39550,25
+39551,25
+39552,29
+39553,23
+39554,40
+39556,24
+39557,26
+39560,20
+39561,28
+39563,48
+39564,35
+39565,33
+39566,25
+39567,15
+39568,29
+39569,20
+39570,31
+39572,27
+39573,32
+39576,23
+39577,28
+39578,32
+39579,25
+39580,17
+39581,46
+39582,28
+39583,22
+39584,16
+39585,33
+39586,35
+39587,27
+39588,44
+39589,33
+39590,19
+39591,38
+39592,27
+39594,28
+39595,25
+39596,29
+39597,37
+39598,22
+39599,20
+39600,52
+39602,61
+39603,28
+39604,36
+39605,32
+39606,54
+39607,31
+39608,19
+39609,42
+39610,39
+39611,40
+39612,21
+39613,41
+39614,18
+39615,34
+39616,33
+39617,68
+39618,19
+39619,31
+39620,27
+39621,16
+39622,21
+39623,24
+39624,21
+39625,27
+39626,24
+39628,23
+39629,27
+39630,39
+39631,34
+39632,27
+39633,32
+39635,32
+39636,17
+39637,35
+39638,30
+39639,21
+39640,26
+39641,23
+39643,26
+39644,19
+39646,33
+39647,20
+39649,30
+39650,38
+39651,23
+39652,42
+39653,46
+39655,27
+39656,25
+39657,33
+39658,54
+39660,30
+39661,16
+39662,29
+39663,67
+39664,23
+39666,39
+39667,25
+39668,17
+39669,32
+39670,38
+39671,26
+39673,28
+39674,36
+39675,39
+39676,30
+39677,22
+39678,35
+39680,19
+39681,39
+39682,21
+39683,33
+39684,29
+39685,38
+39686,25
+39687,32
+39688,35
+39689,26
+39690,21
+39691,37
+39692,25
+39693,29
+39694,32
+39695,41
+39696,25
+39697,28
+39699,39
+39700,24
+39701,25
+39703,25
+39704,25
+39705,23
+39706,23
+39709,30
+39710,29
+39711,35
+39712,34
+39713,23
+39714,22
+39715,37
+39716,29
+39717,21
+39718,18
+39719,30
+39720,31
+39721,21
+39722,52
+39723,24
+39724,29
+39725,26
+39726,22
+39727,36
+39729,26
+39730,24
+39731,23
+39732,30
+39733,51
+39734,56
+39735,26
+39736,42
+39737,34
+39739,40
+39740,18
+39741,25
+39743,41
+39744,17
+39745,31
+39746,49
+39748,51
+39749,39
+39750,26
+39751,23
+39752,26
+39753,30
+39755,14
+39756,33
+39757,38
+39758,26
+39759,24
+39760,33
+39761,23
+39762,24
+39763,25
+39764,36
+39765,28
+39767,34
+39768,29
+39769,23
+39771,22
+39772,30
+39773,31
+39774,32
+39775,19
+39776,37
+39778,28
+39779,28
+39780,26
+39781,31
+39782,30
+39783,21
+39784,49
+39785,24
+39786,25
+39788,44
+39789,25
+39790,28
+39791,22
+39792,45
+39793,29
+39794,27
+39795,23
+39796,23
+39797,30
+39798,35
+39799,26
+39800,20
+39801,35
+39802,42
+39803,21
+39804,28
+39805,26
+39806,23
+39807,34
+39808,27
+39809,39
+39810,33
+39811,26
+39812,44
+39814,31
+39815,27
+39816,26
+39817,22
+39819,23
+39820,27
+39821,18
+39822,25
+39823,21
+39824,30
+39825,21
+39826,31
+39827,23
+39828,23
+39829,31
+39830,27
+39831,29
+39832,20
+39833,25
+39834,39
+39835,31
+39836,47
+39837,43
+39838,34
+39839,20
+39840,38
+39841,31
+39843,43
+39845,28
+39846,34
+39847,37
+39848,38
+39849,24
+39851,73
+39852,15
+39853,24
+39854,24
+39855,35
+39856,26
+39858,33
+39859,39
+39860,26
+39861,38
+39862,24
+39863,25
+39864,27
+39865,28
+39866,29
+39867,33
+39868,44
+39869,28
+39870,42
+39871,34
+39872,18
+39873,27
+39875,32
+39876,28
+39877,21
+39879,36
+39880,25
+39881,38
+39882,35
+39883,29
+39884,22
+39886,38
+39887,33
+39888,26
+39889,28
+39890,23
+39891,22
+39892,28
+39893,29
+39894,45
+39895,59
+39896,36
+39897,29
+39899,21
+39900,25
+39901,31
+39902,50
+39903,29
+39904,21
+39905,23
+39906,42
+39907,27
+39908,32
+39909,26
+39910,32
+39911,30
+39912,34
+39913,21
+39914,28
+39915,42
+39916,26
+39917,28
+39919,37
+39920,20
+39922,30
+39923,35
+39924,26
+39925,38
+39926,43
+39927,24
+39929,31
+39930,23
+39931,30
+39932,30
+39933,48
+39935,26
+39936,24
+39937,22
+39938,23
+39939,24
+39940,38
+39941,21
+39942,39
+39943,19
+39944,23
+39945,18
+39946,34
+39947,24
+39948,20
+39949,25
+39950,21
+39952,22
+39953,31
+39954,33
+39955,26
+39956,30
+39957,25
+39958,34
+39959,37
+39961,27
+39962,30
+39965,29
+39966,17
+39967,22
+39968,26
+39969,25
+39970,35
+39971,35
+39972,62
+39974,23
+39975,38
+39976,29
+39977,22
+39978,44
+39979,38
+39980,23
+39981,29
+39982,40
+39983,30
+39984,26
+39985,32
+39986,25
+39987,29
+39991,49
+39992,24
+39993,22
+39994,42
+39996,42
+39997,23
+39998,35
+40001,44
+40002,24
+40003,20
+40004,26
+40005,28
+40006,28
+40007,30
+40008,12
+40009,41
+40010,31
+40011,27
+40012,46
+40014,29
+40016,20
+40017,27
+40018,18
+40019,25
+40020,57
+40021,30
+40022,23
+40023,27
+40024,23
+40025,20
+40026,23
+40028,20
+40029,22
+40030,23
+40031,26
+40032,23
+40033,29
+40034,26
+40035,34
+40037,28
+40038,26
+40039,33
+40040,35
+40041,28
+40042,25
+40043,39
+40044,54
+40045,26
+40046,26
+40047,25
+40048,52
+40049,15
+40050,29
+40052,30
+40053,15
+40054,19
+40055,41
+40056,36
+40057,30
+40058,24
+40059,23
+40060,27
+40061,31
+40063,28
+40064,26
+40066,30
+40067,30
+40068,30
+40069,28
+40070,26
+40071,32
+40073,21
+40074,38
+40076,31
+40077,28
+40078,37
+40079,26
+40080,18
+40081,27
+40082,31
+40083,33
+40085,25
+40086,23
+40087,49
+40089,35
+40090,37
+40091,43
+40092,30
+40093,42
+40094,23
+40095,30
+40096,33
+40097,29
+40098,29
+40099,22
+40100,27
+40101,40
+40103,28
+40104,28
+40106,26
+40107,24
+40108,45
+40109,20
+40110,33
+40111,27
+40112,23
+40113,25
+40114,26
+40115,20
+40116,25
+40117,25
+40118,49
+40119,37
+40120,18
+40121,27
+40122,44
+40123,25
+40124,22
+40125,22
+40126,26
+40127,28
+40129,34
+40130,44
+40131,33
+40132,24
+40133,32
+40134,28
+40135,40
+40136,20
+40137,30
+40138,37
+40140,31
+40141,27
+40142,23
+40144,26
+40145,21
+40146,18
+40147,29
+40148,44
+40150,31
+40152,32
+40153,31
+40154,36
+40155,23
+40157,26
+40158,31
+40159,30
+40160,24
+40161,25
+40162,34
+40163,26
+40164,28
+40165,22
+40166,29
+40167,17
+40168,40
+40169,28
+40170,27
+40171,34
+40172,21
+40173,39
+40174,32
+40175,41
+40176,38
+40177,37
+40178,39
+40179,33
+40180,25
+40181,37
+40182,26
+40183,27
+40184,24
+40185,64
+40186,24
+40187,30
+40188,68
+40189,38
+40190,48
+40191,22
+40192,23
+40193,47
+40195,33
+40196,25
+40197,26
+40198,49
+40199,29
+40200,24
+40202,30
+40203,20
+40204,43
+40205,24
+40206,21
+40207,23
+40209,25
+40210,32
+40211,25
+40212,24
+40213,21
+40214,46
+40215,24
+40216,27
+40217,32
+40218,32
+40219,22
+40220,24
+40221,33
+40222,18
+40223,35
+40224,26
+40225,29
+40226,23
+40227,28
+40228,34
+40229,24
+40230,29
+40231,28
+40232,49
+40233,24
+40234,20
+40235,24
+40236,30
+40237,23
+40238,27
+40240,24
+40241,31
+40242,39
+40243,39
+40244,46
+40245,50
+40246,45
+40247,26
+40249,32
+40250,25
+40251,39
+40252,29
+40253,26
+40254,24
+40255,25
+40256,23
+40257,24
+40258,29
+40260,23
+40261,32
+40262,23
+40264,26
+40265,31
+40266,30
+40267,23
+40268,26
+40269,26
+40270,30
+40271,26
+40272,36
+40273,22
+40274,23
+40275,28
+40276,25
+40277,23
+40278,23
+40279,52
+40281,35
+40282,38
+40283,34
+40284,32
+40285,20
+40286,23
+40288,34
+40289,50
+40290,26
+40291,35
+40292,20
+40293,35
+40294,37
+40295,35
+40296,33
+40297,20
+40298,39
+40299,43
+40300,14
+40301,33
+40302,38
+40303,32
+40304,57
+40305,27
+40306,29
+40307,26
+40309,22
+40310,40
+40311,57
+40312,23
+40313,27
+40314,27
+40315,29
+40316,29
+40317,26
+40318,24
+40319,26
+40320,47
+40321,32
+40322,24
+40323,31
+40324,28
+40325,21
+40326,24
+40327,59
+40329,18
+40330,27
+40331,25
+40332,34
+40333,28
+40334,30
+40335,29
+40337,29
+40338,35
+40339,18
+40340,24
+40341,31
+40342,33
+40343,39
+40344,24
+40346,42
+40347,35
+40348,25
+40349,21
+40350,29
+40351,17
+40353,30
+40354,29
+40355,25
+40356,36
+40357,30
+40358,14
+40359,29
+40360,69
+40361,35
+40362,30
+40363,28
+40364,14
+40365,54
+40366,29
+40367,52
+40368,37
+40369,26
+40371,34
+40372,30
+40373,43
+40374,30
+40375,16
+40376,30
+40377,30
+40378,25
+40380,35
+40381,27
+40383,26
+40384,26
+40385,26
+40386,22
+40387,21
+40390,36
+40392,21
+40393,41
+40395,35
+40396,21
+40397,26
+40398,21
+40399,32
+40400,32
+40401,33
+40402,21
+40403,26
+40404,45
+40405,44
+40406,27
+40407,41
+40409,27
+40410,29
+40412,40
+40413,35
+40416,20
+40417,31
+40418,27
+40419,16
+40421,18
+40423,26
+40424,33
+40425,24
+40426,28
+40427,26
+40428,57
+40429,32
+40430,30
+40431,30
+40433,22
+40434,23
+40435,23
+40436,34
+40437,27
+40438,30
+40439,22
+40442,27
+40443,43
+40444,29
+40445,51
+40446,23
+40447,26
+40448,29
+40449,23
+40451,23
+40452,51
+40454,41
+40455,16
+40456,20
+40457,23
+40458,16
+40459,44
+40460,32
+40461,33
+40462,21
+40464,25
+40465,50
+40466,25
+40467,41
+40468,48
+40469,28
+40470,25
+40471,39
+40474,32
+40475,35
+40476,35
+40477,39
+40478,40
+40479,30
+40480,24
+40481,19
+40482,22
+40483,21
+40484,30
+40485,26
+40486,32
+40487,30
+40488,24
+40489,22
+40490,31
+40491,34
+40492,46
+40494,27
+40495,26
+40496,29
+40497,23
+40498,42
+40499,28
+40500,26
+40501,33
+40502,36
+40503,26
+40504,31
+40505,26
+40508,28
+40509,22
+40512,27
+40513,32
+40514,33
+40515,36
+40516,34
+40517,28
+40518,34
+40519,20
+40520,21
+40521,36
+40522,62
+40523,25
+40524,26
+40526,22
+40527,21
+40528,23
+40529,53
+40530,31
+40532,22
+40533,30
+40534,45
+40535,24
+40536,27
+40538,47
+40539,19
+40540,50
+40541,27
+40542,29
+40543,32
+40547,29
+40548,42
+40549,20
+40550,36
+40551,34
+40554,25
+40557,26
+40559,26
+40560,22
+40562,30
+40563,27
+40564,43
+40566,38
+40567,26
+40568,45
+40569,22
+40570,23
+40571,29
+40572,25
+40573,29
+40574,22
+40575,31
+40576,44
+40577,25
+40578,28
+40579,26
+40581,26
+40582,33
+40584,35
+40585,42
+40586,23
+40587,28
+40589,20
+40591,25
+40593,27
+40594,32
+40595,26
+40598,51
+40600,24
+40601,20
+40602,20
+40603,30
+40604,25
+40605,29
+40606,24
+40607,23
+40608,23
+40609,35
+40610,26
+40611,47
+40612,28
+40613,28
+40614,33
+40615,21
+40616,26
+40618,28
+40619,21
+40620,22
+40621,26
+40622,22
+40623,25
+40624,21
+40625,38
+40626,26
+40627,36
+40628,33
+40630,43
+40631,37
+40632,22
+40633,16
+40634,23
+40635,25
+40636,25
+40637,28
+40638,35
+40639,24
+40641,37
+40642,21
+40643,35
+40644,19
+40645,26
+40646,35
+40647,31
+40648,29
+40649,33
+40650,31
+40651,32
+40652,27
+40653,43
+40654,28
+40655,25
+40656,29
+40657,34
+40658,27
+40659,43
+40660,24
+40661,66
+40662,25
+40663,20
+40665,32
+40666,28
+40668,28
+40669,41
+40670,21
+40671,28
+40673,34
+40674,34
+40675,35
+40676,28
+40677,37
+40678,58
+40679,26
+40682,29
+40683,15
+40684,33
+40685,29
+40686,31
+40688,22
+40689,27
+40690,39
+40691,29
+40692,39
+40693,49
+40694,32
+40695,19
+40696,58
+40697,25
+40698,35
+40699,16
+40700,32
+40701,33
+40702,24
+40703,32
+40704,21
+40705,19
+40707,26
+40708,35
+40709,28
+40710,31
+40711,25
+40712,23
+40713,36
+40714,31
+40715,41
+40716,25
+40717,30
+40718,28
+40719,38
+40720,31
+40721,28
+40722,30
+40723,45
+40724,32
+40725,46
+40726,24
+40727,31
+40729,28
+40730,46
+40731,47
+40732,32
+40733,25
+40734,30
+40735,32
+40736,34
+40737,17
+40738,16
+40739,32
+40740,42
+40741,27
+40742,22
+40743,33
+40744,45
+40745,25
+40746,22
+40747,33
+40750,24
+40752,32
+40753,45
+40755,20
+40756,30
+40757,27
+40758,16
+40759,32
+40761,74
+40762,49
+40764,26
+40765,35
+40766,35
+40767,26
+40768,35
+40769,28
+40770,35
+40771,22
+40772,52
+40774,26
+40775,22
+40777,20
+40778,28
+40779,33
+40780,40
+40783,29
+40784,20
+40785,21
+40786,25
+40787,35
+40788,24
+40789,33
+40790,49
+40791,44
+40792,40
+40793,30
+40794,22
+40795,39
+40796,45
+40799,18
+40800,37
+40801,38
+40802,33
+40803,24
+40804,32
+40806,18
+40807,13
+40808,24
+40809,21
+40810,19
+40811,21
+40813,27
+40814,20
+40815,28
+40816,29
+40818,24
+40819,49
+40820,45
+40821,22
+40822,21
+40823,50
+40825,46
+40826,39
+40827,18
+40828,37
+40829,24
+40830,24
+40831,28
+40832,18
+40833,25
+40834,43
+40835,28
+40836,37
+40837,31
+40838,36
+40839,22
+40840,22
+40841,50
+40842,27
+40843,35
+40844,34
+40845,28
+40846,31
+40848,34
+40849,25
+40850,36
+40851,31
+40853,26
+40854,22
+40855,35
+40856,36
+40857,36
+40858,20
+40859,39
+40860,25
+40861,24
+40862,25
+40863,20
+40864,43
+40867,36
+40868,34
+40869,20
+40870,42
+40871,69
+40872,24
+40873,37
+40874,28
+40875,25
+40876,16
+40877,30
+40878,33
+40879,31
+40880,35
+40881,54
+40882,21
+40883,27
+40884,39
+40885,42
+40886,42
+40887,21
+40888,33
+40889,34
+40891,21
+40892,29
+40893,39
+40894,20
+40895,21
+40896,25
+40897,23
+40899,33
+40900,25
+40901,28
+40902,32
+40903,38
+40904,26
+40906,29
+40909,28
+40910,29
+40911,55
+40912,34
+40913,22
+40914,31
+40915,54
+40916,36
+40918,28
+40919,29
+40920,26
+40921,22
+40922,29
+40923,43
+40924,25
+40925,23
+40926,20
+40927,30
+40928,33
+40929,34
+40930,32
+40932,24
+40933,24
+40934,30
+40936,49
+40937,25
+40938,32
+40940,37
+40941,25
+40942,30
+40943,37
+40944,36
+40945,29
+40946,23
+40947,32
+40948,19
+40949,18
+40950,34
+40951,25
+40952,33
+40953,27
+40955,33
+40957,26
+40958,49
+40959,25
+40960,29
+40961,26
+40962,24
+40963,34
+40965,44
+40966,24
+40967,27
+40968,27
+40969,27
+40970,16
+40971,25
+40972,29
+40973,20
+40974,29
+40975,30
+40976,24
+40977,26
+40980,39
+40981,28
+40982,50
+40983,28
+40984,18
+40985,24
+40986,25
+40987,22
+40988,25
+40989,28
+40990,43
+40991,40
+40992,25
+40994,36
+40995,37
+40996,26
+40997,25
+40998,20
+40999,37
+41000,28
+41001,31
+41002,27
+41003,26
+41004,31
+41005,25
+41006,24
+41008,32
+41010,28
+41011,21
+41012,30
+41014,23
+41015,18
+41016,32
+41017,35
+41018,37
+41019,16
+41020,18
+41021,39
+41023,25
+41024,30
+41025,23
+41026,37
+41027,38
+41029,31
+41030,27
+41031,42
+41032,40
+41033,23
+41034,47
+41035,30
+41036,23
+41037,24
+41038,34
+41041,31
+41043,49
+41044,20
+41045,33
+41046,18
+41047,30
+41048,23
+41049,18
+41050,30
+41051,34
+41052,18
+41053,47
+41054,22
+41055,28
+41056,30
+41057,19
+41058,28
+41059,23
+41060,27
+41061,20
+41062,30
+41064,40
+41065,27
+41066,32
+41067,21
+41068,30
+41069,46
+41070,22
+41071,30
+41072,27
+41073,33
+41074,46
+41075,50
+41076,26
+41077,25
+41078,35
+41079,23
+41080,52
+41081,26
+41082,25
+41083,58
+41084,29
+41085,25
+41086,29
+41087,22
+41088,29
+41089,30
+41090,49
+41091,48
+41092,23
+41093,35
+41094,30
+41095,34
+41096,33
+41097,28
+41098,28
+41099,29
+41100,33
+41102,54
+41103,23
+41104,32
+41105,40
+41106,29
+41107,40
+41108,46
+41109,27
+41110,17
+41111,25
+41112,33
+41113,30
+41114,28
+41115,38
+41116,34
+41117,35
+41118,32
+41119,36
+41120,65
+41121,24
+41124,36
+41125,44
+41126,32
+41128,19
+41129,48
+41130,36
+41132,24
+41133,26
+41134,34
+41136,27
+41137,31
+41138,34
+41139,34
+41141,30
+41142,25
+41143,29
+41144,26
+41145,15
+41146,41
+41147,21
+41148,17
+41149,32
+41150,57
+41151,24
+41152,20
+41153,42
+41154,27
+41155,32
+41156,25
+41157,54
+41158,28
+41159,29
+41160,30
+41161,32
+41163,25
+41164,28
+41165,25
+41166,24
+41167,30
+41169,24
+41170,25
+41171,22
+41173,32
+41174,18
+41175,18
+41176,27
+41177,34
+41178,23
+41179,20
+41180,21
+41182,50
+41183,29
+41184,39
+41185,33
+41186,23
+41187,22
+41188,32
+41189,20
+41190,33
+41191,39
+41192,25
+41193,31
+41194,22
+41195,35
+41196,27
+41197,20
+41198,34
+41199,20
+41200,36
+41202,27
+41203,26
+41206,24
+41207,22
+41208,44
+41209,22
+41210,21
+41211,23
+41212,29
+41213,33
+41214,20
+41215,25
+41216,27
+41218,31
+41220,30
+41221,42
+41222,27
+41223,39
+41226,25
+41227,28
+41228,62
+41229,27
+41230,30
+41231,35
+41232,22
+41233,31
+41234,25
+41236,41
+41237,22
+41238,28
+41239,16
+41240,24
+41241,29
+41242,33
+41245,25
+41246,20
+41247,25
+41248,24
+41249,45
+41250,54
+41251,23
+41252,38
+41253,27
+41254,56
+41255,25
+41256,31
+41258,17
+41259,39
+41260,25
+41261,52
+41262,46
+41263,40
+41264,32
+41265,30
+41266,28
+41267,27
+41268,27
+41269,59
+41270,46
+41271,30
+41272,27
+41273,28
+41274,25
+41275,20
+41276,36
+41277,25
+41278,22
+41279,34
+41280,24
+41282,24
+41283,28
+41284,15
+41285,26
+41286,27
+41287,20
+41288,38
+41289,32
+41290,19
+41291,32
+41292,24
+41293,29
+41294,24
+41295,38
+41296,25
+41297,23
+41298,30
+41299,23
+41300,43
+41301,25
+41303,32
+41304,25
+41305,17
+41306,29
+41307,30
+41308,48
+41309,33
+41310,56
+41311,38
+41312,28
+41313,30
+41314,30
+41315,30
+41316,48
+41317,40
+41319,32
+41320,24
+41321,41
+41322,30
+41323,23
+41324,56
+41325,24
+41326,32
+41327,37
+41328,43
+41329,32
+41330,25
+41331,27
+41332,36
+41333,35
+41334,31
+41335,30
+41337,32
+41338,21
+41340,60
+41341,35
+41342,38
+41343,21
+41344,27
+41346,36
+41347,26
+41348,27
+41349,26
+41351,23
+41352,28
+41353,44
+41354,23
+41355,24
+41356,41
+41357,39
+41358,30
+41359,25
+41360,30
+41362,36
+41363,19
+41364,49
+41365,32
+41366,35
+41367,26
+41368,32
+41370,45
+41371,22
+41372,24
+41373,20
+41374,37
+41375,40
+41376,24
+41377,35
+41378,29
+41379,35
+41380,31
+41381,40
+41382,27
+41383,24
+41384,31
+41385,18
+41386,23
+41387,21
+41390,16
+41391,28
+41392,27
+41393,24
+41394,27
+41395,23
+41396,27
+41397,30
+41398,45
+41399,18
+41400,52
+41401,31
+41402,18
+41403,44
+41404,28
+41405,50
+41406,25
+41407,22
+41408,33
+41409,18
+41410,38
+41411,36
+41412,22
+41413,25
+41414,33
+41415,29
+41416,25
+41417,47
+41418,55
+41419,28
+41420,27
+41421,31
+41422,26
+41423,22
+41424,25
+41426,39
+41428,32
+41429,37
+41430,32
+41431,23
+41433,29
+41434,22
+41436,34
+41437,21
+41438,24
+41439,64
+41440,25
+41441,33
+41442,29
+41443,23
+41444,15
+41445,24
+41446,23
+41447,32
+41448,31
+41449,26
+41450,24
+41451,30
+41453,22
+41454,36
+41455,22
+41456,33
+41457,33
+41458,25
+41459,40
+41460,35
+41461,27
+41462,36
+41463,25
+41465,21
+41466,31
+41467,24
+41468,31
+41470,29
+41471,38
+41472,30
+41473,32
+41474,35
+41475,27
+41477,28
+41478,25
+41479,18
+41480,36
+41481,20
+41484,23
+41485,23
+41486,37
+41487,36
+41488,32
+41489,25
+41490,36
+41491,31
+41492,25
+41493,30
+41494,29
+41495,26
+41496,32
+41497,27
+41498,23
+41499,28
+41500,25
+41501,37
+41502,31
+41503,27
+41504,30
+41506,36
+41507,25
+41508,27
+41509,40
+41510,32
+41512,37
+41513,1
+41514,27
+41515,60
+41516,25
+41518,29
+41520,30
+41521,26
+41522,30
+41524,28
+41525,25
+41526,33
+41527,20
+41528,48
+41529,24
+41530,36
+41531,32
+41532,40
+41533,25
+41535,40
+41536,31
+41537,28
+41538,26
+41539,25
+41540,38
+41541,15
+41542,59
+41543,24
+41544,31
+41546,30
+41547,33
+41548,36
+41549,40
+41550,24
+41551,35
+41552,19
+41554,39
+41555,31
+41556,44
+41557,17
+41559,41
+41560,20
+41561,35
+41562,37
+41563,55
+41564,28
+41565,40
+41566,17
+41567,31
+41568,24
+41569,32
+41570,27
+41571,29
+41572,26
+41573,39
+41574,40
+41575,28
+41576,18
+41577,50
+41578,29
+41579,33
+41580,24
+41581,52
+41582,29
+41583,23
+41584,28
+41587,28
+41588,23
+41589,26
+41590,23
+41591,28
+41592,24
+41593,25
+41595,24
+41596,23
+41597,50
+41598,42
+41600,21
+41603,40
+41604,28
+41605,27
+41606,27
+41607,23
+41608,24
+41610,28
+41611,21
+41612,24
+41613,32
+41614,16
+41615,27
+41616,26
+41618,32
+41620,25
+41621,37
+41622,25
+41623,33
+41624,29
+41625,24
+41626,39
+41628,50
+41629,21
+41630,25
+41631,54
+41632,27
+41633,26
+41634,27
+41635,34
+41636,22
+41637,18
+41638,22
+41639,20
+41640,32
+41641,43
+41642,26
+41643,34
+41644,18
+41645,47
+41646,52
+41647,28
+41648,27
+41650,40
+41651,21
+41652,26
+41653,30
+41654,37
+41655,31
+41657,34
+41658,31
+41659,31
+41660,22
+41661,21
+41662,43
+41663,28
+41664,28
+41665,21
+41666,50
+41667,22
+41668,26
+41669,21
+41670,12
+41671,33
+41672,39
+41675,24
+41676,27
+41677,39
+41678,28
+41679,28
+41680,36
+41681,42
+41683,31
+41684,25
+41685,28
+41686,25
+41687,24
+41688,34
+41689,36
+41690,31
+41691,25
+41692,43
+41693,34
+41694,29
+41695,27
+41696,28
+41698,29
+41699,19
+41700,37
+41701,36
+41702,39
+41703,31
+41704,39
+41705,28
+41706,30
+41708,24
+41709,28
+41710,31
+41711,36
+41712,49
+41713,25
+41714,30
+41715,35
+41716,31
+41717,19
+41718,22
+41719,36
+41721,30
+41722,22
+41723,30
+41725,33
+41726,25
+41727,23
+41728,34
+41729,29
+41730,19
+41731,31
+41732,29
+41733,30
+41734,28
+41735,18
+41736,33
+41737,32
+41738,28
+41739,19
+41740,44
+41741,12
+41742,19
+41743,26
+41744,28
+41745,28
+41748,30
+41750,29
+41751,16
+41752,37
+41753,48
+41754,30
+41755,30
+41756,25
+41757,33
+41759,17
+41760,15
+41761,21
+41762,38
+41763,25
+41764,22
+41765,39
+41766,24
+41768,24
+41769,44
+41770,24
+41771,32
+41772,38
+41773,25
+41774,29
+41775,25
+41776,37
+41777,20
+41778,28
+41779,18
+41780,18
+41781,38
+41782,27
+41785,21
+41786,39
+41787,20
+41788,22
+41789,29
+41792,22
+41793,44
+41794,34
+41795,29
+41796,25
+41797,28
+41798,29
+41799,26
+41800,25
+41802,37
+41803,23
+41804,23
+41805,22
+41806,19
+41807,38
+41808,24
+41810,28
+41811,58
+41812,33
+41813,30
+41814,32
+41815,29
+41816,29
+41818,23
+41819,34
+41820,36
+41821,24
+41822,26
+41823,26
+41824,16
+41825,37
+41826,43
+41827,40
+41828,46
+41829,34
+41830,40
+41831,19
+41833,32
+41834,30
+41835,30
+41836,29
+41837,35
+41838,27
+41839,29
+41840,30
+41841,19
+41842,23
+41843,27
+41844,27
+41845,37
+41846,40
+41847,19
+41848,20
+41849,38
+41850,73
+41851,29
+41852,31
+41853,45
+41854,20
+41855,25
+41856,32
+41857,34
+41858,35
+41859,32
+41860,28
+41861,44
+41862,53
+41863,26
+41864,32
+41865,21
+41869,33
+41870,33
+41871,29
+41872,21
+41873,30
+41874,53
+41875,32
+41876,29
+41877,21
+41878,45
+41882,26
+41883,22
+41885,24
+41886,34
+41888,31
+41889,25
+41890,27
+41892,16
+41893,26
+41894,21
+41895,28
+41897,31
+41898,27
+41899,29
+41900,29
+41902,40
+41903,35
+41904,34
+41906,43
+41907,34
+41908,45
+41909,22
+41910,17
+41911,27
+41912,41
+41913,23
+41915,34
+41916,34
+41917,29
+41918,56
+41920,31
+41921,20
+41922,24
+41923,21
+41924,23
+41925,29
+41926,32
+41927,43
+41930,25
+41931,17
+41932,36
+41933,45
+41934,23
+41935,35
+41937,45
+41939,24
+41941,26
+41942,55
+41944,35
+41945,37
+41946,26
+41947,31
+41948,29
+41949,22
+41950,37
+41951,55
+41952,41
+41953,33
+41954,27
+41955,18
+41956,30
+41957,36
+41958,27
+41959,26
+41960,28
+41961,22
+41962,30
+41963,25
+41964,19
+41965,24
+41966,21
+41967,27
+41968,28
+41969,27
+41970,23
+41971,39
+41972,24
+41973,30
+41975,24
+41977,21
+41978,29
+41979,41
+41980,30
+41981,21
+41982,55
+41983,21
+41984,34
+41985,27
+41986,20
+41987,38
+41988,23
+41989,22
+41990,43
+41991,21
+41992,19
+41993,45
+41994,18
+41995,26
+41996,18
+41997,36
+41998,29
+41999,24
+42000,29
+42001,28
+42002,21
+42003,38
+42004,33
+42005,38
+42006,12
+42007,28
+42008,30
+42009,25
+42010,27
+42011,37
+42013,22
+42014,26
+42015,41
+42016,27
+42017,48
+42020,42
+42021,38
+42022,23
+42023,37
+42024,15
+42025,24
+42027,38
+42028,26
+42029,26
+42030,48
+42032,41
+42033,34
+42034,22
+42035,28
+42036,74
+42037,40
+42038,30
+42040,28
+42041,44
+42042,31
+42043,19
+42044,21
+42046,20
+42047,23
+42048,22
+42049,24
+42051,39
+42052,31
+42053,30
+42055,24
+42056,25
+42057,24
+42058,31
+42059,32
+42060,49
+42061,36
+42062,21
+42063,16
+42064,20
+42065,29
+42066,20
+42067,33
+42068,27
+42069,37
+42071,37
+42072,29
+42073,32
+42074,25
+42075,19
+42077,29
+42078,50
+42079,33
+42080,24
+42081,29
+42082,25
+42083,29
+42085,24
+42086,57
+42087,33
+42088,64
+42089,23
+42090,35
+42091,47
+42092,23
+42093,29
+42094,26
+42095,29
+42096,36
+42097,56
+42098,30
+42099,28
+42100,52
+42101,23
+42103,25
+42104,38
+42105,28
+42106,29
+42107,27
+42108,29
+42109,40
+42110,25
+42111,35
+42112,20
+42113,57
+42114,26
+42115,23
+42116,30
+42117,18
+42118,33
+42119,31
+42121,37
+42122,27
+42123,29
+42124,44
+42125,48
+42127,42
+42128,25
+42129,27
+42130,16
+42131,25
+42133,26
+42134,34
+42135,31
+42136,33
+42137,28
+42139,33
+42141,37
+42142,31
+42143,27
+42144,24
+42145,32
+42146,30
+42147,32
+42148,23
+42149,43
+42150,33
+42151,26
+42152,50
+42153,34
+42154,27
+42155,27
+42156,45
+42157,32
+42158,22
+42159,28
+42161,32
+42162,37
+42164,28
+42165,47
+42166,23
+42167,27
+42168,25
+42169,35
+42170,15
+42172,62
+42173,25
+42174,39
+42176,33
+42177,34
+42178,35
+42179,35
+42180,21
+42182,31
+42183,26
+42184,49
+42185,24
+42187,35
+42188,20
+42189,20
+42190,34
+42193,30
+42194,32
+42195,47
+42196,29
+42197,39
+42198,30
+42199,22
+42200,38
+42202,33
+42203,25
+42204,51
+42205,27
+42206,41
+42207,25
+42208,27
+42209,48
+42210,16
+42211,40
+42212,28
+42214,24
+42215,19
+42216,22
+42217,21
+42218,21
+42219,15
+42220,23
+42221,23
+42222,25
+42224,21
+42225,23
+42226,40
+42227,25
+42228,44
+42229,43
+42230,24
+42231,27
+42232,29
+42233,39
+42234,33
+42235,21
+42236,32
+42237,26
+42238,30
+42239,30
+42241,25
+42242,34
+42243,35
+42245,34
+42246,44
+42247,28
+42248,36
+42249,23
+42250,22
+42251,22
+42252,22
+42253,34
+42254,40
+42255,25
+42256,29
+42257,38
+42258,25
+42259,33
+42260,30
+42261,22
+42262,22
+42263,38
+42264,28
+42265,37
+42266,18
+42267,30
+42268,49
+42269,33
+42270,23
+42271,32
+42272,22
+42273,17
+42274,28
+42276,36
+42277,23
+42278,26
+42279,24
+42280,25
+42281,51
+42282,33
+42283,42
+42284,28
+42285,25
+42286,37
+42287,57
+42288,40
+42289,38
+42290,22
+42291,16
+42292,33
+42294,35
+42295,24
+42296,19
+42297,19
+42298,28
+42300,22
+42301,27
+42302,43
+42303,30
+42304,40
+42305,40
+42306,26
+42307,62
+42308,21
+42309,42
+42310,28
+42311,38
+42312,37
+42313,16
+42314,25
+42315,39
+42316,19
+42317,29
+42318,21
+42319,38
+42320,44
+42321,48
+42322,31
+42323,30
+42325,29
+42326,24
+42327,24
+42328,25
+42329,37
+42330,32
+42331,30
+42332,22
+42333,45
+42334,28
+42335,22
+42336,44
+42338,20
+42339,31
+42340,25
+42341,26
+42342,28
+42343,31
+42344,26
+42345,34
+42346,36
+42347,26
+42348,22
+42349,29
+42350,36
+42351,25
+42352,50
+42353,37
+42354,39
+42355,29
+42356,20
+42357,26
+42358,32
+42360,29
+42361,27
+42362,38
+42363,27
+42364,68
+42365,29
+42366,32
+42367,50
+42368,59
+42369,22
+42370,59
+42372,23
+42373,30
+42374,30
+42375,29
+42376,41
+42377,34
+42378,23
+42379,45
+42380,26
+42381,30
+42382,22
+42383,32
+42384,35
+42385,50
+42386,47
+42387,29
+42388,29
+42389,24
+42390,22
+42391,30
+42392,34
+42393,21
+42394,35
+42395,21
+42396,42
+42397,26
+42398,52
+42399,47
+42400,18
+42401,28
+42402,28
+42403,25
+42404,52
+42405,38
+42406,47
+42407,20
+42408,22
+42409,29
+42410,27
+42411,24
+42412,35
+42413,23
+42414,24
+42415,30
+42416,13
+42417,35
+42418,31
+42419,28
+42420,28
+42421,16
+42422,29
+42423,32
+42424,26
+42425,27
+42426,25
+42427,26
+42428,40
+42429,23
+42430,50
+42431,44
+42432,30
+42433,28
+42434,34
+42435,28
+42437,23
+42438,32
+42439,38
+42440,39
+42441,62
+42442,33
+42443,25
+42444,28
+42445,37
+42446,23
+42447,29
+42448,29
+42450,28
+42451,29
+42452,16
+42453,19
+42454,40
+42455,25
+42456,26
+42457,32
+42458,16
+42459,36
+42461,25
+42462,27
+42463,22
+42464,25
+42465,27
+42466,40
+42467,25
+42468,38
+42469,23
+42470,25
+42471,41
+42472,57
+42473,36
+42474,35
+42475,39
+42476,20
+42477,19
+42478,14
+42479,43
+42480,22
+42481,40
+42482,25
+42483,26
+42484,32
+42485,35
+42486,23
+42487,37
+42488,28
+42491,29
+42492,45
+42493,25
+42494,21
+42495,24
+42497,30
+42498,23
+42499,26
+42500,24
+42501,23
+42502,43
+42503,30
+42504,54
+42505,34
+42506,32
+42507,49
+42508,30
+42509,30
+42512,36
+42514,28
+42515,19
+42516,36
+42518,28
+42519,20
+42520,24
+42521,29
+42522,46
+42524,28
+42525,32
+42526,45
+42527,28
+42528,22
+42529,32
+42530,21
+42531,27
+42532,34
+42534,26
+42536,28
+42537,37
+42538,50
+42539,27
+42541,36
+42542,59
+42543,31
+42544,28
+42545,27
+42546,29
+42547,50
+42548,28
+42549,22
+42550,24
+42551,25
+42552,23
+42553,21
+42554,24
+42555,45
+42556,23
+42557,35
+42558,42
+42559,60
+42560,29
+42561,15
+42562,43
+42563,22
+42564,21
+42565,46
+42566,25
+42567,31
+42568,22
+42569,31
+42570,32
+42571,22
+42572,32
+42574,33
+42575,51
+42576,26
+42577,66
+42578,26
+42579,23
+42580,31
+42581,19
+42582,36
+42583,28
+42584,27
+42585,30
+42586,42
+42587,23
+42588,25
+42589,62
+42590,36
+42591,34
+42592,22
+42593,22
+42594,33
+42595,46
+42596,34
+42597,24
+42598,28
+42600,22
+42601,22
+42603,25
+42604,37
+42605,57
+42606,35
+42607,23
+42608,49
+42609,21
+42610,31
+42612,37
+42613,43
+42614,26
+42615,23
+42616,44
+42617,35
+42618,50
+42619,20
+42621,14
+42622,25
+42623,25
+42625,26
+42626,22
+42627,34
+42628,33
+42629,22
+42630,36
+42631,22
+42632,39
+42633,21
+42634,24
+42635,25
+42636,50
+42639,24
+42640,25
+42641,42
+42642,20
+42645,51
+42646,27
+42648,25
+42650,54
+42651,50
+42652,39
+42653,29
+42654,35
+42655,23
+42656,26
+42657,24
+42658,34
+42659,34
+42661,21
+42662,25
+42663,46
+42664,28
+42665,33
+42666,31
+42667,27
+42668,25
+42669,30
+42670,35
+42671,33
+42672,24
+42673,23
+42674,21
+42675,37
+42676,35
+42677,24
+42679,23
+42681,29
+42682,29
+42683,35
+42684,24
+42686,26
+42687,22
+42688,32
+42689,27
+42690,33
+42691,21
+42692,28
+42693,38
+42694,24
+42695,35
+42696,29
+42697,40
+42698,36
+42699,20
+42700,36
+42701,44
+42702,25
+42703,22
+42704,30
+42705,24
+42706,21
+42707,26
+42708,37
+42709,18
+42710,28
+42711,21
+42712,30
+42713,26
+42714,34
+42715,27
+42716,24
+42717,21
+42718,50
+42719,24
+42720,30
+42721,29
+42722,45
+42723,42
+42724,24
+42726,29
+42727,26
+42728,31
+42729,25
+42730,36
+42732,40
+42733,41
+42734,20
+42735,32
+42736,29
+42737,26
+42738,39
+42739,27
+42740,20
+42741,52
+42743,37
+42744,24
+42746,40
+42747,36
+42748,27
+42749,23
+42750,24
+42751,31
+42752,22
+42753,31
+42754,38
+42755,32
+42756,27
+42757,29
+42758,15
+42759,26
+42760,24
+42761,23
+42762,26
+42763,30
+42764,43
+42765,24
+42766,45
+42767,39
+42768,33
+42769,24
+42770,20
+42771,35
+42773,30
+42774,37
+42775,32
+42776,22
+42777,54
+42778,26
+42780,38
+42781,24
+42783,28
+42784,29
+42785,21
+42786,27
+42787,99
+42788,38
+42789,38
+42790,34
+42791,28
+42792,26
+42793,32
+42794,33
+42795,32
+42797,31
+42798,26
+42799,56
+42800,27
+42801,22
+42802,47
+42803,25
+42804,34
+42805,23
+42806,22
+42807,26
+42808,23
+42809,23
+42810,18
+42813,26
+42814,29
+42815,18
+42816,44
+42818,39
+42819,20
+42820,39
+42821,26
+42822,34
+42823,29
+42824,62
+42825,23
+42827,37
+42828,23
+42829,24
+42830,29
+42831,23
+42832,23
+42833,23
+42834,27
+42835,43
+42836,27
+42837,33
+42838,26
+42839,22
+42840,31
+42842,21
+42843,27
+42844,36
+42845,30
+42846,32
+42847,17
+42848,19
+42849,28
+42850,51
+42851,38
+42852,22
+42853,35
+42854,52
+42856,35
+42857,19
+42858,59
+42859,36
+42860,22
+42861,23
+42862,29
+42863,29
+42864,50
+42865,18
+42866,43
+42867,21
+42869,34
+42870,25
+42871,17
+42872,17
+42873,34
+42875,22
+42877,28
+42878,23
+42879,32
+42880,50
+42881,41
+42882,23
+42883,17
+42884,26
+42886,27
+42887,22
+42888,23
+42889,36
+42890,28
+42891,27
+42892,31
+42893,28
+42894,24
+42895,30
+42896,32
+42898,32
+42899,25
+42900,22
+42901,47
+42902,46
+42903,23
+42904,40
+42905,66
+42906,29
+42908,23
+42909,32
+42910,27
+42912,26
+42913,24
+42914,34
+42915,42
+42916,30
+42917,61
+42918,38
+42919,38
+42920,40
+42921,24
+42922,22
+42923,32
+42925,23
+42926,23
+42927,32
+42928,36
+42929,34
+42930,27
+42932,24
+42933,20
+42934,45
+42936,19
+42937,33
+42938,25
+42939,32
+42940,23
+42942,22
+42943,25
+42944,27
+42945,36
+42946,42
+42947,29
+42948,21
+42949,29
+42950,28
+42951,11
+42952,37
+42953,43
+42954,35
+42955,28
+42956,34
+42957,42
+42958,36
+42959,26
+42960,46
+42961,20
+42962,33
+42963,30
+42964,42
+42965,26
+42966,25
+42967,30
+42968,35
+42969,28
+42970,17
+42971,28
+42972,33
+42973,21
+42974,27
+42975,32
+42977,34
+42978,26
+42980,23
+42981,35
+42982,26
+42983,27
+42984,27
+42985,25
+42986,23
+42987,22
+42988,40
+42989,29
+42990,22
+42992,58
+42993,14
+42994,32
+42995,26
+42996,37
+42997,28
+42998,25
+42999,35
+43000,23
+43001,36
+43002,16
+43003,25
+43004,24
+43005,45
+43006,34
+43007,27
+43008,20
+43009,15
+43010,30
+43011,33
+43012,28
+43013,27
+43014,31
+43015,28
+43016,52
+43017,35
+43018,28
+43019,48
+43020,20
+43021,27
+43022,37
+43023,25
+43024,30
+43025,69
+43026,21
+43027,36
+43029,25
+43030,35
+43031,32
+43032,20
+43033,33
+43034,45
+43035,29
+43036,35
+43037,30
+43038,26
+43039,19
+43040,49
+43041,39
+43043,62
+43044,36
+43046,21
+43047,32
+43048,28
+43049,29
+43050,24
+43051,22
+43052,22
+43053,18
+43054,41
+43055,19
+43056,26
+43057,44
+43058,27
+43059,43
+43060,30
+43061,23
+43063,28
+43064,28
+43066,36
+43067,34
+43068,46
+43069,51
+43070,24
+43071,37
+43072,25
+43073,19
+43074,24
+43075,35
+43076,34
+43077,32
+43078,27
+43079,35
+43080,28
+43081,38
+43082,23
+43083,21
+43085,25
+43086,24
+43087,36
+43088,27
+43089,37
+43090,32
+43091,20
+43092,48
+43093,47
+43094,25
+43095,18
+43097,42
+43098,24
+43099,41
+43100,31
+43101,43
+43102,33
+43103,20
+43104,26
+43105,29
+43107,33
+43108,63
+43109,41
+43110,30
+43111,23
+43112,45
+43113,29
+43114,29
+43115,47
+43116,29
+43117,23
+43120,20
+43122,29
+43123,24
+43125,37
+43126,31
+43127,38
+43129,25
+43130,21
+43131,33
+43133,42
+43134,32
+43135,22
+43136,29
+43138,33
+43139,28
+43140,19
+43142,44
+43143,28
+43144,18
+43145,30
+43146,28
+43147,51
+43148,29
+43149,51
+43150,20
+43151,21
+43152,44
+43153,28
+43155,21
+43156,26
+43157,37
+43158,32
+43159,24
+43160,20
+43161,30
+43162,29
+43163,20
+43164,32
+43165,33
+43166,31
+43168,35
+43169,30
+43170,43
+43172,19
+43173,40
+43174,35
+43175,25
+43177,24
+43178,24
+43179,40
+43181,36
+43182,41
+43183,21
+43184,49
+43185,17
+43186,36
+43187,33
+43188,27
+43190,36
+43191,29
+43192,25
+43193,31
+43194,22
+43195,21
+43196,30
+43197,33
+43198,34
+43199,49
+43200,35
+43203,24
+43204,40
+43205,27
+43206,37
+43207,62
+43208,23
+43210,23
+43211,30
+43212,29
+43213,25
+43214,29
+43215,29
+43216,25
+43217,24
+43218,26
+43219,29
+43220,27
+43221,27
+43222,33
+43223,31
+43224,29
+43226,35
+43227,32
+43228,30
+43229,31
+43230,39
+43233,27
+43234,37
+43235,29
+43237,41
+43238,22
+43239,25
+43240,39
+43242,26
+43243,24
+43244,31
+43245,26
+43246,29
+43247,16
+43248,25
+43249,27
+43250,33
+43251,28
+43252,39
+43253,34
+43254,33
+43255,28
+43256,29
+43257,22
+43261,25
+43263,37
+43264,30
+43265,32
+43266,25
+43267,38
+43268,35
+43269,42
+43270,33
+43271,79
+43272,33
+43274,33
+43275,70
+43276,25
+43277,24
+43278,26
+43279,29
+43282,43
+43283,47
+43284,43
+43285,32
+43286,23
+43287,39
+43289,31
+43290,35
+43291,32
+43292,14
+43293,18
+43294,29
+43295,52
+43296,16
+43297,58
+43298,53
+43300,30
+43301,54
+43302,36
+43304,22
+43305,17
+43306,26
+43308,25
+43309,25
+43310,39
+43311,25
+43312,24
+43314,28
+43315,16
+43316,32
+43317,35
+43318,21
+43319,34
+43320,24
+43321,24
+43322,27
+43323,25
+43324,35
+43325,38
+43326,37
+43328,32
+43329,31
+43330,39
+43331,41
+43332,17
+43333,24
+43334,37
+43335,38
+43336,33
+43337,28
+43338,43
+43340,29
+43341,29
+43342,20
+43343,31
+43344,19
+43345,22
+43346,24
+43347,23
+43348,22
+43350,24
+43352,21
+43353,35
+43354,23
+43355,33
+43356,28
+43357,22
+43358,28
+43359,24
+43360,31
+43361,31
+43363,44
+43364,26
+43365,32
+43366,31
+43367,27
+43368,22
+43371,22
+43372,16
+43373,20
+43376,24
+43377,40
+43378,16
+43379,26
+43380,19
+43382,35
+43383,42
+43384,35
+43385,25
+43386,25
+43387,37
+43388,42
+43390,28
+43391,23
+43392,25
+43393,62
+43394,25
+43395,23
+43396,40
+43397,23
+43398,30
+43399,34
+43401,52
+43402,35
+43403,26
+43404,24
+43405,25
+43406,28
+43407,20
+43408,23
+43410,24
+43411,22
+43413,33
+43414,38
+43416,35
+43417,38
+43418,33
+43419,19
+43420,21
+43421,32
+43422,31
+43423,39
+43424,29
+43425,34
+43426,24
+43427,47
+43428,19
+43429,25
+43430,38
+43431,29
+43432,38
+43433,24
+43434,24
+43435,31
+43436,34
+43437,57
+43438,30
+43440,44
+43441,28
+43442,18
+43443,30
+43444,27
+43445,26
+43446,22
+43447,32
+43448,36
+43449,25
+43450,42
+43451,25
+43452,48
+43453,28
+43454,34
+43455,22
+43456,41
+43457,21
+43458,51
+43459,38
+43460,52
+43461,34
+43462,29
+43463,25
+43464,28
+43467,42
+43468,26
+43469,33
+43471,25
+43472,31
+43473,41
+43474,26
+43475,17
+43476,29
+43478,25
+43479,26
+43480,19
+43481,48
+43482,38
+43483,27
+43484,20
+43485,40
+43486,25
+43487,27
+43488,20
+43489,35
+43490,39
+43491,25
+43492,28
+43494,27
+43495,21
+43496,49
+43497,35
+43498,27
+43499,26
+43500,24
+43501,28
+43502,48
+43503,27
+43504,47
+43505,20
+43506,38
+43507,32
+43508,21
+43509,26
+43510,31
+43511,26
+43512,36
+43513,19
+43514,28
+43517,23
+43518,17
+43519,31
+43520,27
+43521,26
+43522,24
+43523,31
+43524,27
+43525,25
+43526,23
+43527,25
+43528,40
+43530,53
+43531,39
+43532,27
+43533,36
+43534,27
+43535,26
+43536,29
+43537,21
+43538,45
+43539,50
+43540,25
+43541,49
+43543,45
+43544,19
+43545,25
+43547,20
+43548,34
+43549,36
+43550,33
+43551,30
+43552,24
+43553,46
+43554,19
+43555,34
+43556,48
+43557,50
+43558,15
+43559,22
+43560,55
+43561,31
+43562,21
+43563,32
+43564,24
+43565,29
+43566,31
+43567,27
+43568,21
+43569,21
+43570,28
+43571,27
+43572,31
+43573,23
+43574,26
+43575,30
+43576,29
+43577,53
+43578,44
+43579,33
+43581,11
+43582,43
+43583,25
+43584,20
+43585,32
+43586,33
+43587,28
+43588,33
+43589,30
+43590,25
+43591,21
+43592,28
+43593,33
+43594,35
+43595,38
+43596,27
+43597,27
+43598,26
+43599,22
+43600,16
+43601,35
+43602,27
+43603,42
+43604,20
+43605,42
+43606,28
+43607,31
+43609,24
+43611,22
+43612,21
+43613,33
+43614,50
+43615,25
+43616,29
+43618,35
+43619,23
+43620,29
+43622,46
+43623,27
+43624,33
+43625,40
+43626,23
+43628,22
+43629,32
+43630,22
+43631,42
+43632,36
+43633,26
+43634,35
+43635,23
+43636,23
+43637,18
+43638,28
+43639,30
+43640,27
+43641,29
+43642,31
+43643,23
+43644,29
+43646,27
+43647,25
+43648,35
+43649,23
+43651,19
+43652,34
+43653,29
+43654,21
+43655,27
+43656,33
+43658,28
+43659,39
+43661,35
+43662,21
+43664,30
+43665,23
+43666,18
+43668,56
+43669,39
+43670,30
+43671,25
+43672,25
+43673,28
+43674,62
+43675,23
+43676,47
+43677,24
+43679,25
+43680,41
+43681,27
+43682,36
+43683,26
+43684,35
+43685,21
+43686,42
+43687,28
+43688,26
+43689,31
+43690,29
+43691,26
+43692,27
+43693,29
+43695,23
+43696,36
+43697,31
+43698,30
+43699,29
+43700,25
+43701,39
+43702,24
+43703,26
+43704,55
+43705,39
+43706,22
+43709,21
+43710,39
+43711,42
+43712,36
+43713,48
+43714,29
+43715,30
+43717,21
+43718,23
+43719,34
+43720,23
+43721,29
+43722,42
+43723,30
+43725,26
+43726,38
+43727,27
+43729,25
+43730,33
+43731,44
+43732,30
+43733,26
+43734,29
+43735,26
+43736,29
+43737,20
+43738,25
+43739,47
+43740,61
+43741,40
+43742,50
+43743,35
+43744,49
+43745,27
+43746,23
+43747,30
+43748,24
+43750,32
+43751,40
+43752,24
+43753,26
+43754,35
+43755,30
+43756,30
+43757,24
+43758,28
+43759,28
+43761,40
+43762,38
+43763,27
+43764,17
+43765,32
+43766,38
+43767,21
+43768,32
+43769,33
+43770,24
+43771,24
+43772,18
+43773,15
+43774,20
+43775,30
+43776,35
+43777,40
+43778,44
+43779,23
+43780,28
+43781,29
+43782,24
+43783,59
+43785,22
+43786,29
+43788,30
+43789,18
+43790,33
+43791,23
+43792,20
+43793,29
+43794,24
+43795,29
+43796,29
+43797,31
+43798,30
+43799,29
+43800,39
+43801,20
+43802,22
+43803,29
+43804,17
+43805,26
+43806,57
+43807,38
+43808,29
+43810,28
+43811,21
+43812,21
+43813,57
+43814,29
+43815,23
+43816,34
+43817,28
+43819,23
+43820,25
+43821,58
+43822,26
+43824,29
+43826,23
+43827,23
+43828,33
+43830,50
+43832,35
+43833,28
+43834,32
+43835,31
+43836,48
+43837,22
+43838,31
+43839,28
+43840,56
+43841,33
+43844,34
+43845,23
+43846,28
+43847,35
+43848,22
+43849,42
+43850,27
+43851,24
+43852,16
+43853,41
+43854,25
+43855,30
+43856,15
+43857,27
+43858,36
+43859,33
+43860,37
+43861,38
+43862,27
+43863,33
+43864,25
+43865,25
+43866,30
+43867,29
+43869,23
+43871,26
+43872,26
+43873,27
+43874,25
+43875,29
+43876,32
+43878,29
+43879,31
+43880,24
+43881,26
+43882,32
+43883,31
+43884,35
+43885,35
+43886,31
+43888,21
+43889,28
+43890,27
+43891,28
+43892,25
+43893,24
+43894,44
+43895,34
+43896,25
+43898,30
+43899,60
+43900,40
+43901,36
+43902,21
+43903,53
+43904,21
+43905,25
+43906,23
+43907,19
+43908,37
+43909,35
+43910,25
+43911,27
+43912,26
+43913,67
+43914,31
+43915,21
+43917,27
+43918,27
+43919,23
+43920,27
+43921,26
+43922,28
+43923,32
+43924,33
+43925,28
+43926,41
+43927,32
+43928,28
+43929,31
+43930,27
+43931,18
+43932,57
+43933,30
+43934,35
+43935,28
+43936,31
+43937,18
+43938,20
+43939,35
+43940,34
+43941,25
+43942,36
+43943,28
+43944,24
+43946,28
+43947,30
+43948,28
+43949,43
+43950,19
+43952,37
+43953,38
+43954,30
+43955,25
+43956,24
+43957,24
+43959,24
+43960,32
+43961,21
+43963,28
+43964,31
+43966,28
+43967,43
+43968,35
+43969,26
+43970,34
+43971,22
+43972,18
+43973,38
+43974,29
+43975,25
+43976,19
+43978,34
+43979,27
+43980,29
+43981,36
+43982,39
+43983,32
+43984,26
+43985,30
+43986,24
+43987,24
+43988,32
+43990,41
+43991,38
+43993,33
+43994,21
+43995,21
+43997,41
+43998,37
+44000,29
+44001,31
+44002,45
+44004,46
+44005,24
+44006,35
+44007,33
+44008,33
+44009,27
+44010,47
+44011,40
+44012,37
+44013,27
+44014,33
+44015,25
+44016,33
+44017,34
+44018,25
+44019,22
+44020,35
+44021,30
+44022,21
+44023,20
+44024,40
+44025,26
+44026,27
+44027,40
+44028,25
+44029,22
+44030,26
+44031,25
+44032,17
+44034,26
+44035,27
+44036,32
+44037,27
+44039,24
+44041,25
+44042,20
+44043,15
+44044,33
+44046,32
+44047,17
+44048,35
+44049,26
+44050,28
+44051,17
+44053,41
+44054,20
+44055,34
+44056,25
+44057,33
+44058,23
+44059,19
+44061,27
+44062,29
+44063,21
+44064,35
+44065,37
+44066,34
+44067,34
+44068,21
+44070,27
+44071,33
+44072,24
+44073,35
+44074,32
+44075,30
+44076,29
+44077,29
+44078,29
+44080,33
+44081,24
+44082,26
+44083,21
+44084,33
+44085,28
+44086,41
+44087,29
+44088,16
+44090,42
+44091,29
+44092,19
+44093,23
+44094,33
+44095,35
+44097,24
+44098,22
+44099,22
+44100,27
+44101,26
+44102,41
+44103,30
+44104,28
+44105,62
+44106,18
+44108,44
+44109,33
+44110,25
+44111,26
+44112,35
+44114,32
+44115,30
+44116,54
+44117,25
+44118,26
+44119,24
+44120,26
+44121,23
+44122,26
+44124,31
+44125,34
+44126,32
+44127,26
+44128,28
+44129,23
+44130,42
+44131,33
+44132,35
+44133,35
+44135,30
+44136,36
+44137,21
+44138,16
+44139,35
+44141,19
+44142,99
+44143,23
+44144,36
+44145,34
+44146,41
+44147,27
+44148,27
+44149,24
+44150,41
+44151,34
+44152,38
+44153,22
+44154,28
+44155,39
+44156,41
+44157,20
+44158,23
+44160,20
+44161,38
+44162,33
+44163,53
+44165,29
+44166,23
+44167,24
+44169,26
+44170,20
+44171,30
+44172,30
+44173,33
+44174,39
+44175,36
+44176,30
+44177,31
+44179,22
+44180,29
+44181,26
+44182,24
+44183,27
+44184,29
+44185,26
+44186,27
+44187,42
+44188,26
+44189,30
+44190,26
+44191,19
+44192,20
+44194,39
+44195,41
+44197,49
+44198,25
+44199,28
+44200,26
+44202,35
+44203,37
+44204,45
+44205,44
+44208,24
+44209,34
+44210,14
+44211,32
+44212,28
+44213,29
+44214,27
+44215,41
+44216,33
+44217,22
+44218,15
+44219,29
+44220,35
+44221,23
+44222,26
+44223,22
+44224,44
+44225,24
+44226,36
+44227,60
+44228,23
+44229,18
+44230,42
+44231,39
+44232,36
+44233,21
+44234,24
+44235,30
+44236,27
+44237,21
+44238,16
+44239,50
+44240,41
+44241,23
+44244,36
+44245,21
+44246,28
+44247,22
+44248,45
+44249,24
+44251,29
+44252,25
+44253,27
+44254,28
+44255,27
+44256,23
+44257,30
+44258,34
+44259,24
+44260,36
+44261,30
+44262,28
+44263,24
+44265,22
+44266,18
+44267,38
+44269,24
+44270,49
+44271,30
+44272,29
+44274,37
+44275,25
+44276,20
+44278,43
+44279,33
+44280,23
+44281,29
+44283,27
+44284,32
+44285,27
+44286,27
+44287,19
+44288,22
+44289,17
+44290,27
+44291,25
+44292,42
+44293,32
+44294,30
+44295,30
+44296,32
+44297,18
+44298,30
+44300,26
+44301,33
+44302,25
+44304,24
+44306,23
+44307,37
+44308,39
+44309,23
+44310,38
+44312,24
+44313,28
+44314,26
+44315,30
+44316,32
+44317,29
+44318,27
+44319,29
+44320,22
+44321,41
+44322,20
+44323,28
+44325,31
+44326,17
+44328,26
+44329,46
+44330,22
+44331,61
+44332,33
+44333,25
+44334,39
+44335,26
+44337,19
+44338,31
+44339,19
+44340,21
+44341,41
+44342,32
+44343,37
+44344,25
+44345,29
+44346,30
+44347,25
+44348,34
+44349,29
+44350,34
+44351,28
+44352,24
+44353,22
+44354,32
+44355,22
+44356,31
+44357,37
+44358,25
+44359,34
+44362,28
+44363,30
+44366,21
+44367,27
+44368,25
+44369,29
+44370,22
+44371,32
+44372,45
+44373,40
+44374,20
+44375,22
+44376,33
+44377,35
+44378,35
+44379,38
+44380,48
+44381,39
+44382,26
+44383,37
+44384,48
+44385,32
+44386,32
+44387,23
+44388,14
+44389,28
+44390,14
+44391,23
+44392,29
+44393,46
+44394,26
+44395,25
+44396,30
+44397,38
+44398,33
+44399,19
+44400,31
+44401,26
+44402,22
+44403,25
+44404,19
+44405,27
+44406,39
+44407,27
+44408,30
+44409,35
+44410,31
+44411,25
+44412,45
+44413,24
+44414,36
+44415,37
+44417,23
+44418,25
+44419,27
+44420,38
+44422,31
+44423,25
+44424,47
+44425,19
+44426,57
+44428,18
+44429,28
+44430,28
+44431,51
+44432,39
+44433,34
+44434,32
+44435,25
+44436,23
+44437,32
+44438,22
+44439,35
+44440,22
+44441,36
+44442,38
+44443,23
+44444,39
+44446,25
+44448,56
+44449,34
+44451,24
+44452,43
+44455,20
+44456,53
+44457,23
+44458,28
+44459,29
+44460,47
+44461,42
+44462,25
+44463,32
+44464,25
+44465,37
+44466,20
+44467,16
+44468,29
+44469,38
+44470,24
+44471,38
+44472,23
+44473,38
+44474,37
+44475,19
+44476,23
+44477,31
+44479,25
+44480,46
+44481,31
+44482,24
+44483,21
+44485,29
+44487,25
+44488,78
+44489,49
+44490,26
+44491,23
+44492,35
+44493,56
+44494,23
+44495,22
+44496,30
+44497,32
+44498,40
+44499,26
+44500,26
+44501,34
+44502,27
+44503,37
+44504,26
+44505,27
+44506,22
+44507,20
+44508,27
+44509,32
+44510,26
+44511,24
+44512,16
+44513,32
+44514,30
+44515,27
+44516,28
+44517,35
+44518,27
+44519,24
+44520,26
+44521,45
+44522,36
+44524,36
+44525,40
+44526,32
+44527,27
+44528,25
+44529,21
+44530,25
+44531,41
+44533,30
+44534,29
+44535,30
+44536,38
+44537,26
+44538,48
+44539,29
+44540,25
+44541,31
+44542,22
+44543,22
+44544,34
+44545,28
+44546,23
+44547,23
+44548,38
+44549,26
+44550,21
+44551,25
+44552,26
+44553,26
+44554,15
+44555,39
+44556,35
+44557,34
+44558,16
+44559,23
+44560,18
+44562,27
+44563,22
+44564,31
+44565,27
+44566,30
+44567,40
+44568,25
+44570,48
+44571,19
+44573,16
+44575,39
+44576,19
+44577,21
+44578,31
+44579,25
+44580,23
+44581,34
+44582,30
+44583,38
+44586,24
+44587,25
+44588,34
+44589,34
+44590,34
+44591,24
+44592,29
+44593,30
+44594,30
+44595,32
+44596,31
+44597,40
+44598,28
+44599,23
+44600,27
+44601,19
+44602,52
+44603,23
+44604,36
+44605,38
+44606,30
+44607,30
+44608,21
+44609,27
+44610,38
+44611,36
+44613,35
+44614,13
+44615,39
+44616,25
+44617,24
+44618,29
+44619,37
+44622,45
+44623,27
+44624,30
+44625,24
+44627,30
+44629,30
+44630,37
+44631,28
+44632,26
+44633,31
+44634,32
+44635,27
+44636,57
+44637,20
+44638,37
+44639,26
+44640,24
+44641,35
+44642,37
+44643,18
+44644,22
+44645,32
+44646,43
+44647,29
+44648,31
+44649,21
+44650,30
+44651,26
+44652,54
+44653,24
+44654,41
+44655,32
+44656,29
+44657,21
+44658,17
+44659,26
+44660,33
+44661,37
+44662,19
+44664,32
+44665,22
+44666,20
+44667,32
+44668,22
+44670,23
+44672,49
+44673,21
+44674,30
+44675,26
+44678,56
+44679,25
+44680,42
+44681,15
+44682,38
+44683,31
+44684,24
+44685,38
+44686,25
+44688,28
+44689,21
+44690,24
+44691,32
+44692,21
+44693,34
+44694,32
+44695,44
+44697,37
+44698,23
+44699,34
+44700,25
+44701,27
+44702,31
+44703,29
+44704,29
+44705,27
+44706,27
+44707,31
+44708,36
+44709,23
+44710,51
+44711,26
+44712,33
+44713,36
+44714,32
+44715,34
+44716,30
+44717,26
+44718,27
+44721,25
+44723,16
+44724,30
+44725,25
+44726,26
+44727,19
+44728,27
+44730,43
+44731,28
+44732,30
+44733,29
+44734,40
+44735,30
+44736,40
+44737,35
+44738,23
+44739,44
+44740,19
+44743,44
+44744,24
+44745,30
+44746,25
+44747,48
+44748,24
+44749,24
+44750,28
+44752,20
+44753,29
+44754,25
+44755,39
+44756,24
+44757,20
+44758,39
+44759,28
+44760,22
+44761,39
+44762,34
+44763,26
+44764,28
+44765,27
+44766,22
+44767,24
+44768,35
+44769,18
+44771,28
+44772,36
+44773,39
+44774,44
+44775,22
+44776,30
+44777,35
+44778,20
+44779,26
+44780,28
+44781,22
+44782,50
+44783,32
+44784,29
+44785,22
+44786,27
+44787,25
+44788,42
+44789,23
+44790,25
+44791,35
+44792,30
+44793,24
+44795,33
+44796,39
+44797,30
+44798,36
+44800,31
+44802,45
+44803,30
+44804,33
+44805,20
+44806,35
+44807,30
+44809,33
+44810,25
+44811,35
+44813,17
+44814,27
+44815,26
+44816,29
+44817,39
+44818,21
+44819,43
+44820,33
+44821,33
+44822,24
+44823,22
+44824,21
+44825,38
+44826,56
+44827,24
+44829,35
+44830,34
+44831,19
+44832,34
+44833,42
+44834,16
+44835,30
+44836,30
+44837,32
+44838,13
+44839,27
+44840,26
+44841,41
+44842,26
+44843,25
+44844,32
+44845,29
+44846,31
+44847,39
+44848,51
+44849,40
+44850,35
+44851,48
+44852,27
+44853,20
+44854,72
+44855,22
+44856,25
+44857,22
+44858,36
+44859,40
+44860,26
+44861,31
+44862,32
+44863,31
+44864,35
+44865,25
+44866,28
+44867,32
+44868,53
+44869,33
+44870,17
+44871,30
+44872,37
+44873,32
+44874,28
+44875,30
+44876,28
+44877,40
+44878,39
+44879,29
+44880,27
+44883,19
+44884,28
+44885,20
+44886,31
+44887,25
+44888,40
+44889,30
+44890,23
+44891,35
+44892,58
+44893,25
+44894,30
+44895,25
+44896,22
+44897,23
+44898,44
+44899,30
+44900,33
+44901,24
+44902,26
+44903,31
+44904,26
+44905,32
+44906,34
+44907,29
+44908,31
+44909,29
+44910,29
+44912,29
+44913,23
+44914,23
+44916,31
+44917,30
+44918,26
+44920,26
+44921,42
+44922,30
+44924,42
+44925,20
+44926,33
+44927,27
+44929,41
+44931,22
+44932,28
+44933,28
+44934,32
+44935,29
+44936,19
+44937,24
+44938,27
+44939,44
+44940,29
+44942,29
+44943,24
+44944,20
+44945,22
+44946,26
+44947,32
+44948,25
+44949,26
+44950,29
+44951,28
+44952,44
+44953,32
+44954,24
+44955,29
+44956,37
+44957,59
+44958,30
+44960,32
+44961,61
+44963,28
+44964,38
+44965,28
+44966,62
+44967,21
+44968,35
+44969,29
+44970,26
+44971,43
+44972,31
+44973,34
+44974,42
+44975,30
+44976,31
+44977,23
+44978,30
+44980,26
+44981,22
+44983,25
+44984,37
+44986,19
+44987,23
+44988,37
+44989,32
+44990,20
+44991,13
+44992,50
+44993,24
+44994,15
+44995,15
+44996,21
+44997,44
+44999,26
+45000,22
+45001,37
+45002,47
+45004,44
+45005,19
+45006,15
+45007,35
+45008,38
+45009,42
+45010,32
+45011,31
+45013,35
+45014,48
+45015,27
+45016,20
+45018,27
+45019,35
+45020,23
+45021,25
+45022,23
+45023,19
+45024,33
+45025,24
+45026,27
+45027,32
+45028,33
+45029,32
+45030,32
+45031,31
+45032,30
+45033,24
+45035,24
+45037,16
+45038,26
+45039,26
+45040,31
+45041,25
+45043,29
+45044,23
+45045,24
+45046,18
+45047,28
+45048,32
+45049,27
+45050,28
+45051,29
+45052,32
+45053,46
+45054,24
+45055,24
+45056,38
+45057,35
+45058,32
+45059,27
+45060,17
+45061,32
+45062,44
+45063,28
+45064,26
+45065,25
+45066,25
+45067,26
+45068,36
+45069,33
+45071,27
+45072,19
+45073,23
+45074,29
+45075,34
+45076,20
+45077,25
+45078,30
+45079,42
+45080,27
+45081,25
+45082,30
+45083,51
+45084,31
+45085,48
+45086,31
+45087,36
+45088,24
+45089,23
+45090,48
+45091,35
+45092,29
+45093,23
+45094,37
+45095,52
+45096,26
+45097,27
+45098,26
+45099,37
+45100,26
+45101,22
+45102,30
+45103,33
+45104,32
+45105,37
+45107,25
+45109,30
+45110,25
+45112,31
+45113,29
+45114,23
+45117,33
+45118,26
+45120,34
+45122,28
+45123,30
+45124,35
+45125,29
+45126,23
+45127,35
+45128,24
+45129,27
+45130,38
+45131,25
+45132,25
+45133,30
+45134,23
+45135,26
+45136,30
+45137,25
+45138,42
+45139,22
+45140,25
+45141,36
+45142,22
+45143,24
+45144,32
+45145,23
+45146,29
+45147,25
+45148,30
+45149,21
+45150,32
+45151,34
+45152,21
+45153,23
+45154,21
+45155,20
+45157,30
+45158,23
+45159,27
+45160,35
+45161,42
+45162,43
+45163,25
+45164,33
+45166,23
+45167,27
+45168,35
+45169,30
+45170,35
+45171,16
+45172,19
+45173,39
+45174,23
+45175,23
+45177,15
+45178,30
+45179,24
+45181,25
+45182,38
+45183,26
+45185,30
+45186,30
+45187,27
+45188,44
+45189,23
+45190,40
+45191,16
+45192,34
+45193,40
+45194,20
+45195,66
+45197,27
+45198,20
+45199,26
+45201,43
+45202,18
+45203,55
+45204,30
+45205,35
+45206,29
+45207,22
+45208,15
+45209,16
+45210,23
+45211,22
+45212,43
+45214,25
+45215,33
+45216,41
+45217,22
+45218,35
+45219,24
+45220,41
+45222,28
+45223,52
+45225,28
+45226,26
+45229,19
+45230,27
+45231,33
+45232,44
+45233,24
+45234,32
+45235,25
+45237,22
+45238,27
+45239,29
+45240,24
+45241,31
+45242,24
+45243,28
+45244,24
+45245,16
+45246,35
+45247,35
+45248,37
+45249,30
+45250,46
+45253,24
+45254,33
+45255,26
+45256,32
+45257,21
+45258,18
+45259,36
+45260,24
+45261,44
+45262,37
+45263,32
+45264,33
+45266,44
+45267,46
+45268,31
+45269,43
+45270,16
+45271,35
+45272,58
+45274,28
+45275,45
+45276,29
+45277,31
+45278,35
+45279,37
+45280,27
+45281,48
+45282,26
+45283,18
+45285,24
+45286,27
+45287,22
+45288,28
+45289,18
+45290,30
+45291,24
+45292,17
+45293,30
+45294,33
+45295,23
+45296,26
+45297,38
+45298,35
+45299,38
+45300,23
+45302,23
+45303,21
+45304,18
+45305,31
+45306,34
+45307,30
+45309,32
+45310,27
+45311,49
+45312,33
+45314,30
+45315,23
+45316,26
+45317,26
+45318,25
+45319,19
+45320,25
+45321,19
+45322,21
+45323,37
+45324,20
+45325,33
+45326,36
+45327,31
+45328,38
+45329,46
+45330,49
+45331,19
+45332,63
+45333,25
+45334,34
+45335,39
+45336,31
+45337,35
+45338,44
+45339,22
+45340,36
+45341,25
+45343,47
+45344,40
+45345,27
+45346,29
+45347,16
+45348,25
+45349,35
+45350,19
+45351,25
+45352,29
+45353,52
+45354,30
+45355,22
+45356,28
+45357,44
+45358,35
+45359,24
+45360,41
+45361,31
+45362,20
+45364,16
+45365,31
+45367,40
+45368,22
+45369,31
+45370,27
+45371,23
+45372,31
+45373,31
+45374,45
+45375,30
+45376,27
+45378,24
+45379,29
+45380,29
+45381,24
+45383,22
+45384,27
+45385,29
+45387,27
+45388,23
+45390,30
+45391,33
+45392,35
+45393,22
+45394,21
+45395,23
+45396,29
+45397,29
+45398,31
+45399,32
+45400,44
+45401,31
+45402,24
+45404,39
+45405,28
+45406,49
+45407,23
+45408,22
+45409,27
+45410,28
+45411,24
+45413,18
+45414,30
+45415,37
+45417,30
+45418,24
+45419,26
+45420,33
+45421,23
+45425,56
+45426,31
+45427,24
+45428,32
+45429,46
+45431,33
+45433,56
+45434,19
+45435,29
+45436,22
+45437,36
+45438,23
+45439,27
+45440,28
+45441,24
+45442,18
+45443,22
+45444,27
+45445,31
+45446,33
+45447,39
+45448,37
+45449,25
+45450,51
+45451,27
+45452,23
+45453,31
+45454,36
+45455,23
+45456,12
+45457,39
+45458,60
+45459,29
+45460,25
+45462,44
+45463,27
+45464,52
+45465,26
+45467,27
+45468,32
+45470,26
+45471,23
+45472,28
+45474,20
+45475,26
+45476,56
+45477,28
+45478,24
+45479,34
+45480,21
+45482,26
+45483,18
+45484,26
+45485,32
+45486,30
+45487,80
+45488,46
+45489,25
+45490,42
+45492,47
+45493,22
+45494,26
+45495,37
+45496,26
+45497,41
+45498,39
+45499,28
+45500,33
+45501,26
+45502,22
+45503,25
+45504,39
+45505,28
+45506,20
+45507,60
+45508,18
+45509,48
+45510,28
+45511,29
+45512,41
+45513,17
+45515,29
+45516,33
+45517,24
+45518,35
+45519,24
+45520,30
+45521,32
+45522,34
+45523,30
+45524,22
+45525,17
+45526,27
+45530,22
+45532,23
+45533,28
+45534,24
+45535,31
+45536,39
+45537,26
+45538,30
+45539,30
+45540,32
+45541,24
+45542,24
+45543,35
+45544,22
+45546,22
+45547,22
+45548,29
+45549,28
+45550,23
+45551,23
+45552,50
+45553,19
+45554,20
+45555,33
+45556,27
+45557,22
+45558,25
+45559,28
+45560,27
+45561,22
+45562,37
+45563,21
+45564,33
+45565,19
+45566,35
+45568,21
+45569,34
+45570,38
+45571,18
+45572,20
+45573,22
+45576,31
+45577,28
+45578,40
+45579,25
+45580,34
+45581,29
+45582,49
+45583,21
+45584,22
+45585,27
+45586,36
+45588,23
+45589,44
+45590,22
+45592,59
+45593,29
+45594,27
+45595,27
+45596,35
+45597,28
+45598,27
+45599,22
+45600,32
+45601,28
+45602,40
+45605,21
+45606,26
+45608,23
+45609,22
+45610,26
+45611,34
+45612,27
+45613,33
+45614,30
+45617,26
+45618,21
+45619,29
+45621,60
+45622,31
+45625,35
+45626,30
+45627,14
+45628,44
+45629,25
+45630,26
+45632,18
+45634,27
+45635,21
+45636,27
+45637,36
+45638,36
+45639,21
+45640,27
+45641,34
+45642,30
+45643,25
+45644,41
+45645,16
+45646,31
+45647,18
+45648,20
+45649,20
+45650,26
+45651,25
+45652,39
+45653,36
+45654,25
+45655,54
+45656,26
+45657,39
+45659,35
+45661,29
+45662,45
+45663,24
+45664,29
+45665,26
+45666,27
+45667,20
+45668,25
+45669,14
+45670,42
+45672,31
+45673,42
+45674,29
+45675,46
+45676,30
+45677,15
+45678,28
+45679,25
+45680,30
+45681,25
+45683,27
+45684,18
+45685,38
+45687,31
+45688,24
+45689,26
+45690,69
+45691,29
+45692,36
+45693,38
+45694,36
+45695,19
+45697,22
+45698,35
+45699,36
+45700,30
+45701,30
+45702,26
+45703,20
+45705,27
+45706,19
+45707,23
+45708,27
+45709,25
+45710,33
+45712,15
+45713,35
+45714,27
+45715,20
+45716,33
+45717,22
+45718,25
+45719,25
+45720,45
+45721,30
+45722,28
+45724,24
+45725,32
+45726,21
+45728,23
+45729,42
+45730,28
+45731,27
+45733,29
+45734,23
+45735,18
+45736,22
+45737,34
+45738,42
+45739,50
+45740,18
+45741,23
+45743,29
+45744,21
+45745,54
+45746,46
+45747,19
+45748,32
+45749,70
+45750,30
+45753,26
+45754,36
+45755,19
+45757,22
+45758,35
+45761,31
+45762,48
+45763,27
+45764,27
+45765,28
+45766,31
+45767,29
+45768,21
+45769,22
+45770,43
+45771,25
+45772,20
+45773,23
+45775,28
+45776,23
+45777,23
+45778,30
+45779,25
+45780,25
+45781,27
+45782,25
+45783,35
+45784,18
+45785,23
+45786,48
+45787,30
+45789,35
+45790,37
+45792,19
+45793,47
+45794,38
+45795,27
+45796,20
+45797,28
+45798,30
+45799,49
+45800,22
+45803,24
+45804,26
+45805,29
+45806,64
+45807,32
+45808,26
+45809,27
+45810,25
+45811,22
+45812,17
+45813,35
+45814,27
+45816,37
+45817,23
+45818,23
+45819,36
+45820,38
+45821,27
+45823,21
+45824,35
+45825,21
+45826,44
+45827,43
+45828,25
+45829,29
+45830,17
+45831,36
+45832,63
+45833,22
+45834,24
+45835,21
+45836,33
+45837,27
+45838,16
+45839,30
+45840,35
+45841,21
+45842,25
+45843,23
+45844,31
+45845,35
+45846,20
+45847,29
+45848,43
+45849,29
+45850,21
+45851,20
+45853,28
+45854,85
+45855,28
+45856,19
+45857,24
+45858,27
+45859,25
+45860,27
+45861,29
+45862,53
+45863,29
+45865,23
+45866,23
+45867,23
+45868,16
+45869,22
+45870,22
+45872,30
+45873,21
+45874,35
+45875,22
+45876,34
+45878,30
+45879,31
+45880,31
+45881,33
+45882,28
+45883,29
+45884,25
+45885,46
+45886,26
+45887,24
+45888,20
+45889,50
+45890,36
+45891,24
+45892,15
+45893,33
+45894,29
+45895,24
+45896,20
+45897,23
+45898,17
+45899,34
+45900,25
+45901,30
+45902,31
+45904,26
+45905,50
+45906,17
+45907,27
+45908,36
+45909,25
+45910,25
+45911,33
+45913,54
+45914,38
+45915,33
+45916,20
+45917,33
+45918,40
+45919,26
+45920,28
+45922,33
+45923,73
+45924,22
+45925,18
+45926,22
+45927,18
+45928,39
+45930,26
+45931,30
+45932,22
+45933,30
+45934,29
+45935,25
+45936,29
+45937,22
+45938,35
+45940,51
+45941,24
+45942,37
+45945,31
+45946,22
+45947,33
+45948,17
+45949,26
+45950,40
+45951,24
+45953,26
+45954,45
+45956,38
+45957,31
+45958,30
+45960,27
+45961,41
+45962,32
+45963,35
+45964,51
+45965,22
+45966,35
+45967,28
+45968,18
+45969,37
+45970,29
+45971,27
+45972,20
+45973,24
+45974,40
+45975,26
+45976,32
+45977,30
+45978,23
+45979,36
+45981,21
+45982,27
+45983,30
+45984,26
+45987,36
+45988,34
+45989,27
+45991,24
+45993,52
+45994,30
+45995,23
+45996,41
+45997,26
+45999,26
+46000,32
+46001,17
+46002,26
+46003,38
+46004,28
+46005,31
+46006,32
+46007,23
+46008,23
+46009,27
+46010,37
+46011,50
+46012,32
+46013,2
+46014,22
+46015,28
+46016,21
+46017,31
+46018,29
+46019,39
+46020,26
+46021,33
+46022,21
+46023,19
+46024,35
+46025,29
+46027,31
+46028,28
+46029,26
+46030,15
+46031,33
+46032,27
+46033,25
+46034,26
+46035,34
+46036,26
+46037,30
+46038,21
+46039,45
+46041,44
+46042,33
+46044,35
+46045,46
+46047,32
+46048,32
+46049,36
+46050,19
+46051,30
+46052,69
+46053,38
+46054,19
+46055,24
+46056,45
+46057,50
+46062,16
+46063,61
+46064,29
+46065,40
+46066,27
+46067,26
+46069,31
+46070,23
+46071,26
+46072,31
+46073,21
+46074,51
+46076,27
+46077,39
+46078,31
+46079,25
+46080,26
+46081,38
+46082,32
+46083,38
+46084,24
+46085,29
+46086,36
+46087,29
+46088,37
+46089,23
+46090,28
+46091,21
+46092,29
+46093,37
+46095,21
+46096,36
+46097,16
+46098,34
+46099,21
+46100,19
+46101,34
+46102,24
+46103,41
+46104,36
+46105,41
+46106,23
+46107,28
+46108,27
+46109,30
+46110,23
+46111,17
+46112,62
+46113,26
+46114,34
+46115,27
+46116,61
+46118,26
+46119,16
+46120,22
+46121,37
+46123,33
+46124,21
+46125,43
+46126,49
+46127,29
+46128,29
+46129,30
+46130,46
+46131,33
+46132,31
+46133,26
+46134,24
+46136,48
+46137,35
+46138,29
+46139,26
+46140,28
+46141,27
+46142,29
+46143,35
+46144,47
+46145,23
+46146,25
+46147,23
+46148,28
+46149,26
+46150,21
+46151,43
+46152,49
+46153,27
+46154,34
+46155,33
+46156,57
+46157,23
+46158,36
+46159,23
+46160,20
+46161,26
+46162,46
+46163,22
+46164,20
+46166,23
+46167,48
+46168,34
+46169,33
+46171,30
+46172,23
+46173,24
+46174,29
+46175,34
+46176,32
+46177,34
+46178,37
+46179,23
+46181,23
+46183,48
+46184,22
+46185,28
+46186,33
+46187,59
+46189,35
+46190,50
+46191,28
+46192,28
+46193,40
+46194,36
+46195,42
+46196,32
+46197,28
+46198,28
+46199,41
+46201,24
+46202,48
+46203,29
+46204,28
+46205,40
+46208,30
+46209,27
+46210,25
+46211,33
+46212,37
+46213,37
+46214,21
+46215,40
+46217,22
+46218,42
+46219,28
+46221,35
+46222,49
+46223,40
+46224,25
+46225,23
+46226,25
+46227,21
+46228,23
+46229,31
+46230,21
+46231,36
+46233,30
+46234,18
+46235,24
+46236,22
+46237,52
+46238,25
+46239,40
+46240,21
+46241,30
+46242,25
+46243,19
+46244,23
+46245,29
+46246,33
+46247,40
+46248,25
+46249,30
+46250,20
+46251,43
+46252,28
+46253,26
+46254,19
+46255,39
+46256,24
+46257,29
+46258,41
+46259,22
+46260,31
+46261,41
+46262,34
+46263,24
+46264,30
+46265,27
+46266,30
+46267,20
+46269,53
+46270,46
+46271,46
+46272,26
+46273,33
+46275,29
+46276,13
+46277,21
+46278,60
+46279,29
+46280,33
+46282,21
+46283,28
+46284,28
+46285,34
+46286,29
+46287,24
+46288,35
+46289,34
+46290,26
+46291,27
+46293,40
+46294,37
+46295,70
+46297,56
+46298,29
+46299,26
+46301,28
+46302,31
+46304,20
+46305,48
+46306,23
+46308,25
+46309,24
+46310,28
+46311,14
+46313,23
+46314,36
+46315,16
+46316,20
+46317,21
+46318,33
+46319,50
+46320,25
+46321,23
+46322,22
+46323,29
+46324,29
+46325,30
+46326,28
+46327,23
+46328,24
+46329,24
+46330,27
+46331,26
+46332,20
+46333,23
+46334,32
+46336,37
+46337,30
+46338,25
+46339,29
+46340,17
+46341,58
+46342,27
+46343,23
+46344,29
+46345,45
+46346,20
+46347,29
+46348,31
+46349,57
+46350,32
+46352,30
+46353,25
+46354,30
+46355,27
+46356,43
+46357,25
+46358,29
+46359,34
+46360,64
+46361,26
+46363,22
+46364,28
+46365,22
+46366,21
+46367,27
+46368,34
+46369,39
+46370,23
+46371,24
+46372,27
+46373,25
+46374,27
+46375,25
+46376,19
+46377,34
+46378,15
+46379,30
+46380,18
+46383,38
+46384,25
+46385,26
+46386,37
+46387,24
+46388,20
+46389,24
+46390,33
+46392,36
+46393,21
+46394,29
+46395,33
+46396,23
+46397,26
+46398,35
+46399,24
+46400,43
+46401,35
+46402,25
+46404,35
+46405,38
+46406,30
+46407,27
+46408,36
+46409,22
+46410,13
+46412,39
+46413,18
+46414,26
+46415,20
+46416,31
+46417,38
+46418,29
+46419,32
+46420,27
+46421,25
+46423,33
+46424,25
+46425,39
+46426,62
+46427,15
+46428,31
+46429,34
+46430,24
+46431,31
+46432,24
+46433,27
+46434,41
+46435,40
+46436,31
+46437,36
+46438,34
+46439,23
+46440,38
+46442,54
+46443,33
+46445,37
+46446,29
+46447,25
+46448,30
+46449,30
+46451,26
+46452,34
+46453,42
+46454,18
+46455,30
+46457,37
+46458,30
+46459,21
+46460,28
+46461,32
+46462,20
+46463,29
+46464,33
+46465,29
+46466,51
+46467,37
+46468,38
+46469,31
+46470,30
+46472,26
+46473,23
+46474,32
+46475,21
+46476,43
+46477,26
+46478,30
+46479,28
+46480,25
+46481,35
+46482,37
+46483,21
+46484,36
+46485,27
+46486,27
+46487,36
+46488,31
+46489,32
+46490,39
+46491,16
+46492,18
+46494,32
+46495,35
+46496,22
+46497,22
+46498,25
+46499,18
+46500,30
+46501,40
+46503,29
+46504,25
+46505,25
+46506,38
+46507,32
+46508,47
+46509,27
+46510,44
+46511,32
+46512,26
+46514,27
+46516,24
+46517,18
+46518,25
+46519,54
+46520,41
+46523,35
+46524,45
+46525,19
+46526,29
+46527,19
+46528,25
+46529,25
+46530,22
+46531,22
+46532,40
+46533,31
+46534,22
+46535,24
+46537,27
+46539,30
+46540,26
+46542,60
+46545,25
+46546,20
+46547,26
+46548,40
+46549,52
+46550,32
+46551,30
+46552,35
+46553,26
+46554,24
+46555,27
+46556,24
+46557,27
+46558,25
+46559,42
+46560,23
+46561,36
+46562,47
+46564,26
+46565,30
+46566,28
+46567,28
+46569,26
+46570,22
+46571,26
+46572,33
+46573,24
+46574,30
+46575,25
+46576,26
+46577,24
+46578,24
+46579,36
+46580,40
+46581,23
+46582,35
+46583,27
+46585,30
+46586,33
+46587,25
+46588,56
+46589,22
+46590,30
+46592,28
+46593,30
+46594,18
+46595,30
+46596,19
+46597,30
+46598,41
+46599,37
+46600,31
+46601,26
+46602,35
+46603,25
+46605,18
+46607,19
+46608,20
+46609,21
+46610,27
+46612,34
+46613,25
+46614,24
+46615,22
+46616,23
+46617,21
+46618,22
+46619,22
+46620,45
+46621,27
+46622,27
+46623,34
+46624,37
+46625,20
+46626,36
+46627,22
+46629,28
+46630,25
+46631,27
+46632,23
+46633,24
+46634,27
+46635,31
+46636,37
+46637,35
+46639,30
+46640,33
+46642,27
+46643,32
+46644,25
+46646,16
+46647,33
+46648,21
+46649,18
+46652,20
+46653,29
+46654,44
+46655,30
+46656,15
+46657,28
+46658,27
+46659,35
+46660,20
+46661,29
+46662,30
+46663,18
+46664,32
+46665,30
+46667,45
+46668,21
+46669,44
+46670,35
+46671,20
+46672,20
+46673,24
+46674,88
+46675,32
+46676,24
+46678,30
+46679,25
+46680,26
+46681,61
+46682,36
+46683,43
+46684,21
+46685,18
+46686,33
+46688,37
+46689,30
+46691,40
+46692,25
+46693,26
+46694,28
+46695,14
+46696,26
+46698,25
+46699,31
+46700,32
+46701,26
+46702,28
+46703,29
+46704,21
+46705,23
+46706,35
+46707,18
+46708,36
+46709,41
+46710,53
+46711,24
+46712,30
+46713,24
+46714,32
+46715,25
+46716,41
+46717,24
+46718,24
+46719,34
+46720,26
+46721,33
+46722,23
+46723,31
+46724,30
+46725,36
+46726,19
+46727,30
+46728,33
+46729,32
+46730,26
+46731,28
+46733,25
+46734,38
+46735,24
+46736,35
+46737,45
+46738,35
+46739,32
+46740,31
+46741,22
+46745,29
+46746,32
+46747,28
+46748,18
+46749,27
+46750,59
+46751,17
+46752,31
+46753,24
+46754,42
+46755,23
+46757,26
+46758,31
+46759,22
+46760,28
+46761,27
+46762,22
+46763,24
+46764,21
+46765,23
+46766,35
+46767,32
+46768,47
+46769,57
+46772,31
+46773,31
+46775,27
+46776,27
+46777,24
+46778,30
+46780,29
+46781,26
+46782,53
+46783,23
+46784,45
+46785,27
+46787,31
+46788,24
+46789,26
+46791,16
+46792,34
+46794,23
+46795,24
+46796,29
+46797,27
+46798,21
+46799,29
+46800,33
+46801,19
+46802,14
+46803,25
+46805,28
+46806,31
+46807,28
+46808,23
+46810,49
+46811,34
+46812,23
+46813,19
+46814,39
+46815,49
+46816,28
+46818,23
+46819,24
+46820,24
+46821,36
+46822,52
+46823,32
+46824,38
+46826,26
+46827,21
+46828,15
+46829,22
+46830,21
+46831,28
+46832,32
+46833,24
+46834,32
+46835,34
+46836,24
+46837,35
+46838,31
+46839,32
+46840,27
+46841,24
+46843,26
+46844,36
+46845,36
+46846,33
+46847,24
+46848,39
+46849,22
+46850,44
+46851,38
+46852,30
+46853,34
+46855,51
+46856,25
+46857,36
+46858,29
+46859,23
+46860,29
+46861,23
+46862,47
+46863,23
+46865,29
+46866,23
+46867,25
+46868,29
+46869,40
+46870,69
+46871,17
+46872,18
+46873,25
+46874,27
+46875,27
+46876,37
+46877,33
+46878,24
+46880,59
+46881,22
+46882,21
+46883,42
+46884,38
+46885,25
+46886,37
+46887,48
+46889,18
+46890,30
+46891,28
+46892,29
+46893,56
+46894,23
+46895,28
+46896,33
+46897,30
+46898,31
+46899,19
+46900,38
+46901,27
+46902,37
+46903,30
+46904,24
+46905,31
+46906,30
+46907,42
+46908,32
+46909,37
+46910,38
+46911,41
+46912,22
+46913,36
+46915,27
+46916,24
+46917,25
+46918,46
+46919,30
+46920,28
+46921,25
+46922,28
+46923,34
+46924,24
+46925,22
+46926,37
+46927,28
+46928,25
+46929,27
+46930,27
+46931,27
+46932,26
+46933,20
+46934,41
+46935,16
+46936,32
+46937,24
+46938,40
+46939,38
+46940,37
+46941,55
+46943,23
+46945,25
+46946,24
+46947,35
+46948,41
+46949,52
+46950,26
+46951,24
+46952,34
+46953,24
+46954,39
+46955,39
+46956,46
+46957,17
+46958,36
+46959,26
+46961,22
+46962,26
+46963,46
+46964,35
+46965,35
+46966,30
+46967,24
+46968,25
+46970,32
+46971,30
+46972,20
+46973,22
+46974,27
+46975,27
+46977,22
+46978,21
+46979,36
+46980,27
+46981,41
+46982,15
+46983,27
+46985,25
+46986,41
+46988,21
+46990,15
+46991,31
+46992,29
+46993,36
+46994,23
+46995,46
+46997,24
+46998,36
+46999,39
+47001,29
+47002,27
+47003,32
+47004,29
+47005,35
+47006,29
+47007,24
+47008,30
+47009,24
+47010,39
+47011,37
+47012,47
+47013,18
+47015,28
+47016,35
+47017,24
+47018,24
+47019,32
+47020,24
+47021,31
+47022,27
+47023,43
+47024,30
+47025,33
+47026,29
+47027,28
+47030,34
+47031,29
+47032,19
+47033,33
+47034,28
+47036,35
+47038,36
+47039,49
+47040,38
+47041,25
+47042,30
+47043,37
+47045,21
+47046,39
+47049,53
+47050,34
+47051,31
+47052,35
+47053,29
+47054,31
+47055,43
+47056,59
+47057,24
+47058,27
+47059,36
+47060,31
+47061,17
+47062,30
+47063,48
+47064,14
+47065,35
+47066,36
+47067,17
+47068,33
+47069,30
+47070,35
+47072,27
+47073,32
+47074,16
+47075,34
+47076,21
+47077,26
+47078,25
+47079,26
+47080,18
+47081,27
+47082,24
+47083,24
+47084,45
+47085,21
+47086,16
+47087,38
+47088,30
+47089,26
+47090,35
+47091,35
+47093,22
+47094,32
+47095,39
+47096,25
+47097,40
+47098,25
+47100,35
+47102,44
+47103,32
+47104,28
+47105,51
+47106,26
+47107,27
+47108,35
+47109,37
+47110,21
+47111,40
+47112,21
+47113,58
+47114,29
+47115,25
+47116,29
+47117,28
+47118,49
+47119,23
+47120,42
+47121,28
+47123,26
+47124,24
+47125,21
+47126,27
+47127,43
+47128,62
+47129,38
+47130,26
+47131,25
+47132,41
+47133,24
+47134,36
+47136,23
+47137,21
+47138,25
+47139,19
+47140,34
+47142,20
+47143,29
+47144,32
+47145,20
+47146,25
+47147,34
+47149,37
+47150,33
+47151,29
+47152,31
+47153,26
+47154,25
+47155,28
+47157,31
+47158,32
+47159,31
+47160,22
+47162,32
+47163,28
+47164,35
+47165,30
+47166,21
+47167,26
+47168,26
+47169,29
+47170,28
+47171,24
+47172,33
+47173,32
+47174,41
+47175,42
+47176,29
+47177,31
+47178,19
+47179,28
+47180,22
+47182,43
+47183,25
+47184,55
+47186,32
+47187,39
+47188,29
+47189,21
+47190,27
+47191,30
+47192,17
+47193,30
+47194,43
+47195,30
+47196,25
+47197,22
+47198,31
+47199,32
+47200,49
+47201,24
+47202,50
+47203,25
+47204,36
+47205,37
+47206,27
+47207,41
+47208,29
+47209,27
+47210,22
+47212,70
+47213,43
+47214,31
+47215,23
+47216,28
+47217,26
+47218,22
+47219,33
+47220,23
+47222,48
+47223,26
+47224,40
+47225,37
+47226,32
+47227,46
+47228,18
+47229,34
+47230,27
+47231,23
+47232,27
+47233,32
+47234,27
+47235,27
+47236,20
+47237,24
+47238,33
+47239,32
+47240,24
+47241,33
+47242,38
+47243,28
+47245,53
+47246,27
+47247,26
+47248,38
+47249,43
+47250,36
+47251,25
+47252,33
+47253,22
+47254,41
+47255,36
+47256,24
+47257,35
+47258,15
+47260,27
+47261,30
+47262,28
+47264,32
+47265,39
+47266,34
+47267,21
+47268,18
+47269,21
+47270,22
+47272,42
+47273,37
+47274,24
+47275,21
+47276,46
+47277,29
+47278,30
+47279,21
+47280,46
+47282,38
+47285,27
+47286,27
+47287,33
+47288,37
+47289,24
+47293,24
+47294,30
+47295,25
+47296,29
+47297,24
+47298,28
+47299,28
+47300,35
+47301,30
+47302,27
+47303,25
+47304,36
+47305,31
+47306,18
+47307,35
+47308,23
+47309,17
+47310,48
+47311,26
+47312,50
+47313,35
+47314,37
+47315,29
+47316,29
+47317,32
+47318,36
+47319,17
+47320,26
+47321,17
+47322,50
+47323,27
+47324,35
+47325,22
+47326,31
+47327,28
+47328,28
+47329,37
+47330,29
+47331,23
+47332,33
+47333,30
+47334,25
+47335,27
+47336,22
+47337,27
+47338,23
+47339,31
+47340,39
+47341,38
+47342,43
+47343,35
+47344,29
+47345,26
+47346,33
+47347,35
+47348,24
+47349,32
+47350,29
+47351,39
+47352,47
+47353,16
+47354,30
+47355,23
+47356,32
+47357,42
+47358,29
+47359,23
+47361,28
+47362,27
+47363,42
+47364,23
+47365,21
+47366,37
+47367,23
+47368,37
+47369,29
+47370,39
+47371,42
+47372,23
+47374,35
+47375,19
+47376,34
+47377,18
+47378,26
+47379,14
+47381,32
+47382,26
+47384,26
+47386,24
+47387,31
+47388,38
+47389,28
+47390,44
+47391,20
+47392,22
+47393,29
+47395,24
+47396,36
+47397,23
+47398,39
+47400,31
+47401,39
+47402,18
+47403,36
+47404,23
+47405,33
+47406,33
+47407,22
+47409,38
+47410,36
+47411,29
+47412,24
+47413,36
+47414,27
+47415,26
+47416,30
+47417,22
+47418,30
+47419,32
+47421,34
+47422,23
+47423,22
+47424,27
+47425,22
+47426,23
+47427,23
+47429,25
+47431,23
+47432,25
+47436,31
+47437,20
+47438,23
+47439,42
+47440,24
+47441,32
+47442,26
+47443,26
+47444,27
+47445,28
+47446,29
+47447,25
+47449,30
+47450,24
+47451,30
+47452,21
+47453,22
+47454,21
+47455,34
+47457,29
+47458,21
+47460,49
+47461,33
+47464,22
+47465,22
+47466,29
+47468,27
+47469,41
+47470,40
+47471,22
+47472,27
+47473,31
+47474,26
+47475,25
+47476,35
+47478,30
+47479,24
+47480,19
+47481,49
+47482,32
+47483,27
+47484,35
+47486,32
+47487,27
+47488,39
+47489,24
+47490,29
+47491,30
+47492,28
+47493,22
+47495,37
+47496,45
+47498,59
+47499,19
+47500,18
+47502,40
+47503,35
+47504,20
+47505,18
+47506,31
+47508,28
+47509,44
+47510,30
+47511,36
+47512,33
+47513,36
+47514,25
+47516,31
+47517,29
+47518,24
+47519,23
+47520,44
+47521,20
+47522,43
+47523,21
+47524,36
+47525,24
+47526,24
+47527,32
+47528,25
+47529,28
+47530,36
+47531,29
+47532,22
+47534,35
+47535,22
+47537,24
+47538,30
+47539,31
+47540,23
+47541,29
+47542,27
+47543,28
+47545,22
+47546,25
+47547,25
+47548,49
+47549,29
+47550,24
+47551,39
+47552,32
+47553,34
+47554,31
+47555,49
+47556,29
+47557,33
+47558,39
+47559,30
+47560,23
+47561,34
+47562,35
+47564,31
+47565,33
+47566,29
+47567,26
+47568,23
+47569,20
+47570,20
+47571,20
+47572,23
+47573,25
+47574,33
+47575,24
+47576,30
+47577,30
+47578,27
+47579,21
+47580,18
+47583,33
+47584,38
+47585,43
+47586,28
+47587,45
+47588,27
+47589,39
+47591,46
+47592,23
+47593,32
+47594,21
+47595,21
+47596,35
+47597,26
+47598,27
+47599,20
+47600,29
+47602,38
+47603,25
+47604,37
+47605,23
+47606,18
+47607,25
+47610,49
+47611,23
+47612,16
+47613,31
+47614,21
+47615,61
+47616,25
+47617,25
+47618,39
+47619,36
+47620,30
+47621,34
+47623,44
+47624,29
+47627,25
+47628,19
+47629,24
+47630,22
+47631,20
+47632,33
+47633,23
+47634,34
+47635,27
+47636,21
+47637,34
+47638,27
+47639,23
+47640,28
+47641,24
+47642,28
+47644,23
+47645,48
+47646,22
+47647,42
+47649,47
+47650,17
+47651,27
+47653,29
+47655,32
+47657,23
+47658,27
+47659,25
+47660,32
+47661,38
+47662,39
+47663,24
+47664,26
+47665,31
+47666,29
+47667,33
+47668,39
+47669,30
+47670,70
+47671,18
+47672,35
+47673,29
+47674,32
+47676,22
+47677,16
+47679,22
+47680,26
+47681,22
+47682,29
+47683,23
+47684,25
+47687,27
+47688,33
+47689,23
+47690,51
+47691,30
+47692,22
+47693,26
+47694,24
+47695,35
+47696,57
+47697,22
+47698,38
+47699,25
+47700,48
+47701,24
+47702,21
+47703,30
+47704,46
+47705,24
+47706,24
+47707,24
+47708,25
+47709,21
+47710,23
+47712,37
+47713,24
+47714,27
+47715,37
+47716,30
+47717,43
+47719,40
+47720,22
+47721,27
+47722,27
+47723,22
+47724,40
+47726,35
+47727,28
+47728,34
+47729,26
+47730,30
+47731,27
+47732,23
+47733,33
+47734,30
+47735,26
+47736,39
+47737,22
+47738,25
+47739,42
+47740,30
+47741,13
+47742,34
+47743,28
+47744,31
+47745,38
+47747,26
+47748,26
+47749,27
+47750,29
+47751,41
+47752,45
+47753,33
+47754,60
+47755,25
+47756,35
+47757,21
+47758,28
+47759,30
+47761,27
+47762,30
+47763,28
+47764,21
+47765,48
+47766,18
+47767,61
+47768,33
+47769,24
+47770,33
+47771,51
+47772,32
+47773,21
+47774,38
+47776,26
+47777,17
+47778,45
+47779,13
+47780,25
+47782,29
+47785,30
+47786,30
+47787,28
+47788,21
+47789,34
+47791,28
+47793,35
+47794,38
+47796,42
+47797,23
+47798,47
+47800,24
+47802,26
+47803,50
+47804,24
+47805,18
+47806,24
+47807,29
+47808,35
+47809,21
+47810,24
+47811,25
+47812,30
+47813,29
+47814,26
+47815,30
+47816,24
+47817,21
+47818,23
+47819,53
+47820,24
+47821,33
+47822,30
+47823,32
+47824,28
+47825,22
+47826,28
+47827,30
+47828,33
+47829,34
+47830,28
+47831,21
+47832,37
+47833,45
+47834,43
+47835,25
+47836,19
+47837,23
+47838,42
+47839,37
+47840,43
+47841,26
+47842,32
+47843,42
+47845,30
+47846,39
+47847,20
+47849,22
+47850,49
+47851,56
+47852,42
+47853,16
+47854,38
+47855,25
+47856,20
+47857,29
+47858,39
+47859,23
+47860,25
+47861,17
+47862,25
+47863,27
+47865,43
+47867,29
+47868,26
+47869,33
+47870,21
+47871,21
+47874,38
+47875,22
+47878,25
+47879,42
+47881,49
+47882,23
+47883,30
+47884,27
+47885,28
+47886,20
+47887,18
+47888,31
+47889,21
+47890,44
+47892,22
+47893,43
+47896,23
+47898,27
+47899,35
+47900,26
+47901,41
+47903,22
+47904,48
+47905,17
+47906,29
+47907,27
+47908,50
+47909,35
+47910,42
+47911,24
+47912,28
+47913,22
+47914,30
+47916,32
+47917,43
+47918,41
+47919,26
+47920,24
+47921,33
+47922,28
+47923,20
+47924,47
+47925,31
+47926,17
+47927,55
+47928,16
+47929,22
+47930,26
+47931,29
+47932,20
+47933,23
+47934,50
+47935,26
+47936,25
+47937,14
+47938,36
+47939,24
+47940,62
+47941,40
+47942,29
+47943,70
+47944,36
+47945,40
+47946,27
+47948,23
+47949,27
+47950,26
+47951,19
+47952,19
+47953,46
+47954,28
+47955,22
+47956,36
+47957,28
+47958,24
+47959,56
+47960,24
+47961,36
+47963,21
+47964,55
+47965,35
+47967,32
+47968,39
+47969,27
+47970,20
+47971,34
+47972,20
+47973,30
+47974,20
+47975,20
+47977,23
+47980,15
+47981,46
+47982,29
+47983,31
+47984,32
+47985,37
+47986,26
+47987,32
+47988,24
+47989,30
+47990,22
+47991,24
+47992,21
+47993,29
+47994,18
+47995,30
+47996,22
+47998,33
+47999,45
+48000,18
+48001,22
+48002,20
+48004,53
+48005,28
+48006,26
+48007,20
+48008,42
+48009,64
+48010,31
+48011,44
+48012,25
+48013,26
+48014,42
+48015,32
+48016,36
+48017,20
+48019,19
+48020,28
+48021,12
+48022,35
+48023,36
+48024,25
+48025,32
+48026,28
+48028,22
+48029,31
+48030,50
+48031,25
+48032,28
+48033,24
+48034,43
+48035,25
+48036,28
+48037,34
+48038,16
+48039,25
+48040,24
+48045,42
+48046,36
+48047,22
+48048,31
+48050,25
+48052,36
+48053,33
+48054,23
+48055,27
+48056,25
+48057,38
+48058,16
+48059,41
+48060,28
+48061,23
+48062,27
+48063,38
+48064,27
+48065,36
+48066,44
+48067,53
+48068,29
+48069,34
+48070,30
+48071,46
+48072,32
+48073,42
+48074,43
+48075,33
+48077,23
+48078,25
+48079,36
+48081,28
+48082,62
+48083,22
+48084,40
+48085,38
+48086,29
+48088,34
+48089,27
+48090,39
+48091,25
+48092,21
+48093,26
+48094,33
+48096,32
+48097,27
+48098,23
+48099,21
+48100,26
+48101,27
+48102,34
+48105,45
+48106,22
+48107,35
+48109,33
+48110,32
+48112,28
+48114,28
+48115,23
+48116,44
+48117,23
+48118,43
+48119,42
+48120,23
+48121,43
+48122,38
+48123,21
+48124,27
+48125,30
+48126,47
+48127,23
+48128,17
+48129,33
+48130,27
+48131,19
+48132,40
+48133,18
+48135,28
+48136,41
+48137,34
+48138,35
+48139,31
+48140,31
+48141,23
+48142,31
+48143,34
+48144,29
+48145,28
+48146,18
+48147,30
+48148,21
+48149,39
+48150,28
+48152,24
+48153,36
+48154,28
+48155,22
+48156,23
+48158,15
+48159,50
+48160,36
+48161,32
+48162,21
+48163,40
+48164,33
+48165,27
+48166,27
+48167,28
+48168,30
+48169,21
+48170,19
+48171,24
+48172,22
+48173,24
+48174,21
+48175,46
+48176,38
+48177,26
+48178,32
+48179,42
+48180,49
+48181,42
+48182,40
+48183,26
+48184,32
+48185,31
+48186,19
+48188,24
+48189,28
+48191,35
+48192,21
+48193,29
+48195,39
+48197,21
+48198,27
+48199,35
+48200,27
+48201,24
+48202,21
+48203,26
+48204,35
+48205,31
+48206,29
+48207,33
+48209,24
+48210,30
+48211,49
+48212,21
+48213,24
+48214,18
+48216,39
+48217,24
+48218,41
+48219,44
+48220,29
+48221,53
+48222,39
+48223,30
+48224,36
+48225,25
+48226,24
+48227,29
+48228,28
+48229,42
+48230,36
+48232,30
+48233,27
+48234,28
+48235,21
+48236,52
+48237,40
+48238,28
+48240,21
+48241,44
+48242,31
+48243,25
+48244,24
+48245,32
+48246,21
+48247,21
+48248,40
+48249,28
+48250,28
+48251,45
+48252,31
+48253,25
+48254,30
+48255,42
+48256,24
+48257,23
+48259,48
+48260,21
+48261,37
+48262,26
+48263,28
+48264,21
+48265,16
+48266,28
+48267,26
+48268,13
+48269,28
+48270,22
+48271,36
+48272,21
+48273,40
+48274,30
+48275,39
+48276,39
+48277,28
+48278,24
+48279,29
+48280,58
+48281,22
+48282,61
+48283,29
+48284,42
+48285,36
+48286,48
+48287,34
+48288,39
+48289,36
+48290,45
+48291,36
+48292,27
+48293,22
+48294,24
+48295,68
+48296,29
+48297,27
+48298,24
+48299,25
+48300,36
+48301,27
+48302,23
+48303,39
+48304,23
+48305,40
+48306,62
+48308,23
+48309,34
+48310,21
+48311,29
+48312,35
+48313,36
+48314,52
+48315,20
+48316,34
+48317,19
+48318,32
+48319,50
+48320,50
+48321,34
+48322,29
+48323,40
+48327,25
+48328,17
+48329,23
+48330,34
+48331,44
+48332,30
+48333,15
+48334,31
+48335,40
+48336,21
+48337,39
+48340,27
+48341,29
+48342,23
+48343,36
+48345,50
+48347,41
+48348,25
+48349,31
+48350,20
+48351,19
+48352,53
+48353,21
+48354,27
+48355,30
+48357,23
+48358,24
+48359,39
+48360,31
+48361,23
+48362,33
+48363,40
+48364,24
+48365,25
+48366,24
+48367,27
+48368,36
+48369,28
+48370,49
+48371,27
+48372,24
+48373,15
+48374,34
+48375,53
+48377,29
+48378,27
+48379,22
+48380,35
+48381,32
+48382,22
+48383,31
+48384,66
+48385,25
+48386,25
+48387,45
+48388,33
+48389,48
+48390,25
+48391,39
+48392,30
+48393,22
+48394,24
+48395,40
+48397,27
+48398,24
+48399,40
+48400,18
+48402,25
+48403,46
+48405,18
+48406,35
+48407,28
+48408,41
+48409,21
+48411,26
+48412,21
+48415,16
+48417,43
+48418,21
+48419,34
+48420,49
+48422,31
+48424,34
+48425,46
+48426,55
+48427,25
+48430,32
+48431,21
+48432,40
+48433,64
+48434,17
+48435,24
+48436,24
+48437,38
+48438,25
+48439,35
+48440,27
+48441,37
+48444,39
+48445,27
+48446,21
+48447,35
+48448,43
+48449,27
+48450,32
+48451,37
+48452,22
+48453,24
+48454,26
+48455,33
+48457,60
+48458,25
+48459,26
+48460,18
+48461,42
+48462,27
+48463,25
+48464,25
+48465,37
+48466,23
+48467,14
+48468,31
+48469,34
+48470,19
+48471,26
+48472,40
+48474,22
+48475,27
+48476,31
+48477,50
+48478,22
+48479,52
+48480,57
+48481,27
+48482,23
+48483,38
+48484,18
+48485,21
+48486,26
+48487,23
+48488,26
+48489,43
+48490,51
+48491,35
+48492,23
+48493,18
+48496,30
+48497,25
+48498,30
+48499,54
+48500,51
+48501,34
+48502,31
+48503,40
+48505,55
+48506,31
+48507,45
+48508,34
+48509,37
+48510,28
+48511,29
+48512,23
+48513,23
+48514,30
+48516,34
+48517,39
+48518,53
+48519,27
+48520,31
+48521,32
+48522,23
+48523,47
+48524,26
+48525,19
+48526,31
+48527,32
+48528,24
+48530,28
+48532,32
+48533,19
+48534,20
+48535,20
+48536,38
+48537,18
+48538,27
+48539,21
+48540,70
+48541,32
+48542,27
+48544,21
+48545,38
+48546,38
+48547,50
+48548,31
+48549,40
+48551,31
+48552,31
+48553,22
+48554,35
+48555,22
+48556,25
+48557,23
+48559,28
+48560,53
+48561,36
+48562,23
+48563,32
+48564,32
+48565,47
+48566,29
+48567,55
+48568,34
+48569,21
+48570,23
+48571,24
+48572,15
+48573,33
+48574,34
+48576,28
+48577,30
+48578,25
+48579,26
+48581,32
+48582,38
+48585,38
+48586,27
+48587,21
+48588,29
+48589,24
+48590,45
+48591,30
+48592,65
+48596,23
+48597,18
+48598,27
+48599,24
+48601,40
+48602,36
+48603,19
+48605,54
+48606,30
+48607,29
+48608,22
+48609,23
+48610,21
+48611,24
+48613,23
+48614,17
+48615,23
+48616,44
+48617,29
+48618,29
+48620,27
+48621,16
+48622,30
+48623,42
+48625,34
+48626,55
+48627,41
+48628,27
+48629,25
+48630,19
+48631,24
+48632,21
+48633,36
+48634,24
+48635,22
+48636,23
+48637,25
+48638,20
+48640,26
+48641,22
+48642,19
+48643,36
+48644,37
+48645,22
+48646,24
+48648,44
+48649,25
+48650,27
+48651,33
+48652,32
+48653,26
+48654,29
+48655,24
+48656,27
+48657,36
+48658,26
+48659,30
+48660,42
+48661,30
+48662,21
+48663,22
+48664,33
+48665,21
+48666,39
+48667,35
+48668,44
+48669,35
+48670,21
+48671,29
+48672,22
+48673,21
+48674,24
+48675,36
+48676,26
+48677,23
+48678,29
+48679,20
+48680,26
+48681,28
+48684,35
+48686,31
+48687,30
+48688,31
+48689,28
+48691,22
+48692,28
+48693,26
+48694,36
+48695,25
+48696,33
+48697,34
+48698,24
+48699,24
+48700,38
+48701,28
+48702,34
+48703,27
+48704,31
+48705,27
+48706,35
+48707,42
+48708,33
+48710,24
+48711,39
+48713,27
+48714,52
+48715,31
+48716,45
+48717,23
+48718,34
+48719,28
+48720,25
+48721,19
+48722,28
+48723,32
+48724,29
+48725,36
+48726,30
+48727,27
+48728,40
+48729,25
+48730,35
+48731,34
+48732,32
+48733,34
+48734,20
+48735,28
+48736,30
+48737,30
+48738,30
+48739,24
+48740,36
+48741,23
+48743,45
+48744,24
+48745,44
+48746,25
+48747,22
+48748,25
+48749,22
+48750,25
+48751,37
+48752,27
+48753,34
+48754,16
+48755,35
+48756,25
+48757,24
+48758,27
+48759,15
+48760,18
+48761,46
+48762,20
+48764,23
+48765,23
+48766,27
+48767,28
+48768,45
+48769,16
+48770,34
+48771,31
+48772,22
+48773,29
+48774,19
+48775,26
+48776,40
+48778,26
+48779,15
+48780,60
+48781,23
+48782,30
+48783,26
+48784,34
+48785,35
+48786,59
+48787,25
+48788,38
+48789,27
+48790,30
+48791,31
+48792,35
+48794,25
+48795,32
+48796,23
+48797,27
+48798,28
+48799,43
+48800,21
+48801,36
+48802,32
+48803,34
+48804,34
+48805,25
+48807,23
+48808,16
+48809,33
+48810,32
+48811,23
+48812,27
+48813,61
+48814,22
+48815,26
+48816,20
+48817,27
+48819,21
+48820,36
+48821,28
+48822,29
+48823,23
+48824,44
+48825,25
+48826,35
+48827,33
+48828,28
+48831,31
+48832,31
+48833,25
+48834,26
+48835,21
+48836,26
+48837,32
+48838,27
+48839,35
+48840,46
+48841,32
+48842,23
+48843,24
+48844,24
+48845,34
+48846,43
+48847,19
+48848,37
+48849,29
+48851,43
+48852,54
+48853,28
+48854,23
+48855,27
+48856,25
+48857,33
+48858,52
+48859,23
+48860,21
+48861,24
+48862,22
+48864,26
+48865,50
+48866,22
+48867,36
+48868,35
+48871,25
+48873,30
+48875,27
+48876,36
+48877,24
+48878,30
+48879,41
+48880,25
+48883,19
+48884,26
+48885,33
+48886,23
+48887,24
+48888,27
+48889,36
+48890,25
+48891,59
+48892,27
+48893,27
+48894,20
+48895,29
+48896,30
+48897,31
+48898,26
+48899,33
+48900,28
+48901,29
+48902,26
+48903,21
+48904,29
+48905,41
+48906,37
+48907,46
+48908,21
+48909,38
+48910,24
+48913,23
+48915,32
+48916,31
+48917,21
+48918,23
+48919,33
+48920,21
+48921,24
+48923,19
+48924,33
+48925,36
+48926,23
+48927,27
+48928,22
+48929,38
+48930,32
+48931,31
+48932,57
+48933,42
+48934,22
+48935,28
+48937,50
+48938,25
+48939,51
+48940,56
+48941,26
+48942,17
+48943,30
+48944,39
+48945,45
+48946,28
+48947,21
+48948,27
+48950,27
+48951,27
+48952,24
+48953,25
+48954,37
+48956,21
+48957,36
+48958,22
+48959,44
+48961,34
+48962,21
+48963,24
+48964,38
+48965,36
+48966,24
+48967,28
+48968,38
+48969,29
+48970,30
+48971,30
+48973,19
+48974,21
+48975,24
+48976,31
+48977,39
+48978,26
+48979,25
+48980,34
+48982,37
+48983,32
+48984,18
+48985,26
+48986,29
+48987,45
+48988,35
+48989,30
+48990,28
+48991,32
+48992,28
+48993,27
+48994,22
+48995,25
+48996,49
+48997,64
+48998,33
+49000,32
+49001,24
+49002,18
+49003,33
+49004,26
+49005,19
+49006,30
+49007,47
+49008,34
+49009,27
+49010,29
+49011,25
+49012,22
+49013,32
+49014,51
+49015,26
+49016,24
+49017,46
+49019,32
+49020,26
+49022,25
+49023,16
+49024,37
+49025,34
+49026,30
+49027,22
+49028,29
+49029,31
+49030,33
+49031,19
+49032,19
+49033,24
+49034,25
+49035,25
+49036,33
+49037,27
+49038,19
+49039,30
+49040,50
+49041,52
+49042,27
+49043,31
+49044,27
+49045,48
+49046,24
+49047,26
+49048,27
+49049,28
+49050,50
+49052,30
+49053,49
+49054,31
+49055,23
+49056,29
+49057,27
+49058,28
+49059,29
+49060,36
+49061,19
+49063,31
+49064,27
+49065,32
+49067,24
+49068,29
+49069,35
+49070,31
+49071,39
+49072,26
+49073,25
+49075,15
+49076,19
+49077,33
+49078,40
+49079,29
+49080,39
+49081,26
+49082,38
+49083,23
+49084,24
+49085,29
+49086,23
+49087,23
+49088,39
+49089,27
+49090,28
+49092,31
+49093,34
+49094,78
+49095,19
+49096,27
+49097,29
+49098,27
+49099,34
+49100,29
+49101,32
+49102,54
+49103,54
+49104,24
+49105,31
+49106,35
+49107,17
+49108,28
+49109,34
+49110,36
+49111,36
+49113,22
+49114,19
+49115,30
+49116,16
+49117,43
+49118,25
+49119,50
+49120,36
+49121,30
+49122,17
+49123,23
+49124,17
+49125,39
+49126,25
+49127,25
+49128,35
+49129,30
+49130,34
+49131,32
+49132,19
+49135,35
+49136,33
+49137,42
+49138,24
+49139,24
+49141,18
+49142,37
+49143,57
+49144,32
+49145,27
+49146,21
+49147,31
+49148,66
+49149,21
+49150,24
+49151,25
+49152,38
+49154,35
+49155,27
+49156,31
+49157,26
+49158,27
+49159,21
+49160,34
+49161,31
+49163,27
+49164,19
+49165,28
+49166,35
+49167,18
+49168,32
+49170,30
+49171,21
+49172,24
+49173,50
+49174,41
+49175,30
+49176,39
+49177,15
+49178,26
+49179,32
+49180,26
+49181,26
+49182,57
+49183,25
+49184,37
+49185,21
+49186,28
+49187,40
+49188,24
+49189,25
+49190,27
+49191,36
+49192,25
+49193,41
+49194,23
+49195,38
+49196,32
+49198,38
+49200,25
+49201,31
+49203,26
+49204,37
+49205,25
+49206,44
+49207,27
+49208,28
+49209,32
+49210,20
+49211,36
+49212,46
+49213,32
+49215,23
+49217,34
+49218,42
+49219,27
+49220,30
+49221,30
+49222,23
+49223,34
+49224,43
+49225,25
+49226,18
+49229,38
+49231,25
+49232,45
+49233,18
+49235,24
+49237,30
+49238,33
+49239,35
+49240,26
+49241,34
+49242,27
+49243,24
+49244,17
+49245,17
+49246,29
+49248,65
+49249,39
+49250,32
+49251,30
+49252,28
+49253,52
+49254,46
+49255,26
+49256,27
+49257,30
+49259,40
+49260,24
+49262,23
+49263,33
+49264,35
+49265,27
+49266,38
+49268,24
+49270,17
+49271,41
+49272,29
+49273,31
+49274,25
+49275,51
+49276,19
+49277,22
+49278,34
+49280,21
+49281,42
+49286,25
+49287,26
+49288,49
+49289,30
+49290,26
+49291,45
+49292,20
+49293,46
+49294,23
+49295,34
+49296,32
+49297,35
+49298,28
+49299,20
+49301,36
+49302,24
+49303,23
+49304,30
+49305,29
+49306,30
+49308,32
+49309,19
+49310,22
+49311,32
+49312,37
+49313,36
+49314,18
+49315,36
+49316,29
+49317,27
+49318,52
+49319,22
+49320,20
+49321,27
+49323,38
+49324,30
+49325,23
+49326,37
+49327,26
+49328,40
+49329,33
+49330,43
+49331,36
+49332,21
+49333,31
+49334,28
+49335,26
+49336,33
+49337,23
+49338,23
+49339,37
+49340,26
+49341,31
+49343,23
+49344,25
+49345,38
+49346,21
+49347,30
+49348,63
+49349,33
+49350,24
+49351,26
+49352,37
+49353,45
+49354,31
+49355,42
+49356,35
+49357,26
+49358,15
+49359,28
+49360,48
+49361,27
+49363,34
+49364,24
+49366,23
+49367,31
+49368,21
+49369,31
+49370,33
+49371,20
+49372,28
+49373,28
+49374,21
+49375,24
+49376,42
+49377,23
+49378,11
+49379,39
+49380,22
+49381,29
+49382,28
+49384,24
+49385,19
+49386,23
+49387,19
+49388,29
+49389,30
+49390,23
+49391,19
+49392,25
+49393,28
+49395,27
+49396,28
+49397,30
+49398,24
+49399,23
+49402,35
+49403,58
+49404,33
+49405,19
+49406,26
+49407,32
+49408,32
+49409,23
+49410,30
+49411,29
+49412,32
+49413,23
+49414,39
+49415,34
+49416,19
+49417,18
+49418,17
+49419,54
+49420,25
+49421,47
+49422,22
+49423,20
+49424,51
+49425,34
+49426,30
+49427,32
+49428,23
+49430,20
+49431,28
+49432,38
+49433,26
+49434,21
+49436,28
+49437,26
+49438,25
+49439,21
+49440,39
+49441,27
+49442,24
+49443,19
+49444,21
+49445,24
+49446,30
+49447,22
+49448,18
+49450,25
+49451,23
+49452,28
+49453,34
+49454,24
+49455,34
+49456,30
+49457,20
+49458,38
+49459,46
+49460,27
+49461,38
+49462,33
+49463,39
+49464,39
+49465,21
+49466,38
+49467,22
+49468,41
+49470,30
+49471,28
+49472,38
+49473,36
+49474,42
+49475,38
+49476,58
+49477,22
+49478,27
+49481,39
+49483,30
+49484,30
+49485,23
+49486,25
+49487,15
+49488,23
+49490,31
+49491,30
+49493,21
+49494,23
+49495,28
+49496,28
+49497,31
+49499,20
+49500,28
+49501,24
+49502,21
+49503,19
+49504,25
+49505,30
+49506,18
+49507,43
+49508,35
+49509,43
+49510,64
+49511,16
+49512,28
+49513,40
+49514,40
+49515,39
+49516,24
+49517,30
+49519,29
+49520,32
+49521,27
+49522,30
+49523,29
+49524,38
+49525,21
+49526,27
+49527,19
+49529,45
+49530,20
+49531,22
+49532,23
+49533,25
+49534,26
+49535,34
+49536,22
+49537,39
+49538,27
+49539,27
+49540,72
+49541,43
+49542,38
+49543,25
+49544,26
+49545,25
+49546,36
+49547,22
+49548,35
+49549,40
+49550,18
+49551,38
+49552,32
+49553,21
+49554,53
+49555,26
+49556,26
+49557,42
+49558,23
+49559,30
+49561,26
+49563,36
+49564,20
+49565,43
+49566,46
+49567,37
+49568,40
+49569,17
+49570,33
+49571,25
+49572,14
+49573,32
+49574,28
+49575,26
+49576,32
+49577,29
+49578,26
+49579,41
+49580,46
+49581,26
+49582,24
+49584,37
+49585,30
+49586,24
+49587,30
+49588,29
+49589,33
+49591,45
+49593,34
+49595,16
+49596,36
+49597,21
+49598,23
+49599,25
+49600,26
+49602,30
+49603,25
+49604,31
+49605,27
+49606,27
+49607,24
+49608,38
+49609,26
+49611,23
+49612,29
+49613,26
+49614,58
+49615,43
+49616,46
+49617,24
+49619,37
+49620,27
+49621,24
+49622,19
+49623,56
+49625,17
+49626,23
+49627,24
+49628,29
+49629,18
+49630,45
+49631,26
+49632,31
+49633,29
+49634,37
+49635,39
+49636,36
+49638,29
+49639,55
+49640,25
+49641,23
+49642,27
+49643,34
+49644,22
+49645,22
+49646,22
+49647,35
+49648,37
+49649,36
+49650,21
+49651,22
+49653,23
+49654,40
+49656,42
+49658,38
+49659,45
+49661,32
+49662,27
+49663,26
+49664,23
+49665,37
+49667,22
+49668,23
+49669,30
+49670,28
+49671,26
+49673,30
+49676,37
+49677,37
+49678,53
+49679,24
+49680,47
+49681,33
+49682,51
+49683,29
+49684,28
+49685,30
+49686,61
+49687,30
+49688,36
+49689,28
+49690,36
+49691,35
+49692,25
+49693,34
+49694,20
+49695,23
+49697,41
+49698,60
+49699,28
+49700,31
+49701,17
+49703,30
+49704,58
+49706,26
+49707,29
+49708,27
+49709,37
+49710,26
+49711,47
+49712,20
+49714,37
+49716,26
+49717,27
+49718,27
+49719,26
+49720,27
+49721,27
+49722,27
+49723,24
+49724,40
+49725,18
+49726,39
+49727,30
+49728,35
+49729,32
+49730,31
+49731,29
+49732,23
+49733,39
+49734,23
+49736,37
+49738,16
+49739,18
+49741,22
+49742,22
+49743,21
+49744,37
+49747,38
+49748,23
+49749,26
+49750,25
+49751,25
+49752,37
+49753,26
+49754,35
+49755,28
+49756,32
+49757,22
+49758,25
+49759,22
+49760,24
+49761,28
+49762,26
+49763,27
+49764,22
+49765,33
+49766,34
+49767,18
+49768,29
+49769,31
+49770,25
+49771,54
+49772,32
+49773,38
+49774,43
+49775,33
+49776,21
+49777,45
+49778,26
+49780,24
+49781,30
+49782,22
+49783,30
+49784,21
+49785,32
+49786,38
+49787,48
+49788,22
+49789,26
+49790,33
+49791,32
+49792,19
+49793,26
+49794,58
+49795,2
+49796,28
+49797,25
+49798,39
+49799,30
+49800,33
+49801,23
+49802,18
+49804,37
+49805,27
+49806,25
+49807,27
+49808,41
+49809,66
+49810,20
+49811,19
+49812,28
+49813,15
+49814,37
+49815,34
+49816,30
+49817,27
+49818,21
+49819,25
+49820,41
+49821,25
+49822,25
+49823,26
+49824,29
+49825,24
+49826,33
+49827,36
+49828,23
+49829,31
+49830,41
+49831,31
+49833,36
+49834,33
+49835,25
+49836,25
+49837,34
+49838,19
+49839,35
+49840,29
+49841,26
+49843,63
+49844,30
+49845,21
+49846,28
+49847,42
+49848,31
+49849,43
+49850,35
+49852,22
+49853,39
+49854,29
+49855,38
+49856,26
+49857,36
+49860,34
+49861,24
+49862,27
+49863,19
+49865,43
+49866,28
+49868,47
+49869,25
+49870,24
+49871,28
+49872,20
+49873,24
+49874,21
+49875,31
+49876,25
+49877,22
+49878,32
+49879,44
+49880,39
+49881,30
+49882,23
+49883,33
+49884,19
+49885,31
+49886,49
+49887,26
+49888,48
+49889,45
+49891,25
+49893,24
+49895,25
+49897,41
+49898,24
+49899,41
+49900,26
+49901,33
+49902,27
+49903,34
+49904,29
+49905,34
+49906,39
+49907,41
+49908,20
+49909,30
+49911,26
+49912,23
+49913,24
+49914,23
+49915,24
+49917,77
+49918,25
+49919,56
+49920,40
+49922,20
+49923,27
+49924,35
+49925,24
+49926,31
+49927,30
+49928,15
+49929,21
+49931,23
+49932,27
+49933,30
+49934,31
+49936,24
+49937,24
+49938,21
+49939,27
+49940,42
+49941,23
+49942,21
+49943,26
+49944,30
+49945,26
+49946,34
+49947,34
+49948,28
+49949,29
+49950,22
+49952,35
+49953,22
+49954,20
+49956,36
+49957,23
+49958,30
+49959,35
+49960,39
+49961,23
+49962,25
+49963,35
+49965,37
+49966,29
+49967,20
+49968,41
+49969,27
+49970,25
+49971,25
+49972,23
+49973,26
+49974,44
+49975,23
+49976,40
+49977,20
+49978,40
+49980,27
+49981,44
+49982,26
+49983,25
+49984,22
+49986,20
+49987,42
+49988,27
+49989,32
+49990,32
+49993,30
+49994,32
+49995,37
+49996,25
+49997,38
+49998,20
+49999,22
+50000,32
+50001,29
+50002,29
+50003,30
+50004,36
+50005,20
+50006,26
+50007,26
+50008,38
+50009,21
+50010,28
+50011,24
+50012,40
+50013,19
+50014,36
+50015,26
+50016,36
+50017,33
+50018,24
+50019,33
+50021,32
+50022,43
+50023,34
+50024,41
+50025,25
+50026,24
+50027,40
+50028,36
+50029,28
+50030,34
+50031,39
+50032,28
+50034,21
+50035,25
+50036,17
+50037,26
+50038,30
+50039,29
+50040,23
+50041,23
+50043,30
+50044,31
+50045,13
+50046,28
+50048,21
+50049,31
+50050,47
+50051,43
+50052,22
+50053,26
+50055,42
+50056,21
+50057,35
+50058,29
+50059,29
+50060,14
+50061,21
+50063,39
+50065,40
+50067,25
+50068,25
+50069,25
+50070,21
+50071,36
+50072,36
+50073,26
+50074,42
+50076,35
+50077,37
+50078,32
+50079,20
+50080,28
+50081,33
+50082,38
+50084,27
+50085,32
+50086,23
+50087,34
+50088,30
+50089,35
+50091,17
+50092,25
+50093,24
+50094,28
+50095,28
+50096,22
+50097,31
+50098,42
+50099,16
+50100,27
+50101,36
+50102,55
+50103,39
+50104,28
+50105,37
+50108,24
+50109,52
+50110,36
+50111,31
+50112,15
+50114,40
+50115,32
+50116,38
+50117,29
+50119,38
+50120,29
+50121,26
+50122,26
+50125,35
+50126,27
+50128,25
+50129,48
+50130,99
+50131,40
+50132,28
+50133,23
+50134,26
+50135,23
+50136,40
+50137,28
+50138,30
+50139,23
+50140,31
+50142,27
+50143,31
+50144,25
+50145,32
+50147,38
+50148,23
+50149,33
+50150,21
+50151,28
+50152,22
+50153,38
+50154,23
+50156,28
+50157,46
+50158,37
+50159,17
+50160,32
+50161,38
+50162,50
+50163,24
+50164,24
+50165,16
+50167,34
+50168,32
+50169,23
+50170,33
+50171,24
+50172,61
+50174,29
+50175,36
+50176,25
+50177,22
+50179,24
+50180,30
+50181,29
+50182,24
+50183,29
+50184,32
+50185,23
+50186,33
+50187,20
+50188,29
+50189,25
+50190,22
+50191,23
+50192,28
+50194,29
+50195,20
+50196,37
+50197,23
+50198,35
+50199,26
+50200,25
+50201,23
+50202,23
+50203,43
+50204,30
+50205,26
+50206,27
+50207,20
+50208,24
+50209,25
+50210,26
+50211,22
+50213,35
+50214,34
+50215,31
+50216,19
+50217,46
+50218,30
+50219,27
+50220,32
+50221,21
+50222,30
+50223,24
+50224,24
+50225,30
+50227,30
+50228,25
+50229,39
+50230,21
+50231,45
+50232,25
+50233,28
+50234,35
+50235,30
+50236,33
+50237,34
+50238,36
+50239,30
+50240,28
+50242,36
+50243,29
+50244,40
+50245,31
+50246,30
+50247,29
+50249,40
+50250,30
+50251,40
+50253,33
+50254,22
+50256,23
+50257,28
+50258,28
+50260,25
+50261,33
+50262,15
+50263,29
+50264,26
+50265,27
+50266,30
+50267,36
+50268,21
+50269,28
+50270,36
+50271,23
+50272,25
+50273,22
+50274,22
+50275,48
+50276,50
+50277,37
+50278,38
+50279,29
+50280,19
+50281,29
+50282,25
+50283,34
+50284,29
+50285,26
+50286,22
+50287,69
+50288,17
+50289,30
+50290,51
+50292,26
+50293,26
+50295,36
+50296,16
+50297,12
+50298,38
+50299,21
+50300,23
+50301,23
+50302,30
+50303,35
+50304,23
+50305,48
+50306,37
+50307,27
+50308,30
+50310,23
+50311,23
+50312,28
+50313,28
+50314,37
+50315,45
+50316,40
+50317,35
+50318,33
+50319,43
+50320,37
+50321,32
+50322,20
+50323,30
+50324,29
+50325,34
+50326,25
+50327,30
+50328,26
+50329,45
+50330,17
+50331,26
+50332,37
+50333,29
+50334,25
+50335,32
+50336,36
+50337,30
+50338,36
+50339,28
+50341,27
+50346,25
+50347,23
+50348,25
+50349,23
+50350,30
+50351,16
+50352,28
+50353,39
+50354,34
+50355,29
+50356,33
+50357,21
+50359,67
+50360,25
+50361,23
+50362,24
+50363,23
+50364,32
+50366,21
+50367,29
+50368,36
+50369,22
+50370,44
+50371,33
+50372,24
+50373,24
+50374,26
+50375,26
+50376,19
+50377,22
+50378,27
+50379,40
+50380,23
+50381,28
+50382,35
+50383,27
+50384,22
+50385,36
+50386,28
+50387,25
+50388,32
+50390,35
+50391,24
+50392,32
+50393,26
+50394,19
+50395,30
+50396,19
+50397,21
+50398,20
+50399,26
+50400,24
+50401,45
+50402,23
+50403,22
+50404,33
+50405,39
+50406,21
+50407,37
+50408,17
+50409,32
+50410,25
+50411,31
+50413,37
+50414,22
+50416,29
+50419,32
+50420,49
+50421,47
+50423,26
+50424,19
+50425,29
+50426,25
+50427,49
+50428,33
+50429,61
+50430,49
+50431,29
+50432,29
+50434,29
+50436,23
+50438,30
+50439,25
+50440,56
+50441,25
+50442,27
+50443,28
+50444,58
+50445,27
+50446,30
+50447,34
+50448,21
+50449,23
+50450,33
+50451,23
+50452,26
+50453,27
+50454,17
+50455,30
+50456,28
+50457,35
+50459,26
+50460,22
+50461,49
+50462,31
+50463,31
+50464,25
+50465,27
+50466,22
+50467,24
+50468,23
+50469,25
+50470,23
+50472,28
+50473,58
+50474,37
+50475,37
+50476,21
+50477,22
+50478,38
+50479,29
+50480,39
+50481,37
+50482,30
+50484,23
+50485,42
+50486,27
+50487,32
+50489,31
+50491,22
+50492,47
+50494,27
+50495,32
+50496,27
+50497,23
+50498,27
+50499,34
+50500,35
+50501,24
+50502,28
+50503,34
+50504,19
+50505,42
+50506,26
+50507,24
+50508,25
+50509,31
+50510,32
+50511,36
+50512,31
+50513,29
+50514,34
+50515,27
+50516,29
+50517,33
+50518,33
+50519,25
+50521,24
+50522,22
+50523,38
+50524,32
+50525,30
+50526,14
+50527,26
+50528,17
+50529,24
+50530,22
+50532,29
+50533,16
+50534,25
+50535,23
+50536,35
+50537,20
+50538,28
+50539,34
+50540,36
+50541,32
+50543,23
+50544,18
+50545,25
+50546,34
+50547,30
+50548,40
+50549,36
+50550,18
+50551,25
+50552,46
+50554,32
+50555,28
+50556,47
+50557,31
+50558,38
+50560,21
+50561,34
+50562,56
+50563,26
+50564,18
+50565,22
+50566,33
+50567,22
+50568,29
+50569,18
+50570,40
+50571,34
+50572,44
+50573,18
+50574,34
+50575,23
+50576,20
+50577,34
+50579,27
+50581,41
+50582,23
+50583,30
+50584,23
+50585,36
+50586,34
+50587,36
+50589,42
+50591,23
+50592,29
+50593,21
+50594,32
+50595,31
+50596,31
+50597,27
+50599,33
+50600,37
+50601,37
+50602,22
+50603,24
+50604,24
+50608,25
+50609,33
+50610,25
+50611,31
+50612,28
+50613,33
+50614,25
+50615,57
+50616,23
+50618,30
+50619,31
+50620,27
+50621,26
+50622,58
+50623,24
+50624,34
+50625,23
+50626,14
+50627,31
+50628,43
+50629,31
+50630,19
+50631,50
+50632,30
+50633,27
+50635,38
+50636,41
+50638,32
+50639,22
+50640,27
+50641,30
+50642,24
+50643,66
+50644,37
+50645,32
+50647,37
+50648,22
+50649,46
+50651,27
+50652,22
+50653,33
+50654,27
+50655,34
+50656,29
+50657,33
+50658,22
+50660,21
+50661,22
+50662,36
+50663,20
+50664,21
+50666,52
+50667,30
+50669,26
+50670,28
+50671,24
+50673,30
+50674,21
+50675,31
+50677,32
+50678,32
+50679,31
+50680,27
+50681,58
+50682,39
+50683,42
+50684,24
+50686,32
+50687,25
+50688,27
+50689,27
+50690,52
+50691,25
+50692,35
+50693,20
+50694,30
+50696,26
+50697,30
+50698,25
+50699,28
+50700,34
+50701,36
+50702,22
+50703,20
+50704,30
+50705,40
+50706,21
+50707,19
+50709,32
+50710,46
+50711,42
+50712,32
+50713,33
+50714,25
+50715,23
+50716,37
+50717,26
+50718,2
+50719,34
+50720,24
+50721,39
+50722,36
+50724,24
+50725,64
+50727,25
+50728,23
+50729,28
+50730,29
+50731,44
+50733,32
+50734,21
+50735,32
+50736,29
+50737,21
+50738,44
+50739,24
+50740,28
+50741,34
+50742,21
+50744,38
+50745,29
+50746,21
+50747,39
+50748,27
+50749,32
+50750,19
+50751,30
+50752,14
+50753,32
+50754,28
+50755,22
+50756,32
+50757,29
+50758,26
+50759,27
+50760,42
+50761,25
+50762,26
+50763,28
+50764,24
+50765,27
+50766,21
+50768,33
+50769,27
+50771,31
+50773,34
+50774,21
+50775,38
+50776,29
+50777,30
+50778,23
+50779,33
+50780,38
+50781,33
+50783,23
+50784,25
+50785,27
+50786,25
+50787,44
+50789,65
+50790,23
+50791,21
+50792,33
+50793,24
+50794,23
+50795,17
+50796,16
+50797,30
+50799,25
+50800,20
+50801,32
+50802,35
+50803,16
+50805,42
+50806,40
+50807,26
+50808,40
+50809,17
+50810,28
+50812,35
+50813,42
+50814,29
+50815,29
+50816,25
+50817,24
+50818,43
+50819,28
+50820,28
+50821,38
+50822,35
+50823,36
+50824,26
+50825,20
+50826,38
+50828,58
+50829,23
+50830,21
+50831,37
+50832,27
+50833,29
+50834,26
+50835,23
+50836,30
+50838,24
+50840,16
+50841,30
+50842,24
+50843,25
+50844,38
+50845,38
+50846,44
+50847,99
+50849,20
+50850,36
+50851,36
+50852,24
+50853,29
+50854,31
+50855,29
+50856,33
+50858,36
+50859,34
+50860,33
+50861,22
+50863,45
+50864,52
+50865,28
+50866,36
+50867,52
+50869,25
+50870,27
+50871,42
+50872,25
+50874,26
+50875,31
+50876,39
+50877,28
+50878,29
+50879,21
+50880,21
+50881,48
+50882,42
+50883,31
+50884,30
+50885,43
+50886,19
+50887,68
+50888,31
+50889,17
+50890,31
+50891,35
+50895,20
+50896,31
+50897,34
+50898,27
+50899,34
+50900,23
+50901,29
+50902,30
+50903,27
+50904,20
+50905,22
+50906,45
+50907,28
+50908,26
+50909,19
+50910,35
+50911,40
+50912,26
+50913,27
+50914,23
+50915,23
+50916,29
+50917,43
+50918,31
+50919,53
+50920,28
+50921,27
+50922,22
+50923,27
+50924,27
+50925,25
+50926,25
+50927,29
+50929,40
+50930,29
+50931,42
+50932,25
+50933,35
+50934,38
+50935,40
+50936,26
+50937,24
+50938,32
+50939,16
+50942,37
+50943,21
+50944,28
+50945,32
+50946,30
+50947,31
+50948,12
+50949,26
+50950,26
+50951,31
+50952,20
+50953,31
+50954,26
+50955,21
+50956,27
+50957,27
+50958,22
+50959,23
+50960,27
+50961,32
+50962,34
+50963,24
+50964,31
+50965,70
+50967,26
+50968,36
+50969,42
+50970,25
+50971,60
+50972,29
+50973,24
+50974,26
+50975,37
+50976,24
+50977,38
+50978,37
+50979,18
+50981,52
+50983,28
+50984,22
+50985,45
+50986,40
+50987,25
+50988,24
+50989,26
+50990,42
+50991,41
+50992,22
+50993,42
+50994,36
+50995,30
+50996,26
+50997,56
+50998,45
+50999,25
+51000,25
+51001,30
+51002,29
+51004,26
+51005,40
+51006,19
+51007,28
+51011,38
+51012,60
+51013,20
+51015,29
+51016,17
+51017,41
+51020,30
+51021,23
+51022,28
+51023,21
+51024,15
+51025,30
+51026,22
+51027,28
+51028,36
+51029,30
+51031,27
+51032,43
+51033,36
+51034,32
+51035,28
+51036,27
+51037,58
+51038,26
+51040,32
+51041,27
+51043,26
+51044,25
+51045,21
+51046,25
+51048,26
+51049,35
+51051,26
+51052,26
+51053,40
+51054,29
+51055,39
+51056,48
+51058,22
+51060,30
+51061,33
+51062,35
+51063,26
+51064,23
+51065,27
+51066,27
+51067,25
+51068,46
+51069,42
+51070,25
+51071,25
+51072,23
+51073,25
+51074,37
+51075,28
+51076,40
+51077,33
+51078,22
+51079,25
+51080,25
+51081,44
+51082,32
+51083,26
+51084,23
+51085,22
+51087,20
+51088,22
+51089,23
+51090,33
+51091,72
+51092,32
+51093,18
+51094,23
+51095,20
+51097,25
+51098,27
+51099,24
+51100,13
+51101,29
+51102,32
+51103,30
+51104,24
+51105,33
+51106,32
+51108,28
+51109,24
+51110,28
+51111,35
+51112,41
+51113,36
+51114,19
+51115,30
+51116,18
+51118,38
+51119,54
+51121,51
+51122,23
+51123,23
+51124,25
+51125,35
+51126,31
+51127,30
+51128,36
+51129,25
+51130,36
+51131,59
+51132,38
+51134,33
+51135,36
+51136,44
+51137,29
+51138,58
+51139,55
+51140,31
+51141,24
+51142,21
+51144,29
+51145,23
+51146,31
+51148,32
+51149,28
+51150,27
+51151,52
+51153,23
+51154,27
+51155,37
+51156,38
+51157,43
+51158,26
+51159,44
+51160,54
+51161,33
+51162,29
+51163,27
+51164,18
+51165,30
+51166,32
+51167,33
+51168,39
+51169,28
+51170,34
+51171,26
+51172,35
+51173,20
+51175,27
+51176,30
+51177,27
+51178,30
+51179,23
+51180,27
+51181,44
+51182,44
+51183,35
+51184,29
+51185,34
+51186,42
+51187,22
+51188,26
+51189,35
+51190,22
+51191,21
+51192,29
+51193,28
+51194,29
+51195,20
+51196,21
+51197,33
+51198,21
+51199,14
+51200,34
+51201,38
+51203,29
+51204,26
+51205,26
+51206,20
+51207,32
+51208,20
+51209,38
+51210,23
+51211,27
+51212,36
+51213,24
+51214,25
+51215,41
+51216,35
+51217,35
+51218,23
+51219,21
+51220,34
+51221,30
+51222,26
+51224,36
+51226,25
+51227,31
+51229,29
+51230,33
+51231,22
+51232,64
+51233,35
+51234,29
+51237,25
+51238,32
+51239,44
+51240,27
+51241,22
+51242,39
+51243,33
+51244,35
+51245,44
+51246,31
+51247,23
+51248,29
+51249,49
+51250,29
+51251,22
+51253,60
+51254,32
+51255,28
+51256,28
+51257,39
+51259,27
+51260,41
+51261,29
+51262,29
+51264,26
+51265,26
+51267,24
+51268,24
+51269,35
+51270,27
+51271,29
+51272,32
+51273,27
+51274,35
+51275,36
+51277,23
+51278,27
+51280,26
+51281,26
+51283,24
+51284,37
+51285,45
+51286,23
+51287,29
+51288,38
+51289,16
+51291,58
+51292,29
+51294,51
+51295,32
+51296,30
+51297,32
+51298,28
+51299,21
+51300,29
+51301,28
+51302,24
+51303,35
+51304,22
+51305,30
+51306,26
+51307,23
+51308,37
+51309,42
+51310,31
+51311,32
+51312,25
+51314,29
+51318,24
+51319,39
+51320,22
+51321,26
+51322,33
+51323,17
+51324,32
+51325,32
+51326,25
+51327,43
+51328,47
+51329,26
+51330,30
+51331,50
+51332,18
+51333,35
+51334,23
+51335,26
+51336,40
+51337,29
+51338,33
+51339,31
+51340,42
+51341,29
+51342,23
+51343,27
+51344,24
+51345,25
+51346,23
+51348,30
+51349,41
+51350,28
+51351,40
+51352,38
+51353,41
+51355,33
+51358,29
+51360,29
+51361,32
+51362,30
+51363,30
+51364,37
+51366,58
+51367,21
+51368,27
+51369,42
+51370,20
+51371,51
+51372,34
+51373,58
+51374,28
+51375,39
+51376,30
+51377,34
+51378,26
+51379,26
+51380,33
+51381,33
+51382,25
+51383,36
+51384,41
+51385,34
+51386,28
+51387,21
+51388,25
+51389,60
+51390,29
+51391,31
+51392,21
+51393,34
+51394,34
+51395,34
+51396,24
+51397,17
+51398,22
+51400,20
+51401,38
+51402,23
+51403,39
+51404,47
+51405,18
+51406,36
+51407,24
+51408,25
+51409,21
+51410,24
+51411,25
+51412,29
+51413,50
+51414,36
+51415,23
+51416,29
+51418,24
+51421,36
+51422,34
+51423,38
+51425,53
+51426,21
+51427,36
+51428,15
+51429,25
+51430,22
+51431,34
+51432,24
+51433,23
+51434,29
+51435,28
+51437,25
+51438,27
+51439,29
+51440,49
+51441,13
+51442,30
+51443,35
+51445,31
+51446,21
+51447,18
+51449,24
+51450,31
+51451,27
+51452,22
+51453,39
+51454,33
+51455,31
+51456,24
+51457,24
+51458,33
+51459,32
+51460,54
+51461,40
+51462,29
+51463,31
+51464,24
+51465,43
+51466,47
+51467,20
+51468,46
+51469,18
+51470,30
+51471,42
+51473,21
+51474,26
+51475,26
+51476,28
+51477,26
+51478,17
+51479,25
+51480,44
+51481,30
+51483,19
+51484,34
+51485,32
+51486,15
+51487,35
+51488,25
+51489,30
+51490,28
+51493,29
+51494,18
+51495,20
+51496,48
+51497,41
+51498,26
+51499,24
+51500,19
+51501,22
+51502,40
+51503,37
+51505,26
+51506,35
+51508,39
+51509,34
+51510,23
+51511,25
+51512,24
+51513,28
+51514,39
+51515,36
+51516,27
+51518,26
+51520,21
+51521,23
+51522,33
+51523,19
+51524,24
+51525,22
+51526,32
+51527,29
+51528,42
+51530,39
+51531,45
+51532,33
+51533,23
+51535,27
+51536,36
+51537,28
+51538,57
+51539,34
+51540,16
+51541,33
+51542,34
+51543,28
+51544,48
+51545,26
+51546,30
+51547,23
+51548,27
+51549,31
+51551,29
+51552,37
+51553,27
+51555,54
+51556,36
+51557,22
+51559,41
+51560,29
+51561,27
+51562,43
+51563,28
+51564,20
+51565,61
+51566,29
+51567,33
+51568,31
+51569,27
+51571,36
+51572,21
+51573,44
+51574,26
+51575,26
+51576,38
+51577,27
+51578,23
+51579,24
+51580,25
+51582,26
+51583,45
+51584,22
+51585,37
+51586,19
+51587,28
+51589,36
+51590,22
+51591,31
+51592,28
+51593,29
+51594,25
+51595,30
+51596,24
+51597,25
+51598,27
+51599,42
+51600,42
+51601,44
+51603,28
+51604,27
+51606,19
+51607,27
+51609,33
+51610,21
+51611,56
+51612,26
+51613,33
+51614,23
+51615,27
+51616,45
+51617,31
+51618,19
+51619,29
+51620,23
+51621,28
+51622,21
+51623,38
+51624,34
+51625,27
+51626,24
+51627,25
+51628,21
+51629,29
+51630,26
+51631,32
+51632,26
+51633,22
+51634,37
+51635,22
+51636,28
+51637,13
+51638,56
+51639,14
+51640,37
+51641,40
+51642,26
+51643,34
+51645,20
+51646,40
+51647,29
+51649,23
+51650,36
+51651,21
+51652,29
+51653,21
+51654,30
+51655,18
+51656,28
+51657,41
+51658,32
+51659,27
+51660,31
+51661,27
+51663,58
+51664,42
+51665,32
+51666,32
+51667,36
+51668,35
+51669,30
+51670,24
+51671,18
+51672,18
+51673,51
+51674,39
+51675,29
+51676,32
+51678,36
+51679,33
+51680,41
+51681,14
+51682,51
+51683,25
+51684,27
+51685,37
+51686,35
+51687,32
+51688,43
+51689,36
+51690,27
+51691,27
+51692,21
+51693,40
+51694,27
+51695,27
+51696,26
+51697,23
+51698,31
+51699,33
+51700,31
+51701,27
+51702,53
+51703,51
+51705,26
+51706,36
+51707,61
+51708,48
+51709,32
+51710,24
+51711,23
+51712,50
+51713,19
+51714,51
+51715,22
+51716,18
+51717,37
+51718,32
+51720,36
+51721,27
+51722,15
+51723,28
+51724,37
+51725,21
+51726,27
+51727,23
+51728,58
+51729,24
+51730,39
+51731,21
+51733,22
+51734,29
+51735,26
+51736,27
+51738,13
+51739,20
+51740,27
+51741,50
+51742,27
+51743,38
+51744,45
+51746,25
+51747,21
+51748,30
+51749,27
+51750,38
+51751,29
+51752,44
+51753,57
+51754,36
+51755,26
+51756,39
+51757,22
+51758,28
+51759,49
+51760,34
+51761,18
+51762,23
+51763,36
+51764,21
+51765,29
+51766,24
+51767,35
+51768,25
+51769,20
+51770,23
+51772,19
+51773,20
+51774,25
+51775,25
+51776,21
+51778,30
+51779,44
+51780,32
+51782,29
+51783,37
+51784,24
+51785,30
+51786,21
+51787,33
+51788,24
+51789,28
+51790,29
+51791,34
+51792,19
+51793,25
+51794,60
+51795,42
+51796,25
+51797,39
+51798,21
+51799,23
+51800,25
+51802,37
+51803,37
+51804,27
+51805,36
+51806,33
+51809,23
+51810,29
+51811,21
+51812,32
+51813,35
+51814,32
+51815,22
+51816,29
+51817,22
+51818,21
+51819,32
+51820,24
+51821,42
+51822,58
+51823,33
+51824,24
+51825,60
+51826,27
+51827,28
+51828,31
+51829,39
+51830,30
+51832,30
+51833,29
+51834,29
+51835,33
+51836,22
+51837,17
+51838,24
+51839,44
+51840,56
+51842,34
+51845,28
+51846,21
+51847,36
+51848,34
+51849,34
+51850,28
+51851,39
+51852,25
+51853,24
+51854,16
+51855,52
+51856,29
+51857,30
+51858,25
+51860,33
+51861,30
+51863,29
+51864,35
+51865,24
+51866,32
+51867,38
+51868,27
+51869,29
+51870,26
+51871,26
+51872,47
+51873,33
+51874,36
+51875,28
+51877,28
+51878,33
+51879,29
+51881,29
+51882,24
+51883,26
+51884,31
+51885,43
+51886,41
+51887,52
+51888,40
+51889,22
+51890,32
+51891,28
+51892,27
+51893,26
+51894,24
+51895,38
+51896,21
+51897,49
+51898,42
+51899,30
+51900,55
+51901,58
+51902,27
+51903,41
+51904,50
+51906,44
+51907,22
+51908,29
+51909,28
+51910,31
+51911,21
+51912,24
+51913,25
+51914,22
+51915,24
+51916,25
+51917,36
+51919,35
+51920,26
+51921,36
+51922,43
+51923,26
+51924,60
+51925,21
+51926,32
+51927,16
+51928,24
+51929,28
+51930,26
+51931,36
+51932,27
+51933,25
+51934,20
+51935,26
+51936,29
+51937,24
+51938,44
+51939,61
+51940,32
+51941,24
+51942,21
+51944,35
+51945,63
+51946,29
+51947,62
+51949,38
+51950,25
+51951,45
+51952,41
+51953,28
+51954,18
+51955,29
+51956,23
+51957,25
+51958,23
+51959,35
+51961,38
+51962,22
+51963,23
+51964,53
+51965,32
+51966,52
+51967,24
+51968,40
+51969,44
+51970,24
+51971,25
+51972,42
+51973,30
+51974,24
+51976,31
+51977,37
+51978,24
+51979,42
+51980,21
+51981,24
+51983,33
+51984,24
+51985,27
+51986,51
+51987,26
+51990,40
+51991,33
+51992,27
+51993,23
+51994,26
+51995,38
+51996,23
+51997,24
+51998,42
+51999,28
+52000,21
+52001,22
+52002,41
+52003,27
+52004,19
+52005,34
+52006,21
+52007,35
+52009,56
+52010,25
+52011,30
+52012,25
+52013,19
+52014,26
+52016,25
+52017,32
+52018,19
+52019,25
+52020,27
+52021,27
+52022,23
+52023,38
+52024,21
+52025,23
+52026,36
+52027,25
+52028,20
+52029,25
+52030,25
+52031,23
+52032,37
+52033,60
+52034,27
+52035,37
+52036,25
+52037,29
+52038,34
+52039,35
+52040,32
+52041,24
+52042,28
+52043,37
+52044,30
+52046,32
+52047,26
+52048,20
+52049,29
+52050,20
+52051,31
+52052,27
+52053,17
+52054,32
+52055,31
+52056,39
+52057,48
+52058,26
+52059,32
+52060,20
+52061,28
+52062,25
+52063,38
+52065,28
+52066,51
+52067,28
+52068,36
+52070,27
+52071,22
+52072,48
+52074,25
+52076,23
+52078,29
+52079,43
+52080,28
+52081,32
+52082,40
+52083,33
+52085,26
+52086,30
+52087,48
+52088,26
+52089,53
+52090,20
+52091,22
+52092,33
+52094,34
+52095,36
+52096,27
+52097,47
+52098,19
+52099,25
+52100,26
+52101,35
+52103,49
+52105,23
+52106,26
+52107,24
+52108,28
+52109,24
+52110,18
+52111,37
+52112,33
+52113,45
+52114,23
+52116,30
+52117,61
+52118,28
+52119,15
+52120,37
+52121,28
+52122,14
+52123,28
+52124,38
+52125,24
+52126,36
+52127,40
+52128,22
+52129,31
+52130,74
+52131,28
+52132,48
+52133,22
+52134,52
+52135,25
+52136,33
+52137,32
+52138,43
+52139,37
+52141,26
+52142,24
+52143,34
+52144,35
+52145,27
+52146,29
+52147,74
+52148,37
+52149,32
+52150,29
+52152,37
+52153,20
+52155,35
+52157,47
+52158,27
+52159,22
+52160,30
+52161,47
+52162,23
+52163,26
+52164,19
+52165,53
+52167,24
+52168,35
+52169,25
+52170,37
+52171,36
+52172,43
+52174,16
+52175,22
+52177,30
+52178,40
+52180,19
+52181,27
+52182,38
+52183,26
+52184,57
+52185,30
+52186,28
+52188,36
+52189,30
+52191,19
+52192,51
+52193,33
+52194,40
+52195,44
+52196,28
+52197,35
+52198,37
+52199,52
+52200,54
+52201,26
+52202,43
+52203,25
+52204,22
+52205,30
+52206,32
+52207,26
+52208,33
+52209,32
+52210,57
+52211,23
+52213,23
+52214,31
+52216,24
+52217,30
+52219,24
+52220,33
+52221,37
+52222,20
+52223,28
+52224,33
+52225,34
+52226,27
+52228,18
+52229,34
+52230,25
+52231,22
+52232,23
+52233,41
+52234,23
+52235,28
+52236,38
+52237,37
+52238,30
+52239,22
+52240,28
+52241,34
+52242,30
+52243,33
+52245,31
+52246,54
+52248,18
+52249,20
+52250,34
+52251,38
+52252,20
+52253,38
+52254,24
+52255,28
+52256,33
+52258,70
+52259,25
+52260,28
+52261,25
+52262,26
+52264,31
+52265,34
+52267,29
+52268,29
+52269,38
+52271,33
+52272,44
+52273,29
+52276,53
+52277,24
+52278,32
+52279,38
+52281,45
+52282,20
+52283,28
+52284,43
+52285,23
+52286,20
+52287,23
+52288,20
+52289,55
+52290,34
+52291,25
+52292,18
+52293,27
+52294,23
+52296,54
+52297,51
+52298,28
+52300,24
+52301,43
+52302,32
+52303,30
+52304,22
+52306,19
+52307,27
+52308,65
+52309,24
+52310,29
+52311,24
+52313,29
+52314,28
+52318,24
+52319,25
+52320,37
+52321,36
+52322,24
+52323,32
+52324,34
+52325,54
+52326,31
+52328,20
+52330,51
+52331,32
+52332,14
+52333,21
+52334,16
+52335,20
+52336,41
+52337,34
+52338,17
+52339,18
+52340,33
+52341,23
+52342,34
+52343,40
+52344,22
+52345,28
+52346,33
+52347,28
+52348,23
+52349,22
+52350,25
+52351,45
+52352,18
+52353,26
+52354,49
+52355,29
+52356,25
+52357,23
+52358,25
+52359,47
+52360,26
+52361,36
+52362,44
+52363,21
+52364,30
+52365,35
+52367,49
+52369,30
+52370,24
+52371,36
+52372,18
+52374,23
+52375,30
+52376,69
+52377,31
+52378,25
+52379,37
+52381,25
+52382,27
+52383,28
+52384,30
+52385,29
+52386,32
+52387,20
+52388,22
+52389,21
+52390,25
+52392,27
+52393,29
+52394,27
+52395,24
+52396,28
+52397,28
+52398,26
+52399,19
+52400,30
+52401,25
+52402,29
+52404,27
+52405,21
+52406,32
+52407,41
+52408,33
+52409,29
+52410,31
+52411,59
+52412,34
+52413,26
+52414,28
+52415,26
+52416,34
+52418,43
+52419,27
+52421,30
+52422,26
+52423,32
+52424,29
+52425,52
+52426,28
+52427,22
+52428,40
+52429,37
+52431,20
+52432,23
+52433,49
+52435,19
+52436,38
+52437,23
+52438,31
+52439,32
+52440,73
+52441,36
+52442,23
+52443,30
+52444,27
+52445,26
+52446,27
+52447,31
+52448,58
+52449,24
+52450,19
+52451,23
+52452,29
+52453,26
+52454,57
+52455,28
+52456,23
+52457,32
+52458,52
+52460,40
+52461,29
+52462,32
+52463,23
+52464,36
+52465,33
+52466,23
+52467,28
+52468,23
+52469,24
+52470,27
+52472,25
+52473,21
+52475,24
+52476,30
+52477,24
+52478,25
+52479,26
+52480,20
+52482,37
+52485,25
+52487,58
+52488,19
+52489,24
+52490,26
+52491,22
+52492,36
+52493,52
+52495,22
+52496,32
+52497,28
+52499,20
+52500,42
+52501,48
+52502,23
+52503,13
+52504,28
+52505,22
+52506,32
+52507,37
+52508,17
+52509,21
+52510,28
+52511,23
+52513,25
+52514,45
+52515,28
+52516,22
+52517,26
+52518,22
+52519,25
+52520,22
+52521,15
+52524,33
+52525,30
+52526,22
+52527,31
+52528,26
+52529,30
+52530,24
+52531,26
+52532,41
+52533,33
+52534,25
+52535,29
+52537,27
+52538,16
+52539,25
+52540,42
+52541,64
+52542,14
+52543,24
+52544,25
+52545,41
+52546,24
+52547,25
+52549,35
+52550,33
+52551,31
+52552,31
+52553,24
+52554,26
+52555,25
+52556,23
+52557,30
+52558,26
+52559,25
+52560,22
+52561,31
+52562,32
+52563,27
+52564,33
+52565,39
+52566,29
+52567,38
+52568,36
+52569,24
+52570,25
+52571,27
+52572,26
+52573,20
+52574,24
+52575,27
+52576,43
+52577,37
+52578,29
+52579,34
+52580,24
+52581,29
+52582,25
+52583,36
+52584,27
+52585,34
+52586,31
+52587,34
+52589,31
+52590,31
+52591,40
+52592,30
+52593,36
+52594,37
+52595,30
+52596,27
+52597,27
+52599,27
+52600,28
+52601,18
+52602,21
+52603,25
+52604,25
+52605,26
+52606,23
+52607,31
+52609,20
+52610,21
+52611,31
+52612,41
+52613,22
+52614,30
+52615,20
+52616,35
+52617,30
+52618,34
+52619,34
+52620,16
+52621,26
+52622,31
+52625,19
+52626,22
+52627,25
+52628,22
+52629,36
+52631,26
+52632,21
+52633,62
+52634,24
+52635,17
+52636,27
+52637,19
+52639,31
+52640,27
+52641,24
+52642,22
+52643,34
+52644,18
+52645,21
+52646,14
+52648,37
+52649,50
+52650,26
+52651,23
+52652,20
+52653,32
+52654,31
+52655,26
+52656,29
+52657,28
+52658,29
+52659,38
+52661,24
+52662,41
+52663,26
+52664,30
+52665,27
+52666,35
+52667,32
+52670,54
+52671,38
+52673,35
+52675,56
+52676,15
+52678,23
+52679,22
+52680,21
+52681,26
+52682,27
+52683,27
+52684,30
+52685,20
+52686,26
+52687,48
+52688,26
+52689,28
+52690,21
+52692,29
+52693,52
+52694,35
+52695,53
+52696,25
+52697,33
+52698,33
+52699,35
+52700,31
+52703,27
+52704,26
+52706,18
+52708,38
+52709,28
+52710,24
+52711,28
+52712,30
+52713,26
+52714,38
+52715,27
+52716,26
+52718,28
+52719,39
+52720,19
+52721,28
+52722,26
+52723,40
+52724,24
+52725,30
+52726,38
+52727,26
+52729,30
+52730,66
+52731,28
+52732,19
+52733,21
+52734,21
+52735,32
+52736,29
+52737,19
+52738,30
+52739,23
+52740,37
+52741,20
+52742,28
+52743,25
+52746,33
+52747,27
+52748,23
+52749,27
+52750,30
+52751,23
+52752,36
+52753,21
+52754,29
+52755,29
+52756,22
+52758,33
+52759,28
+52760,36
+52761,38
+52762,37
+52763,24
+52764,32
+52765,20
+52766,29
+52767,25
+52768,34
+52769,31
+52770,42
+52771,25
+52772,37
+52773,34
+52774,46
+52775,30
+52776,28
+52777,19
+52778,23
+52779,42
+52780,28
+52781,30
+52782,26
+52783,27
+52785,36
+52786,40
+52787,24
+52789,32
+52790,22
+52791,48
+52792,48
+52793,23
+52795,26
+52796,22
+52797,40
+52798,34
+52799,34
+52800,27
+52801,28
+52802,46
+52803,26
+52804,29
+52805,14
+52806,62
+52807,64
+52808,31
+52809,30
+52810,46
+52811,41
+52812,22
+52813,22
+52814,43
+52815,24
+52817,22
+52818,22
+52819,57
+52820,24
+52821,26
+52822,39
+52823,22
+52825,18
+52826,21
+52827,21
+52828,35
+52829,33
+52830,25
+52831,25
+52832,18
+52833,20
+52834,19
+52835,28
+52836,59
+52837,25
+52838,25
+52839,25
+52841,22
+52842,18
+52843,21
+52844,31
+52845,27
+52846,24
+52847,42
+52848,48
+52849,23
+52850,19
+52851,23
+52852,21
+52853,26
+52854,20
+52855,32
+52856,30
+52857,20
+52858,27
+52859,23
+52861,28
+52862,58
+52863,23
+52864,34
+52865,28
+52866,33
+52867,32
+52868,26
+52870,25
+52871,37
+52872,52
+52873,26
+52874,36
+52875,35
+52876,23
+52877,20
+52878,54
+52879,46
+52880,30
+52881,29
+52882,24
+52883,23
+52885,21
+52886,27
+52887,26
+52888,35
+52889,34
+52890,19
+52891,27
+52892,31
+52893,28
+52895,21
+52896,25
+52897,23
+52898,46
+52899,20
+52900,39
+52901,44
+52903,47
+52904,19
+52906,25
+52907,30
+52908,50
+52911,27
+52912,29
+52913,27
+52915,22
+52916,51
+52917,47
+52918,23
+52919,30
+52920,29
+52921,29
+52922,29
+52924,45
+52925,24
+52926,25
+52927,31
+52928,24
+52929,24
+52930,37
+52931,43
+52933,16
+52934,26
+52935,22
+52936,39
+52937,54
+52938,29
+52939,25
+52940,29
+52941,28
+52942,38
+52943,26
+52944,27
+52947,22
+52948,24
+52949,20
+52950,39
+52951,20
+52952,23
+52953,26
+52954,19
+52955,31
+52956,18
+52957,27
+52958,25
+52959,30
+52960,31
+52961,40
+52962,40
+52963,26
+52964,48
+52965,30
+52966,42
+52967,23
+52968,34
+52969,45
+52970,32
+52971,24
+52972,26
+52973,27
+52974,24
+52976,35
+52977,29
+52978,22
+52980,49
+52981,28
+52982,28
+52983,29
+52984,25
+52985,32
+52987,29
+52988,24
+52989,29
+52990,37
+52991,23
+52992,28
+52993,22
+52994,37
+52995,40
+52996,28
+52997,29
+52999,25
+53001,40
+53002,55
+53003,35
+53004,25
+53005,20
+53006,24
+53007,34
+53009,40
+53010,22
+53012,40
+53014,20
+53015,28
+53017,23
+53018,33
+53019,30
+53020,39
+53021,27
+53022,35
+53023,23
+53024,35
+53025,37
+53026,37
+53027,29
+53029,25
+53030,21
+53031,25
+53032,40
+53033,25
+53034,24
+53035,33
+53036,20
+53037,38
+53038,35
+53039,18
+53041,20
+53042,30
+53043,35
+53044,32
+53045,18
+53046,49
+53048,42
+53049,47
+53050,36
+53051,35
+53052,32
+53054,25
+53055,34
+53056,29
+53057,28
+53058,38
+53059,32
+53060,29
+53061,49
+53062,32
+53063,25
+53064,36
+53065,62
+53066,28
+53067,20
+53068,37
+53069,23
+53070,36
+53071,23
+53072,26
+53074,33
+53075,23
+53076,50
+53077,20
+53078,23
+53079,35
+53080,28
+53081,40
+53082,34
+53083,30
+53084,33
+53085,24
+53086,31
+53087,44
+53089,22
+53090,35
+53091,20
+53092,35
+53093,22
+53094,26
+53095,28
+53096,47
+53097,20
+53098,53
+53099,18
+53100,42
+53101,20
+53102,24
+53103,26
+53104,24
+53105,24
+53106,35
+53107,46
+53108,41
+53109,18
+53110,41
+53111,49
+53112,30
+53113,43
+53114,28
+53115,30
+53116,24
+53117,39
+53118,33
+53119,22
+53120,34
+53121,20
+53122,26
+53123,23
+53125,21
+53126,24
+53127,43
+53128,21
+53129,29
+53130,33
+53131,27
+53132,31
+53133,37
+53134,37
+53135,27
+53136,26
+53137,24
+53138,24
+53139,36
+53140,54
+53141,23
+53142,30
+53143,16
+53144,14
+53145,26
+53146,20
+53147,20
+53148,25
+53149,25
+53151,21
+53152,53
+53153,25
+53154,19
+53155,40
+53156,44
+53157,28
+53158,30
+53159,23
+53160,45
+53161,44
+53163,28
+53164,24
+53165,45
+53167,15
+53168,35
+53169,22
+53170,24
+53172,39
+53173,33
+53174,30
+53175,34
+53176,37
+53178,30
+53179,25
+53180,27
+53181,21
+53182,25
+53183,36
+53184,28
+53185,37
+53186,22
+53187,25
+53188,18
+53189,28
+53190,52
+53191,20
+53192,45
+53193,51
+53195,42
+53196,24
+53197,36
+53198,39
+53199,28
+53200,35
+53201,35
+53203,37
+53204,30
+53205,31
+53206,39
+53207,39
+53208,30
+53209,45
+53210,35
+53211,45
+53212,36
+53213,53
+53214,26
+53215,31
+53217,27
+53219,25
+53220,23
+53221,23
+53222,30
+53223,31
+53224,27
+53225,35
+53226,26
+53227,20
+53228,23
+53229,19
+53230,32
+53231,30
+53232,26
+53233,37
+53234,29
+53236,35
+53237,23
+53238,31
+53239,34
+53240,46
+53241,20
+53242,28
+53243,26
+53244,23
+53245,23
+53246,31
+53247,39
+53248,42
+53249,18
+53250,20
+53251,26
+53253,29
+53254,25
+53255,22
+53256,23
+53257,42
+53258,46
+53259,33
+53260,55
+53261,46
+53262,30
+53263,32
+53264,25
+53265,24
+53266,19
+53267,21
+53268,22
+53269,35
+53270,46
+53271,30
+53272,37
+53273,30
+53274,39
+53276,40
+53277,30
+53278,49
+53279,38
+53280,32
+53281,34
+53282,38
+53284,27
+53285,28
+53286,35
+53288,30
+53289,39
+53290,28
+53291,23
+53292,19
+53293,26
+53294,30
+53295,42
+53296,56
+53297,22
+53298,39
+53299,28
+53301,29
+53302,28
+53303,20
+53305,36
+53306,36
+53307,33
+53308,15
+53309,21
+53310,47
+53311,39
+53312,31
+53313,23
+53314,24
+53315,22
+53316,50
+53318,28
+53319,34
+53320,50
+53321,35
+53323,26
+53324,24
+53325,22
+53326,40
+53327,25
+53328,25
+53329,32
+53330,25
+53331,23
+53333,28
+53334,58
+53335,34
+53338,22
+53339,26
+53341,21
+53342,30
+53344,25
+53345,21
+53346,26
+53347,53
+53348,33
+53349,44
+53350,35
+53351,22
+53353,31
+53354,32
+53355,30
+53356,34
+53357,29
+53358,26
+53359,35
+53360,30
+53361,26
+53362,54
+53363,29
+53364,34
+53365,29
+53366,19
+53367,26
+53368,22
+53369,49
+53370,23
+53371,35
+53372,27
+53373,26
+53374,29
+53375,24
+53376,23
+53378,23
+53379,35
+53381,22
+53382,44
+53384,33
+53385,24
+53386,43
+53387,27
+53388,45
+53389,24
+53390,22
+53391,27
+53392,18
+53394,33
+53395,30
+53397,36
+53398,24
+53399,21
+53400,40
+53401,32
+53402,23
+53403,44
+53404,26
+53405,33
+53406,27
+53409,43
+53410,37
+53411,26
+53412,49
+53413,33
+53414,21
+53415,28
+53416,28
+53417,20
+53418,24
+53419,33
+53420,27
+53421,17
+53422,32
+53423,32
+53424,29
+53425,34
+53426,24
+53427,41
+53428,26
+53429,21
+53430,27
+53431,31
+53433,31
+53434,28
+53435,31
+53436,23
+53437,29
+53439,26
+53440,24
+53441,25
+53442,27
+53443,32
+53444,21
+53445,28
+53446,30
+53447,33
+53448,49
+53449,27
+53450,26
+53451,23
+53453,17
+53454,36
+53455,21
+53456,33
+53457,39
+53458,23
+53459,40
+53460,30
+53461,27
+53462,32
+53464,20
+53465,25
+53466,23
+53469,35
+53471,22
+53472,34
+53473,24
+53474,25
+53475,30
+53476,32
+53477,22
+53479,38
+53480,28
+53481,32
+53482,30
+53485,39
+53486,40
+53487,21
+53488,34
+53489,24
+53490,29
+53491,34
+53493,25
+53494,44
+53495,24
+53497,30
+53498,28
+53499,19
+53500,27
+53501,31
+53502,30
+53503,29
+53504,21
+53505,44
+53506,28
+53507,29
+53509,30
+53510,32
+53511,28
+53512,25
+53514,35
+53515,39
+53516,32
+53517,35
+53518,24
+53520,25
+53521,57
+53522,40
+53523,30
+53524,61
+53525,31
+53526,35
+53527,47
+53528,48
+53529,28
+53530,51
+53531,15
+53532,23
+53533,34
+53534,25
+53536,26
+53537,37
+53538,30
+53539,25
+53540,28
+53543,27
+53544,28
+53545,23
+53546,22
+53547,36
+53548,28
+53549,29
+53550,65
+53551,33
+53552,24
+53553,31
+53554,30
+53557,28
+53558,25
+53560,30
+53561,26
+53562,30
+53563,19
+53564,33
+53565,25
+53567,28
+53568,14
+53569,25
+53570,43
+53571,29
+53572,32
+53573,29
+53575,28
+53576,31
+53577,25
+53578,27
+53579,35
+53580,24
+53581,28
+53582,27
+53583,31
+53584,21
+53586,26
+53588,28
+53589,18
+53590,31
+53591,24
+53592,26
+53593,29
+53594,26
+53595,45
+53596,20
+53597,48
+53598,28
+53599,24
+53600,32
+53601,23
+53602,27
+53603,34
+53604,30
+53605,35
+53606,24
+53607,20
+53608,24
+53609,37
+53610,19
+53611,33
+53612,25
+53613,20
+53614,31
+53615,34
+53616,15
+53617,43
+53618,40
+53619,21
+53620,19
+53621,33
+53622,35
+53623,30
+53624,31
+53625,29
+53627,35
+53628,28
+53630,34
+53632,31
+53633,30
+53634,29
+53635,26
+53636,55
+53637,53
+53638,20
+53640,25
+53641,40
+53642,23
+53643,25
+53644,38
+53645,32
+53646,24
+53647,24
+53648,23
+53649,24
+53651,59
+53652,25
+53653,28
+53654,36
+53655,38
+53656,31
+53657,25
+53658,43
+53659,29
+53661,27
+53662,23
+53664,23
+53665,25
+53666,28
+53667,22
+53668,25
+53669,38
+53670,27
+53672,26
+53673,22
+53674,20
+53675,25
+53676,27
+53677,28
+53678,29
+53679,16
+53680,22
+53681,21
+53682,43
+53683,24
+53684,20
+53686,18
+53687,23
+53689,35
+53690,62
+53691,28
+53693,22
+53694,32
+53695,30
+53696,18
+53697,32
+53698,29
+53699,28
+53700,27
+53701,21
+53702,30
+53703,20
+53704,17
+53705,22
+53706,47
+53707,34
+53708,24
+53709,26
+53710,37
+53711,28
+53712,24
+53715,25
+53716,22
+53717,26
+53718,32
+53719,28
+53722,30
+53723,32
+53724,25
+53725,26
+53726,30
+53727,31
+53728,26
+53730,27
+53731,40
+53732,29
+53733,27
+53734,22
+53737,23
+53738,39
+53739,29
+53740,31
+53741,60
+53742,27
+53743,34
+53744,35
+53746,51
+53747,44
+53748,30
+53749,43
+53750,45
+53751,20
+53752,26
+53753,22
+53754,24
+53755,25
+53756,32
+53757,23
+53758,21
+53759,24
+53760,21
+53761,47
+53763,27
+53764,22
+53765,28
+53766,24
+53767,40
+53768,27
+53769,22
+53771,27
+53772,56
+53773,25
+53774,44
+53775,20
+53777,22
+53778,32
+53779,59
+53780,24
+53781,35
+53782,24
+53784,31
+53785,39
+53786,32
+53787,42
+53788,25
+53789,28
+53791,47
+53792,26
+53793,23
+53794,34
+53795,26
+53796,21
+53797,34
+53799,39
+53800,37
+53801,27
+53802,22
+53803,19
+53804,26
+53805,30
+53807,25
+53808,25
+53809,20
+53810,27
+53811,57
+53812,33
+53813,27
+53814,27
+53815,36
+53817,20
+53818,31
+53819,24
+53820,20
+53822,25
+53823,30
+53825,58
+53826,38
+53828,23
+53829,46
+53830,23
+53831,36
+53832,29
+53833,30
+53835,36
+53836,17
+53837,24
+53838,27
+53840,34
+53841,32
+53842,27
+53843,18
+53844,31
+53845,35
+53846,19
+53847,24
+53848,34
+53849,34
+53850,30
+53851,31
+53852,33
+53853,30
+53854,43
+53855,29
+53856,28
+53857,30
+53858,21
+53859,25
+53861,19
+53862,16
+53864,38
+53865,38
+53866,34
+53868,38
+53869,26
+53870,29
+53871,28
+53872,24
+53873,48
+53874,28
+53876,33
+53877,40
+53878,32
+53879,22
+53880,22
+53881,16
+53882,27
+53883,35
+53884,22
+53885,30
+53886,30
+53887,22
+53888,43
+53889,30
+53890,28
+53891,55
+53892,23
+53893,39
+53894,28
+53896,25
+53897,33
+53898,27
+53899,23
+53900,57
+53901,26
+53902,41
+53903,38
+53904,21
+53905,43
+53906,29
+53907,46
+53908,34
+53909,33
+53910,53
+53911,37
+53912,48
+53914,56
+53915,33
+53916,27
+53917,29
+53918,25
+53919,37
+53920,34
+53921,28
+53923,19
+53924,16
+53925,28
+53926,22
+53927,24
+53929,22
+53930,26
+53931,21
+53932,24
+53933,29
+53934,40
+53935,48
+53936,23
+53937,29
+53938,24
+53939,28
+53940,43
+53941,21
+53942,18
+53943,34
+53944,23
+53945,14
+53946,18
+53947,35
+53948,27
+53949,29
+53951,30
+53952,23
+53953,32
+53955,30
+53956,22
+53957,20
+53958,28
+53959,27
+53960,31
+53962,27
+53963,16
+53964,29
+53965,19
+53966,28
+53968,23
+53969,30
+53971,31
+53972,32
+53973,38
+53974,28
+53975,27
+53976,28
+53978,47
+53980,28
+53981,62
+53982,33
+53983,33
+53985,25
+53986,16
+53987,42
+53988,30
+53989,17
+53990,30
+53991,24
+53992,32
+53994,47
+53995,17
+53999,46
+54000,32
+54002,27
+54004,37
+54005,38
+54006,37
+54007,60
+54008,31
+54009,31
+54010,26
+54011,13
+54012,34
+54013,39
+54014,22
+54015,43
+54016,35
+54017,25
+54019,45
+54020,23
+54021,50
+54022,18
+54023,30
+54024,22
+54026,32
+54027,29
+54028,32
+54029,24
+54030,21
+54031,19
+54032,25
+54033,26
+54034,58
+54035,27
+54038,51
+54040,21
+54041,26
+54042,37
+54043,30
+54044,23
+54045,25
+54046,43
+54047,30
+54048,18
+54049,32
+54050,30
+54052,44
+54054,30
+54055,27
+54056,24
+54057,24
+54059,15
+54060,36
+54061,33
+54063,18
+54065,24
+54066,31
+54067,37
+54068,37
+54070,38
+54071,26
+54072,25
+54073,23
+54074,23
+54075,27
+54076,23
+54077,30
+54078,25
+54079,25
+54080,25
+54081,31
+54082,29
+54083,63
+54084,31
+54085,26
+54086,32
+54087,30
+54088,27
+54089,55
+54090,32
+54091,24
+54092,35
+54093,35
+54094,24
+54095,25
+54096,37
+54097,26
+54099,31
+54100,24
+54101,32
+54102,24
+54103,26
+54104,32
+54105,37
+54106,31
+54107,24
+54108,32
+54109,28
+54110,39
+54111,35
+54112,29
+54113,19
+54114,24
+54115,14
+54116,42
+54117,53
+54118,29
+54119,32
+54120,29
+54121,39
+54123,27
+54124,37
+54125,37
+54126,28
+54127,21
+54128,25
+54129,34
+54130,17
+54131,24
+54132,45
+54133,20
+54134,27
+54135,26
+54136,31
+54137,27
+54138,37
+54139,14
+54140,25
+54141,33
+54142,30
+54143,25
+54144,25
+54145,18
+54146,25
+54147,26
+54150,29
+54151,38
+54152,35
+54153,39
+54154,19
+54155,44
+54156,27
+54157,36
+54158,36
+54159,39
+54160,25
+54161,53
+54163,26
+54164,22
+54166,37
+54167,27
+54168,22
+54169,37
+54170,22
+54171,20
+54172,25
+54173,40
+54174,45
+54175,24
+54176,33
+54177,29
+54178,34
+54179,37
+54180,19
+54181,34
+54182,37
+54184,30
+54185,26
+54186,19
+54187,28
+54188,34
+54189,32
+54191,30
+54192,17
+54194,29
+54195,33
+54196,40
+54197,22
+54198,39
+54199,18
+54201,33
+54202,28
+54204,28
+54205,24
+54206,30
+54207,31
+54208,28
+54209,28
+54210,39
+54211,25
+54212,23
+54213,45
+54214,27
+54215,33
+54216,29
+54217,27
+54218,26
+54219,26
+54220,29
+54221,22
+54222,43
+54223,20
+54224,23
+54225,21
+54226,32
+54227,32
+54228,30
+54229,23
+54230,29
+54231,28
+54232,15
+54233,35
+54234,25
+54235,35
+54236,26
+54237,31
+54238,26
+54239,37
+54240,49
+54241,64
+54242,41
+54244,36
+54246,29
+54247,29
+54248,32
+54249,30
+54250,24
+54251,37
+54253,28
+54254,33
+54255,23
+54256,18
+54257,19
+54260,35
+54261,25
+54262,15
+54263,20
+54264,34
+54265,25
+54267,33
+54268,58
+54269,25
+54270,23
+54271,33
+54272,28
+54273,26
+54274,29
+54275,31
+54276,46
+54278,48
+54279,24
+54280,23
+54282,27
+54283,34
+54284,27
+54285,37
+54286,27
+54288,18
+54289,43
+54290,32
+54292,23
+54293,28
+54294,35
+54295,27
+54296,27
+54297,21
+54298,41
+54299,34
+54300,36
+54301,37
+54302,24
+54303,50
+54304,26
+54305,26
+54306,33
+54307,21
+54308,26
+54309,53
+54310,41
+54311,16
+54312,41
+54313,23
+54314,20
+54315,20
+54316,30
+54317,32
+54318,30
+54319,30
+54320,23
+54321,30
+54322,28
+54323,48
+54325,12
+54326,33
+54327,29
+54328,32
+54329,29
+54331,20
+54332,30
+54333,44
+54334,46
+54335,32
+54336,19
+54337,11
+54338,34
+54339,41
+54340,25
+54343,18
+54344,32
+54345,40
+54346,32
+54347,29
+54348,20
+54349,27
+54350,44
+54351,33
+54352,37
+54353,20
+54354,29
+54355,33
+54356,22
+54357,28
+54358,36
+54359,42
+54360,22
+54361,30
+54362,28
+54363,22
+54364,21
+54365,33
+54366,25
+54367,21
+54368,32
+54370,37
+54372,34
+54374,28
+54375,22
+54376,62
+54377,32
+54378,27
+54379,37
+54381,18
+54382,14
+54383,29
+54384,27
+54386,28
+54387,34
+54388,40
+54392,38
+54393,34
+54394,13
+54395,35
+54396,31
+54397,17
+54399,34
+54400,26
+54401,26
+54402,28
+54403,20
+54404,20
+54405,32
+54406,33
+54407,34
+54408,26
+54409,32
+54410,30
+54411,37
+54412,39
+54413,21
+54414,29
+54415,42
+54416,38
+54417,23
+54418,24
+54419,18
+54420,32
+54421,27
+54422,31
+54424,33
+54425,27
+54426,21
+54427,38
+54428,24
+54429,22
+54430,39
+54431,54
+54432,25
+54434,40
+54435,23
+54436,23
+54437,22
+54438,32
+54439,26
+54440,22
+54441,21
+54442,22
+54443,27
+54445,15
+54446,29
+54447,36
+54448,24
+54450,27
+54451,27
+54452,25
+54453,27
+54454,36
+54455,18
+54456,49
+54457,53
+54458,22
+54459,27
+54460,26
+54461,40
+54462,29
+54463,36
+54464,40
+54465,27
+54466,37
+54467,35
+54469,30
+54470,28
+54471,38
+54472,29
+54473,23
+54474,20
+54476,28
+54477,22
+54478,22
+54479,59
+54480,43
+54481,31
+54482,36
+54483,39
+54484,22
+54485,36
+54486,33
+54487,28
+54488,37
+54489,20
+54490,25
+54491,41
+54492,29
+54493,40
+54494,30
+54495,22
+54497,19
+54498,38
+54499,37
+54500,26
+54501,20
+54502,31
+54503,34
+54504,27
+54505,30
+54507,24
+54508,44
+54509,31
+54510,40
+54511,24
+54512,32
+54513,28
+54518,29
+54520,36
+54521,34
+54522,31
+54523,29
+54524,29
+54525,35
+54526,21
+54527,20
+54528,28
+54529,25
+54530,50
+54532,32
+54533,38
+54534,36
+54535,33
+54536,28
+54537,33
+54538,18
+54539,38
+54540,34
+54541,30
+54542,21
+54544,27
+54545,31
+54546,43
+54547,31
+54548,22
+54549,21
+54550,37
+54551,24
+54552,35
+54553,19
+54554,45
+54555,26
+54556,33
+54557,39
+54558,35
+54559,36
+54560,21
+54561,26
+54563,30
+54564,34
+54566,36
+54567,24
+54568,19
+54569,16
+54570,33
+54571,32
+54572,29
+54574,34
+54575,19
+54577,40
+54578,16
+54580,22
+54581,21
+54583,30
+54584,34
+54585,53
+54586,30
+54587,16
+54588,22
+54589,31
+54590,60
+54591,27
+54592,23
+54593,34
+54594,25
+54595,23
+54596,28
+54597,26
+54598,48
+54599,21
+54600,35
+54601,39
+54602,23
+54603,24
+54604,31
+54605,49
+54607,22
+54608,31
+54609,28
+54610,32
+54611,35
+54612,28
+54613,41
+54614,25
+54615,34
+54616,41
+54617,27
+54618,30
+54620,27
+54621,33
+54622,26
+54623,32
+54624,27
+54625,31
+54626,33
+54628,41
+54629,24
+54630,24
+54631,17
+54632,21
+54633,21
+54634,36
+54635,36
+54636,56
+54637,26
+54638,36
+54640,24
+54643,32
+54644,25
+54645,42
+54646,35
+54647,25
+54648,34
+54649,41
+54651,45
+54652,20
+54653,24
+54654,40
+54655,28
+54656,34
+54657,39
+54658,40
+54659,33
+54660,29
+54661,24
+54663,27
+54667,32
+54668,27
+54669,23
+54670,30
+54671,22
+54672,46
+54673,23
+54675,31
+54676,49
+54677,32
+54678,24
+54679,23
+54680,26
+54681,31
+54682,40
+54683,22
+54684,21
+54685,36
+54686,38
+54687,35
+54691,21
+54692,26
+54694,33
+54696,24
+54697,26
+54698,36
+54699,18
+54700,42
+54702,27
+54703,15
+54705,27
+54706,35
+54707,40
+54708,30
+54709,36
+54710,28
+54711,35
+54712,21
+54713,23
+54714,14
+54715,29
+54717,27
+54718,23
+54719,26
+54720,22
+54721,35
+54722,40
+54723,28
+54724,28
+54725,33
+54726,36
+54727,37
+54728,41
+54729,23
+54730,28
+54731,35
+54732,25
+54733,26
+54735,25
+54736,22
+54737,20
+54738,42
+54739,61
+54740,41
+54741,23
+54742,27
+54743,26
+54744,24
+54745,25
+54746,33
+54747,45
+54749,25
+54750,33
+54751,36
+54752,28
+54753,27
+54754,24
+54755,39
+54756,25
+54757,32
+54758,26
+54759,33
+54760,25
+54762,20
+54763,25
+54764,29
+54765,43
+54766,19
+54767,29
+54768,51
+54770,42
+54772,37
+54773,24
+54774,30
+54775,25
+54776,42
+54778,30
+54779,35
+54780,42
+54781,40
+54782,36
+54783,26
+54784,30
+54785,18
+54786,46
+54787,14
+54788,21
+54789,42
+54790,22
+54792,25
+54793,24
+54795,22
+54797,27
+54798,25
+54799,23
+54801,18
+54802,26
+54803,22
+54804,32
+54805,35
+54806,33
+54808,28
+54809,12
+54810,33
+54811,27
+54812,11
+54813,45
+54814,31
+54815,31
+54816,28
+54817,49
+54818,34
+54819,30
+54820,26
+54821,28
+54822,35
+54823,26
+54824,20
+54825,29
+54826,28
+54827,32
+54828,26
+54829,32
+54830,21
+54832,27
+54833,28
+54834,30
+54835,30
+54836,28
+54837,41
+54839,28
+54840,29
+54843,17
+54844,54
+54845,25
+54846,51
+54847,36
+54848,34
+54849,30
+54850,45
+54851,27
+54852,19
+54853,27
+54854,35
+54855,30
+54856,42
+54857,14
+54858,21
+54859,29
+54860,29
+54861,30
+54862,34
+54863,28
+54864,32
+54865,35
+54866,29
+54867,18
+54868,51
+54869,63
+54870,22
+54871,24
+54872,24
+54873,23
+54874,36
+54875,36
+54876,33
+54877,32
+54878,37
+54879,23
+54880,21
+54881,33
+54882,25
+54883,19
+54884,30
+54885,38
+54886,38
+54887,30
+54888,24
+54889,22
+54890,21
+54891,20
+54892,53
+54893,27
+54894,25
+54895,39
+54896,21
+54897,27
+54898,28
+54899,28
+54900,26
+54901,23
+54902,31
+54903,25
+54904,26
+54905,34
+54906,29
+54907,28
+54909,14
+54911,32
+54912,22
+54913,35
+54915,19
+54916,22
+54917,40
+54918,36
+54919,35
+54920,37
+54921,47
+54922,45
+54923,30
+54924,30
+54925,26
+54926,31
+54927,25
+54928,37
+54929,30
+54930,36
+54931,32
+54932,33
+54933,12
+54934,50
+54935,37
+54936,31
+54937,40
+54938,25
+54939,33
+54940,33
+54941,21
+54943,37
+54944,22
+54945,33
+54947,38
+54948,34
+54950,30
+54951,24
+54952,29
+54953,27
+54954,22
+54956,23
+54957,30
+54958,17
+54959,38
+54960,36
+54961,30
+54962,20
+54963,30
+54964,35
+54965,25
+54967,27
+54968,18
+54969,30
+54970,21
+54971,41
+54973,37
+54974,17
+54975,23
+54976,40
+54977,31
+54978,34
+54979,18
+54981,22
+54982,21
+54983,39
+54984,26
+54985,23
+54988,27
+54989,56
+54990,31
+54991,38
+54992,37
+54993,28
+54994,33
+54995,20
+54996,34
+54997,19
+54998,45
+54999,32
+55000,28
+55001,33
+55002,28
+55004,13
+55006,46
+55007,30
+55008,32
+55009,22
+55010,31
+55011,28
+55012,24
+55013,37
+55014,21
+55015,19
+55016,37
+55017,39
+55019,31
+55020,33
+55021,24
+55023,32
+55024,37
+55025,21
+55026,61
+55027,24
+55028,39
+55029,33
+55030,30
+55032,48
+55035,26
+55036,47
+55037,39
+55038,24
+55039,25
+55040,53
+55041,35
+55042,34
+55043,22
+55044,18
+55045,25
+55046,37
+55047,41
+55048,22
+55049,28
+55050,38
+55051,27
+55052,45
+55053,24
+55054,31
+55058,47
+55059,24
+55060,24
+55061,41
+55062,16
+55063,16
+55064,16
+55065,26
+55066,46
+55067,57
+55068,16
+55069,26
+55070,25
+55071,43
+55072,49
+55073,50
+55074,36
+55075,26
+55076,22
+55077,30
+55078,30
+55079,24
+55080,25
+55081,22
+55082,37
+55083,30
+55084,26
+55085,23
+55086,24
+55087,30
+55088,25
+55089,24
+55090,30
+55091,31
+55092,24
+55093,28
+55094,45
+55095,38
+55096,22
+55097,22
+55098,37
+55099,31
+55100,35
+55101,47
+55102,31
+55104,36
+55105,20
+55106,20
+55107,26
+55108,27
+55109,31
+55110,24
+55112,28
+55113,30
+55115,27
+55116,24
+55117,33
+55118,23
+55119,73
+55120,44
+55121,23
+55122,27
+55123,35
+55124,36
+55125,24
+55126,22
+55127,24
+55129,24
+55130,24
+55131,21
+55132,34
+55133,23
+55134,25
+55135,40
+55136,21
+55137,17
+55138,28
+55139,35
+55140,31
+55141,54
+55142,30
+55143,39
+55144,23
+55145,39
+55146,32
+55148,36
+55149,31
+55151,33
+55152,65
+55153,27
+55154,22
+55156,27
+55157,20
+55158,41
+55159,30
+55160,42
+55161,20
+55162,37
+55163,31
+55164,31
+55165,56
+55166,21
+55167,25
+55168,37
+55169,30
+55171,26
+55174,21
+55175,26
+55176,31
+55177,36
+55178,29
+55179,49
+55180,31
+55181,31
+55182,38
+55183,30
+55184,15
+55185,36
+55186,21
+55187,43
+55188,25
+55189,25
+55191,21
+55192,32
+55193,38
+55194,20
+55195,28
+55196,25
+55197,38
+55198,30
+55200,22
+55201,24
+55202,22
+55203,18
+55204,28
+55205,32
+55206,36
+55208,33
+55209,23
+55210,26
+55211,34
+55212,32
+55213,24
+55214,35
+55215,41
+55216,23
+55217,24
+55218,44
+55219,27
+55220,27
+55221,29
+55222,31
+55223,36
+55225,41
+55226,28
+55227,21
+55228,17
+55229,46
+55230,33
+55231,31
+55232,25
+55233,19
+55235,39
+55236,30
+55237,28
+55238,45
+55239,17
+55240,64
+55241,17
+55242,24
+55243,23
+55245,45
+55246,29
+55247,38
+55248,38
+55249,19
+55253,29
+55254,16
+55255,34
+55256,26
+55257,37
+55258,25
+55259,21
+55260,29
+55261,49
+55262,31
+55263,31
+55264,35
+55265,23
+55266,35
+55267,30
+55268,29
+55269,35
+55270,25
+55271,23
+55273,17
+55274,35
+55275,37
+55276,38
+55277,28
+55278,27
+55279,24
+55280,27
+55281,22
+55282,36
+55283,43
+55284,25
+55285,34
+55286,26
+55287,49
+55288,44
+55289,24
+55290,33
+55291,53
+55292,38
+55293,37
+55294,27
+55295,37
+55296,36
+55297,23
+55298,30
+55299,28
+55300,39
+55301,30
+55302,27
+55303,23
+55305,28
+55306,25
+55307,31
+55308,30
+55309,38
+55310,29
+55311,28
+55312,28
+55313,38
+55314,29
+55315,26
+55316,36
+55317,40
+55318,26
+55319,40
+55320,35
+55321,24
+55322,23
+55323,17
+55324,35
+55325,56
+55326,26
+55327,27
+55328,40
+55329,24
+55330,28
+55331,24
+55332,25
+55333,37
+55334,28
+55335,22
+55336,41
+55338,30
+55340,22
+55341,22
+55342,38
+55343,29
+55344,46
+55345,29
+55347,19
+55348,30
+55349,35
+55350,23
+55351,38
+55352,26
+55353,26
+55354,21
+55355,26
+55356,25
+55357,23
+55358,48
+55359,30
+55360,25
+55361,26
+55362,31
+55363,33
+55364,17
+55365,37
+55366,27
+55367,27
+55368,23
+55370,15
+55371,28
+55373,25
+55374,28
+55375,20
+55379,24
+55380,27
+55381,25
+55383,20
+55384,37
+55385,27
+55386,26
+55388,35
+55389,23
+55390,29
+55391,33
+55392,35
+55393,42
+55395,30
+55396,30
+55397,21
+55398,41
+55399,55
+55400,27
+55401,23
+55402,29
+55404,24
+55405,33
+55406,24
+55407,25
+55408,37
+55409,33
+55410,27
+55411,22
+55413,42
+55414,38
+55415,50
+55416,29
+55417,34
+55419,59
+55420,27
+55421,28
+55423,27
+55424,16
+55425,42
+55427,25
+55428,25
+55429,24
+55430,50
+55431,25
+55432,20
+55433,36
+55434,27
+55435,29
+55436,34
+55437,23
+55438,24
+55439,20
+55440,33
+55441,18
+55442,23
+55443,42
+55444,42
+55445,32
+55446,24
+55448,30
+55450,25
+55451,29
+55453,42
+55455,28
+55456,21
+55457,49
+55458,24
+55459,42
+55460,29
+55461,30
+55462,13
+55463,33
+55464,37
+55465,22
+55466,13
+55467,39
+55468,39
+55469,29
+55470,36
+55471,58
+55473,40
+55475,23
+55477,41
+55478,18
+55479,40
+55480,22
+55481,27
+55482,53
+55483,16
+55484,27
+55485,18
+55486,28
+55487,25
+55488,32
+55490,21
+55491,40
+55492,43
+55493,32
+55494,40
+55496,21
+55497,23
+55498,45
+55499,22
+55500,26
+55501,22
+55502,30
+55503,30
+55504,64
+55505,27
+55507,27
+55508,37
+55509,19
+55510,45
+55511,45
+55512,33
+55513,25
+55514,39
+55515,60
+55516,20
+55517,29
+55518,40
+55519,27
+55520,31
+55521,29
+55522,27
+55524,28
+55525,37
+55526,18
+55527,16
+55528,17
+55529,57
+55530,36
+55531,30
+55532,19
+55533,40
+55534,26
+55535,48
+55536,26
+55538,32
+55539,28
+55540,31
+55541,20
+55542,26
+55543,26
+55544,26
+55545,22
+55546,25
+55547,14
+55548,19
+55549,22
+55550,28
+55551,17
+55552,24
+55553,30
+55554,47
+55555,32
+55556,29
+55557,21
+55558,49
+55559,25
+55560,24
+55561,31
+55562,23
+55563,24
+55564,36
+55565,19
+55566,30
+55567,33
+55568,30
+55569,28
+55570,40
+55571,62
+55572,22
+55573,36
+55574,38
+55575,40
+55576,30
+55577,45
+55578,27
+55579,47
+55580,21
+55581,21
+55582,40
+55583,30
+55584,40
+55585,24
+55586,23
+55587,21
+55588,25
+55590,22
+55591,40
+55592,25
+55593,36
+55594,27
+55595,23
+55596,51
+55597,31
+55598,27
+55599,21
+55600,24
+55601,23
+55602,27
+55604,29
+55605,27
+55606,25
+55607,33
+55608,23
+55609,26
+55610,29
+55611,25
+55612,30
+55613,35
+55614,24
+55615,34
+55616,26
+55618,27
+55619,24
+55621,33
+55622,33
+55623,32
+55624,26
+55626,43
+55627,25
+55628,33
+55629,29
+55630,26
+55631,23
+55632,37
+55633,34
+55634,16
+55635,23
+55636,34
+55637,23
+55638,34
+55639,27
+55640,25
+55641,28
+55643,32
+55644,23
+55645,24
+55646,32
+55647,50
+55648,43
+55649,19
+55650,21
+55651,36
+55653,28
+55654,27
+55655,54
+55656,34
+55657,33
+55658,28
+55659,29
+55660,28
+55661,33
+55662,22
+55663,30
+55664,32
+55665,31
+55666,23
+55667,34
+55668,26
+55669,24
+55670,40
+55672,21
+55674,23
+55675,32
+55676,40
+55677,42
+55679,32
+55680,31
+55681,33
+55682,36
+55684,30
+55685,27
+55686,34
+55687,38
+55688,47
+55689,35
+55690,30
+55691,39
+55692,36
+55693,26
+55694,20
+55695,42
+55696,41
+55697,24
+55698,31
+55699,27
+55700,24
+55701,38
+55703,20
+55704,35
+55705,22
+55706,25
+55707,29
+55708,28
+55709,28
+55710,19
+55711,28
+55712,30
+55713,22
+55717,34
+55719,22
+55720,35
+55721,22
+55722,27
+55723,23
+55724,28
+55725,23
+55727,32
+55729,28
+55730,23
+55731,20
+55732,23
+55734,25
+55735,53
+55736,22
+55737,20
+55738,25
+55739,36
+55740,57
+55741,27
+55743,32
+55744,48
+55745,26
+55747,31
+55748,25
+55749,25
+55750,19
+55751,33
+55752,31
+55753,27
+55754,36
+55755,29
+55756,22
+55757,30
+55758,35
+55759,33
+55760,56
+55761,26
+55762,30
+55763,21
+55764,19
+55765,31
+55766,26
+55767,22
+55768,33
+55769,31
+55770,23
+55771,21
+55772,36
+55773,16
+55774,24
+55775,34
+55776,27
+55777,27
+55778,40
+55779,36
+55780,27
+55781,31
+55782,23
+55784,25
+55785,26
+55786,35
+55787,31
+55789,37
+55790,25
+55791,22
+55792,23
+55793,34
+55794,72
+55795,37
+55796,21
+55797,34
+55799,48
+55800,32
+55801,54
+55802,27
+55803,44
+55804,47
+55806,36
+55807,43
+55808,31
+55809,25
+55810,36
+55811,43
+55812,41
+55813,35
+55814,55
+55815,27
+55816,27
+55817,26
+55818,29
+55819,33
+55820,38
+55821,23
+55822,27
+55823,30
+55824,24
+55825,39
+55826,28
+55827,45
+55828,23
+55829,18
+55832,39
+55833,38
+55835,27
+55836,29
+55837,22
+55838,30
+55839,30
+55840,47
+55841,37
+55842,23
+55843,45
+55844,32
+55845,16
+55846,32
+55847,26
+55848,25
+55849,46
+55850,28
+55853,35
+55854,21
+55855,36
+55856,26
+55857,23
+55858,34
+55859,23
+55860,25
+55861,31
+55862,67
+55863,16
+55864,22
+55865,32
+55867,29
+55868,56
+55869,17
+55870,33
+55871,20
+55872,31
+55873,22
+55874,26
+55875,34
+55876,26
+55877,25
+55878,22
+55879,17
+55880,33
+55881,22
+55882,25
+55883,22
+55884,26
+55886,27
+55887,59
+55888,23
+55889,44
+55890,23
+55892,24
+55893,29
+55894,23
+55895,33
+55896,35
+55897,27
+55898,40
+55899,19
+55900,72
+55902,62
+55903,23
+55904,24
+55905,28
+55906,37
+55907,30
+55908,25
+55909,29
+55910,31
+55911,23
+55912,19
+55913,25
+55914,25
+55915,32
+55916,23
+55917,24
+55918,41
+55919,25
+55920,39
+55921,29
+55922,49
+55923,28
+55924,22
+55925,36
+55926,27
+55927,26
+55928,22
+55929,28
+55931,18
+55932,33
+55933,27
+55934,25
+55935,29
+55936,38
+55937,34
+55938,25
+55939,37
+55940,23
+55941,44
+55943,41
+55944,21
+55945,40
+55946,38
+55947,26
+55948,24
+55949,38
+55950,40
+55951,47
+55952,33
+55953,36
+55954,48
+55956,25
+55957,39
+55958,26
+55959,35
+55960,25
+55961,28
+55962,40
+55963,58
+55964,30
+55965,40
+55966,23
+55967,21
+55968,31
+55970,32
+55971,38
+55972,31
+55973,28
+55974,23
+55975,26
+55976,28
+55977,20
+55978,34
+55980,28
+55981,38
+55982,28
+55983,32
+55985,20
+55986,19
+55987,64
+55988,32
+55990,31
+55991,34
+55992,25
+55993,38
+55994,33
+55995,24
+55996,23
+55997,23
+55998,28
+56000,29
+56001,37
+56003,20
+56004,23
+56005,14
+56006,28
+56008,29
+56009,23
+56010,26
+56011,36
+56012,24
+56013,53
+56014,25
+56015,40
+56016,41
+56017,39
+56018,32
+56019,25
+56020,20
+56022,48
+56023,20
+56024,23
+56025,29
+56026,22
+56027,26
+56028,20
+56029,24
+56030,43
+56031,28
+56032,22
+56033,31
+56034,32
+56035,25
+56036,40
+56037,30
+56038,35
+56039,19
+56041,23
+56042,29
+56043,30
+56044,28
+56046,30
+56047,37
+56049,17
+56050,27
+56051,19
+56052,51
+56053,32
+56054,24
+56055,32
+56056,39
+56057,27
+56058,49
+56059,24
+56061,21
+56062,34
+56063,53
+56064,34
+56065,34
+56066,37
+56068,18
+56069,30
+56070,29
+56071,71
+56072,29
+56073,33
+56074,27
+56075,41
+56076,32
+56077,48
+56078,43
+56079,23
+56081,47
+56082,30
+56084,26
+56085,26
+56086,21
+56087,39
+56088,37
+56089,26
+56090,17
+56091,28
+56092,15
+56093,24
+56094,30
+56095,25
+56096,35
+56097,39
+56098,29
+56099,26
+56100,43
+56101,21
+56102,29
+56103,37
+56104,25
+56105,24
+56106,26
+56107,27
+56108,25
+56110,22
+56111,36
+56112,36
+56113,27
+56114,30
+56115,29
+56116,34
+56117,23
+56118,32
+56119,26
+56120,40
+56122,21
+56123,24
+56124,23
+56125,28
+56126,20
+56127,33
+56128,28
+56129,38
+56130,22
+56131,36
+56132,23
+56133,37
+56134,22
+56137,55
+56138,28
+56139,20
+56140,36
+56141,27
+56142,32
+56143,29
+56144,32
+56145,38
+56146,37
+56147,35
+56148,41
+56149,31
+56150,27
+56151,42
+56153,27
+56154,23
+56155,38
+56156,42
+56157,28
+56158,32
+56159,28
+56160,30
+56161,45
+56162,36
+56163,38
+56164,32
+56165,39
+56166,30
+56167,29
+56168,21
+56169,22
+56170,25
+56171,23
+56172,33
+56173,33
+56175,34
+56176,36
+56177,26
+56178,34
+56179,27
+56180,25
+56181,59
+56182,22
+56183,21
+56185,65
+56186,25
+56187,26
+56188,35
+56189,25
+56190,28
+56191,39
+56192,31
+56194,45
+56195,37
+56196,30
+56197,27
+56198,37
+56199,34
+56200,31
+56201,24
+56203,29
+56204,41
+56205,45
+56207,30
+56208,28
+56209,22
+56210,21
+56212,27
+56213,46
+56215,20
+56216,18
+56217,27
+56219,35
+56220,25
+56221,24
+56222,22
+56223,38
+56224,21
+56225,34
+56226,28
+56227,23
+56228,40
+56229,32
+56230,44
+56231,31
+56232,29
+56233,48
+56235,18
+56236,13
+56237,24
+56238,48
+56239,22
+56240,33
+56241,21
+56242,44
+56243,15
+56244,24
+56245,25
+56246,26
+56248,25
+56249,21
+56250,32
+56251,28
+56252,24
+56254,22
+56255,18
+56256,43
+56257,38
+56258,24
+56259,26
+56260,33
+56261,35
+56262,29
+56263,28
+56264,21
+56265,26
+56266,26
+56267,20
+56268,28
+56269,44
+56270,23
+56272,30
+56273,32
+56274,33
+56277,25
+56278,38
+56279,30
+56280,27
+56281,23
+56282,24
+56283,16
+56284,22
+56285,20
+56286,17
+56288,39
+56290,36
+56291,2
+56292,27
+56294,21
+56295,38
+56297,28
+56298,23
+56299,30
+56300,36
+56301,26
+56302,24
+56305,23
+56306,22
+56308,28
+56309,32
+56310,39
+56311,23
+56312,30
+56313,25
+56314,25
+56315,29
+56316,25
+56317,22
+56318,27
+56319,22
+56320,28
+56321,24
+56322,19
+56323,26
+56324,27
+56325,36
+56326,32
+56327,22
+56329,20
+56330,16
+56331,21
+56333,40
+56334,31
+56335,36
+56336,35
+56338,37
+56339,24
+56340,46
+56341,36
+56342,38
+56343,27
+56344,23
+56345,23
+56346,23
+56348,24
+56349,62
+56350,22
+56351,35
+56352,39
+56353,19
+56354,26
+56355,20
+56356,28
+56357,31
+56358,27
+56359,24
+56361,27
+56362,23
+56363,26
+56365,28
+56369,26
+56370,44
+56371,21
+56372,29
+56373,21
+56374,26
+56375,18
+56376,28
+56377,26
+56378,38
+56379,70
+56380,33
+56381,23
+56382,24
+56383,31
+56385,31
+56386,26
+56387,39
+56388,48
+56389,47
+56390,26
+56391,36
+56392,19
+56393,25
+56395,40
+56396,24
+56397,49
+56400,22
+56401,22
+56403,31
+56404,22
+56405,32
+56406,29
+56407,42
+56408,38
+56409,34
+56410,49
+56413,28
+56414,22
+56415,40
+56416,33
+56417,70
+56418,29
+56419,28
+56420,23
+56421,22
+56422,41
+56423,28
+56424,19
+56425,25
+56426,38
+56428,25
+56429,30
+56430,29
+56431,36
+56432,25
+56433,53
+56435,26
+56436,29
+56437,22
+56438,20
+56439,40
+56440,42
+56441,19
+56442,39
+56443,34
+56444,22
+56445,22
+56447,26
+56449,27
+56450,38
+56451,34
+56452,19
+56453,27
+56454,29
+56457,33
+56458,25
+56459,25
+56460,27
+56461,24
+56463,45
+56464,41
+56466,25
+56467,28
+56468,26
+56469,25
+56470,30
+56471,56
+56472,23
+56473,40
+56474,26
+56475,43
+56476,38
+56477,13
+56478,16
+56479,40
+56480,27
+56481,35
+56482,32
+56483,23
+56484,29
+56485,53
+56486,23
+56487,53
+56488,30
+56489,37
+56490,24
+56491,26
+56493,13
+56494,28
+56495,29
+56496,30
+56497,32
+56499,31
+56500,28
+56501,23
+56502,25
+56503,30
+56504,29
+56505,24
+56506,28
+56507,24
+56508,21
+56509,31
+56511,25
+56512,25
+56513,24
+56515,32
+56516,40
+56517,45
+56518,26
+56519,27
+56520,30
+56521,41
+56522,32
+56523,18
+56524,37
+56525,37
+56526,24
+56527,28
+56528,26
+56529,27
+56530,25
+56531,25
+56532,13
+56533,32
+56534,22
+56535,38
+56536,30
+56537,24
+56539,37
+56540,32
+56541,26
+56542,27
+56543,19
+56544,37
+56545,18
+56546,35
+56547,55
+56548,28
+56549,26
+56550,21
+56551,45
+56552,13
+56553,24
+56555,29
+56556,45
+56557,20
+56558,20
+56559,29
+56560,32
+56561,30
+56562,20
+56563,32
+56564,16
+56565,24
+56566,25
+56567,23
+56568,40
+56569,24
+56570,28
+56571,27
+56572,20
+56573,35
+56574,19
+56575,28
+56576,22
+56577,57
+56578,23
+56579,33
+56580,26
+56581,22
+56583,30
+56584,35
+56585,26
+56586,38
+56590,18
+56591,33
+56592,41
+56593,65
+56594,20
+56595,24
+56596,25
+56597,25
+56598,24
+56599,34
+56602,29
+56603,35
+56604,18
+56605,24
+56606,30
+56607,35
+56608,35
+56609,38
+56610,35
+56611,63
+56612,41
+56613,18
+56614,28
+56615,35
+56616,21
+56617,29
+56618,24
+56619,36
+56620,28
+56621,19
+56622,34
+56623,33
+56624,30
+56625,32
+56626,21
+56628,21
+56629,31
+56631,27
+56632,21
+56633,48
+56634,22
+56635,51
+56636,48
+56637,28
+56638,22
+56639,41
+56641,22
+56642,55
+56643,23
+56644,24
+56645,35
+56646,32
+56647,25
+56648,31
+56649,46
+56650,31
+56651,23
+56653,25
+56654,29
+56655,35
+56656,26
+56658,25
+56659,25
+56660,28
+56661,27
+56662,53
+56663,35
+56664,16
+56665,28
+56666,38
+56667,32
+56668,36
+56669,24
+56670,39
+56671,29
+56672,36
+56673,47
+56674,29
+56675,23
+56676,39
+56677,29
+56678,26
+56679,37
+56680,23
+56681,26
+56682,34
+56683,30
+56684,25
+56685,23
+56686,32
+56688,28
+56689,36
+56690,34
+56691,38
+56692,34
+56693,24
+56694,32
+56696,22
+56697,23
+56698,28
+56699,21
+56700,23
+56701,16
+56702,53
+56703,27
+56704,27
+56705,38
+56706,25
+56707,28
+56708,30
+56709,36
+56710,29
+56711,45
+56712,38
+56713,27
+56714,25
+56715,30
+56716,46
+56717,43
+56718,37
+56719,35
+56720,37
+56721,17
+56722,28
+56723,21
+56724,25
+56725,27
+56726,21
+56728,30
+56729,25
+56731,28
+56732,24
+56733,38
+56734,38
+56735,25
+56736,71
+56737,39
+56739,22
+56740,27
+56741,23
+56742,23
+56743,29
+56744,58
+56745,23
+56746,22
+56747,21
+56748,32
+56749,21
+56750,48
+56751,34
+56752,55
+56753,46
+56754,27
+56755,22
+56756,20
+56757,53
+56758,25
+56759,20
+56760,28
+56761,26
+56762,71
+56763,22
+56764,27
+56765,20
+56766,20
+56767,53
+56768,23
+56769,24
+56770,42
+56771,23
+56772,47
+56773,24
+56774,28
+56775,22
+56776,23
+56777,23
+56778,25
+56779,23
+56780,36
+56781,22
+56782,36
+56783,37
+56784,19
+56786,23
+56787,32
+56788,48
+56789,24
+56790,25
+56791,31
+56792,23
+56793,58
+56794,29
+56795,24
+56796,36
+56797,26
+56798,27
+56799,39
+56800,21
+56801,34
+56802,27
+56803,23
+56804,32
+56805,27
+56806,21
+56807,27
+56808,43
+56809,33
+56810,20
+56811,25
+56812,30
+56813,31
+56814,32
+56815,30
+56816,42
+56817,28
+56818,20
+56819,24
+56820,36
+56821,43
+56822,34
+56824,25
+56825,32
+56826,40
+56827,34
+56828,28
+56829,33
+56830,27
+56831,30
+56832,40
+56833,22
+56834,22
+56835,32
+56836,24
+56837,32
+56839,33
+56840,30
+56841,26
+56842,33
+56843,27
+56844,22
+56845,23
+56848,30
+56849,24
+56850,23
+56851,35
+56853,45
+56854,27
+56855,32
+56856,35
+56857,30
+56858,26
+56859,28
+56860,22
+56861,38
+56862,42
+56863,35
+56864,26
+56865,24
+56866,27
+56867,67
+56868,34
+56869,23
+56870,91
+56871,40
+56873,40
+56874,54
+56875,17
+56876,32
+56877,40
+56878,24
+56879,30
+56880,56
+56881,37
+56882,48
+56883,31
+56884,23
+56885,21
+56886,20
+56888,25
+56889,27
+56890,23
+56891,30
+56892,32
+56893,29
+56894,40
+56895,38
+56896,29
+56898,23
+56899,31
+56900,56
+56901,33
+56902,20
+56903,33
+56904,24
+56905,26
+56907,35
+56908,28
+56909,58
+56910,25
+56911,27
+56912,55
+56913,27
+56915,36
+56916,38
+56917,24
+56919,27
+56920,33
+56921,23
+56922,26
+56923,27
+56924,22
+56925,44
+56926,40
+56927,18
+56928,27
+56929,21
+56930,24
+56931,17
+56932,28
+56933,16
+56934,24
+56935,15
+56936,30
+56937,38
+56938,99
+56939,18
+56940,28
+56941,28
+56943,22
+56944,21
+56946,40
+56947,33
+56948,31
+56949,34
+56950,26
+56951,25
+56952,32
+56953,32
+56954,24
+56955,42
+56956,37
+56957,23
+56958,24
+56961,31
+56962,25
+56963,27
+56964,23
+56965,29
+56966,25
+56967,55
+56968,32
+56969,32
+56970,22
+56971,26
+56972,41
+56973,37
+56974,27
+56975,24
+56976,23
+56977,24
+56978,25
+56979,28
+56980,39
+56981,36
+56982,24
+56983,34
+56984,26
+56985,23
+56986,24
+56987,45
+56988,39
+56989,19
+56991,32
+56992,21
+56993,16
+56994,28
+56995,22
+56996,15
+56997,27
+56998,31
+56999,26
+57000,31
+57001,32
+57002,52
+57003,26
+57004,21
+57005,26
+57006,28
+57007,19
+57008,20
+57009,32
+57010,29
+57011,28
+57012,44
+57014,26
+57015,25
+57016,33
+57017,29
+57018,21
+57019,27
+57020,32
+57021,38
+57023,30
+57024,22
+57025,26
+57027,21
+57028,26
+57029,39
+57030,17
+57031,31
+57032,42
+57033,37
+57034,20
+57035,26
+57036,25
+57037,37
+57039,28
+57040,37
+57041,34
+57042,26
+57043,27
+57044,33
+57045,30
+57046,40
+57047,32
+57048,16
+57049,27
+57050,28
+57051,32
+57052,29
+57053,64
+57054,32
+57055,30
+57056,24
+57057,29
+57058,25
+57059,26
+57060,63
+57061,25
+57062,27
+57063,63
+57066,18
+57068,27
+57069,24
+57070,19
+57072,25
+57073,33
+57074,33
+57076,24
+57077,41
+57078,41
+57079,27
+57080,30
+57085,30
+57086,18
+57087,17
+57088,25
+57090,28
+57092,32
+57093,27
+57094,34
+57096,23
+57097,39
+57098,21
+57099,18
+57100,56
+57102,27
+57103,31
+57104,31
+57105,26
+57106,17
+57109,20
+57110,24
+57111,46
+57112,38
+57113,23
+57114,25
+57115,47
+57117,17
+57119,21
+57120,26
+57121,36
+57122,25
+57123,39
+57124,32
+57125,29
+57126,38
+57127,28
+57128,29
+57129,28
+57130,16
+57131,54
+57132,26
+57133,25
+57134,36
+57135,21
+57136,31
+57138,37
+57139,24
+57141,32
+57142,20
+57144,33
+57145,30
+57146,29
+57147,30
+57149,39
+57150,25
+57151,25
+57152,30
+57153,41
+57154,25
+57155,14
+57156,32
+57157,27
+57158,25
+57159,30
+57160,29
+57161,25
+57162,27
+57163,16
+57164,22
+57165,21
+57166,45
+57167,22
+57169,27
+57170,28
+57171,19
+57172,25
+57174,26
+57175,22
+57176,28
+57177,28
+57178,37
+57179,20
+57180,19
+57181,35
+57182,20
+57183,36
+57184,48
+57185,27
+57186,59
+57187,21
+57188,41
+57189,39
+57190,15
+57191,35
+57192,22
+57193,30
+57194,41
+57195,28
+57196,28
+57198,25
+57199,32
+57200,25
+57201,27
+57202,20
+57203,33
+57204,27
+57205,22
+57206,33
+57207,23
+57208,28
+57209,28
+57210,25
+57211,22
+57212,24
+57213,23
+57214,28
+57215,20
+57216,27
+57217,20
+57219,26
+57220,30
+57221,26
+57223,15
+57224,29
+57225,25
+57226,25
+57228,29
+57231,30
+57232,29
+57233,26
+57234,27
+57235,24
+57238,17
+57239,21
+57240,25
+57242,30
+57243,31
+57244,27
+57245,49
+57246,18
+57247,24
+57249,26
+57250,24
+57251,46
+57253,35
+57255,16
+57256,27
+57257,29
+57258,23
+57259,24
+57260,29
+57261,22
+57262,36
+57263,17
+57264,36
+57266,34
+57267,35
+57268,29
+57270,36
+57271,26
+57272,27
+57273,52
+57274,21
+57275,18
+57276,38
+57277,16
+57278,24
+57280,23
+57281,42
+57282,35
+57283,28
+57284,36
+57285,28
+57286,24
+57287,23
+57288,38
+57289,38
+57290,27
+57291,31
+57292,34
+57293,22
+57294,38
+57295,38
+57296,28
+57297,37
+57298,33
+57299,24
+57301,28
+57302,40
+57303,63
+57304,25
+57305,18
+57306,26
+57308,27
+57309,29
+57312,26
+57313,21
+57314,39
+57315,26
+57316,26
+57317,39
+57318,37
+57320,25
+57322,36
+57323,28
+57324,23
+57325,21
+57326,56
+57327,26
+57328,50
+57329,30
+57330,39
+57332,22
+57333,27
+57334,30
+57335,32
+57336,26
+57337,24
+57338,47
+57339,29
+57340,28
+57341,18
+57342,38
+57343,41
+57345,46
+57346,23
+57347,27
+57348,26
+57349,24
+57350,33
+57351,19
+57352,45
+57353,30
+57354,52
+57355,31
+57356,24
+57357,25
+57358,37
+57359,29
+57360,40
+57361,38
+57362,27
+57363,43
+57365,38
+57366,19
+57367,34
+57368,29
+57369,31
+57370,27
+57371,30
+57373,35
+57374,22
+57375,25
+57376,34
+57377,21
+57378,24
+57380,29
+57381,34
+57382,22
+57383,33
+57384,21
+57385,30
+57386,25
+57387,31
+57389,35
+57391,31
+57392,46
+57393,31
+57395,35
+57396,23
+57399,32
+57400,30
+57401,22
+57402,22
+57403,29
+57404,24
+57405,30
+57406,22
+57407,23
+57408,35
+57409,33
+57410,37
+57411,28
+57412,34
+57413,49
+57414,18
+57416,39
+57417,24
+57418,45
+57419,29
+57420,55
+57421,35
+57422,33
+57423,30
+57424,30
+57425,29
+57426,42
+57427,20
+57428,29
+57430,22
+57431,29
+57432,27
+57434,28
+57435,31
+57436,23
+57437,33
+57438,25
+57439,29
+57440,40
+57441,24
+57442,29
+57443,42
+57444,40
+57445,31
+57446,33
+57447,29
+57448,38
+57449,29
+57450,24
+57452,27
+57453,30
+57454,45
+57455,31
+57456,23
+57457,46
+57458,14
+57461,31
+57462,26
+57463,36
+57464,39
+57466,31
+57467,19
+57468,25
+57469,24
+57470,29
+57471,27
+57474,52
+57476,19
+57477,35
+57478,37
+57479,27
+57480,35
+57481,29
+57482,25
+57483,35
+57484,61
+57485,34
+57487,32
+57488,51
+57489,35
+57490,27
+57491,24
+57492,41
+57493,19
+57494,30
+57495,25
+57496,20
+57497,31
+57498,47
+57499,24
+57500,39
+57501,18
+57503,33
+57504,33
+57505,24
+57506,21
+57507,45
+57508,29
+57509,16
+57510,36
+57511,30
+57512,27
+57513,25
+57514,36
+57516,28
+57517,41
+57518,26
+57519,30
+57521,27
+57522,28
+57523,49
+57524,21
+57525,16
+57526,26
+57527,25
+57530,26
+57531,53
+57532,35
+57533,26
+57534,55
+57535,39
+57537,23
+57538,25
+57539,43
+57540,26
+57541,28
+57543,32
+57544,29
+57545,37
+57546,40
+57547,55
+57548,30
+57549,33
+57550,33
+57551,33
+57552,32
+57553,22
+57555,26
+57556,47
+57557,33
+57558,26
+57559,23
+57560,25
+57561,25
+57562,38
+57563,30
+57565,33
+57566,26
+57568,37
+57569,40
+57570,23
+57571,18
+57573,26
+57574,27
+57578,20
+57579,39
+57581,19
+57582,21
+57583,28
+57584,20
+57585,36
+57586,22
+57587,24
+57588,40
+57589,35
+57590,24
+57591,25
+57593,38
+57594,18
+57595,31
+57596,27
+57597,25
+57598,30
+57599,37
+57600,26
+57601,23
+57603,35
+57604,28
+57605,20
+57606,61
+57607,32
+57608,48
+57609,25
+57610,35
+57611,20
+57612,24
+57614,30
+57615,51
+57616,17
+57617,19
+57618,31
+57619,34
+57620,48
+57621,41
+57622,25
+57623,34
+57624,41
+57626,46
+57627,25
+57628,29
+57629,49
+57630,20
+57631,44
+57632,26
+57633,28
+57634,32
+57635,35
+57637,42
+57638,38
+57639,21
+57640,37
+57641,32
+57642,35
+57643,37
+57644,29
+57646,36
+57647,36
+57648,25
+57649,40
+57650,28
+57651,37
+57652,42
+57653,28
+57654,22
+57655,23
+57656,19
+57658,28
+57659,30
+57660,22
+57661,39
+57663,22
+57665,29
+57666,39
+57667,35
+57668,34
+57669,26
+57670,29
+57672,21
+57673,26
+57674,23
+57675,50
+57677,43
+57678,36
+57679,38
+57680,19
+57681,33
+57682,14
+57683,27
+57684,31
+57685,27
+57686,19
+57687,24
+57688,35
+57689,60
+57690,24
+57691,30
+57692,26
+57693,33
+57694,38
+57695,23
+57696,23
+57697,25
+57698,67
+57699,23
+57701,20
+57702,26
+57703,28
+57704,18
+57705,47
+57706,35
+57707,18
+57709,18
+57710,34
+57711,43
+57712,28
+57713,38
+57714,17
+57716,14
+57717,25
+57718,28
+57720,44
+57721,27
+57722,45
+57723,27
+57724,31
+57725,27
+57726,22
+57729,41
+57730,28
+57731,24
+57732,27
+57733,35
+57734,21
+57735,29
+57736,31
+57737,27
+57738,37
+57740,22
+57741,28
+57742,40
+57743,22
+57744,29
+57745,27
+57746,30
+57747,41
+57748,27
+57750,26
+57751,16
+57752,42
+57753,33
+57754,57
+57756,37
+57757,27
+57758,23
+57759,30
+57760,24
+57761,25
+57762,28
+57763,35
+57765,30
+57766,21
+57767,30
+57768,36
+57769,28
+57770,29
+57771,27
+57772,22
+57773,29
+57774,32
+57775,42
+57776,35
+57777,22
+57778,35
+57779,42
+57780,37
+57781,37
+57782,19
+57784,17
+57786,28
+57787,29
+57788,23
+57790,23
+57791,33
+57794,29
+57795,25
+57797,21
+57798,24
+57799,37
+57800,35
+57801,26
+57802,25
+57804,31
+57806,24
+57807,59
+57808,15
+57809,26
+57810,22
+57811,34
+57813,21
+57814,23
+57815,38
+57816,21
+57817,66
+57818,17
+57819,38
+57820,38
+57821,27
+57822,30
+57823,16
+57824,26
+57825,27
+57826,46
+57828,27
+57829,28
+57831,21
+57832,44
+57833,19
+57834,25
+57835,29
+57836,50
+57837,27
+57838,20
+57839,30
+57840,45
+57841,29
+57843,30
+57844,44
+57845,25
+57846,32
+57847,23
+57849,45
+57850,23
+57851,21
+57852,18
+57853,30
+57854,37
+57855,21
+57856,23
+57857,24
+57858,32
+57859,40
+57860,30
+57861,36
+57862,26
+57863,19
+57864,32
+57865,29
+57866,26
+57867,29
+57869,26
+57870,25
+57871,26
+57872,26
+57875,36
+57876,21
+57877,23
+57878,54
+57879,23
+57881,27
+57882,40
+57883,35
+57884,29
+57885,22
+57886,29
+57887,24
+57888,56
+57889,39
+57890,24
+57891,28
+57892,29
+57893,25
+57894,21
+57895,49
+57896,34
+57897,32
+57898,23
+57900,38
+57901,23
+57902,59
+57903,54
+57905,33
+57906,24
+57908,32
+57910,38
+57911,35
+57912,42
+57914,25
+57915,33
+57916,21
+57917,29
+57918,25
+57919,37
+57920,21
+57921,51
+57922,30
+57923,28
+57924,28
+57925,28
+57926,37
+57927,37
+57928,29
+57929,33
+57930,22
+57931,40
+57932,26
+57933,23
+57934,28
+57935,44
+57936,22
+57937,28
+57938,22
+57939,33
+57941,21
+57943,34
+57944,24
+57945,49
+57946,21
+57948,45
+57949,26
+57950,23
+57951,32
+57952,29
+57953,23
+57954,25
+57955,41
+57959,22
+57960,26
+57961,24
+57962,29
+57963,25
+57964,47
+57966,25
+57967,24
+57968,34
+57969,19
+57970,45
+57972,26
+57974,37
+57975,35
+57976,37
+57978,23
+57979,27
+57980,48
+57981,30
+57982,28
+57983,32
+57984,67
+57985,24
+57986,26
+57987,36
+57988,30
+57989,28
+57990,36
+57991,23
+57992,16
+57993,18
+57994,28
+57996,26
+57997,22
+57998,33
+58000,31
+58001,37
+58002,38
+58003,26
+58004,28
+58005,42
+58006,65
+58007,17
+58008,33
+58009,28
+58011,58
+58012,22
+58013,28
+58014,44
+58015,25
+58016,45
+58017,27
+58018,27
+58019,29
+58021,27
+58023,31
+58024,35
+58025,30
+58026,28
+58027,23
+58028,30
+58029,26
+58030,57
+58031,23
+58032,29
+58033,20
+58034,20
+58035,44
+58036,31
+58038,29
+58040,22
+58041,18
+58042,28
+58044,36
+58045,33
+58046,33
+58047,36
+58048,35
+58049,33
+58050,30
+58051,32
+58052,25
+58053,34
+58054,54
+58055,21
+58056,42
+58057,36
+58058,25
+58059,30
+58060,40
+58061,27
+58062,37
+58063,18
+58064,22
+58065,34
+58066,27
+58067,40
+58068,52
+58069,43
+58070,16
+58071,26
+58072,45
+58073,30
+58074,45
+58075,40
+58076,25
+58078,29
+58080,20
+58081,50
+58082,25
+58083,30
+58084,26
+58086,28
+58087,22
+58088,35
+58089,35
+58090,44
+58091,60
+58092,26
+58093,36
+58094,20
+58095,25
+58096,28
+58097,24
+58098,30
+58099,24
+58100,33
+58101,31
+58103,26
+58105,31
+58107,25
+58108,39
+58109,24
+58110,41
+58111,32
+58112,27
+58113,22
+58114,40
+58115,41
+58117,27
+58118,21
+58119,23
+58120,38
+58121,37
+58122,17
+58123,19
+58124,30
+58125,24
+58127,36
+58128,25
+58129,14
+58130,24
+58131,24
+58132,30
+58134,25
+58135,22
+58136,27
+58138,25
+58139,24
+58140,25
+58141,49
+58142,32
+58143,24
+58144,30
+58145,24
+58146,15
+58147,34
+58148,19
+58149,18
+58151,27
+58152,23
+58153,27
+58154,22
+58156,27
+58157,15
+58158,28
+58159,23
+58160,46
+58161,39
+58163,38
+58164,30
+58165,30
+58166,33
+58167,29
+58168,31
+58169,27
+58170,40
+58171,28
+58172,35
+58174,22
+58175,36
+58176,99
+58177,26
+58178,39
+58179,48
+58180,35
+58183,26
+58185,32
+58186,34
+58188,26
+58189,21
+58191,33
+58192,45
+58193,27
+58194,25
+58195,26
+58196,56
+58197,19
+58199,35
+58200,30
+58201,25
+58202,14
+58203,31
+58204,26
+58205,16
+58206,40
+58207,31
+58208,31
+58209,28
+58210,26
+58211,21
+58212,29
+58213,27
+58214,29
+58215,43
+58216,28
+58217,23
+58218,54
+58219,20
+58221,22
+58222,34
+58223,40
+58226,27
+58227,26
+58228,25
+58229,24
+58230,29
+58231,51
+58232,24
+58233,39
+58234,25
+58235,22
+58236,22
+58237,23
+58238,26
+58239,24
+58240,33
+58242,19
+58243,38
+58244,30
+58246,30
+58247,23
+58248,30
+58249,22
+58250,26
+58251,22
+58252,23
+58253,21
+58254,27
+58255,22
+58256,49
+58257,26
+58258,32
+58259,31
+58260,27
+58261,26
+58262,22
+58263,16
+58264,27
+58265,37
+58266,27
+58267,39
+58268,37
+58269,23
+58270,25
+58271,28
+58272,35
+58273,25
+58274,36
+58275,28
+58277,32
+58278,36
+58279,38
+58280,22
+58281,25
+58282,51
+58283,20
+58284,32
+58285,29
+58286,26
+58287,45
+58288,20
+58289,36
+58290,33
+58291,27
+58292,72
+58293,23
+58294,32
+58295,40
+58296,28
+58297,25
+58298,42
+58299,35
+58300,30
+58302,25
+58304,19
+58305,32
+58306,16
+58307,20
+58308,15
+58309,28
+58310,17
+58311,45
+58312,30
+58313,21
+58314,28
+58315,31
+58317,18
+58318,21
+58319,25
+58320,51
+58321,26
+58322,38
+58323,33
+58324,30
+58325,36
+58326,39
+58327,31
+58328,17
+58329,24
+58330,24
+58331,36
+58332,16
+58333,32
+58334,28
+58335,24
+58336,35
+58337,25
+58338,21
+58339,24
+58341,17
+58342,25
+58343,36
+58344,27
+58345,35
+58346,32
+58347,23
+58348,29
+58349,17
+58350,24
+58352,26
+58353,19
+58354,42
+58355,24
+58356,17
+58357,27
+58358,30
+58359,43
+58360,25
+58361,18
+58362,30
+58363,24
+58364,31
+58365,31
+58366,31
+58367,46
+58368,35
+58369,39
+58370,26
+58371,22
+58372,23
+58373,32
+58374,25
+58378,24
+58379,28
+58381,19
+58382,25
+58383,33
+58384,24
+58385,64
+58386,28
+58387,22
+58388,36
+58389,23
+58390,32
+58391,26
+58392,34
+58393,40
+58394,33
+58397,20
+58398,39
+58399,47
+58400,41
+58401,35
+58402,27
+58405,13
+58406,22
+58407,38
+58408,22
+58409,26
+58410,26
+58411,22
+58412,38
+58413,33
+58414,20
+58415,30
+58416,27
+58417,52
+58420,59
+58421,27
+58422,19
+58424,27
+58425,32
+58426,20
+58427,43
+58428,22
+58429,21
+58430,27
+58431,31
+58433,29
+58435,25
+58437,26
+58438,20
+58440,22
+58441,28
+58442,20
+58443,31
+58444,38
+58446,30
+58447,28
+58448,35
+58449,42
+58450,26
+58451,26
+58453,19
+58454,25
+58455,31
+58456,22
+58457,31
+58458,21
+58459,32
+58460,27
+58461,20
+58462,29
+58464,27
+58465,23
+58466,27
+58467,48
+58468,29
+58469,29
+58470,22
+58471,19
+58472,23
+58473,33
+58474,25
+58475,22
+58476,26
+58477,21
+58478,36
+58479,32
+58480,38
+58481,44
+58482,33
+58483,35
+58484,28
+58485,21
+58486,56
+58487,28
+58488,18
+58489,32
+58490,22
+58491,23
+58492,27
+58493,23
+58494,19
+58495,25
+58496,25
+58497,23
+58498,38
+58499,23
+58500,21
+58501,48
+58502,31
+58503,19
+58504,20
+58505,39
+58506,46
+58507,30
+58508,24
+58509,17
+58510,25
+58511,37
+58512,34
+58513,22
+58514,46
+58515,29
+58516,23
+58517,51
+58518,19
+58519,35
+58520,17
+58521,33
+58522,36
+58523,26
+58524,21
+58525,25
+58526,24
+58527,32
+58528,20
+58529,33
+58530,25
+58531,55
+58532,21
+58533,29
+58534,24
+58535,27
+58536,51
+58537,26
+58538,21
+58540,34
+58541,45
+58542,25
+58543,59
+58544,28
+58545,23
+58546,28
+58547,22
+58548,35
+58549,31
+58550,28
+58551,20
+58553,32
+58555,33
+58556,32
+58557,19
+58558,36
+58559,44
+58560,37
+58562,27
+58563,29
+58564,22
+58565,23
+58566,46
+58567,44
+58568,30
+58569,27
+58570,45
+58571,38
+58572,20
+58573,31
+58574,23
+58575,26
+58576,25
+58577,23
+58578,39
+58579,47
+58580,19
+58581,26
+58582,22
+58583,66
+58584,40
+58587,31
+58588,28
+58590,27
+58591,28
+58592,35
+58593,49
+58594,33
+58596,39
+58598,48
+58599,31
+58600,32
+58601,15
+58602,33
+58603,37
+58604,27
+58605,32
+58607,30
+58608,29
+58609,28
+58610,18
+58611,24
+58612,65
+58613,38
+58614,40
+58615,28
+58616,40
+58617,41
+58618,26
+58619,24
+58620,31
+58621,24
+58622,22
+58623,35
+58624,29
+58625,26
+58626,24
+58628,24
+58630,24
+58631,30
+58632,36
+58633,34
+58634,37
+58635,20
+58636,48
+58637,30
+58638,40
+58640,31
+58641,35
+58642,37
+58643,37
+58644,42
+58645,34
+58646,18
+58647,21
+58648,43
+58649,27
+58650,40
+58651,38
+58652,23
+58653,57
+58655,34
+58656,20
+58657,25
+58658,22
+58660,34
+58661,34
+58662,27
+58663,27
+58664,30
+58665,30
+58666,58
+58667,28
+58668,25
+58669,25
+58670,40
+58671,25
+58672,29
+58673,22
+58674,36
+58675,47
+58676,30
+58677,23
+58678,26
+58679,25
+58681,28
+58682,34
+58683,30
+58685,39
+58686,26
+58687,25
+58688,24
+58689,28
+58690,28
+58691,25
+58692,23
+58693,44
+58694,24
+58695,42
+58697,32
+58698,33
+58699,48
+58700,26
+58701,23
+58702,32
+58703,42
+58704,24
+58705,29
+58706,19
+58709,19
+58710,29
+58711,16
+58712,24
+58714,19
+58715,26
+58716,28
+58717,27
+58718,29
+58720,24
+58721,51
+58722,50
+58723,40
+58724,25
+58725,62
+58727,31
+58728,23
+58730,23
+58731,53
+58732,36
+58734,44
+58735,41
+58736,29
+58737,23
+58738,40
+58739,31
+58740,22
+58741,24
+58742,22
+58743,30
+58744,38
+58745,30
+58746,21
+58747,51
+58748,59
+58749,24
+58750,30
+58751,28
+58752,39
+58753,25
+58754,25
+58755,26
+58758,26
+58759,44
+58761,36
+58764,23
+58765,36
+58766,20
+58767,52
+58768,26
+58769,34
+58770,29
+58771,49
+58772,17
+58773,38
+58774,33
+58775,38
+58777,24
+58779,24
+58780,23
+58782,28
+58783,31
+58784,24
+58785,23
+58787,39
+58788,34
+58789,33
+58790,32
+58791,17
+58792,23
+58793,19
+58794,26
+58795,32
+58796,24
+58797,16
+58798,30
+58799,53
+58800,33
+58801,39
+58802,22
+58803,24
+58805,18
+58806,34
+58807,31
+58808,34
+58809,26
+58810,25
+58811,29
+58813,13
+58814,37
+58815,16
+58816,18
+58817,30
+58818,29
+58819,30
+58820,43
+58821,40
+58824,47
+58825,39
+58826,19
+58828,25
+58831,45
+58832,20
+58833,38
+58834,36
+58835,33
+58836,29
+58837,26
+58838,25
+58840,43
+58841,32
+58842,29
+58843,31
+58845,25
+58846,32
+58847,29
+58848,22
+58849,17
+58850,46
+58851,20
+58852,19
+58853,11
+58854,38
+58855,23
+58856,40
+58857,28
+58858,32
+58859,23
+58860,36
+58861,28
+58862,25
+58863,31
+58864,41
+58865,30
+58867,23
+58868,22
+58869,24
+58870,19
+58871,28
+58872,37
+58873,26
+58874,21
+58875,39
+58876,38
+58877,30
+58878,30
+58879,39
+58880,23
+58881,39
+58882,20
+58883,21
+58884,23
+58885,17
+58886,26
+58887,26
+58888,32
+58889,31
+58890,33
+58891,35
+58892,38
+58893,29
+58895,36
+58896,29
+58897,18
+58898,26
+58899,40
+58900,33
+58901,30
+58902,32
+58903,26
+58904,24
+58905,31
+58906,44
+58907,35
+58908,46
+58909,36
+58910,44
+58911,26
+58912,29
+58913,28
+58914,39
+58915,40
+58916,25
+58917,25
+58918,26
+58919,34
+58920,23
+58921,42
+58922,28
+58924,24
+58925,47
+58926,27
+58927,25
+58928,21
+58929,53
+58930,28
+58931,27
+58932,30
+58933,20
+58934,56
+58935,35
+58936,36
+58937,33
+58938,30
+58939,33
+58940,43
+58941,31
+58942,21
+58943,34
+58944,21
+58945,33
+58946,19
+58947,16
+58948,18
+58949,32
+58950,34
+58951,16
+58954,24
+58955,21
+58956,27
+58957,31
+58958,35
+58959,24
+58960,26
+58961,27
+58962,25
+58964,25
+58965,33
+58966,28
+58967,26
+58968,30
+58969,25
+58970,25
+58972,29
+58973,19
+58974,21
+58975,33
+58976,39
+58977,28
+58978,27
+58979,20
+58980,35
+58981,29
+58982,22
+58984,29
+58985,25
+58986,44
+58987,13
+58988,25
+58989,20
+58990,40
+58991,24
+58992,26
+58993,20
+58994,30
+58995,30
+58996,23
+58998,30
+58999,30
+59000,28
+59001,23
+59002,29
+59003,23
+59004,25
+59005,27
+59006,28
+59007,47
+59008,42
+59009,38
+59010,23
+59011,35
+59012,28
+59013,29
+59014,69
+59015,27
+59016,24
+59018,25
+59019,25
+59020,45
+59021,28
+59022,28
+59023,24
+59024,33
+59026,24
+59027,30
+59028,26
+59029,28
+59030,25
+59031,60
+59032,50
+59033,42
+59034,27
+59035,44
+59036,22
+59037,35
+59038,38
+59039,29
+59040,23
+59041,35
+59042,29
+59044,20
+59045,36
+59046,30
+59047,21
+59048,31
+59049,30
+59050,28
+59051,22
+59052,45
+59053,22
+59054,32
+59055,21
+59059,27
+59060,23
+59061,23
+59062,26
+59063,26
+59064,38
+59065,45
+59066,28
+59067,25
+59068,43
+59069,27
+59070,30
+59071,38
+59072,24
+59073,26
+59074,39
+59076,36
+59077,32
+59078,45
+59079,13
+59080,36
+59081,43
+59082,22
+59083,35
+59084,28
+59085,33
+59086,30
+59087,26
+59088,32
+59089,40
+59090,31
+59091,32
+59092,31
+59093,33
+59095,32
+59097,58
+59098,26
+59099,37
+59100,37
+59101,20
+59102,28
+59103,21
+59104,35
+59105,20
+59106,25
+59107,24
+59108,22
+59109,31
+59110,30
+59111,37
+59112,31
+59113,16
+59114,36
+59115,27
+59116,29
+59117,37
+59118,58
+59119,34
+59120,34
+59121,35
+59122,52
+59123,17
+59124,47
+59125,33
+59126,27
+59130,38
+59131,30
+59132,40
+59133,27
+59135,28
+59136,29
+59137,27
+59138,45
+59139,23
+59140,32
+59141,25
+59143,34
+59144,27
+59145,25
+59146,25
+59150,39
+59151,27
+59152,27
+59153,24
+59154,40
+59155,23
+59156,30
+59157,28
+59158,43
+59160,32
+59161,42
+59162,21
+59163,25
+59164,38
+59165,23
+59166,35
+59168,27
+59169,22
+59170,23
+59171,14
+59174,21
+59176,25
+59177,48
+59178,29
+59179,31
+59180,28
+59181,37
+59182,30
+59183,28
+59184,23
+59185,41
+59187,42
+59188,24
+59189,31
+59191,22
+59192,31
+59193,27
+59194,23
+59195,24
+59196,27
+59198,22
+59199,37
+59200,17
+59201,28
+59203,25
+59204,18
+59205,30
+59206,66
+59207,33
+59208,38
+59209,45
+59210,29
+59212,24
+59214,42
+59216,40
+59217,21
+59218,28
+59220,18
+59221,22
+59222,44
+59223,21
+59224,27
+59225,26
+59226,18
+59227,42
+59228,34
+59229,33
+59230,21
+59232,38
+59234,27
+59235,41
+59236,59
+59237,27
+59238,27
+59239,26
+59240,28
+59242,28
+59243,22
+59244,30
+59245,26
+59246,28
+59247,28
+59248,37
+59249,53
+59250,31
+59251,22
+59252,36
+59253,19
+59254,42
+59257,29
+59258,40
+59259,29
+59260,29
+59261,29
+59262,27
+59263,25
+59264,26
+59265,22
+59266,26
+59267,26
+59268,34
+59269,48
+59270,23
+59271,29
+59272,31
+59273,32
+59275,25
+59276,30
+59278,21
+59279,26
+59280,26
+59281,26
+59282,52
+59283,45
+59284,20
+59285,30
+59286,23
+59287,33
+59288,25
+59289,28
+59290,24
+59291,41
+59292,29
+59293,19
+59294,28
+59295,15
+59296,27
+59298,23
+59299,27
+59300,15
+59301,25
+59302,28
+59303,26
+59304,21
+59305,35
+59306,33
+59307,36
+59308,33
+59309,30
+59310,35
+59311,25
+59313,39
+59314,27
+59315,20
+59316,24
+59317,16
+59318,88
+59319,16
+59320,31
+59321,30
+59322,34
+59323,40
+59324,29
+59325,18
+59326,24
+59327,38
+59328,33
+59329,26
+59330,20
+59331,35
+59332,24
+59333,31
+59334,23
+59335,50
+59336,29
+59337,27
+59338,64
+59339,32
+59340,21
+59341,28
+59342,41
+59343,19
+59344,26
+59345,25
+59346,23
+59347,45
+59348,33
+59349,40
+59351,66
+59352,22
+59353,27
+59354,28
+59355,22
+59356,18
+59357,34
+59359,24
+59360,22
+59361,28
+59362,30
+59363,39
+59364,18
+59365,30
+59366,35
+59367,48
+59368,54
+59369,47
+59370,24
+59371,42
+59372,26
+59373,26
+59375,39
+59376,15
+59378,29
+59379,27
+59380,49
+59381,22
+59382,19
+59383,30
+59384,26
+59385,22
+59386,26
+59387,29
+59388,35
+59389,23
+59390,19
+59391,32
+59392,32
+59393,28
+59394,29
+59395,30
+59396,23
+59399,38
+59400,25
+59401,38
+59402,37
+59404,36
+59405,32
+59406,27
+59408,35
+59409,27
+59410,41
+59411,21
+59412,21
+59413,24
+59414,31
+59415,23
+59416,40
+59417,33
+59418,25
+59419,32
+59420,61
+59421,22
+59422,33
+59423,26
+59424,27
+59425,27
+59426,30
+59427,45
+59428,50
+59429,34
+59430,33
+59431,40
+59432,45
+59433,33
+59434,23
+59437,23
+59438,45
+59439,25
+59440,26
+59441,28
+59443,21
+59444,42
+59445,26
+59446,38
+59447,28
+59448,26
+59449,21
+59450,25
+59451,24
+59453,64
+59454,30
+59456,36
+59457,27
+59458,48
+59459,25
+59460,27
+59461,38
+59462,58
+59463,35
+59464,32
+59466,26
+59467,21
+59468,34
+59469,15
+59470,36
+59471,36
+59472,42
+59473,18
+59474,43
+59475,26
+59476,26
+59477,29
+59478,28
+59479,33
+59480,24
+59481,36
+59482,23
+59484,49
+59485,26
+59486,17
+59487,23
+59489,54
+59490,24
+59491,16
+59492,19
+59493,29
+59494,25
+59495,27
+59496,29
+59497,47
+59498,23
+59499,21
+59500,21
+59501,25
+59503,60
+59504,15
+59505,23
+59506,34
+59508,38
+59509,53
+59510,29
+59511,20
+59512,25
+59513,24
+59514,29
+59515,25
+59516,40
+59517,27
+59518,28
+59519,20
+59521,23
+59522,30
+59523,41
+59524,30
+59525,26
+59526,20
+59527,29
+59529,28
+59530,28
+59531,41
+59532,37
+59533,32
+59535,23
+59537,27
+59539,16
+59540,35
+59541,20
+59544,24
+59545,30
+59546,32
+59547,28
+59548,21
+59549,24
+59550,14
+59551,25
+59552,29
+59553,26
+59554,24
+59555,43
+59556,38
+59557,15
+59558,28
+59559,28
+59561,49
+59562,24
+59564,28
+59565,41
+59567,29
+59568,36
+59569,38
+59570,55
+59571,25
+59572,21
+59573,25
+59574,13
+59575,33
+59576,21
+59577,36
+59579,28
+59580,30
+59581,31
+59583,43
+59586,35
+59587,21
+59588,36
+59589,24
+59590,31
+59591,16
+59592,31
+59593,20
+59594,25
+59595,31
+59596,23
+59597,50
+59598,35
+59599,29
+59600,62
+59601,30
+59602,34
+59603,25
+59605,21
+59606,32
+59607,26
+59608,16
+59609,34
+59610,27
+59611,26
+59613,30
+59614,22
+59615,31
+59616,42
+59617,22
+59618,18
+59619,37
+59620,26
+59621,21
+59622,40
+59624,30
+59625,19
+59626,30
+59628,36
+59629,28
+59630,27
+59631,40
+59632,43
+59633,28
+59634,29
+59635,50
+59636,24
+59637,45
+59638,25
+59639,25
+59640,35
+59641,32
+59642,26
+59644,25
+59645,32
+59647,30
+59648,30
+59649,22
+59650,19
+59651,29
+59652,23
+59653,23
+59654,18
+59655,39
+59656,34
+59657,29
+59658,25
+59660,26
+59662,24
+59663,31
+59665,26
+59666,28
+59667,34
+59668,38
+59669,36
+59670,31
+59671,34
+59672,33
+59673,34
+59674,32
+59675,33
+59676,26
+59677,23
+59678,25
+59679,30
+59680,63
+59681,22
+59682,32
+59683,23
+59684,25
+59685,23
+59686,42
+59687,23
+59688,34
+59689,30
+59690,20
+59691,27
+59692,28
+59693,21
+59694,26
+59695,32
+59697,30
+59698,28
+59699,29
+59700,28
+59701,22
+59702,37
+59703,42
+59704,22
+59705,41
+59706,24
+59707,22
+59708,35
+59709,28
+59710,26
+59711,26
+59712,24
+59713,25
+59714,35
+59715,59
+59716,33
+59717,29
+59718,25
+59719,32
+59720,39
+59721,53
+59722,17
+59723,22
+59724,28
+59725,25
+59726,15
+59728,23
+59729,31
+59730,30
+59731,50
+59734,23
+59735,35
+59736,28
+59737,27
+59738,19
+59740,22
+59741,17
+59743,27
+59745,33
+59746,32
+59747,21
+59748,23
+59749,21
+59751,21
+59752,32
+59754,37
+59755,22
+59756,53
+59757,42
+59758,23
+59760,33
+59761,23
+59762,23
+59763,48
+59764,30
+59765,35
+59767,31
+59768,42
+59769,25
+59770,47
+59771,41
+59772,35
+59773,31
+59775,25
+59776,37
+59777,26
+59778,25
+59779,30
+59780,19
+59781,26
+59782,27
+59783,48
+59784,26
+59785,29
+59786,31
+59787,29
+59788,15
+59789,30
+59790,43
+59791,55
+59792,23
+59793,23
+59794,28
+59795,25
+59796,21
+59797,29
+59798,23
+59799,45
+59800,27
+59801,24
+59802,29
+59803,23
+59804,31
+59805,26
+59806,20
+59807,35
+59808,27
+59809,24
+59810,40
+59813,23
+59814,28
+59815,54
+59816,20
+59817,28
+59818,21
+59819,23
+59820,35
+59822,40
+59823,28
+59824,28
+59825,18
+59826,37
+59828,55
+59829,30
+59830,36
+59831,27
+59832,31
+59833,26
+59834,28
+59835,14
+59836,25
+59837,24
+59838,32
+59839,28
+59840,28
+59842,25
+59843,32
+59844,30
+59845,49
+59846,36
+59847,26
+59848,32
+59849,31
+59850,36
+59851,19
+59852,45
+59853,19
+59854,36
+59855,44
+59856,21
+59857,27
+59858,25
+59859,32
+59860,40
+59861,34
+59862,45
+59863,30
+59864,25
+59865,26
+59866,61
+59867,23
+59868,29
+59870,54
+59871,26
+59872,37
+59873,27
+59874,36
+59875,24
+59876,28
+59877,34
+59879,26
+59880,24
+59881,50
+59883,34
+59885,24
+59886,22
+59888,27
+59889,21
+59890,22
+59891,46
+59892,36
+59894,17
+59895,27
+59896,32
+59897,36
+59898,23
+59899,21
+59900,22
+59901,50
+59902,29
+59903,26
+59904,30
+59905,25
+59906,21
+59907,26
+59908,27
+59909,40
+59910,23
+59911,35
+59912,30
+59913,47
+59914,33
+59915,22
+59916,30
+59917,29
+59918,23
+59920,53
+59921,22
+59922,48
+59923,39
+59924,54
+59925,21
+59928,23
+59929,34
+59930,26
+59931,38
+59932,36
+59933,30
+59934,31
+59935,55
+59936,24
+59937,32
+59938,29
+59939,25
+59940,26
+59941,25
+59942,42
+59943,29
+59944,40
+59945,36
+59947,38
+59949,29
+59951,49
+59952,21
+59953,30
+59954,22
+59955,30
+59956,47
+59957,43
+59958,21
+59959,25
+59960,24
+59961,26
+59962,35
+59963,29
+59964,17
+59965,21
+59966,32
+59967,30
+59968,22
+59969,22
+59971,27
+59972,33
+59973,30
+59974,31
+59975,20
+59976,35
+59977,30
+59978,25
+59979,29
+59980,37
+59981,30
+59982,40
+59983,50
+59984,28
+59985,30
+59986,24
+59987,30
+59988,32
+59989,43
+59990,27
+59991,38
+59992,28
+59993,27
+59994,22
+59995,23
+59996,25
+59997,24
+59998,29
+59999,50
+60000,22
+60001,29
+60003,25
+60004,29
+60005,57
+60008,25
+60009,32
+60010,28
+60011,34
+60012,27
+60013,24
+60014,36
+60015,29
+60016,20
+60017,32
+60018,31
+60019,31
+60020,30
+60022,30
+60024,29
+60025,21
+60026,28
+60027,26
+60028,26
+60029,37
+60030,47
+60031,19
+60032,26
+60033,26
+60034,26
+60035,21
+60036,22
+60037,23
+60038,39
+60040,45
+60041,35
+60042,33
+60043,27
+60044,34
+60045,28
+60046,32
+60047,38
+60048,23
+60049,31
+60050,21
+60051,31
+60052,35
+60053,34
+60054,35
+60055,22
+60056,34
+60057,23
+60058,33
+60059,25
+60060,20
+60061,28
+60062,77
+60063,24
+60064,20
+60065,29
+60068,31
+60069,39
+60070,32
+60071,54
+60072,29
+60073,28
+60074,23
+60075,26
+60076,26
+60079,22
+60081,25
+60082,47
+60083,37
+60084,23
+60085,27
+60086,33
+60088,32
+60089,64
+60091,40
+60092,38
+60093,34
+60095,35
+60097,25
+60098,25
+60099,28
+60100,34
+60101,33
+60102,32
+60103,22
+60105,23
+60106,40
+60108,21
+60109,50
+60110,35
+60111,45
+60112,35
+60113,23
+60114,60
+60115,24
+60116,23
+60117,29
+60119,59
+60120,32
+60121,25
+60122,22
+60123,28
+60124,36
+60125,29
+60126,24
+60127,24
+60128,22
+60130,24
+60131,37
+60132,31
+60134,34
+60135,25
+60136,50
+60137,25
+60138,29
+60139,32
+60140,22
+60141,42
+60142,22
+60143,28
+60144,25
+60146,35
+60147,17
+60149,23
+60150,22
+60151,22
+60152,32
+60153,47
+60154,42
+60155,15
+60156,40
+60158,25
+60159,24
+60160,50
+60161,18
+60162,18
+60163,29
+60164,22
+60165,35
+60166,25
+60167,23
+60168,24
+60169,33
+60170,20
+60171,38
+60172,16
+60173,26
+60174,34
+60175,25
+60176,46
+60177,34
+60178,26
+60179,31
+60180,27
+60182,42
+60183,34
+60185,28
+60186,35
+60187,28
+60188,20
+60189,26
+60190,27
+60191,28
+60192,39
+60193,28
+60194,35
+60195,19
+60196,29
+60197,34
+60198,50
+60199,26
+60200,34
+60201,32
+60202,17
+60203,25
+60205,40
+60206,21
+60208,28
+60209,37
+60210,25
+60212,31
+60213,27
+60214,27
+60216,23
+60217,32
+60218,30
+60219,42
+60220,34
+60222,30
+60223,21
+60224,17
+60225,31
+60226,25
+60227,31
+60228,42
+60229,27
+60230,24
+60231,29
+60232,25
+60233,24
+60234,29
+60235,27
+60236,30
+60238,38
+60239,41
+60240,19
+60244,23
+60245,36
+60246,56
+60247,25
+60248,26
+60249,25
+60250,30
+60251,25
+60252,31
+60254,22
+60255,20
+60256,32
+60258,27
+60259,29
+60260,18
+60261,38
+60262,32
+60263,38
+60264,31
+60265,29
+60266,30
+60268,25
+60269,43
+60270,28
+60271,23
+60272,33
+60273,32
+60274,23
+60275,19
+60276,28
+60277,20
+60278,38
+60280,37
+60281,26
+60282,42
+60283,33
+60284,20
+60286,22
+60287,36
+60288,32
+60289,36
+60292,40
+60293,19
+60294,28
+60295,39
+60296,25
+60297,25
+60298,21
+60299,30
+60300,24
+60301,32
+60302,23
+60303,22
+60304,36
+60305,33
+60306,25
+60307,41
+60308,32
+60309,22
+60310,37
+60312,33
+60313,41
+60314,67
+60315,27
+60316,29
+60317,36
+60318,42
+60319,19
+60321,23
+60322,36
+60323,31
+60324,22
+60325,25
+60326,39
+60327,31
+60328,31
+60329,43
+60330,24
+60331,31
+60332,40
+60333,35
+60334,29
+60335,34
+60336,36
+60337,50
+60338,19
+60339,22
+60340,23
+60341,25
+60342,21
+60343,25
+60344,38
+60345,24
+60347,32
+60348,26
+60349,24
+60350,28
+60351,58
+60352,26
+60353,25
+60354,31
+60355,28
+60356,21
+60357,20
+60358,37
+60359,33
+60360,36
+60361,33
+60363,22
+60364,32
+60365,22
+60366,34
+60367,23
+60368,24
+60369,21
+60370,47
+60371,21
+60373,28
+60374,28
+60375,19
+60376,33
+60378,23
+60379,22
+60381,23
+60382,25
+60383,28
+60386,29
+60387,24
+60388,27
+60389,23
+60390,27
+60391,40
+60392,34
+60393,32
+60394,26
+60395,29
+60396,31
+60397,26
+60399,37
+60400,23
+60401,25
+60402,26
+60403,23
+60404,41
+60405,23
+60406,36
+60407,24
+60408,52
+60409,31
+60410,39
+60411,21
+60412,35
+60413,28
+60414,36
+60415,30
+60416,28
+60417,33
+60418,23
+60419,34
+60420,30
+60421,38
+60422,24
+60423,24
+60425,29
+60426,26
+60427,31
+60428,44
+60429,24
+60430,30
+60431,41
+60432,26
+60433,18
+60434,24
+60435,35
+60436,24
+60437,57
+60438,25
+60439,24
+60440,40
+60441,32
+60442,30
+60443,22
+60444,19
+60445,29
+60446,67
+60447,26
+60448,40
+60449,20
+60450,29
+60451,27
+60452,33
+60453,22
+60454,45
+60455,27
+60457,24
+60458,43
+60459,21
+60460,20
+60461,19
+60463,27
+60464,31
+60465,23
+60467,33
+60468,26
+60469,20
+60470,43
+60471,25
+60472,24
+60473,24
+60474,25
+60475,24
+60476,30
+60478,24
+60479,27
+60480,22
+60482,21
+60483,60
+60484,29
+60485,17
+60486,27
+60487,25
+60488,24
+60490,27
+60491,43
+60492,19
+60493,24
+60494,21
+60495,29
+60496,29
+60497,26
+60498,21
+60499,36
+60500,31
+60501,37
+60502,32
+60503,44
+60506,36
+60507,25
+60509,30
+60510,24
+60511,26
+60513,31
+60515,19
+60516,31
+60517,20
+60518,21
+60519,43
+60520,29
+60521,33
+60522,19
+60523,30
+60524,31
+60525,39
+60526,56
+60527,33
+60530,24
+60532,42
+60533,58
+60534,25
+60535,18
+60536,23
+60537,48
+60538,20
+60539,41
+60540,29
+60541,28
+60542,23
+60543,40
+60544,25
+60545,42
+60547,23
+60548,21
+60549,29
+60551,24
+60552,26
+60553,57
+60554,22
+60555,39
+60556,29
+60557,25
+60558,35
+60559,57
+60560,33
+60561,28
+60563,30
+60564,18
+60565,36
+60566,29
+60567,27
+60568,46
+60569,23
+60571,46
+60572,35
+60573,21
+60575,40
+60576,29
+60577,28
+60578,42
+60579,26
+60580,41
+60581,39
+60582,29
+60585,22
+60586,27
+60588,27
+60589,42
+60590,45
+60591,22
+60592,48
+60593,29
+60594,28
+60595,24
+60596,20
+60597,51
+60598,23
+60599,66
+60600,31
+60601,49
+60602,28
+60603,27
+60604,38
+60606,26
+60607,30
+60608,25
+60609,32
+60613,24
+60614,32
+60615,26
+60616,30
+60617,20
+60618,26
+60619,22
+60620,46
+60621,22
+60622,27
+60623,20
+60625,43
+60627,46
+60628,30
+60629,25
+60631,26
+60632,41
+60633,27
+60634,19
+60635,37
+60636,24
+60637,44
+60638,35
+60639,21
+60640,33
+60641,26
+60642,20
+60644,14
+60646,27
+60647,28
+60648,16
+60649,28
+60650,22
+60651,33
+60652,28
+60653,25
+60655,35
+60656,24
+60657,33
+60658,48
+60659,29
+60660,21
+60661,26
+60663,57
+60664,27
+60665,33
+60666,44
+60667,21
+60668,47
+60669,29
+60670,23
+60672,30
+60673,32
+60674,26
+60675,37
+60676,22
+60677,27
+60678,26
+60679,24
+60680,23
+60681,34
+60682,26
+60684,28
+60685,22
+60686,19
+60687,23
+60688,25
+60689,30
+60690,34
+60691,56
+60692,32
+60693,24
+60694,13
+60696,26
+60697,21
+60698,45
+60699,39
+60700,24
+60701,31
+60703,39
+60704,32
+60705,37
+60706,37
+60707,28
+60708,20
+60709,37
+60710,36
+60711,28
+60712,52
+60713,33
+60714,23
+60715,27
+60716,37
+60718,31
+60719,23
+60721,17
+60722,30
+60724,40
+60725,28
+60726,24
+60727,17
+60728,41
+60730,31
+60731,25
+60732,32
+60733,24
+60734,26
+60735,52
+60736,25
+60738,26
+60739,47
+60740,36
+60741,19
+60742,33
+60743,24
+60744,16
+60745,24
+60746,34
+60747,23
+60748,22
+60749,34
+60750,22
+60751,24
+60752,39
+60753,24
+60755,18
+60756,27
+60757,32
+60758,23
+60759,27
+60760,66
+60761,26
+60762,37
+60764,37
+60765,46
+60766,23
+60767,29
+60769,40
+60770,24
+60771,32
+60772,28
+60773,35
+60774,25
+60775,37
+60776,49
+60778,33
+60779,39
+60780,26
+60781,29
+60783,23
+60784,26
+60785,43
+60786,36
+60787,34
+60788,29
+60789,38
+60790,23
+60791,38
+60792,19
+60793,26
+60794,42
+60796,23
+60797,31
+60798,42
+60799,24
+60800,34
+60801,29
+60802,36
+60803,24
+60804,31
+60805,25
+60806,25
+60807,22
+60808,31
+60809,25
+60810,14
+60812,26
+60814,70
+60816,56
+60817,22
+60818,24
+60819,34
+60820,30
+60821,33
+60822,26
+60823,36
+60824,50
+60825,42
+60827,29
+60828,16
+60830,30
+60831,25
+60832,25
+60833,38
+60834,19
+60835,23
+60836,27
+60837,40
+60838,25
+60839,39
+60840,57
+60841,27
+60842,34
+60843,16
+60844,25
+60846,24
+60848,25
+60850,30
+60852,37
+60853,28
+60854,25
+60855,26
+60856,27
+60857,25
+60858,26
+60859,43
+60860,43
+60862,26
+60863,29
+60864,31
+60865,19
+60866,24
+60867,38
+60869,32
+60870,34
+60871,33
+60872,26
+60874,24
+60875,24
+60876,26
+60877,22
+60878,25
+60879,27
+60880,24
+60881,19
+60882,23
+60883,24
+60884,42
+60885,22
+60886,27
+60887,23
+60888,28
+60889,43
+60890,27
+60891,21
+60892,22
+60893,30
+60894,23
+60895,33
+60896,27
+60897,38
+60898,31
+60899,18
+60900,30
+60901,23
+60902,28
+60903,34
+60904,25
+60905,24
+60906,40
+60907,24
+60908,22
+60909,35
+60910,16
+60911,28
+60912,25
+60913,25
+60914,27
+60915,40
+60916,18
+60917,24
+60918,31
+60919,30
+60920,43
+60921,40
+60922,28
+60924,23
+60925,32
+60926,37
+60927,48
+60931,21
+60932,30
+60933,29
+60934,19
+60935,15
+60936,29
+60937,30
+60938,36
+60939,43
+60940,39
+60941,36
+60942,25
+60944,26
+60945,27
+60946,25
+60948,42
+60949,23
+60950,28
+60951,32
+60952,42
+60953,41
+60954,30
+60955,25
+60956,24
+60957,34
+60958,26
+60960,35
+60961,25
+60962,28
+60963,28
+60964,49
+60965,19
+60966,21
+60967,24
+60968,32
+60969,25
+60970,30
+60971,56
+60972,19
+60973,29
+60974,26
+60975,23
+60976,40
+60977,50
+60978,27
+60979,26
+60980,24
+60982,63
+60984,23
+60985,36
+60986,27
+60987,22
+60988,22
+60989,28
+60990,28
+60991,31
+60992,21
+60993,33
+60994,42
+60995,43
+60996,26
+60997,36
+60998,48
+60999,31
+61001,36
+61003,25
+61004,25
+61005,21
+61007,35
+61008,26
+61010,34
+61011,37
+61012,19
+61013,22
+61014,25
+61015,54
+61016,3
+61018,28
+61019,29
+61020,35
+61021,24
+61022,22
+61024,37
+61025,27
+61026,34
+61027,31
+61028,32
+61030,16
+61031,34
+61034,40
+61035,26
+61036,29
+61037,18
+61038,33
+61039,32
+61040,34
+61041,29
+61042,25
+61043,26
+61044,25
+61045,21
+61046,25
+61047,23
+61048,21
+61049,30
+61050,44
+61051,17
+61052,29
+61053,31
+61054,26
+61055,25
+61056,31
+61057,34
+61058,25
+61059,26
+61061,28
+61062,27
+61063,27
+61065,36
+61066,37
+61067,31
+61068,28
+61069,30
+61072,24
+61073,36
+61074,31
+61075,34
+61076,23
+61077,38
+61078,23
+61079,29
+61080,28
+61081,28
+61083,26
+61084,36
+61085,28
+61086,24
+61087,52
+61088,26
+61089,23
+61090,26
+61091,30
+61092,33
+61093,22
+61094,29
+61096,16
+61097,31
+61098,29
+61099,22
+61100,20
+61101,25
+61102,25
+61104,51
+61105,33
+61106,30
+61107,42
+61108,29
+61109,41
+61110,21
+61111,35
+61112,33
+61113,28
+61114,27
+61115,25
+61116,26
+61117,24
+61118,21
+61119,41
+61120,45
+61121,29
+61122,42
+61123,25
+61124,30
+61125,22
+61126,24
+61127,39
+61128,29
+61129,28
+61130,25
+61131,22
+61132,25
+61133,24
+61134,43
+61136,28
+61137,24
+61138,26
+61139,31
+61140,29
+61141,28
+61142,23
+61143,40
+61144,26
+61145,30
+61146,47
+61147,53
+61148,21
+61149,28
+61151,23
+61152,32
+61153,33
+61154,28
+61156,27
+61157,29
+61159,29
+61162,24
+61163,29
+61164,22
+61165,30
+61166,25
+61167,19
+61168,23
+61169,24
+61170,26
+61171,29
+61172,34
+61173,19
+61174,23
+61175,35
+61178,23
+61179,28
+61181,33
+61182,32
+61183,32
+61184,31
+61185,33
+61186,22
+61188,38
+61191,42
+61192,23
+61193,27
+61194,36
+61195,27
+61196,27
+61197,27
+61198,40
+61199,37
+61201,33
+61202,21
+61203,22
+61204,30
+61205,29
+61206,21
+61208,21
+61209,23
+61211,20
+61212,21
+61213,12
+61214,34
+61215,23
+61216,35
+61217,22
+61219,27
+61220,32
+61221,30
+61222,28
+61224,27
+61225,28
+61226,18
+61227,29
+61228,17
+61229,29
+61230,25
+61231,25
+61233,42
+61234,28
+61235,31
+61236,26
+61237,25
+61238,23
+61239,21
+61240,31
+61241,42
+61242,27
+61243,20
+61244,32
+61245,40
+61246,31
+61247,20
+61248,37
+61249,32
+61251,30
+61252,24
+61253,21
+61255,33
+61257,32
+61258,34
+61259,37
+61260,22
+61261,24
+61262,24
+61263,16
+61264,15
+61265,29
+61266,50
+61267,50
+61268,24
+61270,36
+61271,25
+61272,15
+61274,30
+61275,22
+61276,36
+61277,19
+61278,32
+61279,40
+61280,45
+61281,32
+61282,19
+61283,35
+61284,20
+61285,26
+61286,35
+61287,19
+61288,30
+61289,21
+61290,22
+61291,28
+61292,34
+61293,22
+61294,28
+61295,28
+61296,25
+61297,50
+61299,18
+61300,37
+61301,46
+61302,28
+61303,27
+61305,25
+61306,38
+61307,31
+61308,43
+61309,56
+61310,27
+61311,43
+61312,36
+61313,32
+61314,13
+61315,36
+61316,27
+61317,36
+61318,34
+61320,22
+61321,35
+61322,23
+61323,22
+61324,26
+61325,24
+61326,24
+61327,44
+61328,34
+61329,35
+61330,34
+61331,28
+61332,42
+61333,29
+61334,25
+61335,25
+61336,22
+61337,27
+61339,65
+61340,28
+61341,25
+61342,27
+61343,27
+61344,34
+61345,16
+61346,46
+61347,28
+61348,24
+61349,25
+61351,30
+61352,20
+61353,28
+61354,59
+61355,19
+61356,15
+61357,33
+61358,34
+61359,26
+61360,20
+61361,27
+61362,50
+61363,21
+61364,33
+61365,27
+61366,26
+61367,51
+61368,21
+61369,44
+61370,39
+61371,17
+61372,27
+61373,35
+61377,40
+61379,22
+61380,22
+61381,30
+61382,29
+61383,33
+61384,31
+61385,21
+61386,18
+61387,27
+61388,81
+61389,73
+61390,32
+61391,33
+61392,50
+61393,47
+61394,31
+61395,28
+61396,21
+61397,32
+61398,25
+61399,33
+61400,29
+61401,32
+61402,34
+61403,28
+61404,19
+61405,24
+61406,40
+61407,28
+61408,29
+61409,34
+61410,36
+61412,30
+61413,27
+61414,22
+61416,28
+61417,36
+61418,47
+61419,45
+61420,25
+61422,27
+61423,30
+61424,25
+61425,26
+61426,27
+61429,24
+61430,50
+61432,30
+61433,23
+61434,30
+61435,29
+61436,62
+61437,18
+61438,25
+61439,27
+61441,26
+61442,38
+61443,20
+61444,43
+61446,23
+61447,29
+61448,29
+61449,28
+61450,27
+61451,47
+61452,22
+61453,28
+61454,39
+61455,30
+61456,28
+61457,31
+61458,28
+61459,28
+61460,22
+61462,27
+61463,27
+61464,19
+61465,64
+61466,44
+61469,23
+61470,46
+61471,27
+61472,28
+61473,28
+61474,42
+61476,34
+61477,27
+61478,27
+61479,52
+61480,33
+61482,23
+61483,33
+61484,28
+61485,31
+61486,27
+61487,43
+61488,21
+61489,31
+61490,42
+61491,21
+61492,28
+61493,29
+61494,31
+61496,26
+61497,28
+61498,73
+61499,26
+61500,16
+61501,28
+61502,21
+61503,30
+61504,26
+61505,26
+61506,39
+61507,23
+61508,27
+61509,30
+61510,25
+61511,20
+61512,25
+61513,41
+61514,29
+61515,60
+61516,30
+61517,28
+61519,28
+61520,31
+61521,21
+61522,32
+61523,30
+61525,39
+61526,23
+61527,28
+61528,37
+61529,24
+61530,27
+61532,31
+61533,29
+61534,29
+61535,23
+61536,53
+61537,29
+61538,27
+61539,23
+61540,32
+61541,22
+61542,22
+61543,30
+61544,45
+61545,46
+61546,32
+61547,40
+61548,29
+61549,57
+61550,25
+61551,33
+61552,40
+61553,28
+61554,35
+61555,32
+61556,63
+61557,19
+61558,28
+61559,37
+61560,21
+61561,36
+61562,24
+61563,23
+61564,43
+61565,25
+61566,23
+61567,44
+61568,32
+61569,32
+61570,40
+61571,32
+61572,27
+61573,26
+61574,41
+61575,31
+61576,28
+61577,25
+61578,21
+61579,25
+61580,24
+61581,31
+61583,14
+61584,24
+61585,32
+61587,17
+61588,30
+61589,47
+61590,23
+61592,27
+61593,28
+61594,21
+61595,48
+61596,24
+61597,29
+61598,23
+61599,43
+61600,28
+61601,20
+61602,40
+61603,24
+61604,25
+61605,38
+61606,32
+61607,25
+61608,24
+61609,28
+61610,35
+61611,28
+61612,30
+61613,28
+61614,23
+61616,28
+61617,33
+61618,28
+61619,38
+61620,29
+61621,25
+61622,29
+61623,23
+61624,33
+61625,31
+61626,16
+61627,43
+61628,25
+61629,34
+61630,26
+61631,50
+61632,40
+61634,20
+61635,24
+61636,44
+61637,33
+61639,26
+61640,62
+61642,30
+61643,19
+61644,25
+61645,24
+61647,40
+61648,22
+61650,30
+61652,32
+61653,28
+61654,20
+61655,24
+61656,28
+61658,32
+61659,37
+61660,40
+61661,28
+61662,34
+61663,20
+61665,63
+61666,25
+61667,28
+61668,31
+61669,69
+61670,42
+61671,38
+61673,35
+61674,25
+61675,34
+61677,25
+61678,22
+61679,53
+61680,29
+61681,23
+61682,39
+61683,22
+61684,25
+61685,29
+61686,35
+61687,39
+61688,42
+61689,33
+61690,21
+61691,31
+61692,33
+61693,24
+61695,42
+61696,20
+61699,25
+61701,20
+61702,29
+61703,36
+61704,39
+61705,60
+61706,25
+61707,27
+61709,28
+61710,29
+61712,25
+61713,39
+61714,44
+61715,36
+61716,38
+61718,23
+61719,24
+61720,19
+61721,9
+61722,22
+61723,25
+61724,25
+61725,27
+61726,17
+61727,18
+61728,53
+61729,28
+61730,32
+61731,34
+61732,34
+61733,28
+61734,29
+61735,25
+61736,51
+61737,23
+61738,27
+61739,27
+61740,27
+61741,43
+61742,24
+61744,16
+61745,32
+61746,32
+61747,21
+61749,29
+61750,30
+61751,34
+61752,21
+61754,30
+61755,27
+61756,45
+61757,36
+61758,21
+61759,19
+61760,25
+61761,22
+61762,14
+61763,30
+61764,35
+61765,17
+61766,27
+61767,28
+61768,32
+61769,28
+61770,28
+61771,27
+61773,31
+61774,23
+61775,34
+61776,42
+61777,22
+61778,29
+61779,23
+61780,32
+61781,47
+61782,26
+61783,48
+61784,29
+61785,29
+61788,25
+61789,37
+61790,30
+61791,22
+61793,26
+61795,40
+61796,29
+61797,33
+61798,18
+61800,20
+61801,27
+61802,48
+61803,24
+61804,50
+61805,16
+61806,48
+61807,34
+61808,24
+61809,32
+61810,37
+61811,26
+61812,23
+61813,29
+61814,19
+61815,16
+61816,29
+61817,25
+61818,35
+61819,33
+61820,47
+61821,37
+61822,40
+61823,25
+61824,38
+61825,31
+61826,24
+61827,28
+61828,31
+61829,33
+61830,28
+61831,25
+61832,23
+61833,29
+61834,24
+61835,25
+61836,19
+61837,48
+61838,23
+61839,33
+61840,24
+61841,38
+61842,32
+61843,38
+61844,30
+61845,36
+61846,24
+61847,25
+61848,21
+61849,26
+61850,28
+61852,46
+61853,29
+61854,52
+61855,31
+61856,36
+61857,21
+61858,32
+61859,24
+61860,32
+61861,38
+61862,45
+61863,21
+61864,46
+61865,42
+61866,14
+61867,29
+61868,24
+61869,29
+61870,43
+61871,29
+61872,28
+61873,23
+61874,35
+61875,25
+61876,23
+61878,29
+61879,25
+61880,45
+61881,34
+61882,22
+61883,22
+61884,25
+61885,26
+61886,27
+61888,23
+61889,26
+61890,32
+61891,23
+61892,27
+61893,28
+61894,23
+61895,22
+61896,24
+61897,27
+61899,34
+61900,36
+61901,35
+61902,29
+61903,55
+61904,28
+61905,23
+61906,29
+61907,35
+61908,53
+61909,25
+61910,38
+61911,29
+61913,23
+61914,45
+61915,37
+61916,36
+61917,26
+61918,22
+61919,19
+61920,33
+61924,27
+61925,27
+61926,34
+61928,36
+61929,30
+61930,30
+61931,20
+61932,46
+61933,22
+61934,27
+61935,25
+61936,27
+61937,28
+61938,27
+61939,28
+61940,30
+61941,43
+61942,18
+61943,26
+61944,32
+61946,37
+61947,52
+61948,27
+61949,51
+61950,40
+61951,31
+61952,27
+61953,28
+61954,19
+61955,18
+61956,23
+61958,28
+61959,26
+61960,20
+61961,28
+61962,28
+61963,18
+61964,22
+61965,29
+61966,28
+61969,15
+61970,29
+61971,39
+61973,30
+61974,21
+61975,32
+61976,62
+61978,20
+61979,22
+61980,31
+61981,22
+61982,31
+61984,20
+61985,41
+61986,34
+61988,37
+61989,31
+61991,27
+61992,36
+61993,30
+61994,40
+61995,25
+61996,25
+61997,34
+61998,29
+61999,33
+62000,20
+62001,36
+62002,23
+62003,30
+62004,35
+62005,28
+62006,16
+62008,28
+62009,24
+62010,26
+62011,23
+62012,21
+62013,27
+62015,18
+62016,24
+62017,29
+62018,31
+62019,20
+62020,29
+62021,26
+62022,35
+62023,28
+62024,28
+62026,29
+62027,18
+62028,51
+62029,22
+62030,34
+62031,34
+62032,33
+62033,36
+62034,24
+62036,29
+62039,12
+62040,28
+62041,40
+62042,55
+62043,25
+62044,35
+62046,21
+62047,29
+62048,23
+62049,19
+62051,33
+62052,31
+62053,22
+62054,19
+62055,30
+62056,21
+62057,29
+62059,26
+62060,47
+62061,19
+62062,20
+62063,31
+62064,20
+62065,29
+62066,26
+62067,25
+62068,39
+62069,23
+62070,29
+62071,26
+62072,23
+62073,19
+62074,25
+62075,38
+62076,34
+62077,27
+62078,37
+62079,30
+62080,27
+62081,36
+62082,28
+62083,34
+62084,20
+62085,50
+62086,32
+62087,27
+62088,36
+62089,31
+62091,42
+62092,31
+62093,31
+62094,26
+62095,31
+62096,37
+62097,18
+62099,27
+62100,49
+62101,37
+62102,25
+62103,49
+62104,31
+62105,21
+62106,24
+62107,23
+62108,40
+62109,38
+62110,45
+62111,34
+62112,22
+62113,25
+62115,17
+62116,30
+62117,26
+62118,33
+62119,27
+62120,23
+62121,23
+62122,25
+62123,17
+62125,37
+62126,35
+62127,23
+62128,25
+62129,28
+62131,63
+62133,39
+62134,23
+62135,31
+62136,18
+62137,31
+62138,17
+62139,50
+62140,32
+62141,26
+62142,25
+62143,25
+62144,41
+62145,27
+62146,24
+62147,26
+62148,32
+62150,32
+62151,36
+62152,53
+62153,31
+62154,20
+62156,32
+62158,27
+62159,36
+62160,38
+62161,20
+62163,41
+62164,21
+62165,23
+62166,24
+62167,43
+62170,51
+62171,31
+62172,32
+62173,36
+62174,29
+62176,29
+62178,60
+62179,36
+62180,27
+62181,29
+62184,39
+62185,20
+62186,57
+62187,37
+62188,39
+62189,19
+62190,26
+62191,27
+62192,23
+62193,22
+62194,21
+62195,25
+62196,32
+62197,38
+62198,28
+62199,25
+62200,18
+62201,34
+62202,43
+62204,21
+62205,32
+62207,31
+62208,53
+62209,31
+62210,34
+62211,28
+62213,35
+62214,25
+62215,35
+62216,43
+62217,14
+62218,21
+62219,38
+62220,21
+62221,39
+62222,32
+62223,37
+62224,25
+62225,30
+62226,22
+62227,26
+62228,44
+62229,38
+62230,33
+62231,56
+62232,22
+62233,25
+62235,35
+62236,27
+62237,29
+62238,20
+62239,34
+62240,38
+62242,24
+62243,23
+62244,18
+62245,21
+62246,99
+62247,42
+62248,27
+62249,26
+62250,24
+62251,31
+62252,28
+62253,25
+62254,28
+62255,19
+62256,38
+62257,24
+62258,26
+62259,29
+62261,26
+62262,47
+62263,57
+62264,20
+62265,33
+62266,38
+62267,48
+62269,34
+62270,19
+62271,23
+62272,29
+62273,40
+62274,35
+62275,57
+62276,33
+62277,24
+62278,30
+62279,23
+62280,24
+62281,18
+62282,32
+62283,58
+62284,29
+62285,47
+62287,22
+62288,39
+62289,26
+62290,37
+62291,20
+62292,38
+62293,30
+62295,26
+62296,34
+62297,71
+62298,28
+62299,20
+62300,26
+62301,22
+62303,27
+62304,44
+62305,25
+62306,35
+62307,31
+62308,55
+62309,31
+62310,17
+62311,26
+62312,26
+62313,25
+62314,24
+62315,40
+62316,30
+62318,31
+62319,22
+62320,25
+62321,30
+62322,39
+62324,18
+62325,31
+62327,29
+62328,27
+62329,30
+62330,35
+62331,30
+62332,23
+62333,28
+62334,37
+62335,26
+62336,37
+62337,44
+62338,53
+62339,20
+62340,24
+62341,19
+62342,37
+62343,33
+62344,48
+62345,38
+62346,20
+62348,25
+62349,29
+62350,30
+62351,27
+62352,44
+62353,43
+62354,51
+62356,35
+62357,29
+62359,20
+62360,31
+62361,27
+62362,35
+62363,24
+62364,23
+62365,26
+62366,29
+62367,18
+62368,19
+62369,21
+62370,36
+62371,22
+62372,27
+62373,30
+62374,41
+62376,34
+62377,35
+62378,33
+62379,38
+62380,27
+62381,25
+62382,39
+62383,27
+62384,24
+62385,39
+62386,21
+62387,27
+62388,30
+62389,21
+62390,33
+62391,21
+62392,30
+62393,25
+62394,44
+62395,35
+62397,28
+62398,25
+62399,26
+62400,31
+62401,24
+62402,26
+62403,24
+62404,24
+62405,26
+62406,35
+62408,32
+62409,18
+62411,24
+62412,30
+62413,26
+62415,26
+62416,27
+62417,45
+62418,29
+62419,37
+62420,25
+62421,27
+62423,32
+62424,21
+62425,24
+62426,38
+62427,19
+62428,16
+62429,18
+62430,31
+62431,23
+62432,24
+62433,47
+62434,35
+62435,27
+62436,22
+62437,32
+62438,26
+62439,36
+62440,25
+62442,31
+62443,24
+62444,23
+62445,25
+62446,29
+62448,36
+62449,23
+62451,21
+62452,25
+62453,31
+62454,37
+62455,27
+62456,29
+62457,39
+62458,22
+62461,36
+62463,60
+62464,37
+62465,29
+62466,21
+62467,42
+62468,25
+62469,28
+62470,25
+62471,27
+62472,24
+62473,28
+62474,32
+62475,36
+62476,41
+62477,22
+62478,31
+62479,21
+62480,27
+62481,24
+62482,29
+62483,45
+62484,39
+62485,26
+62486,19
+62487,23
+62488,23
+62489,25
+62490,25
+62491,41
+62492,20
+62493,26
+62494,26
+62495,24
+62496,18
+62497,29
+62498,19
+62499,30
+62500,23
+62501,24
+62502,35
+62503,19
+62504,19
+62505,27
+62506,28
+62507,48
+62508,20
+62509,35
+62510,35
+62511,32
+62512,39
+62513,27
+62514,22
+62515,45
+62516,24
+62517,31
+62518,31
+62519,18
+62520,41
+62521,37
+62522,18
+62523,48
+62524,21
+62525,18
+62526,14
+62527,15
+62528,20
+62529,23
+62530,25
+62531,28
+62532,30
+62533,21
+62534,29
+62535,24
+62536,40
+62537,20
+62538,23
+62539,18
+62541,28
+62542,48
+62543,36
+62545,57
+62546,19
+62547,35
+62549,31
+62550,21
+62551,31
+62552,35
+62553,16
+62554,22
+62555,34
+62556,31
+62557,35
+62558,31
+62559,37
+62560,24
+62561,31
+62564,39
+62566,27
+62567,25
+62568,43
+62569,46
+62570,32
+62571,34
+62572,34
+62573,42
+62576,38
+62577,27
+62579,22
+62581,30
+62582,40
+62584,31
+62586,26
+62587,30
+62588,26
+62589,33
+62590,21
+62591,39
+62592,37
+62593,27
+62594,42
+62596,27
+62597,18
+62598,21
+62599,54
+62600,25
+62601,23
+62602,52
+62603,37
+62604,52
+62606,34
+62607,32
+62610,29
+62611,27
+62612,32
+62613,34
+62614,31
+62615,20
+62617,26
+62618,57
+62620,31
+62621,26
+62622,31
+62623,25
+62624,30
+62625,35
+62626,50
+62627,34
+62628,33
+62629,12
+62630,27
+62631,42
+62632,28
+62634,29
+62635,45
+62636,27
+62637,31
+62638,22
+62639,28
+62643,23
+62644,21
+62646,32
+62647,32
+62648,38
+62649,19
+62650,44
+62651,28
+62652,33
+62653,31
+62654,17
+62655,38
+62657,26
+62658,26
+62659,25
+62660,22
+62662,36
+62663,37
+62664,32
+62665,16
+62666,38
+62667,16
+62668,28
+62669,51
+62670,31
+62671,39
+62672,27
+62673,32
+62674,24
+62675,26
+62676,22
+62678,35
+62679,19
+62680,22
+62681,19
+62682,14
+62683,56
+62685,26
+62686,24
+62687,27
+62688,24
+62689,30
+62690,33
+62691,27
+62692,49
+62693,19
+62694,36
+62695,16
+62696,29
+62697,27
+62698,60
+62700,38
+62701,23
+62702,24
+62703,37
+62704,33
+62705,48
+62706,38
+62707,21
+62708,27
+62709,31
+62710,42
+62712,23
+62713,36
+62714,27
+62715,42
+62716,24
+62717,24
+62718,35
+62719,27
+62720,55
+62721,23
+62722,40
+62723,34
+62724,30
+62725,28
+62726,25
+62728,34
+62729,24
+62730,26
+62732,40
+62733,28
+62734,32
+62735,20
+62736,42
+62737,32
+62738,30
+62739,36
+62742,23
+62744,41
+62745,26
+62746,31
+62747,31
+62748,26
+62749,25
+62751,28
+62752,22
+62753,22
+62754,32
+62756,30
+62757,33
+62758,38
+62759,21
+62760,35
+62761,40
+62762,39
+62763,55
+62764,26
+62765,24
+62766,40
+62767,23
+62769,26
+62770,20
+62771,24
+62772,38
+62773,23
+62774,21
+62775,15
+62776,26
+62777,18
+62778,27
+62779,39
+62780,33
+62781,25
+62783,24
+62784,33
+62785,24
+62786,19
+62787,30
+62788,30
+62790,21
+62791,16
+62792,32
+62793,47
+62794,18
+62795,24
+62796,32
+62798,29
+62799,26
+62800,22
+62801,48
+62802,29
+62803,43
+62804,25
+62805,24
+62806,27
+62807,25
+62808,39
+62809,37
+62810,23
+62811,37
+62812,33
+62813,28
+62814,35
+62815,36
+62816,21
+62817,24
+62818,21
+62819,21
+62820,34
+62821,19
+62822,38
+62823,39
+62824,30
+62827,20
+62828,55
+62829,43
+62830,22
+62831,35
+62833,28
+62834,25
+62835,24
+62836,22
+62837,30
+62838,23
+62839,31
+62841,26
+62842,28
+62843,34
+62844,27
+62845,50
+62846,38
+62847,31
+62848,21
+62849,36
+62850,30
+62851,22
+62852,33
+62853,27
+62854,31
+62855,32
+62856,22
+62857,25
+62858,24
+62859,25
+62860,34
+62861,28
+62862,24
+62864,26
+62865,28
+62866,26
+62867,26
+62868,32
+62871,26
+62872,55
+62873,29
+62874,31
+62875,27
+62876,31
+62877,43
+62878,30
+62879,29
+62880,33
+62881,25
+62882,21
+62883,26
+62884,26
+62885,15
+62886,34
+62888,46
+62889,27
+62890,18
+62891,33
+62892,29
+62893,37
+62894,32
+62895,21
+62896,29
+62897,20
+62898,42
+62900,18
+62901,30
+62902,26
+62903,30
+62904,40
+62905,23
+62907,28
+62909,25
+62910,19
+62912,39
+62913,35
+62914,27
+62915,22
+62916,32
+62917,33
+62918,35
+62919,34
+62920,23
+62921,20
+62922,50
+62925,30
+62926,55
+62927,31
+62928,37
+62929,25
+62930,32
+62931,23
+62932,29
+62933,27
+62934,38
+62935,23
+62937,22
+62938,20
+62939,35
+62940,43
+62941,45
+62942,22
+62943,19
+62944,25
+62945,19
+62946,25
+62947,21
+62948,29
+62949,22
+62950,36
+62951,21
+62952,24
+62953,26
+62954,25
+62956,19
+62957,43
+62958,16
+62959,31
+62960,17
+62961,40
+62962,49
+62963,50
+62964,24
+62965,33
+62966,19
+62967,26
+62968,33
+62970,24
+62971,40
+62972,26
+62973,28
+62974,29
+62975,25
+62976,25
+62977,28
+62978,41
+62979,28
+62981,60
+62984,28
+62985,30
+62986,23
+62987,35
+62988,29
+62989,22
+62990,24
+62991,19
+62992,26
+62993,34
+62994,21
+62995,43
+62996,37
+62997,26
+62998,26
+63001,27
+63002,23
+63003,15
+63004,51
+63005,30
+63006,32
+63007,38
+63008,47
+63009,34
+63010,31
+63011,38
+63012,28
+63014,57
+63015,42
+63016,21
+63017,21
+63018,48
+63020,35
+63021,32
+63023,17
+63024,23
+63025,23
+63027,18
+63028,29
+63029,22
+63030,31
+63031,42
+63032,26
+63033,13
+63034,41
+63035,28
+63036,27
+63037,25
+63038,24
+63039,18
+63040,32
+63042,24
+63043,54
+63044,36
+63046,36
+63047,34
+63048,58
+63049,34
+63050,22
+63051,23
+63052,35
+63053,26
+63054,23
+63055,37
+63057,29
+63059,30
+63060,18
+63061,35
+63062,30
+63063,35
+63064,26
+63065,39
+63066,26
+63067,26
+63068,36
+63069,25
+63070,29
+63071,21
+63073,30
+63075,31
+63076,58
+63079,34
+63080,27
+63081,65
+63082,39
+63083,37
+63084,31
+63085,31
+63086,22
+63087,29
+63088,15
+63089,28
+63090,27
+63092,27
+63093,20
+63095,26
+63096,34
+63097,28
+63098,48
+63099,26
+63100,30
+63101,36
+63103,35
+63104,23
+63105,22
+63106,38
+63107,25
+63108,26
+63109,24
+63110,33
+63111,24
+63113,31
+63115,25
+63116,21
+63117,38
+63119,34
+63120,25
+63121,38
+63122,35
+63123,55
+63124,31
+63125,30
+63127,62
+63128,24
+63130,22
+63131,16
+63132,24
+63133,27
+63134,37
+63135,34
+63136,35
+63137,19
+63138,69
+63139,25
+63140,24
+63141,23
+63142,33
+63144,19
+63145,30
+63146,26
+63147,26
+63148,19
+63149,18
+63150,36
+63151,25
+63152,31
+63153,27
+63154,27
+63155,34
+63156,31
+63157,21
+63158,1
+63159,28
+63160,24
+63161,40
+63163,32
+63164,45
+63165,37
+63166,31
+63167,28
+63168,36
+63170,23
+63171,38
+63173,27
+63174,17
+63175,23
+63176,42
+63177,25
+63178,23
+63179,35
+63180,28
+63181,35
+63182,30
+63183,28
+63184,48
+63185,26
+63186,28
+63187,25
+63188,32
+63189,29
+63191,35
+63192,26
+63193,57
+63194,35
+63196,24
+63197,27
+63199,37
+63200,23
+63202,34
+63203,30
+63204,28
+63205,24
+63206,28
+63207,28
+63208,18
+63209,38
+63210,38
+63211,23
+63212,28
+63213,34
+63215,39
+63217,28
+63219,20
+63221,17
+63222,28
+63223,25
+63224,42
+63225,25
+63226,30
+63227,18
+63228,25
+63229,37
+63231,25
+63232,33
+63233,33
+63234,31
+63235,35
+63236,35
+63238,49
+63239,29
+63240,25
+63241,30
+63242,26
+63243,30
+63244,20
+63245,28
+63247,20
+63248,51
+63249,34
+63250,20
+63251,30
+63252,26
+63253,26
+63254,19
+63256,17
+63258,26
+63259,26
+63260,29
+63261,25
+63263,26
+63264,26
+63265,34
+63266,25
+63267,22
+63268,32
+63269,38
+63270,25
+63271,31
+63272,55
+63273,41
+63274,36
+63275,26
+63276,26
+63278,37
+63279,33
+63280,23
+63281,33
+63282,32
+63283,27
+63285,24
+63286,42
+63287,47
+63289,32
+63290,40
+63291,25
+63292,28
+63293,34
+63294,49
+63296,27
+63299,26
+63300,62
+63301,22
+63303,44
+63304,29
+63305,36
+63306,44
+63307,45
+63308,30
+63309,41
+63310,27
+63311,21
+63312,32
+63313,22
+63314,25
+63315,22
+63316,27
+63317,52
+63319,46
+63320,30
+63321,32
+63322,22
+63323,28
+63326,22
+63328,43
+63329,24
+63330,25
+63331,33
+63332,45
+63334,36
+63335,52
+63336,25
+63338,34
+63339,33
+63340,38
+63341,23
+63342,32
+63343,33
+63344,27
+63345,22
+63346,25
+63347,22
+63349,17
+63350,52
+63351,23
+63352,27
+63353,47
+63354,25
+63355,39
+63356,35
+63357,23
+63359,29
+63360,23
+63361,38
+63362,31
+63363,23
+63364,32
+63365,32
+63366,28
+63367,23
+63368,47
+63369,20
+63371,22
+63372,24
+63373,35
+63374,27
+63375,27
+63376,33
+63378,16
+63379,32
+63380,30
+63381,26
+63382,45
+63383,20
+63384,47
+63385,53
+63386,32
+63387,23
+63388,25
+63389,20
+63391,36
+63392,21
+63393,36
+63394,20
+63395,20
+63396,25
+63397,28
+63398,23
+63400,32
+63401,28
+63402,36
+63404,21
+63405,32
+63406,30
+63408,25
+63409,32
+63410,36
+63411,22
+63412,23
+63413,27
+63414,30
+63415,27
+63416,37
+63417,34
+63418,30
+63419,25
+63420,26
+63422,28
+63423,28
+63424,18
+63425,60
+63426,23
+63427,20
+63428,34
+63429,17
+63430,40
+63431,24
+63432,27
+63434,29
+63435,28
+63436,28
+63437,22
+63438,20
+63440,30
+63441,45
+63442,40
+63443,25
+63444,38
+63445,45
+63447,21
+63448,17
+63449,25
+63450,21
+63451,29
+63452,37
+63453,33
+63454,28
+63455,35
+63456,31
+63457,28
+63458,23
+63459,27
+63460,46
+63463,36
+63464,29
+63465,32
+63466,26
+63468,18
+63469,26
+63470,43
+63471,37
+63472,42
+63473,27
+63474,49
+63475,25
+63476,27
+63477,34
+63478,19
+63479,36
+63480,41
+63481,29
+63482,20
+63483,26
+63485,22
+63486,36
+63487,16
+63489,36
+63490,28
+63491,20
+63492,24
+63493,25
+63495,31
+63496,53
+63497,30
+63498,21
+63499,34
+63500,30
+63501,42
+63503,30
+63504,24
+63505,23
+63506,42
+63507,37
+63509,29
+63510,39
+63511,21
+63513,24
+63514,25
+63515,30
+63516,28
+63517,27
+63518,27
+63519,28
+63520,20
+63521,18
+63522,27
+63523,48
+63524,39
+63525,32
+63526,32
+63527,22
+63528,25
+63529,28
+63531,18
+63532,35
+63535,24
+63537,29
+63538,28
+63539,25
+63540,28
+63541,40
+63542,31
+63543,28
+63545,35
+63546,20
+63547,35
+63548,28
+63549,58
+63550,28
+63551,30
+63552,24
+63553,25
+63554,26
+63555,45
+63556,24
+63557,41
+63558,54
+63559,16
+63560,24
+63561,35
+63562,33
+63563,39
+63564,26
+63566,22
+63567,29
+63568,27
+63569,28
+63571,36
+63572,24
+63574,27
+63575,22
+63576,28
+63577,22
+63578,27
+63579,28
+63580,17
+63581,28
+63582,46
+63583,31
+63584,31
+63585,30
+63586,26
+63588,21
+63589,22
+63591,26
+63592,26
+63593,33
+63594,31
+63595,29
+63596,39
+63597,27
+63598,30
+63599,41
+63600,42
+63601,50
+63602,20
+63603,36
+63605,48
+63606,42
+63607,22
+63608,34
+63609,42
+63610,24
+63612,18
+63613,28
+63614,17
+63615,22
+63616,29
+63617,31
+63618,36
+63619,26
+63621,21
+63622,20
+63624,34
+63625,46
+63626,35
+63628,20
+63629,26
+63630,31
+63631,38
+63632,45
+63636,15
+63637,31
+63638,23
+63639,37
+63640,23
+63641,26
+63642,26
+63643,18
+63644,27
+63646,26
+63647,26
+63648,22
+63649,36
+63650,31
+63651,31
+63652,37
+63653,23
+63654,22
+63655,28
+63656,35
+63657,26
+63658,25
+63659,31
+63660,30
+63661,38
+63663,19
+63664,36
+63665,34
+63667,27
+63669,26
+63670,39
+63671,34
+63672,34
+63673,20
+63674,29
+63675,25
+63676,16
+63677,24
+63678,23
+63679,24
+63680,24
+63681,20
+63682,32
+63683,32
+63684,29
+63685,42
+63686,25
+63687,18
+63688,25
+63689,26
+63690,39
+63691,24
+63692,28
+63693,22
+63694,23
+63696,36
+63697,34
+63698,25
+63699,30
+63700,32
+63701,60
+63703,26
+63704,31
+63705,56
+63706,54
+63707,23
+63708,22
+63709,31
+63710,24
+63711,28
+63712,28
+63713,33
+63714,26
+63715,26
+63716,34
+63717,26
+63718,38
+63719,27
+63720,31
+63721,20
+63722,30
+63723,35
+63724,39
+63725,27
+63726,25
+63728,20
+63729,21
+63730,25
+63731,29
+63732,31
+63733,23
+63734,25
+63735,35
+63736,29
+63738,30
+63739,20
+63740,20
+63742,25
+63744,32
+63745,20
+63746,25
+63747,27
+63748,25
+63749,30
+63751,25
+63752,26
+63754,29
+63755,33
+63756,30
+63757,24
+63758,25
+63759,26
+63760,23
+63761,26
+63762,34
+63763,29
+63764,24
+63765,27
+63766,32
+63767,26
+63768,56
+63769,38
+63770,36
+63772,39
+63773,29
+63775,32
+63776,31
+63777,25
+63779,26
+63780,29
+63781,29
+63782,46
+63783,35
+63784,27
+63785,26
+63786,31
+63787,46
+63789,30
+63790,38
+63791,25
+63794,31
+63795,38
+63796,22
+63797,29
+63798,37
+63799,26
+63800,41
+63801,32
+63802,32
+63803,37
+63804,28
+63805,29
+63806,48
+63807,20
+63809,23
+63811,38
+63812,31
+63813,28
+63814,18
+63815,21
+63816,20
+63817,30
+63818,32
+63819,23
+63820,35
+63821,37
+63822,26
+63823,30
+63825,25
+63826,25
+63827,22
+63828,33
+63829,32
+63831,29
+63832,41
+63833,28
+63834,34
+63835,29
+63837,29
+63838,35
+63839,40
+63840,37
+63841,44
+63842,46
+63844,26
+63845,29
+63846,27
+63847,35
+63848,31
+63849,28
+63851,30
+63852,29
+63853,28
+63854,44
+63855,34
+63856,36
+63857,23
+63858,23
+63859,54
+63860,29
+63861,30
+63862,26
+63863,31
+63864,20
+63865,29
+63866,26
+63867,37
+63868,30
+63869,45
+63870,30
+63871,29
+63872,36
+63873,24
+63874,18
+63875,54
+63876,29
+63877,21
+63878,37
+63879,43
+63880,38
+63881,34
+63882,32
+63883,36
+63884,28
+63885,70
+63886,37
+63887,41
+63888,23
+63889,23
+63890,42
+63891,32
+63892,26
+63893,27
+63895,36
+63896,26
+63897,39
+63898,21
+63899,24
+63901,30
+63902,24
+63903,17
+63904,33
+63905,60
+63906,41
+63907,28
+63908,29
+63909,21
+63910,23
+63911,29
+63912,19
+63913,30
+63914,34
+63915,30
+63916,30
+63917,30
+63918,34
+63920,26
+63921,56
+63922,27
+63923,29
+63924,23
+63926,31
+63929,46
+63930,27
+63931,35
+63932,23
+63933,37
+63934,29
+63935,33
+63936,25
+63937,31
+63938,37
+63939,25
+63941,37
+63942,37
+63943,41
+63944,29
+63945,30
+63946,23
+63947,27
+63948,26
+63949,24
+63950,34
+63951,36
+63952,27
+63953,27
+63954,24
+63955,31
+63956,26
+63957,30
+63958,31
+63959,23
+63960,24
+63961,27
+63962,50
+63963,30
+63964,35
+63965,30
+63966,24
+63967,29
+63968,19
+63969,29
+63970,36
+63971,30
+63973,33
+63974,36
+63975,28
+63976,22
+63977,21
+63978,39
+63979,24
+63980,31
+63981,30
+63982,24
+63983,24
+63984,26
+63985,27
+63986,25
+63987,40
+63989,31
+63990,23
+63991,50
+63992,56
+63993,24
+63994,22
+63995,24
+63997,27
+63998,20
+63999,27
+64000,22
+64001,28
+64003,19
+64004,29
+64005,31
+64006,25
+64007,38
+64008,21
+64009,33
+64010,29
+64011,31
+64012,23
+64014,29
+64015,23
+64016,38
+64017,26
+64018,35
+64019,31
+64021,38
+64022,28
+64023,30
+64026,23
+64028,25
+64029,26
+64030,24
+64031,30
+64032,20
+64033,22
+64034,27
+64035,22
+64036,24
+64037,32
+64038,27
+64039,35
+64041,31
+64042,35
+64043,33
+64044,47
+64045,37
+64046,23
+64047,35
+64048,29
+64049,24
+64050,39
+64051,29
+64052,30
+64053,24
+64054,23
+64056,21
+64058,30
+64059,26
+64060,27
+64061,23
+64062,23
+64064,34
+64065,27
+64066,24
+64067,25
+64068,20
+64069,30
+64070,24
+64071,25
+64072,31
+64073,42
+64074,31
+64075,35
+64077,24
+64078,30
+64079,38
+64080,27
+64081,27
+64082,39
+64083,19
+64085,52
+64086,19
+64087,18
+64088,27
+64089,26
+64090,20
+64091,35
+64092,28
+64095,29
+64096,29
+64098,37
+64099,30
+64100,29
+64101,19
+64102,36
+64103,27
+64104,37
+64106,39
+64107,37
+64108,43
+64109,37
+64110,17
+64111,17
+64112,32
+64113,21
+64114,39
+64115,26
+64116,19
+64117,36
+64118,21
+64120,26
+64121,26
+64122,36
+64123,30
+64124,13
+64126,63
+64127,28
+64128,32
+64129,29
+64130,31
+64131,12
+64132,18
+64133,27
+64134,33
+64136,32
+64137,33
+64138,23
+64139,33
+64140,19
+64141,30
+64142,72
+64143,35
+64145,44
+64146,35
+64147,29
+64148,19
+64149,35
+64150,26
+64151,34
+64152,21
+64153,39
+64154,21
+64155,26
+64156,40
+64157,58
+64158,44
+64159,22
+64160,25
+64161,24
+64162,31
+64164,39
+64165,21
+64166,21
+64167,53
+64168,27
+64169,29
+64170,26
+64172,38
+64173,37
+64174,39
+64175,19
+64176,42
+64177,26
+64178,21
+64179,32
+64180,43
+64181,32
+64182,27
+64183,34
+64184,44
+64185,31
+64186,38
+64187,62
+64188,52
+64189,24
+64190,26
+64192,26
+64194,13
+64196,22
+64197,32
+64198,25
+64199,22
+64200,25
+64201,32
+64202,18
+64203,36
+64205,32
+64206,46
+64207,42
+64208,27
+64209,94
+64210,28
+64211,22
+64212,37
+64213,22
+64214,29
+64216,22
+64217,23
+64218,19
+64219,44
+64220,47
+64221,29
+64222,45
+64223,33
+64224,24
+64225,53
+64226,25
+64228,27
+64229,26
+64230,25
+64232,24
+64233,30
+64234,30
+64235,45
+64236,28
+64237,20
+64238,30
+64239,40
+64240,31
+64241,29
+64242,43
+64243,20
+64244,60
+64245,27
+64246,27
+64247,24
+64248,21
+64249,27
+64250,35
+64251,32
+64252,29
+64254,42
+64257,24
+64258,28
+64259,34
+64260,30
+64261,32
+64262,26
+64263,27
+64264,25
+64265,25
+64266,23
+64267,23
+64269,38
+64270,29
+64271,21
+64273,39
+64274,23
+64275,28
+64276,30
+64277,28
+64279,25
+64281,31
+64282,32
+64283,17
+64284,28
+64285,21
+64286,40
+64288,24
+64289,28
+64290,22
+64293,27
+64294,29
+64295,24
+64296,25
+64297,22
+64299,30
+64300,21
+64301,26
+64302,30
+64304,26
+64305,25
+64306,34
+64307,25
+64308,54
+64309,29
+64310,30
+64311,20
+64312,27
+64313,34
+64314,36
+64315,36
+64317,37
+64318,31
+64319,53
+64320,22
+64321,22
+64322,47
+64323,37
+64324,19
+64327,29
+64328,40
+64329,32
+64330,31
+64331,38
+64333,32
+64334,24
+64335,29
+64336,26
+64337,30
+64338,30
+64339,37
+64341,22
+64342,19
+64343,54
+64344,22
+64345,32
+64346,32
+64347,22
+64348,28
+64349,28
+64350,30
+64351,30
+64352,19
+64355,24
+64356,52
+64357,22
+64358,27
+64359,23
+64360,41
+64361,24
+64362,28
+64363,40
+64364,24
+64365,25
+64366,32
+64368,25
+64369,27
+64370,26
+64371,25
+64372,52
+64373,25
+64374,38
+64375,29
+64376,30
+64377,25
+64378,29
+64379,25
+64380,34
+64381,29
+64382,29
+64385,45
+64386,35
+64388,42
+64389,23
+64390,28
+64392,21
+64393,25
+64394,28
+64395,21
+64396,24
+64397,23
+64399,20
+64400,49
+64401,22
+64402,38
+64403,27
+64404,22
+64405,36
+64406,33
+64407,38
+64408,27
+64409,58
+64410,22
+64411,31
+64412,33
+64413,27
+64415,18
+64416,28
+64417,38
+64418,31
+64419,26
+64420,25
+64421,27
+64422,26
+64423,24
+64424,22
+64425,28
+64426,42
+64428,50
+64431,27
+64432,34
+64433,20
+64434,23
+64435,24
+64436,17
+64437,21
+64438,28
+64439,29
+64440,58
+64441,28
+64442,30
+64443,42
+64444,34
+64448,39
+64449,24
+64450,50
+64451,30
+64452,22
+64453,21
+64454,36
+64455,27
+64456,32
+64457,31
+64458,30
+64459,26
+64460,28
+64461,25
+64462,52
+64463,34
+64464,28
+64466,37
+64467,19
+64468,40
+64469,24
+64470,29
+64471,41
+64472,26
+64473,25
+64475,25
+64476,30
+64477,56
+64478,1
+64479,23
+64480,27
+64481,41
+64482,19
+64483,36
+64484,44
+64485,33
+64486,34
+64487,27
+64488,41
+64489,33
+64490,39
+64491,33
+64492,38
+64493,33
+64494,32
+64495,29
+64496,26
+64497,19
+64499,16
+64500,42
+64501,24
+64502,27
+64503,45
+64504,22
+64505,30
+64506,41
+64507,34
+64508,26
+64510,22
+64511,37
+64512,36
+64513,35
+64514,26
+64515,31
+64518,23
+64519,24
+64520,52
+64521,26
+64522,19
+64523,30
+64524,24
+64525,25
+64526,30
+64527,33
+64528,40
+64529,24
+64530,60
+64531,32
+64532,31
+64533,29
+64534,29
+64535,27
+64536,30
+64537,43
+64538,34
+64539,30
+64540,24
+64541,18
+64542,23
+64543,37
+64544,29
+64545,30
+64546,31
+64547,24
+64548,36
+64549,30
+64550,32
+64551,38
+64552,24
+64553,19
+64555,38
+64556,38
+64557,50
+64558,30
+64559,22
+64560,32
+64562,25
+64563,38
+64564,20
+64565,26
+64566,47
+64567,17
+64569,35
+64570,24
+64571,28
+64572,28
+64573,33
+64575,30
+64576,53
+64577,24
+64578,29
+64580,35
+64581,27
+64582,44
+64583,41
+64584,21
+64585,61
+64586,19
+64587,36
+64588,31
+64589,34
+64590,57
+64591,24
+64592,22
+64594,25
+64595,26
+64596,23
+64597,28
+64598,32
+64599,27
+64600,26
+64602,26
+64603,22
+64604,36
+64605,42
+64606,36
+64607,36
+64608,24
+64609,46
+64610,26
+64611,23
+64612,28
+64613,27
+64614,26
+64615,22
+64616,30
+64617,44
+64618,27
+64619,32
+64620,31
+64621,27
+64622,35
+64623,18
+64625,25
+64626,45
+64627,33
+64628,18
+64629,44
+64630,30
+64631,27
+64632,32
+64634,24
+64635,28
+64636,34
+64637,25
+64638,36
+64639,46
+64641,67
+64642,22
+64643,60
+64644,26
+64645,29
+64646,28
+64647,30
+64648,25
+64649,23
+64650,39
+64651,21
+64652,32
+64653,35
+64654,36
+64655,26
+64657,32
+64658,33
+64659,25
+64660,25
+64661,39
+64663,34
+64664,27
+64665,28
+64666,26
+64667,35
+64668,19
+64669,42
+64670,22
+64671,37
+64672,25
+64673,24
+64674,25
+64676,14
+64677,29
+64678,23
+64679,28
+64680,26
+64681,21
+64682,30
+64683,37
+64685,21
+64686,25
+64687,29
+64689,23
+64690,17
+64691,34
+64692,35
+64693,35
+64695,24
+64696,34
+64697,26
+64699,26
+64700,23
+64701,26
+64702,28
+64704,39
+64706,34
+64707,31
+64708,22
+64710,38
+64711,29
+64712,19
+64713,38
+64714,23
+64715,23
+64716,31
+64717,29
+64718,33
+64719,23
+64720,31
+64721,28
+64722,25
+64723,33
+64724,14
+64725,61
+64726,25
+64727,16
+64729,38
+64730,30
+64731,40
+64732,35
+64733,29
+64734,30
+64735,22
+64737,19
+64738,40
+64739,28
+64740,46
+64741,18
+64743,25
+64744,34
+64745,59
+64747,39
+64748,21
+64749,43
+64750,20
+64751,26
+64752,33
+64753,39
+64754,31
+64755,26
+64757,26
+64758,53
+64759,37
+64760,36
+64761,32
+64762,29
+64763,14
+64764,28
+64766,36
+64767,46
+64769,21
+64770,33
+64771,25
+64772,18
+64773,26
+64774,27
+64775,29
+64776,26
+64777,22
+64778,26
+64779,28
+64780,21
+64782,30
+64783,36
+64784,39
+64785,27
+64786,28
+64789,27
+64790,24
+64791,24
+64792,34
+64793,35
+64794,43
+64795,21
+64796,49
+64797,26
+64799,14
+64800,25
+64801,24
+64802,20
+64803,25
+64804,28
+64805,47
+64806,21
+64807,22
+64808,28
+64809,30
+64810,27
+64811,15
+64812,30
+64813,26
+64814,27
+64815,37
+64816,26
+64817,45
+64818,24
+64819,37
+64820,40
+64821,22
+64822,23
+64823,63
+64824,15
+64825,29
+64826,25
+64828,29
+64829,61
+64830,27
+64831,23
+64832,22
+64833,27
+64835,32
+64836,33
+64837,32
+64838,31
+64839,36
+64840,25
+64841,32
+64842,33
+64843,26
+64844,28
+64845,37
+64846,26
+64848,27
+64849,30
+64850,34
+64852,27
+64853,43
+64854,25
+64855,29
+64856,38
+64857,38
+64858,21
+64859,31
+64860,31
+64861,29
+64862,52
+64863,25
+64864,23
+64865,33
+64866,30
+64867,52
+64868,30
+64869,24
+64870,27
+64871,29
+64872,55
+64873,24
+64874,32
+64875,41
+64876,25
+64877,95
+64878,18
+64879,26
+64880,32
+64881,26
+64882,28
+64883,40
+64884,27
+64885,33
+64886,35
+64887,18
+64888,25
+64889,42
+64890,37
+64891,39
+64892,22
+64893,20
+64894,31
+64895,15
+64896,34
+64897,26
+64901,41
+64902,26
+64903,28
+64904,32
+64906,27
+64907,25
+64909,25
+64911,16
+64912,24
+64913,29
+64914,29
+64915,18
+64916,28
+64917,40
+64919,26
+64920,19
+64921,26
+64922,60
+64923,21
+64924,27
+64925,38
+64926,27
+64927,22
+64928,27
+64929,32
+64931,22
+64932,28
+64933,56
+64934,22
+64935,21
+64936,36
+64937,32
+64938,46
+64939,35
+64940,45
+64941,29
+64942,40
+64943,25
+64944,23
+64945,24
+64946,26
+64947,22
+64948,24
+64949,24
+64950,29
+64951,26
+64952,57
+64953,35
+64954,37
+64955,29
+64956,25
+64958,41
+64959,34
+64960,27
+64961,24
+64962,25
+64963,38
+64964,25
+64965,35
+64966,29
+64967,22
+64968,36
+64969,26
+64971,45
+64972,30
+64973,17
+64974,29
+64975,23
+64976,14
+64977,31
+64978,32
+64979,39
+64980,38
+64981,28
+64982,22
+64983,24
+64984,45
+64985,23
+64986,27
+64987,31
+64988,48
+64989,36
+64990,29
+64991,42
+64993,25
+64994,23
+64995,44
+64996,32
+64997,30
+64999,31
+65000,30
+65001,36
+65002,32
+65003,29
+65004,19
+65005,35
+65006,30
+65007,18
+65008,47
+65009,43
+65010,35
+65011,16
+65012,54
+65013,24
+65014,52
+65015,20
+65016,40
+65017,36
+65018,28
+65019,32
+65020,19
+65021,17
+65022,50
+65023,26
+65024,40
+65025,27
+65026,26
+65027,33
+65028,25
+65029,37
+65030,32
+65031,32
+65032,31
+65033,21
+65034,45
+65035,29
+65037,21
+65038,20
+65039,35
+65040,24
+65041,15
+65042,28
+65043,36
+65044,34
+65045,26
+65046,30
+65047,32
+65049,30
+65050,22
+65051,25
+65052,29
+65053,23
+65054,25
+65055,42
+65056,33
+65057,67
+65058,24
+65059,19
+65060,22
+65061,22
+65062,26
+65063,15
+65064,29
+65065,36
+65066,34
+65067,46
+65068,38
+65069,27
+65070,24
+65071,24
+65072,22
+65073,31
+65074,26
+65075,16
+65077,52
+65078,23
+65079,48
+65080,27
+65081,53
+65082,25
+65083,24
+65084,26
+65085,33
+65086,21
+65087,23
+65089,24
+65090,23
+65092,21
+65093,20
+65094,29
+65095,25
+65096,29
+65097,29
+65098,47
+65099,36
+65100,34
+65101,24
+65102,27
+65104,29
+65105,27
+65106,26
+65107,37
+65108,28
+65109,33
+65110,23
+65111,51
+65112,20
+65113,42
+65114,34
+65115,25
+65116,18
+65117,23
+65118,25
+65119,21
+65120,40
+65121,45
+65122,23
+65123,24
+65124,36
+65125,23
+65126,24
+65127,29
+65128,33
+65129,26
+65130,29
+65131,27
+65132,49
+65133,23
+65134,34
+65135,14
+65136,31
+65137,29
+65138,25
+65139,38
+65140,21
+65141,17
+65143,24
+65144,33
+65145,21
+65146,56
+65147,37
+65148,20
+65149,26
+65150,41
+65151,33
+65152,30
+65153,55
+65154,26
+65155,26
+65157,20
+65158,27
+65159,29
+65160,23
+65161,28
+65162,41
+65163,43
+65164,41
+65165,26
+65166,28
+65167,26
+65168,30
+65169,29
+65170,15
+65171,37
+65172,60
+65173,38
+65174,26
+65175,43
+65176,28
+65177,30
+65178,26
+65179,33
+65180,23
+65181,23
+65182,27
+65183,28
+65184,52
+65186,35
+65187,40
+65188,32
+65189,16
+65190,23
+65191,49
+65192,22
+65193,33
+65194,40
+65195,37
+65197,50
+65198,28
+65199,57
+65200,30
+65201,20
+65202,26
+65203,42
+65204,36
+65205,36
+65206,30
+65207,35
+65209,33
+65210,23
+65211,29
+65212,29
+65213,27
+65214,30
+65216,22
+65217,37
+65218,30
+65219,33
+65220,30
+65222,14
+65223,27
+65226,26
+65227,19
+65228,20
+65230,27
+65231,45
+65233,21
+65234,25
+65235,15
+65236,24
+65237,22
+65238,29
+65239,19
+65240,39
+65241,30
+65243,42
+65244,56
+65245,25
+65247,41
+65248,46
+65249,18
+65250,25
+65251,35
+65252,33
+65253,29
+65254,23
+65255,39
+65256,27
+65257,30
+65259,25
+65260,24
+65262,22
+65263,27
+65264,32
+65266,21
+65268,25
+65269,24
+65271,21
+65272,30
+65273,22
+65274,24
+65275,25
+65276,19
+65277,35
+65278,63
+65279,23
+65280,28
+65282,53
+65283,26
+65284,31
+65286,47
+65287,26
+65288,26
+65289,46
+65290,21
+65291,28
+65292,52
+65293,19
+65294,33
+65295,41
+65297,23
+65298,34
+65299,19
+65300,34
+65301,32
+65302,25
+65303,39
+65304,27
+65305,54
+65306,40
+65307,34
+65308,29
+65309,50
+65310,35
+65312,29
+65313,28
+65314,29
+65316,13
+65317,35
+65318,27
+65319,35
+65320,58
+65321,28
+65322,38
+65323,27
+65324,33
+65325,46
+65326,20
+65327,52
+65328,16
+65329,28
+65330,28
+65332,29
+65333,23
+65334,22
+65335,26
+65336,33
+65337,29
+65338,31
+65339,30
+65340,55
+65341,22
+65342,36
+65343,29
+65344,31
+65345,41
+65346,22
+65347,26
+65348,22
+65351,22
+65352,29
+65353,27
+65354,18
+65355,21
+65356,23
+65357,28
+65358,24
+65359,27
+65360,27
+65361,32
+65362,30
+65363,48
+65364,19
+65365,26
+65366,19
+65367,21
+65368,19
+65369,28
+65370,23
+65371,40
+65372,45
+65373,16
+65374,30
+65375,56
+65376,38
+65377,27
+65378,37
+65379,29
+65380,35
+65381,29
+65382,19
+65384,35
+65385,39
+65386,33
+65387,25
+65388,36
+65389,23
+65390,28
+65391,46
+65392,17
+65393,37
+65394,16
+65395,20
+65396,22
+65397,27
+65399,29
+65400,33
+65401,34
+65402,27
+65403,20
+65404,27
+65405,29
+65406,23
+65407,36
+65408,25
+65410,28
+65411,32
+65412,22
+65413,28
+65414,28
+65415,42
+65416,20
+65417,30
+65418,36
+65419,24
+65420,28
+65422,26
+65423,24
+65424,29
+65425,31
+65426,20
+65427,19
+65428,25
+65429,33
+65430,17
+65431,32
+65432,52
+65434,34
+65435,20
+65436,35
+65437,30
+65438,20
+65439,38
+65440,20
+65441,27
+65442,17
+65443,34
+65444,35
+65445,24
+65446,30
+65447,22
+65448,30
+65449,28
+65450,24
+65451,19
+65453,30
+65454,25
+65455,28
+65456,29
+65457,24
+65458,36
+65459,25
+65460,39
+65461,36
+65462,32
+65463,30
+65464,29
+65465,22
+65466,49
+65467,22
+65469,25
+65470,22
+65471,24
+65472,24
+65473,16
+65474,27
+65475,43
+65476,43
+65477,45
+65478,22
+65479,28
+65480,60
+65481,36
+65482,27
+65483,39
+65484,30
+65485,32
+65486,32
+65488,28
+65490,17
+65491,31
+65493,26
+65494,28
+65495,20
+65496,26
+65497,34
+65498,28
+65499,24
+65501,56
+65502,19
+65503,24
+65504,35
+65505,23
+65506,42
+65507,51
+65508,25
+65509,24
+65510,27
+65511,22
+65512,31
+65513,24
+65514,47
+65515,43
+65517,24
+65519,20
+65520,25
+65521,50
+65522,30
+65523,26
+65524,29
+65525,58
+65526,29
+65527,41
+65528,25
+65530,27
+65531,21
+65532,24
+65533,29
+65534,42
+65535,31
+65536,28
+65537,29
+65539,34
+65540,22
+65541,54
+65542,25
+65543,25
+65544,36
+65545,31
+65546,21
+65547,59
+65548,18
+65549,35
+65550,38
+65551,24
+65552,26
+65553,47
+65554,28
+65555,28
+65556,27
+65557,29
+65558,17
+65559,14
+65560,30
+65561,42
+65562,18
+65563,40
+65564,35
+65565,22
+65566,44
+65567,32
+65568,30
+65569,35
+65572,26
+65573,38
+65574,37
+65575,33
+65576,30
+65577,30
+65579,24
+65581,39
+65582,35
+65583,34
+65584,28
+65585,35
+65587,23
+65588,30
+65589,37
+65590,26
+65591,31
+65592,22
+65593,19
+65594,27
+65595,52
+65596,22
+65597,24
+65598,24
+65599,24
+65600,39
+65601,24
+65602,58
+65603,23
+65604,28
+65605,53
+65606,39
+65607,15
+65611,35
+65612,37
+65613,26
+65616,16
+65617,28
+65618,31
+65619,36
+65620,43
+65621,25
+65622,28
+65623,20
+65624,24
+65625,38
+65626,62
+65627,27
+65628,31
+65629,26
+65633,28
+65634,28
+65635,51
+65636,53
+65637,34
+65639,50
+65640,28
+65641,25
+65642,33
+65643,21
+65645,35
+65646,29
+65647,25
+65648,30
+65650,48
+65651,37
+65652,28
+65653,29
+65654,19
+65656,21
+65657,22
+65658,23
+65659,21
+65660,29
+65661,21
+65662,22
+65663,17
+65664,18
+65665,22
+65666,20
+65667,21
+65669,42
+65670,30
+65671,37
+65672,23
+65673,49
+65674,29
+65677,22
+65678,27
+65679,25
+65680,29
+65681,26
+65682,24
+65683,24
+65684,38
+65685,26
+65686,20
+65687,34
+65688,22
+65690,22
+65691,40
+65692,55
+65693,31
+65695,23
+65696,24
+65698,22
+65699,31
+65700,22
+65701,31
+65703,22
+65704,26
+65705,26
+65706,44
+65707,28
+65709,24
+65710,38
+65711,19
+65713,44
+65714,30
+65715,20
+65716,30
+65717,23
+65718,54
+65719,16
+65720,30
+65721,23
+65722,30
+65723,21
+65724,25
+65725,30
+65726,40
+65727,25
+65728,31
+65729,34
+65730,15
+65731,29
+65732,22
+65734,24
+65735,26
+65736,29
+65737,23
+65738,33
+65739,30
+65740,38
+65741,35
+65742,22
+65743,26
+65744,21
+65745,27
+65746,26
+65747,27
+65748,54
+65749,30
+65751,22
+65752,24
+65753,18
+65754,38
+65755,24
+65756,29
+65757,25
+65758,26
+65759,33
+65762,32
+65763,33
+65764,58
+65765,20
+65766,22
+65767,25
+65768,38
+65769,55
+65770,29
+65771,36
+65772,19
+65773,22
+65774,27
+65775,61
+65776,25
+65777,33
+65778,23
+65779,19
+65780,26
+65781,21
+65782,22
+65783,32
+65784,22
+65786,39
+65787,20
+65788,29
+65789,26
+65790,18
+65792,20
+65793,28
+65794,38
+65795,34
+65796,28
+65797,30
+65798,19
+65799,19
+65800,19
+65801,35
+65802,30
+65803,20
+65804,52
+65805,31
+65806,42
+65808,25
+65809,31
+65810,31
+65811,22
+65812,26
+65813,25
+65814,46
+65815,31
+65816,20
+65817,63
+65818,18
+65819,25
+65820,23
+65821,31
+65822,37
+65823,30
+65825,43
+65826,29
+65827,31
+65828,31
+65829,42
+65830,33
+65831,28
+65832,29
+65833,23
+65834,18
+65835,29
+65836,33
+65837,27
+65838,31
+65840,19
+65841,28
+65842,27
+65843,25
+65844,25
+65845,40
+65846,22
+65847,29
+65848,43
+65849,34
+65850,22
+65851,29
+65852,52
+65853,22
+65854,23
+65855,21
+65856,31
+65857,44
+65858,31
+65859,35
+65860,22
+65861,36
+65864,40
+65865,25
+65866,45
+65867,32
+65868,22
+65869,39
+65870,31
+65872,31
+65873,26
+65874,18
+65875,26
+65876,34
+65877,24
+65878,23
+65879,31
+65880,35
+65881,23
+65882,33
+65883,25
+65885,43
+65886,26
+65887,40
+65888,28
+65889,24
+65890,22
+65891,32
+65892,32
+65893,35
+65894,23
+65896,21
+65897,28
+65899,53
+65900,29
+65901,36
+65902,23
+65903,33
+65904,34
+65905,36
+65906,49
+65907,24
+65908,28
+65909,23
+65910,28
+65911,30
+65912,33
+65913,39
+65914,25
+65915,26
+65916,48
+65917,33
+65918,28
+65919,62
+65920,20
+65921,24
+65923,58
+65924,25
+65926,28
+65927,39
+65928,28
+65930,24
+65931,20
+65932,27
+65933,40
+65935,30
+65936,37
+65937,29
+65938,23
+65939,28
+65940,23
+65941,32
+65942,22
+65943,21
+65944,34
+65945,19
+65946,37
+65947,43
+65948,29
+65949,29
+65950,22
+65951,36
+65952,47
+65953,28
+65954,26
+65955,19
+65957,33
+65958,29
+65959,27
+65960,23
+65961,34
+65962,17
+65963,27
+65964,26
+65965,25
+65966,28
+65967,23
+65968,25
+65969,28
+65970,25
+65971,30
+65973,45
+65974,27
+65975,35
+65977,31
+65978,30
+65980,32
+65981,33
+65982,24
+65983,44
+65984,23
+65985,34
+65986,26
+65987,26
+65989,25
+65990,26
+65991,29
+65992,26
+65994,23
+65995,31
+65996,33
+65997,37
+65998,31
+65999,26
+66000,23
+66001,28
+66003,31
+66004,27
+66005,29
+66006,49
+66008,26
+66009,28
+66010,35
+66012,23
+66013,37
+66014,40
+66015,31
+66016,20
+66017,41
+66018,36
+66020,23
+66021,27
+66022,31
+66024,27
+66025,28
+66026,35
+66027,36
+66029,48
+66030,41
+66031,42
+66032,32
+66033,23
+66034,25
+66035,17
+66036,28
+66037,32
+66038,25
+66039,30
+66040,20
+66042,27
+66043,19
+66044,21
+66045,18
+66046,35
+66047,25
+66048,35
+66049,26
+66050,28
+66052,24
+66053,41
+66056,32
+66057,35
+66058,33
+66059,28
+66060,21
+66061,55
+66062,29
+66063,32
+66064,31
+66065,26
+66066,23
+66067,25
+66068,35
+66069,22
+66070,27
+66071,40
+66072,25
+66073,31
+66074,43
+66075,32
+66076,29
+66078,31
+66079,36
+66080,37
+66081,23
+66082,22
+66083,32
+66084,28
+66085,38
+66086,29
+66087,35
+66088,26
+66089,27
+66090,23
+66091,38
+66092,26
+66093,33
+66095,37
+66096,42
+66097,32
+66098,64
+66099,46
+66100,30
+66101,28
+66102,60
+66103,28
+66104,21
+66105,43
+66106,21
+66108,25
+66109,35
+66110,22
+66111,29
+66112,44
+66113,21
+66114,33
+66115,19
+66116,20
+66117,24
+66118,24
+66119,26
+66120,28
+66121,28
+66122,28
+66123,25
+66124,26
+66125,25
+66126,28
+66128,18
+66129,34
+66130,34
+66131,36
+66133,23
+66134,28
+66135,41
+66137,25
+66138,23
+66139,15
+66140,29
+66141,30
+66142,21
+66143,42
+66144,24
+66145,39
+66146,23
+66147,23
+66148,42
+66149,52
+66151,30
+66152,56
+66153,43
+66154,45
+66155,41
+66156,22
+66157,14
+66158,43
+66159,29
+66160,34
+66162,23
+66163,40
+66164,25
+66165,33
+66166,24
+66167,27
+66168,33
+66169,29
+66170,51
+66171,59
+66172,23
+66173,24
+66174,45
+66175,26
+66176,47
+66177,30
+66178,25
+66179,46
+66180,15
+66181,31
+66182,21
+66184,24
+66185,19
+66186,47
+66187,37
+66188,33
+66189,17
+66190,35
+66191,21
+66192,35
+66194,37
+66195,35
+66196,32
+66197,19
+66198,25
+66199,19
+66200,24
+66201,28
+66202,27
+66203,27
+66204,32
+66205,20
+66206,20
+66207,30
+66210,31
+66211,28
+66212,24
+66213,40
+66214,28
+66216,32
+66217,41
+66218,37
+66219,19
+66220,31
+66221,27
+66222,34
+66223,31
+66224,26
+66225,29
+66226,26
+66227,27
+66228,39
+66230,26
+66231,38
+66232,23
+66233,28
+66234,30
+66235,26
+66236,22
+66237,21
+66238,33
+66239,35
+66241,26
+66242,19
+66244,36
+66245,22
+66246,34
+66247,34
+66248,43
+66249,45
+66250,26
+66251,39
+66252,14
+66253,29
+66254,34
+66255,54
+66256,24
+66257,22
+66258,30
+66259,39
+66260,29
+66261,20
+66262,26
+66263,26
+66264,30
+66266,25
+66268,59
+66269,35
+66270,26
+66271,30
+66272,24
+66274,34
+66276,26
+66277,33
+66278,28
+66279,21
+66280,27
+66281,56
+66282,34
+66283,33
+66284,25
+66285,19
+66287,16
+66288,18
+66289,35
+66290,54
+66291,29
+66292,34
+66293,42
+66294,27
+66295,30
+66296,29
+66297,25
+66298,34
+66299,23
+66300,41
+66301,30
+66303,52
+66304,25
+66305,21
+66306,33
+66307,22
+66308,30
+66309,27
+66310,24
+66311,21
+66312,40
+66314,29
+66315,35
+66316,22
+66318,25
+66319,19
+66321,24
+66322,35
+66323,21
+66324,45
+66325,26
+66326,28
+66327,53
+66328,21
+66329,19
+66330,32
+66331,56
+66332,26
+66333,38
+66335,18
+66336,31
+66337,23
+66338,31
+66339,27
+66340,31
+66342,26
+66343,28
+66344,33
+66345,37
+66346,31
+66347,27
+66348,40
+66349,35
+66350,47
+66351,25
+66352,31
+66353,57
+66354,20
+66355,40
+66357,35
+66358,27
+66359,26
+66360,30
+66361,19
+66362,21
+66363,27
+66365,25
+66366,46
+66367,42
+66368,34
+66369,20
+66370,42
+66371,36
+66372,26
+66373,53
+66375,35
+66376,29
+66378,32
+66379,21
+66382,22
+66383,27
+66385,31
+66386,32
+66387,35
+66388,19
+66389,40
+66391,27
+66392,28
+66394,27
+66395,32
+66396,41
+66397,40
+66399,23
+66401,35
+66402,37
+66403,20
+66404,19
+66405,36
+66407,46
+66408,25
+66409,23
+66410,34
+66411,30
+66412,26
+66413,32
+66414,17
+66415,38
+66416,29
+66417,29
+66418,24
+66419,34
+66420,26
+66421,24
+66422,16
+66423,37
+66424,39
+66426,35
+66427,42
+66428,23
+66429,30
+66430,30
+66431,20
+66433,25
+66435,28
+66436,15
+66437,23
+66438,37
+66439,49
+66440,24
+66441,23
+66442,29
+66443,30
+66444,59
+66445,29
+66446,23
+66447,21
+66448,22
+66449,39
+66450,33
+66451,37
+66452,26
+66453,25
+66454,18
+66456,31
+66457,43
+66458,33
+66459,29
+66460,24
+66462,30
+66463,25
+66464,30
+66465,22
+66466,35
+66468,50
+66469,31
+66470,21
+66471,21
+66473,40
+66474,30
+66475,22
+66476,38
+66477,18
+66478,37
+66479,35
+66480,25
+66481,36
+66482,63
+66483,35
+66484,33
+66485,43
+66486,27
+66487,19
+66488,21
+66489,19
+66491,24
+66492,30
+66493,27
+66494,27
+66495,34
+66496,22
+66497,24
+66498,14
+66499,15
+66500,32
+66501,38
+66502,24
+66504,29
+66505,22
+66506,24
+66507,33
+66508,38
+66509,26
+66510,34
+66511,34
+66512,26
+66513,25
+66514,32
+66515,33
+66516,30
+66517,30
+66519,33
+66520,26
+66521,28
+66522,48
+66523,32
+66524,34
+66525,19
+66526,44
+66527,26
+66528,21
+66530,33
+66531,44
+66532,18
+66533,34
+66534,28
+66535,41
+66536,27
+66537,24
+66538,33
+66539,39
+66540,33
+66541,29
+66542,33
+66543,32
+66544,23
+66545,34
+66546,39
+66547,30
+66548,31
+66549,36
+66550,13
+66551,35
+66552,25
+66553,32
+66554,32
+66555,36
+66556,33
+66557,37
+66559,26
+66560,29
+66561,42
+66562,24
+66563,25
+66564,24
+66565,26
+66566,29
+66567,24
+66568,36
+66569,21
+66570,24
+66571,21
+66572,31
+66573,29
+66574,33
+66575,41
+66576,27
+66577,27
+66578,22
+66579,31
+66582,26
+66583,34
+66584,23
+66585,32
+66586,23
+66587,66
+66588,26
+66589,21
+66591,27
+66593,32
+66594,27
+66595,20
+66596,26
+66597,24
+66598,29
+66600,15
+66601,33
+66603,26
+66604,38
+66605,23
+66606,43
+66608,25
+66609,42
+66610,46
+66611,38
+66612,18
+66613,20
+66614,24
+66615,34
+66616,30
+66617,41
+66618,37
+66619,43
+66620,27
+66621,33
+66622,20
+66623,25
+66624,39
+66625,25
+66626,34
+66627,29
+66628,29
+66629,35
+66630,24
+66631,22
+66632,31
+66633,51
+66634,29
+66635,24
+66636,22
+66637,30
+66638,20
+66639,27
+66640,40
+66641,37
+66642,25
+66643,29
+66644,16
+66645,25
+66646,58
+66647,27
+66648,18
+66649,23
+66650,35
+66651,22
+66652,30
+66653,27
+66654,25
+66656,36
+66657,22
+66658,30
+66659,28
+66660,34
+66661,22
+66662,19
+66664,30
+66665,35
+66666,13
+66668,33
+66669,27
+66670,27
+66671,29
+66672,25
+66673,30
+66674,25
+66675,24
+66677,24
+66678,45
+66679,33
+66680,32
+66681,22
+66682,31
+66683,29
+66684,38
+66685,15
+66686,30
+66687,32
+66689,28
+66690,24
+66691,27
+66692,23
+66693,24
+66694,21
+66695,27
+66696,33
+66697,30
+66700,26
+66701,37
+66702,38
+66703,22
+66704,37
+66706,27
+66708,26
+66709,20
+66710,36
+66712,23
+66713,40
+66714,25
+66715,34
+66716,20
+66717,31
+66718,32
+66719,22
+66720,42
+66721,51
+66723,24
+66724,36
+66725,23
+66726,20
+66727,34
+66728,45
+66729,37
+66730,23
+66731,40
+66732,27
+66733,28
+66734,32
+66735,27
+66736,30
+66737,39
+66738,44
+66739,28
+66740,31
+66741,25
+66742,57
+66743,26
+66744,21
+66745,27
+66747,27
+66748,29
+66750,30
+66752,23
+66753,41
+66755,27
+66756,20
+66757,24
+66758,20
+66759,33
+66760,32
+66761,33
+66762,30
+66763,28
+66764,38
+66765,25
+66766,26
+66767,15
+66768,24
+66769,28
+66770,25
+66771,24
+66772,44
+66773,23
+66774,36
+66775,16
+66776,25
+66777,21
+66778,30
+66779,32
+66780,47
+66781,25
+66782,24
+66783,41
+66784,20
+66785,25
+66786,28
+66787,32
+66788,26
+66789,48
+66790,32
+66791,30
+66792,24
+66794,37
+66795,22
+66796,54
+66797,27
+66798,25
+66799,35
+66800,22
+66801,41
+66802,30
+66803,22
+66804,36
+66805,25
+66806,22
+66807,25
+66808,28
+66809,41
+66810,37
+66811,37
+66812,22
+66813,48
+66815,21
+66816,30
+66817,24
+66819,28
+66820,28
+66821,44
+66822,35
+66823,41
+66824,30
+66825,21
+66827,27
+66828,17
+66829,50
+66830,27
+66831,31
+66832,33
+66833,26
+66834,42
+66835,36
+66837,28
+66838,43
+66841,41
+66842,49
+66843,26
+66845,27
+66846,33
+66847,22
+66849,16
+66850,23
+66851,46
+66852,24
+66853,27
+66854,38
+66855,27
+66856,28
+66857,17
+66858,20
+66859,28
+66860,25
+66862,26
+66863,30
+66865,27
+66866,37
+66867,21
+66868,22
+66870,18
+66871,65
+66872,23
+66874,35
+66875,24
+66876,21
+66877,32
+66878,40
+66879,30
+66880,27
+66882,24
+66883,30
+66884,21
+66885,39
+66886,27
+66887,20
+66888,27
+66889,19
+66890,19
+66891,35
+66892,49
+66894,37
+66895,21
+66896,26
+66897,31
+66898,21
+66899,31
+66900,19
+66901,23
+66902,40
+66903,19
+66904,31
+66906,45
+66907,35
+66908,29
+66909,32
+66911,20
+66912,33
+66913,18
+66915,31
+66916,74
+66917,43
+66918,27
+66919,27
+66920,26
+66921,35
+66922,22
+66924,23
+66925,26
+66926,27
+66927,37
+66928,15
+66930,43
+66931,27
+66932,23
+66933,37
+66934,43
+66935,44
+66937,34
+66938,24
+66939,24
+66941,20
+66942,49
+66943,25
+66944,27
+66945,21
+66946,23
+66948,25
+66949,51
+66950,24
+66951,27
+66952,30
+66953,21
+66954,17
+66955,23
+66956,25
+66957,23
+66958,23
+66959,33
+66960,16
+66961,34
+66962,26
+66963,26
+66964,22
+66965,27
+66966,32
+66967,31
+66968,64
+66969,39
+66970,24
+66971,27
+66973,24
+66974,31
+66975,33
+66976,44
+66977,18
+66978,27
+66979,22
+66981,26
+66982,29
+66984,30
+66985,30
+66986,27
+66987,37
+66989,47
+66990,20
+66991,38
+66992,26
+66993,23
+66994,21
+66995,32
+66996,39
+66997,18
+66998,33
+66999,25
+67000,46
+67001,42
+67003,52
+67004,13
+67006,24
+67007,43
+67009,23
+67010,27
+67011,24
+67012,52
+67013,31
+67014,34
+67016,53
+67017,17
+67018,36
+67019,40
+67020,39
+67021,50
+67022,21
+67023,42
+67024,22
+67025,25
+67026,24
+67027,47
+67028,22
+67029,29
+67030,29
+67031,28
+67032,26
+67034,35
+67035,34
+67037,35
+67038,45
+67039,26
+67040,42
+67041,26
+67042,24
+67044,26
+67046,22
+67047,28
+67049,26
+67050,28
+67051,30
+67052,26
+67053,32
+67054,37
+67055,23
+67056,31
+67057,39
+67058,45
+67060,30
+67061,23
+67063,44
+67064,25
+67065,47
+67066,36
+67067,23
+67070,16
+67071,35
+67072,36
+67073,22
+67074,29
+67075,19
+67076,16
+67077,29
+67078,31
+67079,28
+67080,25
+67081,42
+67082,39
+67083,37
+67084,29
+67085,45
+67086,60
+67088,31
+67089,31
+67091,29
+67092,15
+67094,25
+67095,38
+67096,50
+67097,20
+67098,31
+67099,32
+67100,28
+67101,25
+67103,27
+67104,43
+67106,32
+67107,50
+67108,42
+67109,34
+67110,27
+67111,34
+67113,42
+67114,38
+67115,23
+67116,52
+67117,25
+67118,43
+67119,28
+67122,30
+67123,29
+67124,26
+67125,34
+67126,27
+67127,35
+67128,26
+67129,22
+67130,16
+67131,22
+67132,24
+67133,22
+67134,23
+67135,40
+67137,14
+67138,26
+67139,31
+67140,38
+67141,27
+67142,29
+67143,41
+67144,29
+67145,45
+67147,25
+67148,27
+67149,24
+67150,31
+67151,42
+67152,25
+67153,28
+67154,29
+67155,16
+67156,17
+67158,29
+67159,71
+67160,27
+67161,22
+67163,19
+67165,23
+67166,25
+67167,24
+67168,26
+67169,28
+67170,29
+67171,26
+67172,20
+67173,29
+67174,62
+67175,24
+67176,34
+67177,23
+67178,27
+67179,31
+67180,19
+67181,40
+67182,33
+67183,27
+67184,25
+67185,63
+67186,31
+67187,40
+67188,29
+67189,24
+67190,33
+67191,40
+67192,25
+67193,21
+67194,40
+67195,25
+67196,28
+67197,53
+67198,31
+67199,28
+67200,25
+67201,19
+67202,63
+67203,26
+67204,24
+67205,39
+67207,26
+67208,37
+67209,42
+67211,40
+67212,36
+67213,29
+67214,33
+67215,35
+67216,24
+67217,37
+67218,32
+67219,24
+67221,30
+67222,42
+67224,24
+67225,25
+67226,25
+67227,27
+67228,25
+67229,34
+67230,21
+67231,24
+67232,21
+67233,43
+67234,22
+67235,54
+67236,30
+67237,46
+67238,27
+67239,36
+67240,27
+67243,31
+67246,28
+67247,25
+67248,26
+67249,31
+67250,43
+67251,34
+67252,37
+67253,34
+67255,21
+67256,21
+67257,33
+67259,22
+67260,25
+67261,32
+67262,21
+67263,45
+67264,34
+67265,44
+67266,35
+67267,29
+67268,31
+67269,25
+67270,29
+67271,25
+67272,28
+67273,20
+67274,22
+67275,22
+67276,24
+67278,39
+67280,27
+67282,31
+67283,33
+67284,31
+67285,27
+67286,35
+67287,28
+67288,28
+67289,27
+67291,22
+67292,35
+67293,24
+67294,24
+67295,35
+67296,36
+67300,58
+67301,20
+67302,18
+67303,18
+67304,35
+67305,33
+67306,26
+67307,29
+67308,40
+67309,28
+67310,41
+67312,27
+67313,30
+67314,27
+67315,19
+67316,25
+67317,19
+67318,44
+67319,30
+67320,35
+67321,23
+67322,27
+67323,20
+67324,23
+67325,19
+67326,24
+67327,29
+67328,31
+67329,25
+67330,34
+67331,27
+67332,34
+67333,48
+67334,32
+67335,22
+67336,24
+67337,31
+67338,40
+67339,34
+67340,36
+67341,40
+67342,19
+67343,25
+67344,38
+67345,20
+67346,33
+67348,22
+67349,51
+67350,32
+67351,43
+67352,31
+67353,26
+67354,21
+67355,18
+67356,24
+67357,39
+67358,35
+67359,43
+67360,42
+67361,33
+67362,35
+67363,48
+67364,28
+67365,22
+67366,25
+67367,19
+67368,26
+67369,26
+67370,31
+67371,26
+67372,32
+67373,21
+67374,40
+67375,34
+67376,38
+67377,30
+67378,35
+67379,36
+67380,29
+67382,26
+67383,23
+67385,24
+67386,38
+67387,22
+67388,34
+67389,32
+67390,17
+67391,53
+67392,37
+67393,22
+67394,42
+67396,20
+67397,37
+67398,20
+67400,26
+67401,29
+67402,11
+67403,35
+67404,23
+67405,24
+67406,18
+67407,32
+67408,42
+67411,31
+67413,23
+67414,37
+67415,24
+67416,20
+67417,25
+67418,42
+67419,37
+67420,24
+67421,36
+67422,24
+67423,29
+67424,26
+67425,27
+67426,34
+67427,23
+67428,34
+67430,27
+67431,25
+67432,37
+67433,36
+67434,26
+67435,38
+67436,23
+67437,28
+67438,33
+67440,54
+67441,23
+67442,40
+67444,42
+67445,33
+67446,44
+67447,20
+67448,40
+67449,25
+67450,29
+67451,45
+67452,19
+67453,50
+67454,30
+67455,45
+67456,51
+67457,28
+67458,20
+67459,26
+67462,22
+67463,22
+67464,16
+67465,18
+67466,36
+67467,28
+67468,22
+67469,47
+67470,31
+67471,38
+67472,49
+67473,21
+67474,26
+67475,26
+67477,39
+67478,28
+67479,38
+67480,46
+67481,32
+67482,36
+67484,38
+67485,22
+67486,22
+67487,29
+67488,31
+67489,13
+67490,32
+67491,30
+67492,38
+67493,44
+67494,39
+67495,19
+67496,25
+67498,26
+67499,22
+67501,27
+67502,32
+67503,28
+67504,23
+67505,28
+67506,20
+67508,20
+67509,26
+67510,21
+67511,24
+67512,25
+67513,33
+67514,22
+67515,33
+67516,28
+67517,30
+67518,24
+67519,26
+67520,27
+67521,32
+67522,43
+67523,27
+67524,24
+67526,39
+67527,27
+67528,30
+67529,22
+67531,27
+67532,24
+67533,26
+67534,32
+67535,28
+67537,23
+67538,43
+67539,24
+67540,32
+67541,33
+67542,21
+67543,37
+67544,13
+67547,25
+67548,27
+67549,30
+67550,23
+67551,29
+67552,32
+67553,35
+67554,47
+67555,58
+67556,33
+67557,27
+67558,29
+67560,24
+67561,25
+67562,34
+67563,29
+67564,28
+67565,22
+67566,30
+67567,30
+67568,33
+67569,24
+67570,23
+67571,19
+67572,33
+67573,22
+67574,34
+67575,26
+67576,31
+67577,42
+67578,45
+67580,25
+67582,36
+67583,26
+67586,19
+67587,32
+67590,39
+67591,29
+67592,32
+67593,23
+67594,26
+67595,37
+67596,29
+67597,22
+67598,54
+67599,26
+67600,25
+67601,20
+67602,28
+67603,28
+67604,53
+67605,20
+67608,16
+67609,24
+67610,24
+67611,44
+67612,39
+67614,47
+67615,23
+67616,21
+67617,23
+67618,56
+67619,29
+67621,23
+67622,18
+67623,30
+67624,31
+67625,30
+67626,51
+67627,26
+67629,25
+67630,32
+67631,23
+67632,23
+67633,20
+67634,19
+67635,36
+67636,50
+67637,19
+67638,19
+67639,25
+67640,22
+67641,42
+67642,17
+67643,35
+67644,26
+67645,24
+67646,26
+67647,34
+67648,40
+67649,24
+67650,22
+67651,33
+67652,41
+67654,22
+67655,30
+67656,17
+67657,25
+67658,28
+67659,22
+67660,17
+67661,24
+67662,23
+67663,27
+67664,20
+67665,36
+67666,27
+67667,21
+67668,41
+67669,27
+67670,37
+67672,34
+67673,37
+67674,27
+67675,19
+67676,30
+67677,25
+67678,29
+67680,34
+67681,27
+67682,26
+67684,22
+67685,23
+67686,55
+67687,23
+67688,31
+67689,35
+67691,60
+67692,27
+67693,35
+67694,22
+67695,31
+67696,25
+67697,18
+67700,23
+67701,24
+67702,23
+67703,39
+67704,23
+67705,21
+67706,61
+67707,28
+67708,29
+67709,38
+67710,26
+67711,22
+67713,28
+67714,57
+67715,25
+67717,25
+67718,34
+67719,23
+67720,20
+67721,52
+67722,36
+67723,27
+67724,19
+67725,44
+67726,31
+67727,20
+67728,26
+67729,37
+67730,41
+67731,26
+67732,28
+67733,25
+67734,57
+67735,29
+67736,23
+67738,40
+67739,35
+67740,44
+67741,69
+67742,25
+67743,33
+67744,32
+67745,26
+67746,34
+67747,23
+67748,30
+67750,42
+67751,39
+67752,28
+67753,27
+67754,36
+67755,55
+67756,25
+67757,32
+67758,31
+67759,36
+67760,29
+67761,29
+67762,30
+67764,27
+67765,39
+67766,22
+67767,24
+67768,23
+67769,43
+67770,31
+67771,41
+67772,24
+67774,21
+67775,19
+67776,26
+67777,36
+67778,38
+67779,61
+67780,37
+67781,23
+67782,37
+67783,15
+67784,21
+67785,25
+67786,33
+67787,26
+67788,25
+67790,22
+67791,31
+67792,46
+67793,31
+67794,20
+67795,20
+67796,22
+67797,29
+67798,20
+67799,25
+67800,22
+67801,24
+67802,30
+67803,26
+67804,26
+67805,27
+67806,31
+67808,20
+67810,34
+67811,29
+67813,21
+67815,29
+67816,54
+67817,28
+67818,29
+67820,31
+67821,23
+67822,43
+67823,51
+67824,24
+67825,30
+67826,40
+67827,29
+67828,30
+67829,27
+67830,22
+67831,22
+67832,23
+67833,20
+67834,33
+67835,31
+67836,29
+67837,23
+67838,33
+67839,30
+67840,36
+67841,24
+67842,44
+67843,24
+67845,33
+67847,28
+67848,35
+67849,25
+67850,43
+67851,38
+67852,30
+67853,47
+67854,28
+67855,23
+67856,29
+67857,35
+67859,40
+67860,29
+67861,31
+67862,33
+67863,38
+67864,21
+67865,19
+67866,28
+67867,25
+67868,24
+67869,29
+67870,46
+67871,22
+67872,19
+67873,30
+67874,32
+67876,36
+67877,28
+67878,27
+67879,28
+67880,19
+67881,43
+67882,41
+67883,18
+67884,28
+67885,29
+67886,28
+67888,21
+67889,33
+67890,23
+67891,27
+67892,33
+67893,32
+67894,32
+67895,27
+67896,30
+67898,38
+67899,33
+67900,52
+67901,35
+67902,30
+67904,23
+67905,23
+67906,26
+67907,38
+67908,23
+67909,25
+67910,35
+67912,30
+67913,43
+67914,31
+67915,18
+67916,63
+67917,42
+67919,36
+67920,31
+67921,32
+67922,63
+67927,55
+67928,26
+67929,28
+67930,24
+67931,38
+67933,29
+67934,28
+67935,19
+67936,31
+67937,28
+67938,38
+67939,29
+67940,21
+67941,36
+67944,23
+67945,28
+67946,25
+67947,51
+67948,23
+67949,14
+67950,52
+67951,32
+67952,25
+67953,49
+67954,43
+67955,34
+67956,15
+67957,21
+67958,37
+67959,21
+67960,33
+67961,29
+67962,26
+67965,33
+67966,51
+67967,24
+67969,23
+67970,39
+67972,26
+67973,38
+67974,19
+67975,28
+67977,36
+67978,44
+67979,27
+67980,30
+67981,36
+67982,46
+67984,25
+67986,24
+67988,36
+67989,30
+67990,37
+67991,33
+67992,27
+67994,31
+67995,28
+67996,31
+67997,33
+67998,36
+67999,26
+68000,25
+68001,18
+68002,25
+68003,25
+68004,33
+68005,48
+68006,61
+68007,33
+68008,32
+68009,30
+68010,21
+68011,37
+68012,33
+68013,46
+68014,28
+68016,34
+68017,26
+68019,21
+68020,31
+68021,35
+68022,23
+68023,35
+68024,38
+68025,22
+68026,31
+68028,37
+68031,21
+68032,48
+68033,70
+68034,30
+68035,30
+68036,36
+68037,30
+68038,63
+68040,35
+68041,25
+68042,32
+68043,34
+68044,33
+68045,22
+68046,18
+68048,24
+68050,25
+68051,33
+68052,50
+68053,20
+68054,39
+68055,34
+68056,47
+68058,22
+68059,29
+68060,21
+68061,27
+68062,25
+68063,32
+68064,29
+68065,23
+68066,19
+68067,39
+68068,45
+68069,21
+68070,32
+68071,39
+68072,20
+68073,34
+68074,24
+68076,38
+68077,26
+68078,26
+68079,29
+68080,21
+68081,34
+68082,25
+68083,33
+68085,27
+68086,32
+68087,28
+68088,34
+68089,19
+68090,41
+68091,35
+68092,34
+68093,22
+68094,30
+68095,38
+68096,23
+68097,33
+68098,32
+68099,35
+68100,19
+68101,30
+68102,33
+68103,28
+68104,33
+68105,21
+68106,24
+68107,52
+68108,23
+68109,27
+68110,22
+68112,19
+68113,24
+68114,35
+68115,39
+68116,56
+68117,30
+68118,30
+68119,21
+68120,21
+68121,23
+68122,30
+68123,23
+68124,11
+68125,58
+68126,28
+68127,28
+68128,27
+68129,28
+68130,31
+68131,54
+68132,30
+68133,44
+68134,23
+68135,26
+68136,31
+68138,41
+68139,29
+68140,39
+68141,30
+68142,18
+68143,27
+68144,30
+68145,21
+68146,55
+68147,32
+68148,24
+68149,28
+68151,27
+68153,25
+68154,31
+68155,21
+68156,22
+68157,30
+68158,22
+68159,41
+68160,26
+68161,29
+68162,14
+68163,35
+68164,32
+68166,34
+68167,38
+68168,44
+68169,30
+68170,45
+68171,19
+68173,39
+68174,31
+68176,48
+68177,36
+68178,24
+68179,22
+68180,34
+68181,23
+68182,23
+68183,24
+68184,41
+68185,19
+68186,37
+68187,23
+68188,35
+68189,31
+68190,29
+68191,28
+68192,27
+68193,31
+68194,27
+68195,37
+68196,1
+68197,20
+68198,36
+68199,29
+68200,28
+68201,37
+68202,25
+68203,23
+68204,37
+68205,26
+68207,34
+68209,16
+68210,37
+68212,25
+68213,30
+68214,42
+68215,28
+68218,28
+68219,30
+68220,38
+68221,36
+68222,36
+68223,32
+68224,30
+68225,20
+68226,31
+68227,41
+68228,36
+68229,28
+68230,24
+68231,24
+68232,31
+68233,24
+68234,22
+68236,27
+68237,24
+68238,32
+68241,37
+68242,21
+68245,32
+68246,23
+68247,22
+68248,33
+68249,28
+68250,40
+68251,25
+68252,33
+68253,19
+68254,46
+68255,28
+68256,21
+68257,40
+68258,26
+68259,25
+68260,27
+68261,33
+68262,31
+68263,28
+68264,22
+68265,35
+68266,23
+68267,36
+68268,35
+68269,20
+68270,33
+68271,19
+68272,23
+68273,19
+68274,24
+68275,39
+68276,21
+68277,21
+68278,39
+68279,33
+68280,17
+68281,25
+68282,33
+68283,21
+68284,30
+68285,43
+68286,24
+68287,27
+68288,40
+68289,44
+68290,25
+68292,28
+68293,24
+68294,29
+68295,26
+68296,24
+68297,23
+68298,27
+68299,50
+68300,37
+68301,27
+68302,34
+68303,27
+68304,32
+68305,25
+68306,31
+68308,31
+68309,33
+68310,14
+68312,35
+68313,43
+68315,50
+68316,39
+68318,22
+68319,25
+68320,35
+68321,27
+68322,27
+68323,21
+68324,44
+68325,36
+68326,25
+68327,24
+68328,21
+68329,34
+68330,19
+68331,30
+68332,24
+68333,33
+68334,28
+68335,30
+68336,22
+68337,39
+68338,17
+68339,30
+68340,32
+68342,26
+68343,31
+68344,43
+68345,23
+68346,26
+68347,40
+68348,28
+68349,2
+68350,28
+68351,30
+68352,32
+68353,24
+68354,50
+68356,40
+68358,38
+68359,28
+68360,24
+68361,49
+68362,37
+68363,28
+68364,47
+68365,26
+68366,21
+68367,29
+68368,33
+68369,22
+68371,25
+68373,40
+68374,30
+68375,27
+68376,53
+68377,19
+68378,45
+68380,28
+68381,36
+68382,32
+68383,27
+68384,39
+68385,29
+68387,30
+68388,51
+68389,23
+68390,30
+68391,64
+68392,21
+68394,20
+68395,24
+68396,37
+68397,18
+68398,25
+68399,22
+68402,28
+68403,35
+68405,13
+68406,21
+68407,25
+68408,25
+68409,24
+68411,24
+68412,22
+68413,40
+68414,30
+68415,30
+68416,25
+68417,29
+68418,21
+68419,49
+68420,24
+68421,36
+68422,17
+68423,35
+68424,35
+68425,23
+68426,33
+68427,28
+68428,22
+68429,38
+68430,20
+68431,45
+68432,39
+68433,45
+68434,18
+68435,22
+68436,25
+68437,29
+68438,30
+68439,16
+68440,32
+68441,37
+68442,24
+68443,25
+68444,26
+68445,29
+68446,22
+68447,28
+68449,26
+68450,27
+68451,29
+68452,26
+68454,34
+68455,61
+68457,29
+68459,42
+68460,23
+68461,32
+68462,16
+68463,31
+68464,27
+68465,29
+68466,28
+68467,28
+68468,28
+68469,33
+68470,40
+68471,40
+68472,29
+68473,27
+68474,24
+68475,72
+68476,25
+68477,24
+68479,32
+68480,23
+68481,28
+68482,39
+68483,29
+68484,33
+68485,31
+68486,28
+68488,45
+68489,31
+68490,28
+68491,40
+68492,21
+68493,22
+68495,47
+68496,21
+68497,19
+68499,25
+68500,22
+68502,23
+68503,37
+68504,24
+68506,35
+68507,20
+68508,38
+68509,20
+68510,59
+68512,28
+68513,23
+68514,23
+68515,24
+68516,24
+68517,25
+68518,28
+68519,34
+68520,20
+68521,18
+68522,33
+68523,30
+68524,27
+68527,41
+68528,28
+68530,80
+68531,25
+68532,19
+68533,44
+68534,24
+68535,33
+68537,27
+68538,29
+68539,41
+68540,35
+68541,52
+68542,30
+68544,26
+68545,30
+68546,24
+68548,28
+68549,27
+68550,30
+68551,60
+68552,39
+68553,30
+68554,43
+68555,47
+68556,26
+68557,27
+68558,36
+68559,29
+68560,30
+68561,27
+68562,27
+68563,23
+68565,28
+68566,26
+68567,43
+68568,28
+68569,37
+68570,24
+68571,28
+68573,28
+68574,32
+68575,27
+68577,24
+68578,41
+68579,23
+68580,31
+68581,30
+68582,27
+68584,33
+68586,13
+68587,35
+68588,40
+68589,63
+68590,18
+68592,40
+68593,25
+68594,27
+68595,40
+68596,28
+68597,21
+68598,30
+68599,50
+68601,27
+68602,46
+68603,29
+68604,36
+68605,23
+68606,36
+68607,28
+68608,34
+68610,24
+68611,31
+68612,44
+68613,26
+68615,38
+68616,28
+68617,26
+68618,41
+68619,26
+68620,27
+68621,24
+68622,26
+68623,32
+68624,22
+68625,27
+68626,37
+68627,18
+68628,35
+68629,23
+68630,22
+68632,29
+68633,28
+68634,32
+68635,18
+68637,15
+68638,21
+68640,20
+68641,26
+68642,21
+68643,43
+68644,30
+68645,55
+68646,30
+68647,30
+68648,30
+68650,24
+68651,28
+68652,35
+68653,26
+68654,32
+68655,28
+68656,30
+68657,31
+68658,28
+68659,25
+68660,26
+68661,16
+68662,25
+68663,34
+68664,27
+68665,24
+68667,26
+68668,23
+68669,20
+68670,25
+68671,30
+68672,38
+68674,21
+68676,17
+68677,16
+68678,15
+68679,26
+68680,31
+68681,41
+68682,26
+68683,20
+68684,52
+68685,34
+68686,27
+68687,33
+68688,23
+68689,30
+68690,25
+68691,23
+68692,25
+68693,32
+68694,24
+68695,24
+68696,51
+68697,49
+68698,34
+68699,24
+68700,39
+68701,30
+68702,22
+68703,38
+68704,34
+68706,62
+68707,38
+68708,37
+68709,35
+68710,28
+68711,25
+68712,22
+68715,18
+68716,19
+68717,23
+68718,16
+68719,53
+68720,15
+68721,25
+68722,26
+68723,22
+68725,29
+68726,45
+68727,19
+68728,25
+68729,28
+68731,30
+68732,34
+68733,27
+68734,24
+68735,30
+68737,25
+68738,23
+68739,36
+68740,25
+68741,26
+68742,20
+68743,33
+68744,28
+68745,30
+68746,31
+68747,30
+68748,21
+68749,47
+68750,25
+68751,30
+68752,27
+68753,57
+68754,30
+68755,25
+68757,27
+68758,19
+68759,35
+68760,27
+68762,27
+68763,16
+68764,30
+68765,33
+68766,32
+68767,38
+68768,28
+68769,37
+68771,46
+68773,30
+68775,26
+68776,22
+68778,28
+68779,29
+68780,32
+68781,23
+68782,23
+68783,30
+68784,22
+68785,27
+68787,29
+68788,35
+68789,20
+68790,27
+68792,44
+68793,35
+68794,23
+68795,28
+68796,25
+68797,24
+68798,23
+68799,26
+68801,34
+68802,36
+68803,31
+68804,61
+68805,28
+68806,29
+68807,27
+68808,25
+68809,30
+68810,28
+68813,29
+68814,24
+68815,49
+68816,30
+68817,36
+68818,26
+68819,25
+68820,41
+68821,23
+68822,27
+68823,51
+68824,38
+68825,29
+68826,27
+68827,36
+68828,38
+68829,26
+68830,27
+68831,14
+68832,42
+68833,30
+68834,33
+68835,25
+68836,23
+68837,35
+68838,34
+68839,20
+68840,41
+68842,28
+68843,20
+68844,23
+68845,14
+68846,24
+68847,44
+68848,22
+68849,41
+68850,23
+68851,23
+68852,46
+68854,31
+68855,27
+68856,21
+68857,32
+68858,35
+68859,49
+68860,24
+68862,28
+68863,27
+68864,23
+68865,41
+68866,17
+68867,41
+68868,33
+68869,26
+68870,28
+68871,25
+68873,29
+68874,23
+68875,27
+68876,43
+68877,42
+68878,36
+68879,18
+68880,23
+68881,42
+68882,27
+68883,24
+68884,22
+68885,36
+68886,28
+68887,24
+68888,37
+68889,31
+68891,74
+68893,19
+68894,24
+68895,31
+68896,24
+68897,27
+68900,24
+68901,58
+68902,24
+68903,31
+68904,42
+68906,43
+68907,26
+68908,44
+68909,26
+68910,30
+68911,21
+68912,21
+68913,43
+68914,21
+68915,28
+68916,29
+68919,26
+68920,22
+68921,19
+68923,19
+68924,31
+68925,22
+68926,42
+68927,22
+68928,28
+68929,19
+68930,19
+68931,44
+68932,52
+68933,23
+68934,39
+68935,36
+68937,26
+68938,35
+68939,35
+68940,15
+68941,29
+68942,21
+68943,56
+68944,31
+68946,40
+68947,27
+68948,28
+68951,41
+68952,27
+68953,30
+68954,16
+68955,41
+68956,21
+68957,57
+68958,23
+68959,34
+68960,47
+68961,26
+68962,36
+68963,57
+68964,31
+68965,27
+68966,18
+68967,37
+68968,37
+68969,28
+68970,24
+68971,62
+68972,47
+68973,28
+68974,26
+68975,36
+68976,21
+68977,36
+68978,45
+68979,30
+68980,25
+68981,45
+68982,51
+68983,35
+68985,51
+68986,28
+68987,36
+68988,31
+68989,25
+68990,24
+68991,18
+68992,17
+68993,24
+68994,63
+68995,30
+68998,32
+68999,27
+69000,26
+69001,23
+69002,27
+69003,30
+69004,27
+69005,33
+69006,18
+69007,21
+69008,19
+69009,31
+69010,27
+69011,20
+69013,25
+69014,30
+69015,29
+69016,39
+69017,39
+69018,27
+69019,23
+69020,41
+69021,28
+69022,38
+69023,21
+69024,35
+69025,18
+69026,24
+69027,23
+69028,32
+69029,31
+69030,29
+69031,24
+69032,21
+69033,24
+69034,35
+69035,22
+69036,32
+69037,23
+69038,25
+69039,34
+69040,24
+69041,56
+69042,32
+69043,22
+69044,34
+69045,32
+69046,35
+69047,25
+69048,40
+69049,34
+69050,31
+69051,27
+69052,34
+69054,44
+69055,22
+69057,23
+69059,19
+69060,21
+69061,29
+69062,37
+69063,33
+69064,27
+69065,26
+69066,27
+69067,31
+69068,18
+69069,29
+69070,38
+69071,52
+69072,31
+69073,36
+69074,24
+69075,38
+69076,23
+69077,26
+69078,25
+69079,32
+69080,41
+69081,30
+69082,25
+69083,29
+69084,27
+69085,43
+69086,25
+69087,30
+69088,29
+69089,67
+69090,28
+69091,19
+69092,24
+69093,33
+69094,25
+69095,28
+69096,17
+69097,27
+69099,23
+69100,33
+69101,21
+69102,27
+69103,18
+69104,26
+69105,22
+69106,30
+69107,31
+69108,14
+69109,27
+69110,44
+69111,27
+69112,30
+69113,28
+69114,23
+69115,34
+69116,27
+69117,30
+69118,40
+69120,23
+69122,32
+69123,35
+69124,25
+69125,65
+69126,22
+69127,41
+69128,20
+69129,60
+69130,39
+69131,35
+69132,43
+69133,34
+69134,22
+69135,19
+69138,12
+69139,23
+69140,23
+69142,24
+69143,49
+69144,25
+69145,42
+69146,29
+69147,27
+69149,34
+69150,39
+69151,27
+69152,29
+69153,27
+69154,29
+69155,24
+69156,54
+69157,35
+69158,26
+69160,25
+69161,28
+69162,36
+69164,40
+69165,31
+69166,33
+69167,18
+69168,33
+69170,23
+69172,21
+69173,16
+69174,28
+69175,36
+69176,39
+69178,30
+69179,25
+69180,51
+69181,24
+69182,45
+69183,30
+69184,36
+69185,21
+69186,27
+69187,33
+69189,40
+69191,24
+69192,34
+69193,30
+69194,30
+69196,34
+69197,29
+69198,25
+69199,30
+69200,38
+69201,38
+69202,21
+69203,27
+69204,50
+69205,24
+69206,37
+69207,25
+69208,30
+69209,29
+69210,32
+69211,23
+69212,16
+69213,40
+69214,31
+69215,25
+69216,28
+69217,33
+69218,25
+69220,26
+69221,46
+69222,26
+69223,21
+69224,32
+69225,22
+69226,24
+69227,30
+69228,26
+69229,46
+69230,23
+69231,48
+69232,28
+69233,42
+69234,26
+69235,30
+69236,33
+69237,23
+69238,30
+69239,45
+69240,31
+69241,23
+69242,27
+69243,24
+69244,22
+69245,27
+69247,26
+69248,26
+69249,28
+69250,40
+69251,20
+69252,49
+69253,18
+69254,23
+69255,24
+69256,31
+69257,35
+69258,22
+69259,24
+69260,59
+69261,30
+69262,31
+69263,31
+69266,34
+69267,23
+69268,30
+69269,48
+69270,30
+69271,39
+69272,25
+69274,37
+69275,32
+69276,30
+69277,26
+69278,29
+69279,28
+69280,27
+69281,21
+69282,14
+69283,49
+69284,32
+69285,21
+69286,37
+69287,36
+69288,37
+69289,35
+69290,35
+69291,24
+69292,30
+69293,57
+69294,28
+69295,41
+69296,28
+69297,24
+69298,26
+69299,39
+69300,71
+69301,37
+69302,28
+69303,23
+69304,22
+69305,55
+69306,36
+69308,36
+69309,20
+69310,19
+69311,24
+69312,29
+69313,28
+69314,29
+69315,29
+69316,23
+69317,32
+69319,22
+69320,41
+69321,15
+69322,32
+69323,27
+69324,24
+69325,53
+69326,43
+69327,27
+69328,30
+69329,64
+69330,30
+69331,20
+69332,25
+69333,34
+69334,50
+69335,32
+69336,34
+69338,21
+69340,26
+69341,26
+69342,36
+69343,35
+69344,26
+69345,27
+69347,17
+69348,27
+69349,17
+69350,25
+69351,23
+69352,28
+69353,31
+69354,23
+69355,26
+69356,28
+69357,33
+69358,25
+69359,44
+69360,30
+69361,22
+69362,36
+69363,27
+69364,41
+69365,21
+69370,32
+69371,33
+69373,24
+69374,25
+69375,33
+69376,28
+69377,32
+69378,36
+69379,19
+69380,45
+69381,29
+69383,30
+69385,21
+69386,29
+69387,25
+69388,28
+69389,31
+69390,48
+69391,41
+69392,42
+69393,34
+69395,24
+69396,25
+69398,27
+69399,25
+69400,29
+69401,30
+69402,32
+69403,32
+69404,31
+69405,33
+69407,21
+69408,32
+69409,28
+69410,38
+69411,21
+69412,39
+69413,22
+69414,33
+69415,18
+69416,35
+69417,31
+69418,25
+69419,37
+69420,35
+69421,27
+69422,30
+69423,20
+69424,22
+69425,26
+69426,34
+69427,27
+69428,32
+69429,32
+69430,20
+69431,28
+69432,27
+69436,26
+69437,28
+69438,24
+69439,42
+69440,21
+69441,31
+69442,23
+69443,19
+69444,32
+69445,60
+69446,54
+69447,27
+69448,21
+69449,21
+69450,28
+69451,24
+69452,45
+69453,25
+69454,15
+69455,25
+69456,39
+69457,38
+69458,27
+69459,26
+69460,27
+69461,24
+69462,30
+69463,21
+69464,23
+69465,13
+69466,35
+69467,26
+69468,24
+69469,45
+69470,31
+69471,23
+69472,35
+69473,33
+69474,19
+69475,21
+69476,20
+69477,28
+69478,26
+69479,30
+69481,27
+69482,36
+69483,30
+69484,20
+69485,30
+69486,33
+69487,43
+69488,28
+69489,32
+69490,46
+69492,35
+69493,25
+69494,33
+69495,21
+69496,22
+69497,27
+69498,27
+69499,24
+69500,34
+69501,26
+69502,23
+69503,27
+69504,23
+69505,34
+69506,27
+69507,30
+69508,27
+69510,55
+69511,45
+69512,29
+69513,30
+69514,35
+69515,32
+69516,27
+69517,24
+69518,20
+69519,21
+69520,24
+69521,22
+69522,23
+69523,21
+69524,34
+69525,35
+69526,38
+69527,43
+69528,16
+69529,18
+69530,29
+69532,39
+69533,48
+69534,35
+69535,25
+69536,31
+69537,30
+69538,23
+69539,26
+69540,42
+69541,24
+69542,25
+69543,21
+69544,38
+69545,32
+69546,27
+69547,40
+69550,33
+69551,32
+69552,35
+69553,22
+69554,22
+69555,24
+69556,38
+69557,28
+69558,22
+69559,45
+69560,26
+69561,22
+69562,24
+69563,31
+69564,37
+69565,36
+69567,38
+69568,23
+69569,23
+69570,55
+69571,29
+69572,20
+69573,59
+69574,24
+69575,20
+69576,38
+69577,31
+69578,35
+69579,30
+69580,25
+69582,40
+69584,24
+69585,20
+69586,25
+69587,25
+69588,33
+69589,30
+69590,62
+69593,26
+69594,13
+69595,37
+69596,26
+69597,20
+69598,45
+69599,20
+69600,30
+69601,30
+69602,23
+69603,21
+69604,24
+69605,18
+69606,27
+69608,39
+69609,22
+69610,32
+69611,20
+69612,50
+69613,40
+69614,32
+69615,18
+69616,29
+69617,24
+69620,21
+69621,43
+69622,54
+69623,52
+69624,24
+69625,19
+69626,30
+69628,29
+69629,13
+69630,15
+69631,31
+69632,38
+69633,32
+69634,37
+69637,13
+69638,28
+69639,36
+69640,21
+69641,27
+69642,47
+69643,26
+69644,42
+69645,35
+69646,37
+69647,37
+69648,30
+69649,22
+69650,27
+69651,29
+69652,36
+69653,40
+69654,22
+69655,37
+69656,40
+69657,35
+69659,29
+69660,35
+69661,20
+69662,25
+69663,22
+69664,18
+69665,26
+69666,21
+69667,25
+69668,34
+69669,37
+69670,42
+69671,32
+69672,20
+69673,23
+69674,33
+69675,34
+69676,30
+69677,28
+69679,54
+69680,34
+69681,25
+69682,25
+69683,64
+69685,28
+69686,25
+69687,36
+69688,25
+69689,25
+69690,21
+69691,19
+69693,22
+69694,46
+69695,32
+69696,28
+69697,20
+69698,23
+69699,21
+69700,29
+69701,31
+69702,23
+69703,26
+69704,30
+69705,46
+69706,28
+69707,34
+69708,51
+69709,24
+69711,31
+69713,29
+69714,24
+69715,32
+69716,16
+69717,34
+69718,25
+69719,24
+69720,25
+69722,34
+69723,24
+69724,28
+69725,18
+69726,29
+69728,38
+69729,22
+69730,39
+69731,49
+69732,25
+69733,24
+69734,57
+69735,23
+69736,33
+69737,35
+69738,34
+69739,40
+69740,18
+69742,58
+69743,25
+69744,26
+69745,21
+69746,30
+69747,25
+69748,23
+69749,29
+69750,28
+69751,28
+69752,30
+69753,36
+69754,36
+69755,20
+69756,24
+69757,34
+69758,20
+69759,52
+69760,21
+69761,43
+69762,29
+69763,35
+69764,14
+69765,20
+69766,34
+69767,31
+69768,29
+69770,23
+69771,29
+69772,35
+69773,33
+69774,28
+69775,44
+69776,27
+69777,31
+69778,30
+69779,30
+69780,41
+69781,24
+69782,23
+69783,53
+69784,26
+69785,30
+69786,33
+69787,21
+69788,35
+69789,43
+69790,25
+69791,33
+69792,28
+69793,21
+69794,32
+69795,25
+69796,17
+69797,27
+69798,27
+69799,22
+69800,36
+69802,33
+69803,24
+69804,40
+69805,29
+69806,30
+69807,22
+69808,23
+69809,21
+69810,21
+69811,26
+69812,22
+69813,27
+69814,26
+69815,30
+69816,20
+69817,33
+69818,26
+69819,25
+69820,41
+69821,26
+69822,41
+69823,37
+69824,28
+69825,26
+69826,21
+69827,24
+69828,41
+69829,46
+69831,24
+69832,25
+69833,15
+69834,21
+69835,42
+69836,20
+69837,30
+69838,25
+69839,45
+69840,27
+69841,27
+69842,39
+69843,25
+69844,34
+69846,21
+69847,29
+69849,33
+69851,32
+69853,37
+69854,26
+69855,29
+69856,33
+69857,17
+69858,30
+69859,31
+69860,27
+69861,27
+69862,38
+69863,39
+69864,22
+69865,28
+69866,28
+69867,25
+69868,18
+69870,30
+69871,37
+69872,33
+69873,29
+69875,37
+69876,32
+69877,23
+69879,24
+69882,23
+69883,26
+69884,37
+69885,31
+69886,40
+69887,31
+69888,20
+69889,32
+69890,24
+69891,29
+69892,50
+69893,26
+69896,41
+69897,35
+69898,32
+69899,30
+69900,37
+69901,29
+69902,19
+69903,19
+69904,36
+69905,21
+69906,42
+69907,22
+69908,25
+69909,48
+69910,33
+69911,40
+69912,24
+69913,24
+69914,24
+69915,20
+69916,22
+69917,39
+69920,26
+69921,44
+69922,31
+69923,31
+69924,25
+69925,48
+69926,26
+69927,42
+69928,27
+69930,32
+69931,57
+69932,28
+69933,37
+69934,41
+69935,23
+69936,23
+69937,30
+69938,29
+69939,39
+69941,22
+69942,42
+69943,23
+69944,15
+69945,19
+69946,37
+69947,33
+69948,28
+69949,29
+69950,30
+69951,18
+69952,48
+69953,29
+69954,17
+69955,36
+69956,27
+69957,32
+69958,28
+69959,43
+69960,31
+69961,19
+69962,27
+69963,40
+69964,29
+69965,29
+69966,33
+69968,19
+69969,21
+69970,26
+69971,32
+69972,27
+69973,45
+69974,31
+69975,23
+69976,25
+69977,26
+69978,32
+69979,29
+69980,37
+69981,24
+69982,28
+69984,25
+69985,27
+69986,24
+69987,51
+69988,23
+69989,23
+69992,36
+69993,35
+69994,37
+69995,41
+69996,22
+69997,35
+69998,45
+69999,32
+70000,34
+70001,31
+70002,32
+70003,20
+70004,24
+70005,32
+70008,27
+70009,28
+70010,29
+70011,35
+70012,50
+70013,41
+70014,34
+70016,41
+70017,26
+70018,62
+70019,36
+70020,35
+70022,41
+70023,28
+70024,26
+70025,14
+70026,25
+70027,30
+70028,21
+70029,40
+70032,26
+70033,43
+70034,22
+70036,19
+70037,28
+70038,20
+70039,30
+70040,32
+70042,25
+70043,23
+70044,32
+70046,32
+70047,34
+70048,45
+70049,24
+70050,32
+70051,33
+70053,45
+70054,38
+70055,24
+70056,29
+70057,29
+70058,23
+70059,14
+70060,37
+70061,24
+70062,29
+70063,31
+70064,33
+70065,27
+70066,13
+70067,37
+70068,30
+70069,26
+70070,35
+70071,22
+70072,26
+70073,29
+70074,31
+70075,29
+70077,27
+70078,36
+70079,29
+70080,32
+70081,24
+70082,28
+70083,35
+70084,26
+70085,24
+70086,65
+70087,25
+70088,28
+70089,32
+70090,20
+70091,27
+70092,24
+70093,29
+70094,32
+70095,40
+70096,27
+70097,36
+70098,38
+70099,27
+70100,24
+70101,33
+70102,28
+70103,26
+70104,37
+70105,27
+70106,21
+70107,29
+70108,14
+70109,29
+70110,33
+70111,33
+70112,20
+70113,27
+70114,53
+70115,34
+70116,33
+70117,23
+70118,27
+70119,34
+70120,24
+70121,33
+70122,39
+70123,27
+70124,25
+70125,45
+70126,32
+70127,24
+70128,23
+70129,33
+70130,26
+70131,19
+70133,28
+70134,20
+70135,22
+70136,29
+70137,27
+70138,27
+70139,30
+70140,25
+70141,22
+70142,30
+70143,43
+70144,35
+70145,32
+70146,28
+70147,25
+70149,29
+70150,34
+70151,29
+70152,39
+70153,23
+70154,28
+70155,36
+70156,19
+70157,28
+70158,27
+70160,19
+70161,24
+70162,37
+70163,26
+70164,26
+70165,26
+70166,16
+70167,50
+70169,34
+70170,45
+70171,25
+70172,28
+70173,25
+70174,18
+70175,37
+70176,44
+70177,32
+70178,36
+70179,24
+70180,34
+70181,28
+70182,27
+70183,19
+70184,42
+70186,52
+70187,39
+70188,27
+70189,22
+70193,58
+70194,21
+70195,21
+70196,23
+70199,65
+70201,26
+70202,47
+70203,43
+70204,15
+70205,27
+70206,23
+70207,34
+70208,22
+70209,40
+70210,25
+70211,26
+70212,28
+70213,28
+70214,23
+70215,34
+70216,40
+70217,31
+70218,23
+70219,30
+70220,42
+70221,17
+70222,27
+70223,26
+70224,29
+70225,24
+70226,28
+70227,53
+70228,27
+70229,23
+70230,25
+70231,25
+70232,42
+70233,32
+70234,40
+70235,22
+70236,25
+70237,31
+70238,27
+70239,32
+70240,34
+70242,34
+70243,25
+70244,38
+70245,33
+70246,26
+70247,36
+70248,44
+70249,25
+70250,30
+70251,42
+70252,26
+70253,22
+70254,30
+70255,40
+70256,30
+70257,26
+70258,18
+70259,34
+70260,18
+70261,35
+70262,24
+70263,41
+70264,30
+70266,34
+70267,37
+70271,36
+70272,25
+70273,27
+70274,48
+70275,27
+70276,27
+70277,21
+70278,27
+70279,28
+70280,37
+70281,28
+70282,27
+70284,99
+70285,47
+70286,24
+70288,24
+70289,46
+70290,25
+70291,29
+70293,25
+70294,24
+70295,48
+70296,36
+70297,30
+70299,26
+70300,32
+70301,21
+70302,27
+70305,19
+70306,28
+70307,27
+70308,27
+70309,61
+70310,21
+70311,25
+70312,39
+70313,32
+70314,32
+70315,60
+70316,25
+70317,25
+70318,28
+70319,31
+70320,48
+70321,39
+70322,29
+70323,26
+70324,39
+70325,27
+70327,20
+70328,30
+70329,27
+70330,28
+70331,35
+70332,37
+70333,28
+70334,22
+70335,21
+70336,32
+70337,21
+70338,35
+70339,28
+70340,25
+70341,24
+70342,23
+70343,27
+70344,32
+70345,28
+70346,26
+70347,19
+70348,24
+70349,26
+70351,25
+70352,15
+70353,39
+70354,27
+70355,31
+70356,29
+70357,23
+70358,44
+70359,49
+70360,25
+70361,18
+70362,25
+70363,26
+70364,40
+70365,20
+70366,23
+70368,30
+70369,28
+70370,26
+70371,42
+70372,28
+70374,22
+70375,46
+70376,22
+70378,40
+70379,19
+70381,35
+70383,31
+70384,21
+70385,22
+70386,31
+70390,22
+70391,25
+70392,32
+70393,26
+70394,42
+70395,22
+70396,36
+70397,38
+70398,30
+70399,28
+70400,32
+70402,38
+70404,27
+70406,27
+70407,36
+70408,28
+70409,21
+70410,30
+70411,24
+70412,43
+70413,23
+70414,40
+70415,48
+70416,35
+70417,20
+70418,39
+70419,32
+70420,22
+70421,23
+70422,26
+70423,24
+70424,35
+70425,27
+70426,44
+70427,18
+70428,33
+70429,32
+70430,32
+70431,17
+70432,51
+70433,31
+70434,42
+70435,20
+70436,26
+70438,28
+70439,33
+70441,32
+70442,47
+70443,22
+70444,27
+70445,34
+70446,5
+70447,27
+70448,25
+70449,25
+70450,23
+70451,32
+70452,27
+70453,24
+70454,33
+70455,30
+70456,12
+70457,30
+70458,17
+70459,26
+70460,30
+70461,36
+70462,39
+70463,26
+70464,55
+70465,35
+70466,23
+70467,36
+70468,31
+70469,32
+70470,25
+70471,37
+70472,28
+70473,23
+70474,21
+70475,24
+70476,33
+70477,47
+70478,26
+70479,33
+70480,26
+70481,30
+70482,37
+70483,27
+70484,27
+70485,25
+70486,23
+70487,30
+70488,27
+70489,36
+70490,34
+70491,50
+70492,23
+70494,28
+70495,23
+70496,40
+70497,29
+70498,33
+70499,28
+70500,16
+70501,22
+70502,27
+70503,40
+70504,65
+70505,29
+70506,26
+70507,50
+70508,34
+70509,27
+70511,35
+70512,25
+70513,43
+70514,22
+70515,35
+70516,49
+70517,27
+70518,15
+70519,32
+70522,23
+70523,38
+70524,27
+70525,33
+70526,24
+70528,26
+70529,31
+70530,24
+70531,31
+70532,44
+70533,38
+70534,29
+70535,23
+70536,23
+70537,30
+70538,23
+70539,34
+70540,27
+70541,25
+70542,26
+70543,30
+70544,20
+70545,20
+70546,29
+70547,24
+70548,40
+70549,32
+70551,23
+70552,32
+70553,25
+70554,24
+70555,27
+70556,50
+70557,36
+70558,32
+70559,38
+70560,52
+70561,40
+70562,17
+70563,24
+70564,32
+70566,25
+70568,28
+70569,26
+70570,37
+70571,34
+70572,44
+70573,27
+70574,33
+70576,23
+70577,25
+70578,22
+70580,38
+70581,40
+70582,16
+70583,35
+70584,21
+70585,25
+70586,26
+70587,60
+70588,26
+70590,39
+70591,39
+70592,38
+70593,26
+70594,37
+70596,21
+70597,25
+70598,31
+70599,44
+70600,23
+70601,30
+70602,35
+70603,26
+70605,32
+70606,46
+70607,23
+70608,23
+70609,23
+70610,25
+70611,23
+70613,34
+70615,28
+70616,19
+70617,25
+70618,33
+70619,30
+70620,31
+70621,35
+70622,35
+70623,16
+70624,29
+70625,29
+70627,31
+70628,22
+70629,40
+70631,16
+70632,23
+70633,40
+70634,30
+70635,29
+70637,22
+70638,25
+70639,24
+70640,48
+70641,26
+70642,29
+70643,40
+70644,40
+70645,24
+70646,23
+70647,31
+70648,20
+70649,33
+70650,38
+70651,31
+70653,46
+70654,31
+70655,34
+70656,30
+70657,25
+70658,52
+70659,40
+70661,26
+70663,43
+70664,44
+70665,20
+70666,33
+70667,24
+70668,23
+70669,27
+70671,51
+70672,21
+70673,28
+70674,24
+70675,56
+70676,26
+70677,25
+70678,36
+70679,20
+70680,41
+70681,22
+70683,27
+70684,45
+70685,23
+70686,26
+70687,23
+70688,24
+70690,27
+70691,25
+70692,33
+70693,22
+70695,36
+70696,15
+70697,28
+70698,28
+70699,42
+70700,18
+70701,56
+70702,22
+70703,31
+70704,43
+70706,23
+70707,25
+70708,24
+70710,35
+70711,29
+70712,34
+70714,23
+70715,57
+70716,34
+70717,34
+70718,29
+70719,24
+70720,44
+70721,46
+70724,28
+70726,30
+70727,26
+70728,20
+70729,33
+70730,27
+70731,20
+70732,19
+70733,51
+70734,23
+70735,23
+70736,24
+70737,19
+70739,23
+70740,27
+70741,30
+70742,27
+70743,22
+70745,20
+70747,25
+70748,31
+70749,47
+70750,24
+70751,27
+70752,25
+70753,30
+70754,26
+70755,29
+70757,42
+70758,37
+70759,32
+70760,39
+70761,38
+70762,47
+70763,33
+70764,29
+70765,37
+70766,24
+70767,50
+70768,25
+70769,34
+70770,14
+70771,20
+70772,22
+70773,33
+70774,26
+70776,28
+70777,32
+70778,33
+70779,31
+70780,46
+70781,38
+70782,34
+70783,39
+70784,48
+70785,26
+70787,43
+70788,21
+70789,25
+70790,38
+70791,44
+70793,25
+70794,20
+70796,21
+70797,26
+70799,20
+70800,31
+70801,26
+70802,29
+70803,27
+70804,13
+70805,25
+70806,35
+70807,22
+70808,33
+70809,24
+70810,24
+70811,19
+70812,33
+70813,39
+70814,36
+70816,28
+70817,37
+70818,43
+70819,37
+70820,31
+70821,25
+70822,33
+70823,32
+70824,27
+70825,35
+70826,39
+70827,28
+70828,33
+70829,47
+70830,16
+70831,19
+70832,26
+70833,26
+70834,49
+70835,28
+70836,32
+70837,31
+70838,35
+70839,27
+70840,44
+70841,38
+70842,21
+70843,42
+70844,34
+70845,46
+70846,36
+70847,25
+70848,32
+70849,41
+70850,21
+70852,25
+70853,28
+70854,25
+70855,41
+70856,23
+70857,33
+70858,30
+70859,25
+70860,31
+70861,40
+70862,29
+70863,45
+70864,25
+70865,32
+70866,31
+70867,29
+70868,28
+70869,39
+70870,28
+70871,24
+70872,26
+70873,41
+70874,31
+70875,37
+70876,41
+70877,36
+70878,22
+70879,21
+70880,22
+70881,29
+70882,24
+70883,23
+70884,31
+70885,44
+70886,57
+70887,30
+70888,33
+70889,37
+70890,32
+70891,24
+70892,22
+70893,40
+70894,28
+70895,21
+70896,27
+70897,27
+70898,19
+70899,17
+70900,24
+70901,35
+70902,25
+70903,20
+70905,50
+70906,27
+70907,18
+70908,22
+70909,29
+70910,37
+70911,36
+70912,18
+70914,29
+70915,40
+70916,28
+70918,26
+70919,48
+70920,45
+70921,39
+70923,22
+70924,44
+70925,29
+70926,19
+70927,24
+70928,37
+70929,33
+70930,27
+70931,24
+70932,25
+70933,25
+70934,43
+70935,25
+70936,20
+70937,23
+70938,31
+70939,26
+70940,33
+70941,37
+70942,22
+70943,29
+70944,18
+70945,30
+70946,13
+70947,19
+70948,30
+70949,29
+70950,25
+70951,22
+70952,24
+70953,21
+70954,35
+70956,22
+70957,21
+70958,42
+70959,39
+70960,18
+70961,60
+70962,50
+70963,27
+70964,33
+70965,33
+70966,32
+70967,27
+70968,21
+70969,26
+70970,33
+70971,41
+70972,26
+70973,48
+70974,35
+70975,35
+70976,25
+70978,27
+70979,28
+70980,32
+70981,37
+70982,16
+70983,30
+70984,35
+70986,46
+70987,29
+70988,21
+70989,19
+70990,30
+70991,27
+70992,28
+70993,31
+70994,33
+70996,25
+70997,23
+70999,51
+71000,24
+71001,26
+71002,22
+71005,50
+71006,24
+71007,30
+71008,47
+71009,27
+71010,22
+71011,22
+71013,29
+71014,31
+71015,25
+71016,24
+71017,17
+71019,29
+71020,23
+71021,38
+71022,28
+71023,36
+71024,26
+71025,40
+71026,27
+71027,60
+71030,31
+71031,31
+71032,25
+71033,28
+71034,29
+71035,53
+71036,35
+71039,26
+71040,50
+71042,23
+71043,23
+71045,53
+71046,39
+71047,27
+71048,42
+71049,31
+71051,34
+71052,27
+71053,16
+71054,25
+71056,46
+71057,42
+71058,51
+71059,23
+71061,35
+71062,23
+71063,52
+71064,29
+71065,35
+71066,38
+71067,28
+71068,46
+71069,37
+71070,17
+71071,18
+71072,34
+71073,36
+71074,31
+71075,25
+71076,42
+71077,37
+71078,54
+71079,24
+71080,33
+71081,20
+71082,57
+71083,26
+71084,30
+71085,22
+71086,18
+71087,19
+71088,24
+71090,37
+71091,23
+71093,22
+71094,20
+71095,32
+71096,30
+71098,29
+71099,41
+71100,26
+71101,60
+71102,29
+71104,47
+71106,32
+71107,24
+71108,26
+71110,26
+71111,33
+71112,20
+71113,26
+71114,21
+71115,27
+71116,40
+71118,28
+71119,25
+71120,29
+71121,24
+71122,30
+71123,34
+71124,21
+71125,30
+71126,36
+71127,49
+71128,31
+71129,40
+71130,30
+71131,31
+71132,22
+71133,26
+71134,27
+71135,32
+71137,30
+71138,20
+71139,47
+71140,24
+71141,34
+71142,27
+71143,25
+71144,24
+71145,27
+71146,21
+71147,48
+71149,27
+71150,38
+71151,27
+71152,49
+71153,25
+71154,21
+71155,21
+71156,24
+71157,21
+71158,27
+71159,35
+71161,23
+71163,43
+71164,33
+71166,33
+71167,26
+71168,28
+71169,30
+71171,29
+71172,36
+71174,24
+71175,29
+71176,25
+71179,16
+71180,23
+71181,32
+71182,31
+71183,25
+71185,36
+71186,27
+71187,27
+71188,24
+71190,33
+71191,37
+71192,21
+71193,43
+71194,21
+71196,28
+71197,22
+71198,24
+71199,36
+71200,27
+71201,28
+71202,26
+71203,33
+71205,25
+71206,30
+71208,43
+71209,61
+71210,26
+71211,28
+71212,55
+71213,34
+71214,29
+71215,36
+71216,35
+71217,53
+71218,39
+71220,16
+71221,19
+71222,39
+71224,17
+71225,22
+71226,29
+71227,20
+71228,23
+71229,28
+71230,42
+71231,20
+71232,43
+71233,27
+71235,32
+71236,31
+71237,23
+71238,22
+71239,31
+71240,23
+71241,18
+71242,35
+71243,14
+71244,22
+71246,36
+71247,61
+71248,22
+71249,17
+71250,26
+71251,42
+71253,59
+71254,27
+71255,25
+71256,18
+71257,35
+71258,29
+71259,33
+71260,29
+71261,23
+71262,36
+71263,42
+71264,55
+71265,33
+71266,20
+71267,35
+71268,19
+71269,51
+71270,25
+71271,32
+71272,36
+71273,23
+71274,22
+71275,17
+71276,17
+71277,31
+71278,20
+71279,23
+71280,28
+71281,23
+71283,30
+71284,21
+71285,23
+71287,32
+71288,26
+71289,58
+71290,30
+71292,27
+71293,30
+71294,31
+71295,24
+71296,32
+71297,29
+71298,19
+71299,21
+71300,30
+71301,34
+71302,39
+71303,51
+71304,51
+71305,22
+71306,47
+71307,28
+71308,32
+71310,30
+71311,30
+71312,30
+71313,22
+71314,49
+71315,20
+71316,35
+71317,41
+71318,29
+71319,25
+71320,36
+71321,30
+71322,38
+71324,28
+71325,25
+71326,26
+71327,33
+71328,29
+71329,22
+71330,28
+71331,43
+71332,40
+71333,35
+71334,26
+71336,25
+71337,35
+71338,32
+71339,35
+71343,26
+71344,30
+71345,23
+71346,27
+71347,34
+71348,25
+71349,24
+71351,37
+71352,35
+71353,23
+71354,31
+71355,25
+71356,59
+71357,17
+71358,23
+71359,28
+71360,20
+71361,20
+71362,24
+71363,25
+71364,32
+71365,32
+71366,30
+71367,63
+71368,26
+71369,22
+71370,38
+71371,26
+71374,29
+71375,34
+71376,29
+71377,27
+71378,37
+71379,26
+71380,40
+71381,27
+71382,26
+71383,25
+71384,52
+71385,58
+71386,36
+71387,26
+71388,34
+71389,38
+71390,26
+71391,31
+71392,27
+71393,35
+71394,19
+71396,26
+71397,59
+71398,27
+71399,31
+71400,32
+71401,24
+71402,21
+71403,30
+71405,47
+71406,28
+71407,42
+71408,40
+71409,25
+71410,31
+71411,28
+71412,33
+71413,36
+71414,31
+71415,34
+71416,26
+71417,43
+71418,31
+71419,21
+71420,45
+71422,31
+71423,29
+71424,38
+71425,62
+71427,52
+71428,39
+71429,22
+71430,24
+71431,28
+71432,33
+71433,20
+71434,24
+71435,28
+71436,23
+71437,29
+71438,27
+71439,49
+71440,23
+71441,23
+71442,29
+71444,26
+71445,25
+71446,24
+71447,21
+71449,41
+71450,24
+71451,35
+71452,27
+71453,24
+71454,27
+71456,40
+71457,34
+71458,24
+71459,32
+71460,38
+71461,20
+71462,37
+71463,40
+71464,24
+71465,25
+71466,21
+71467,15
+71468,32
+71469,57
+71470,47
+71471,38
+71472,23
+71474,36
+71475,35
+71476,22
+71477,24
+71478,30
+71479,31
+71480,40
+71481,30
+71482,21
+71483,31
+71484,20
+71485,29
+71486,27
+71487,38
+71488,26
+71490,28
+71492,33
+71493,44
+71494,24
+71495,26
+71496,47
+71497,32
+71498,41
+71499,25
+71500,20
+71501,21
+71502,30
+71504,45
+71505,31
+71506,34
+71507,29
+71508,26
+71509,44
+71510,26
+71511,35
+71512,18
+71513,27
+71514,30
+71515,30
+71516,25
+71517,34
+71518,39
+71520,49
+71521,37
+71523,44
+71524,22
+71525,31
+71526,41
+71527,32
+71528,24
+71529,20
+71530,33
+71531,26
+71532,28
+71533,43
+71534,20
+71535,28
+71536,27
+71537,19
+71538,38
+71540,28
+71541,24
+71542,24
+71544,35
+71545,22
+71546,38
+71547,34
+71548,30
+71549,58
+71550,19
+71551,40
+71553,33
+71554,43
+71555,52
+71556,40
+71557,28
+71558,35
+71559,21
+71560,46
+71562,38
+71564,36
+71565,28
+71566,43
+71567,19
+71568,35
+71569,33
+71570,25
+71571,30
+71572,29
+71573,28
+71574,20
+71575,28
+71576,21
+71577,28
+71578,24
+71579,35
+71580,27
+71581,24
+71582,33
+71583,28
+71584,23
+71585,24
+71586,29
+71587,43
+71588,38
+71590,22
+71591,21
+71592,17
+71593,26
+71594,30
+71595,30
+71598,40
+71599,13
+71600,19
+71601,23
+71602,19
+71603,24
+71605,25
+71606,27
+71608,32
+71609,27
+71610,21
+71611,34
+71612,39
+71613,24
+71615,28
+71616,44
+71617,26
+71618,19
+71619,17
+71620,49
+71622,36
+71623,75
+71624,25
+71626,24
+71627,28
+71628,17
+71629,30
+71630,25
+71633,23
+71634,34
+71635,27
+71636,26
+71637,36
+71638,38
+71639,18
+71640,27
+71641,14
+71642,34
+71643,30
+71644,32
+71645,48
+71646,50
+71647,15
+71648,25
+71649,30
+71650,38
+71651,35
+71652,39
+71653,21
+71654,19
+71655,30
+71656,32
+71657,43
+71659,24
+71661,41
+71662,34
+71663,40
+71664,40
+71665,24
+71666,27
+71667,20
+71668,49
+71669,23
+71670,33
+71671,40
+71672,33
+71673,38
+71674,65
+71675,30
+71676,25
+71677,21
+71678,23
+71679,25
+71680,25
+71681,36
+71682,26
+71683,35
+71685,29
+71686,30
+71687,33
+71688,32
+71689,30
+71690,49
+71691,22
+71692,46
+71693,25
+71694,39
+71695,47
+71696,20
+71698,26
+71699,25
+71700,34
+71701,25
+71702,25
+71703,25
+71704,46
+71705,36
+71706,15
+71708,19
+71709,30
+71710,33
+71711,29
+71712,31
+71714,44
+71715,22
+71716,25
+71717,44
+71718,20
+71719,43
+71720,32
+71721,24
+71722,47
+71723,21
+71724,27
+71725,38
+71726,29
+71727,13
+71728,35
+71729,21
+71730,43
+71731,25
+71732,26
+71733,23
+71734,33
+71735,39
+71736,42
+71738,23
+71739,22
+71740,31
+71741,33
+71742,39
+71744,33
+71745,23
+71746,27
+71747,32
+71749,33
+71750,23
+71751,28
+71752,33
+71753,41
+71755,26
+71756,50
+71757,19
+71758,39
+71759,32
+71761,29
+71762,21
+71763,30
+71764,38
+71767,18
+71768,30
+71769,22
+71770,31
+71772,32
+71773,24
+71774,25
+71775,36
+71776,33
+71777,42
+71778,30
+71779,31
+71780,28
+71781,27
+71782,53
+71783,34
+71785,25
+71786,18
+71787,22
+71788,32
+71789,22
+71790,26
+71791,35
+71792,26
+71793,36
+71794,27
+71796,32
+71797,33
+71798,26
+71800,39
+71801,46
+71802,54
+71803,27
+71804,31
+71805,27
+71806,23
+71807,27
+71808,60
+71809,30
+71810,29
+71811,53
+71812,26
+71813,54
+71814,40
+71815,25
+71816,36
+71817,21
+71818,35
+71819,30
+71820,21
+71821,25
+71822,23
+71823,45
+71824,32
+71825,24
+71826,24
+71827,24
+71828,41
+71829,29
+71830,27
+71831,22
+71832,31
+71833,24
+71834,39
+71835,26
+71836,31
+71837,51
+71838,39
+71839,35
+71840,30
+71841,26
+71842,26
+71844,29
+71845,23
+71846,21
+71847,21
+71848,17
+71849,23
+71851,25
+71852,54
+71853,28
+71854,31
+71855,37
+71856,34
+71857,36
+71858,28
+71859,20
+71860,28
+71861,21
+71862,41
+71863,23
+71864,27
+71865,25
+71866,26
+71867,34
+71868,32
+71869,21
+71870,25
+71871,33
+71872,24
+71873,45
+71876,41
+71877,35
+71878,23
+71880,22
+71881,28
+71883,33
+71884,40
+71885,59
+71886,16
+71888,39
+71889,24
+71890,50
+71891,21
+71893,19
+71894,25
+71895,40
+71896,32
+71897,31
+71898,36
+71900,27
+71901,40
+71903,19
+71904,29
+71905,28
+71906,37
+71907,28
+71908,23
+71909,25
+71910,24
+71911,26
+71912,56
+71913,36
+71914,24
+71915,36
+71916,31
+71917,34
+71918,24
+71919,28
+71920,16
+71921,35
+71922,72
+71923,22
+71924,17
+71925,23
+71926,35
+71927,25
+71928,41
+71929,35
+71930,24
+71931,21
+71932,22
+71933,30
+71934,25
+71935,32
+71936,53
+71937,20
+71938,18
+71939,1
+71941,27
+71942,35
+71943,25
+71944,32
+71945,24
+71946,29
+71947,40
+71948,56
+71949,33
+71950,36
+71951,25
+71952,32
+71953,26
+71954,18
+71955,39
+71956,22
+71957,36
+71958,43
+71959,25
+71962,54
+71963,27
+71964,28
+71965,27
+71966,22
+71967,37
+71968,33
+71969,41
+71970,34
+71971,33
+71972,60
+71973,29
+71974,29
+71976,29
+71977,24
+71978,33
+71979,28
+71980,33
+71981,34
+71982,23
+71983,30
+71984,33
+71985,34
+71987,34
+71988,25
+71989,36
+71990,20
+71991,55
+71992,53
+71993,39
+71994,23
+71997,29
+71998,31
+72001,60
+72002,22
+72003,33
+72005,33
+72006,19
+72007,15
+72008,29
+72009,29
+72010,38
+72011,28
+72012,20
+72013,38
+72014,43
+72015,55
+72016,34
+72017,28
+72018,27
+72020,26
+72021,27
+72022,44
+72023,49
+72024,35
+72025,23
+72027,38
+72028,33
+72029,45
+72030,40
+72031,22
+72032,22
+72033,28
+72034,43
+72035,22
+72036,32
+72037,33
+72038,21
+72039,27
+72040,32
+72042,41
+72043,60
+72044,23
+72045,30
+72046,21
+72047,62
+72048,26
+72049,24
+72050,39
+72051,24
+72052,30
+72053,31
+72054,29
+72055,16
+72056,30
+72057,33
+72058,35
+72059,22
+72060,26
+72061,32
+72062,25
+72063,37
+72064,28
+72065,35
+72066,19
+72067,22
+72069,44
+72070,47
+72071,35
+72072,30
+72073,41
+72075,33
+72076,26
+72077,26
+72078,29
+72079,49
+72080,25
+72081,25
+72082,29
+72084,32
+72085,26
+72086,25
+72087,27
+72088,27
+72089,24
+72090,22
+72091,17
+72092,55
+72093,35
+72094,30
+72095,24
+72096,35
+72098,26
+72099,39
+72100,22
+72101,21
+72102,26
+72103,37
+72104,22
+72105,32
+72106,23
+72107,24
+72109,19
+72110,37
+72111,19
+72112,29
+72113,22
+72114,33
+72115,37
+72116,23
+72117,36
+72118,37
+72119,30
+72122,21
+72123,20
+72124,41
+72125,20
+72126,28
+72127,21
+72128,21
+72129,35
+72130,38
+72131,27
+72132,28
+72133,18
+72134,23
+72136,30
+72137,33
+72138,25
+72139,23
+72140,24
+72141,41
+72142,29
+72143,59
+72144,23
+72145,28
+72146,44
+72147,27
+72148,26
+72149,38
+72150,32
+72151,28
+72152,26
+72153,28
+72155,31
+72157,36
+72158,43
+72162,24
+72163,41
+72164,31
+72165,23
+72166,23
+72168,22
+72169,23
+72170,25
+72171,28
+72173,22
+72175,34
+72176,28
+72177,23
+72178,40
+72179,28
+72180,39
+72181,23
+72182,28
+72183,36
+72184,31
+72185,36
+72186,36
+72187,32
+72189,32
+72190,30
+72191,25
+72192,31
+72193,23
+72195,28
+72196,23
+72197,37
+72198,32
+72199,28
+72202,20
+72203,28
+72204,23
+72205,35
+72208,34
+72210,30
+72211,29
+72212,20
+72213,20
+72214,28
+72215,32
+72216,27
+72217,23
+72218,76
+72219,25
+72220,37
+72221,32
+72222,24
+72223,37
+72224,27
+72225,35
+72226,28
+72227,31
+72228,27
+72229,47
+72230,17
+72232,20
+72233,24
+72234,45
+72235,40
+72237,28
+72238,36
+72239,27
+72240,30
+72241,29
+72242,34
+72243,32
+72244,31
+72245,24
+72246,45
+72247,22
+72249,27
+72250,36
+72251,29
+72252,32
+72253,35
+72254,32
+72255,28
+72256,22
+72257,60
+72258,67
+72259,25
+72260,34
+72262,52
+72263,25
+72264,16
+72266,23
+72268,35
+72269,15
+72271,26
+72272,27
+72273,35
+72277,30
+72278,28
+72280,48
+72281,47
+72282,22
+72283,19
+72284,27
+72285,35
+72286,20
+72287,22
+72288,31
+72289,30
+72291,31
+72292,29
+72293,34
+72294,30
+72295,22
+72297,32
+72298,29
+72299,29
+72300,19
+72303,38
+72304,26
+72305,26
+72306,25
+72307,30
+72308,25
+72310,20
+72311,33
+72312,42
+72313,66
+72314,39
+72315,32
+72316,42
+72317,54
+72318,30
+72319,38
+72320,40
+72321,40
+72322,29
+72323,29
+72324,39
+72326,42
+72327,36
+72328,22
+72329,25
+72330,23
+72331,38
+72332,22
+72333,21
+72334,19
+72335,22
+72336,26
+72337,21
+72338,31
+72339,36
+72340,27
+72342,43
+72343,24
+72344,36
+72345,22
+72347,25
+72348,41
+72352,26
+72353,25
+72354,25
+72355,44
+72357,23
+72358,26
+72359,40
+72361,22
+72362,25
+72363,22
+72364,37
+72365,40
+72366,31
+72367,22
+72368,31
+72370,44
+72372,18
+72373,22
+72374,26
+72376,20
+72377,22
+72378,32
+72379,28
+72381,34
+72382,36
+72383,32
+72384,28
+72388,29
+72390,31
+72391,36
+72392,56
+72393,41
+72394,29
+72395,34
+72396,32
+72397,26
+72398,44
+72399,35
+72400,56
+72401,23
+72402,38
+72403,29
+72404,39
+72406,32
+72407,36
+72408,25
+72409,33
+72410,24
+72411,26
+72412,25
+72413,31
+72414,48
+72415,36
+72416,42
+72417,33
+72418,25
+72419,16
+72420,43
+72422,34
+72423,52
+72424,16
+72425,38
+72426,18
+72427,40
+72429,45
+72430,22
+72431,40
+72432,35
+72433,30
+72434,27
+72435,40
+72436,23
+72438,39
+72439,31
+72440,22
+72441,26
+72442,24
+72443,28
+72444,27
+72445,17
+72446,40
+72447,31
+72449,31
+72451,59
+72453,31
+72454,27
+72455,28
+72456,17
+72457,30
+72458,25
+72459,31
+72461,35
+72462,24
+72463,30
+72464,20
+72465,28
+72466,22
+72467,32
+72468,22
+72470,30
+72471,28
+72472,25
+72473,26
+72474,38
+72475,48
+72477,39
+72478,35
+72479,21
+72480,43
+72481,17
+72482,36
+72483,26
+72484,18
+72485,50
+72486,23
+72487,27
+72488,23
+72489,47
+72491,49
+72493,31
+72494,19
+72495,17
+72496,48
+72497,52
+72498,26
+72499,28
+72500,29
+72502,20
+72503,27
+72504,25
+72505,41
+72506,24
+72507,27
+72508,22
+72509,18
+72510,32
+72511,36
+72512,37
+72513,22
+72514,21
+72515,37
+72516,42
+72517,41
+72518,19
+72519,28
+72520,22
+72521,20
+72522,38
+72524,34
+72525,27
+72526,29
+72527,68
+72528,20
+72529,28
+72530,38
+72531,41
+72532,29
+72533,42
+72534,35
+72535,22
+72537,30
+72538,34
+72539,24
+72540,29
+72541,54
+72542,36
+72543,38
+72544,35
+72545,25
+72546,41
+72547,24
+72548,29
+72549,37
+72550,28
+72551,22
+72552,27
+72553,25
+72554,40
+72555,50
+72556,18
+72557,33
+72558,27
+72559,24
+72560,16
+72561,22
+72562,30
+72563,30
+72564,23
+72565,24
+72566,26
+72567,31
+72568,24
+72570,28
+72572,27
+72573,13
+72574,33
+72575,20
+72576,33
+72577,26
+72578,20
+72579,27
+72580,30
+72581,24
+72582,29
+72583,23
+72584,28
+72585,16
+72586,25
+72587,30
+72588,27
+72589,34
+72590,30
+72591,23
+72592,25
+72593,27
+72594,24
+72595,50
+72596,44
+72597,39
+72599,32
+72601,29
+72602,30
+72603,63
+72604,45
+72605,22
+72606,27
+72608,26
+72609,25
+72610,24
+72611,15
+72612,28
+72613,32
+72614,29
+72615,21
+72617,20
+72618,35
+72619,35
+72620,36
+72621,28
+72622,18
+72623,21
+72624,30
+72625,29
+72626,29
+72627,26
+72628,32
+72630,32
+72631,28
+72633,45
+72634,23
+72635,26
+72636,23
+72637,26
+72638,20
+72639,32
+72640,22
+72641,30
+72642,15
+72643,30
+72644,17
+72645,31
+72646,24
+72647,22
+72648,42
+72649,43
+72650,43
+72651,26
+72652,11
+72654,31
+72655,17
+72656,44
+72657,28
+72658,41
+72659,22
+72660,25
+72661,29
+72662,40
+72663,34
+72664,34
+72665,29
+72666,22
+72667,31
+72668,30
+72669,37
+72670,40
+72671,29
+72672,21
+72673,26
+72675,40
+72676,25
+72677,47
+72678,17
+72679,24
+72680,29
+72681,21
+72682,35
+72683,36
+72684,24
+72685,28
+72686,15
+72687,40
+72688,38
+72689,32
+72690,20
+72691,27
+72693,46
+72694,30
+72695,30
+72696,26
+72697,38
+72699,33
+72701,28
+72702,38
+72703,23
+72704,23
+72705,50
+72706,32
+72707,27
+72708,25
+72709,31
+72710,29
+72711,23
+72712,22
+72713,20
+72714,42
+72715,25
+72716,26
+72717,20
+72718,22
+72719,39
+72720,23
+72721,19
+72722,18
+72723,34
+72724,24
+72726,19
+72727,26
+72728,36
+72729,23
+72731,53
+72733,60
+72734,29
+72735,24
+72736,27
+72737,24
+72738,25
+72739,25
+72740,30
+72741,26
+72742,30
+72743,31
+72744,40
+72745,28
+72746,36
+72747,30
+72748,27
+72749,21
+72750,26
+72751,27
+72752,39
+72753,33
+72754,30
+72755,28
+72757,21
+72758,28
+72759,23
+72760,33
+72761,22
+72762,20
+72763,38
+72764,18
+72765,26
+72766,27
+72767,26
+72768,22
+72769,31
+72770,26
+72771,25
+72773,26
+72774,40
+72775,18
+72777,27
+72778,82
+72779,21
+72780,35
+72782,30
+72783,18
+72784,58
+72785,22
+72786,40
+72787,27
+72788,33
+72790,25
+72791,26
+72792,23
+72793,37
+72794,20
+72795,35
+72797,36
+72798,28
+72799,28
+72800,23
+72801,22
+72802,44
+72803,43
+72804,33
+72805,56
+72806,37
+72807,24
+72808,26
+72809,25
+72810,26
+72811,26
+72812,34
+72813,26
+72814,26
+72815,29
+72816,44
+72817,32
+72818,27
+72819,33
+72820,30
+72821,30
+72822,58
+72824,29
+72825,30
+72826,32
+72827,18
+72828,24
+72829,21
+72831,28
+72832,32
+72833,43
+72836,31
+72837,25
+72838,25
+72839,26
+72841,17
+72842,19
+72843,23
+72844,23
+72846,25
+72847,28
+72848,24
+72849,39
+72850,22
+72851,25
+72852,30
+72854,30
+72855,59
+72856,34
+72857,23
+72858,24
+72859,25
+72860,28
+72861,30
+72863,30
+72864,24
+72865,24
+72866,32
+72867,33
+72868,42
+72869,39
+72870,30
+72871,29
+72872,44
+72874,36
+72875,23
+72878,32
+72879,25
+72880,25
+72881,24
+72883,38
+72884,30
+72885,23
+72888,38
+72889,25
+72890,37
+72891,23
+72892,43
+72893,47
+72894,17
+72895,33
+72896,25
+72897,40
+72898,39
+72899,26
+72900,33
+72901,32
+72902,31
+72903,30
+72904,27
+72905,20
+72907,37
+72908,39
+72909,20
+72910,18
+72911,24
+72912,40
+72913,35
+72914,34
+72915,26
+72916,32
+72917,25
+72918,20
+72919,20
+72920,29
+72921,35
+72922,23
+72923,26
+72924,18
+72925,37
+72927,33
+72928,39
+72929,44
+72930,26
+72933,48
+72934,26
+72935,36
+72936,25
+72937,38
+72938,30
+72939,15
+72940,23
+72942,20
+72943,23
+72944,18
+72945,21
+72946,31
+72947,28
+72949,30
+72950,24
+72951,23
+72952,54
+72953,21
+72954,27
+72955,26
+72956,37
+72957,25
+72958,36
+72959,27
+72960,22
+72961,26
+72962,24
+72963,35
+72964,36
+72965,32
+72966,50
+72967,29
+72968,29
+72969,40
+72970,28
+72971,19
+72973,24
+72974,34
+72975,53
+72976,36
+72977,38
+72978,35
+72979,35
+72980,24
+72982,22
+72983,26
+72984,23
+72985,26
+72986,24
+72987,41
+72988,30
+72989,22
+72990,17
+72991,57
+72992,30
+72994,48
+72995,27
+72996,56
+72997,29
+72998,66
+72999,21
+73000,49
+73001,29
+73002,30
+73003,38
+73004,34
+73005,32
+73009,61
+73010,29
+73011,20
+73012,29
+73013,33
+73014,36
+73015,31
+73016,55
+73017,32
+73019,32
+73020,25
+73021,23
+73022,36
+73025,35
+73026,26
+73027,24
+73029,32
+73030,24
+73031,42
+73033,30
+73034,42
+73035,27
+73037,31
+73038,39
+73039,38
+73040,40
+73041,26
+73042,49
+73044,32
+73045,26
+73046,23
+73047,21
+73048,40
+73050,25
+73051,29
+73052,24
+73053,30
+73054,25
+73055,13
+73057,39
+73058,44
+73059,25
+73060,31
+73061,38
+73062,27
+73063,27
+73064,21
+73065,33
+73066,30
+73067,27
+73068,27
+73069,25
+73070,21
+73071,24
+73072,42
+73073,32
+73075,25
+73076,26
+73077,41
+73078,38
+73079,61
+73080,40
+73081,25
+73082,28
+73083,23
+73084,28
+73085,25
+73086,25
+73087,39
+73089,24
+73090,39
+73092,40
+73093,26
+73094,28
+73095,33
+73096,27
+73097,23
+73098,38
+73099,27
+73101,28
+73103,33
+73104,28
+73105,30
+73106,36
+73107,40
+73109,21
+73110,24
+73111,36
+73113,30
+73114,42
+73116,39
+73117,35
+73118,34
+73119,57
+73120,28
+73121,21
+73122,28
+73124,55
+73125,29
+73126,27
+73127,33
+73128,28
+73129,27
+73130,34
+73131,52
+73132,69
+73133,25
+73135,34
+73136,63
+73137,21
+73139,36
+73140,25
+73141,24
+73142,32
+73143,22
+73145,42
+73146,32
+73147,37
+73148,31
+73149,25
+73150,22
+73151,50
+73152,40
+73153,31
+73154,27
+73155,23
+73156,30
+73158,39
+73159,27
+73160,41
+73161,21
+73162,37
+73163,21
+73164,52
+73165,30
+73167,32
+73168,17
+73169,29
+73170,26
+73171,38
+73172,23
+73173,21
+73174,60
+73175,36
+73176,23
+73177,19
+73178,48
+73179,19
+73180,56
+73181,39
+73182,37
+73183,34
+73184,24
+73185,29
+73186,42
+73187,31
+73188,23
+73189,37
+73191,37
+73192,26
+73194,34
+73195,28
+73196,20
+73197,49
+73198,20
+73199,31
+73200,18
+73202,24
+73203,35
+73204,27
+73205,28
+73207,28
+73208,32
+73209,29
+73210,23
+73212,22
+73213,26
+73214,21
+73215,34
+73216,39
+73217,25
+73218,39
+73219,55
+73220,28
+73221,25
+73222,47
+73223,34
+73224,32
+73225,27
+73226,28
+73227,33
+73228,21
+73229,22
+73230,19
+73231,28
+73232,26
+73233,40
+73234,24
+73235,24
+73236,40
+73237,31
+73238,34
+73240,25
+73241,31
+73242,32
+73243,24
+73244,26
+73245,22
+73247,29
+73248,35
+73249,33
+73250,27
+73251,26
+73252,26
+73253,17
+73254,28
+73255,25
+73256,43
+73257,25
+73258,21
+73259,31
+73260,25
+73261,28
+73262,14
+73263,35
+73264,52
+73265,28
+73266,45
+73268,22
+73269,36
+73270,22
+73271,34
+73272,22
+73273,21
+73274,47
+73275,37
+73276,15
+73277,34
+73278,23
+73279,38
+73280,23
+73281,23
+73282,31
+73283,21
+73284,30
+73285,40
+73286,23
+73287,41
+73288,35
+73289,21
+73290,47
+73291,36
+73292,28
+73293,25
+73294,14
+73295,26
+73296,31
+73297,21
+73298,15
+73299,38
+73300,29
+73301,32
+73302,26
+73303,40
+73304,26
+73305,32
+73306,20
+73307,25
+73308,20
+73309,21
+73311,22
+73312,27
+73313,31
+73314,42
+73315,32
+73316,42
+73317,32
+73318,24
+73319,32
+73320,40
+73321,32
+73322,34
+73323,81
+73324,39
+73325,51
+73326,37
+73327,31
+73328,25
+73329,28
+73330,29
+73331,25
+73332,26
+73333,30
+73335,19
+73336,40
+73337,37
+73338,26
+73339,31
+73340,36
+73341,19
+73342,18
+73343,32
+73344,26
+73345,20
+73346,29
+73347,21
+73348,26
+73350,21
+73351,23
+73352,44
+73353,58
+73354,33
+73355,20
+73356,38
+73357,36
+73358,21
+73359,29
+73360,23
+73361,25
+73362,57
+73363,27
+73364,27
+73365,31
+73366,19
+73367,30
+73368,22
+73369,25
+73371,23
+73372,21
+73373,35
+73374,30
+73375,27
+73376,30
+73377,25
+73379,34
+73380,22
+73381,47
+73384,25
+73387,30
+73388,34
+73389,26
+73391,28
+73392,34
+73393,33
+73394,22
+73395,24
+73396,32
+73397,30
+73398,25
+73399,38
+73401,25
+73402,42
+73403,27
+73404,43
+73405,32
+73406,24
+73407,20
+73409,25
+73410,28
+73411,30
+73412,28
+73413,34
+73414,38
+73415,26
+73416,34
+73417,26
+73418,25
+73419,26
+73420,37
+73421,54
+73423,34
+73424,23
+73425,27
+73426,35
+73427,24
+73428,28
+73429,21
+73430,32
+73431,19
+73432,44
+73433,31
+73434,29
+73435,30
+73436,48
+73437,31
+73438,25
+73439,23
+73440,40
+73441,33
+73442,31
+73443,28
+73444,25
+73445,25
+73447,37
+73448,36
+73449,32
+73450,36
+73451,21
+73452,32
+73453,30
+73454,25
+73455,20
+73457,29
+73458,38
+73459,19
+73460,29
+73461,30
+73462,33
+73463,48
+73464,37
+73465,24
+73466,28
+73467,28
+73468,25
+73469,37
+73470,27
+73471,30
+73473,21
+73474,25
+73475,32
+73476,30
+73477,29
+73478,25
+73479,19
+73480,29
+73481,35
+73482,23
+73483,24
+73484,20
+73485,37
+73486,22
+73488,22
+73489,54
+73490,31
+73491,29
+73493,34
+73494,36
+73497,20
+73498,25
+73499,30
+73500,25
+73501,31
+73503,31
+73504,30
+73505,25
+73506,43
+73507,39
+73508,32
+73509,24
+73510,29
+73511,55
+73512,39
+73513,26
+73514,29
+73515,26
+73516,26
+73517,36
+73519,57
+73521,20
+73524,31
+73525,32
+73526,20
+73527,19
+73528,28
+73529,24
+73530,25
+73531,23
+73532,32
+73533,20
+73534,51
+73535,27
+73536,40
+73537,16
+73539,28
+73540,55
+73541,31
+73542,36
+73543,22
+73544,39
+73545,40
+73546,31
+73547,35
+73548,31
+73549,21
+73550,31
+73551,25
+73552,35
+73553,33
+73554,16
+73555,30
+73556,38
+73557,32
+73558,20
+73559,34
+73560,38
+73561,30
+73562,28
+73563,29
+73564,28
+73565,38
+73567,29
+73568,40
+73569,21
+73570,25
+73571,18
+73572,30
+73574,16
+73575,41
+73576,25
+73577,22
+73578,24
+73579,28
+73580,31
+73581,28
+73583,18
+73584,37
+73585,30
+73586,45
+73587,40
+73588,33
+73589,27
+73590,29
+73591,28
+73593,43
+73595,29
+73596,27
+73597,20
+73598,27
+73599,14
+73600,29
+73601,24
+73603,22
+73604,26
+73605,25
+73606,25
+73607,27
+73608,23
+73609,37
+73610,35
+73611,32
+73612,42
+73613,23
+73614,41
+73615,47
+73616,48
+73617,36
+73618,33
+73619,28
+73620,24
+73621,28
+73622,23
+73623,23
+73624,27
+73625,29
+73628,26
+73629,31
+73630,24
+73631,23
+73632,29
+73633,25
+73634,40
+73636,43
+73637,39
+73638,19
+73639,23
+73640,16
+73642,28
+73643,35
+73644,32
+73645,16
+73646,16
+73647,24
+73648,30
+73649,39
+73650,52
+73651,24
+73652,23
+73653,32
+73654,33
+73655,22
+73656,34
+73657,23
+73658,18
+73659,36
+73660,35
+73661,34
+73662,29
+73663,29
+73664,35
+73666,19
+73668,19
+73669,23
+73673,42
+73674,34
+73675,34
+73676,30
+73677,37
+73678,26
+73679,29
+73680,32
+73681,45
+73682,17
+73683,21
+73684,43
+73685,20
+73686,34
+73687,22
+73688,30
+73689,28
+73690,15
+73691,22
+73692,22
+73693,22
+73696,22
+73697,42
+73698,31
+73699,23
+73700,24
+73701,42
+73702,26
+73703,28
+73704,34
+73705,61
+73707,34
+73709,24
+73710,23
+73711,30
+73712,25
+73713,31
+73714,34
+73715,39
+73716,22
+73717,25
+73718,58
+73719,33
+73720,25
+73721,62
+73722,25
+73723,19
+73724,24
+73725,25
+73726,27
+73727,32
+73728,25
+73730,37
+73732,26
+73733,30
+73734,33
+73735,42
+73736,40
+73737,30
+73738,20
+73740,24
+73741,32
+73742,32
+73743,36
+73744,24
+73746,42
+73748,23
+73749,51
+73750,17
+73751,26
+73752,22
+73753,32
+73754,56
+73755,40
+73756,42
+73757,28
+73759,28
+73760,37
+73761,41
+73762,23
+73763,38
+73764,26
+73765,60
+73766,17
+73768,37
+73769,31
+73770,31
+73771,25
+73772,25
+73773,54
+73774,50
+73775,25
+73776,43
+73777,31
+73778,30
+73780,23
+73781,20
+73782,24
+73783,23
+73784,23
+73785,22
+73786,27
+73787,53
+73788,54
+73789,30
+73790,40
+73791,42
+73792,25
+73793,25
+73795,50
+73796,27
+73797,36
+73798,34
+73800,23
+73801,28
+73802,28
+73803,32
+73804,33
+73805,25
+73806,20
+73807,27
+73808,20
+73809,22
+73810,29
+73811,23
+73814,62
+73815,24
+73816,38
+73817,34
+73818,29
+73819,27
+73820,19
+73823,38
+73824,29
+73825,34
+73826,21
+73827,28
+73828,46
+73829,48
+73830,31
+73831,29
+73832,34
+73833,24
+73834,28
+73835,38
+73836,26
+73837,27
+73838,24
+73839,27
+73840,40
+73841,26
+73843,36
+73844,25
+73845,22
+73846,21
+73847,29
+73848,26
+73849,32
+73850,30
+73851,26
+73852,25
+73853,38
+73854,32
+73855,35
+73856,23
+73857,22
+73858,28
+73859,30
+73860,20
+73861,24
+73862,36
+73863,27
+73865,53
+73866,22
+73867,25
+73868,42
+73869,31
+73870,26
+73871,40
+73872,26
+73873,31
+73874,25
+73875,25
+73876,30
+73877,31
+73878,20
+73879,36
+73880,27
+73881,30
+73883,43
+73884,27
+73885,31
+73886,25
+73887,36
+73888,30
+73889,20
+73890,26
+73891,32
+73893,28
+73894,32
+73895,24
+73896,24
+73897,27
+73898,31
+73900,25
+73901,30
+73902,22
+73903,36
+73904,30
+73905,18
+73906,26
+73907,39
+73908,31
+73909,29
+73910,21
+73911,30
+73912,29
+73913,56
+73914,32
+73915,27
+73916,29
+73917,26
+73918,29
+73920,28
+73922,34
+73923,23
+73924,32
+73925,29
+73926,41
+73927,36
+73928,37
+73929,13
+73930,45
+73931,27
+73932,35
+73933,28
+73934,19
+73935,33
+73936,30
+73937,27
+73938,32
+73939,24
+73940,37
+73941,41
+73942,21
+73943,47
+73945,31
+73946,27
+73947,26
+73948,38
+73949,35
+73950,22
+73951,46
+73952,50
+73953,42
+73954,24
+73955,30
+73957,42
+73959,30
+73960,24
+73961,25
+73962,34
+73963,33
+73964,18
+73965,31
+73966,29
+73967,47
+73968,30
+73969,41
+73970,25
+73972,29
+73973,32
+73974,30
+73975,28
+73976,24
+73977,31
+73978,34
+73979,39
+73980,16
+73981,29
+73982,36
+73983,25
+73984,25
+73985,31
+73986,23
+73987,27
+73988,25
+73989,24
+73990,37
+73991,29
+73993,26
+73994,29
+73995,36
+73996,30
+73997,24
+73998,29
+73999,20
+74000,36
+74001,24
+74002,27
+74003,31
+74004,30
+74007,35
+74008,26
+74009,19
+74010,53
+74011,27
+74012,25
+74013,24
+74014,24
+74015,24
+74016,25
+74017,39
+74018,24
+74019,35
+74021,43
+74022,24
+74023,30
+74024,31
+74025,32
+74026,23
+74027,24
+74028,20
+74029,58
+74030,24
+74031,26
+74032,40
+74033,29
+74034,17
+74035,40
+74036,28
+74037,29
+74038,35
+74039,34
+74040,35
+74041,51
+74042,30
+74043,25
+74044,30
+74045,39
+74046,38
+74047,26
+74048,40
+74049,38
+74050,19
+74051,25
+74053,41
+74055,36
+74056,23
+74057,29
+74058,38
+74059,53
+74061,18
+74062,34
+74063,34
+74064,35
+74065,32
+74067,35
+74068,24
+74069,21
+74070,24
+74071,31
+74072,33
+74074,26
+74075,33
+74076,33
+74077,38
+74078,29
+74079,23
+74080,27
+74081,20
+74082,16
+74084,23
+74086,37
+74087,49
+74088,28
+74089,43
+74090,25
+74091,32
+74092,41
+74093,42
+74094,19
+74095,21
+74096,22
+74097,25
+74098,29
+74099,23
+74100,48
+74101,32
+74102,28
+74103,31
+74104,29
+74106,27
+74107,69
+74108,36
+74109,17
+74111,26
+74112,26
+74113,35
+74115,31
+74116,37
+74117,22
+74118,42
+74120,29
+74121,25
+74122,25
+74124,40
+74125,32
+74126,32
+74127,23
+74128,26
+74129,24
+74132,15
+74133,42
+74134,19
+74135,24
+74136,52
+74137,27
+74138,29
+74139,31
+74140,33
+74141,23
+74144,29
+74145,23
+74146,24
+74147,29
+74148,25
+74149,36
+74151,40
+74152,27
+74153,32
+74154,27
+74155,17
+74156,23
+74158,33
+74159,37
+74160,24
+74161,37
+74162,24
+74163,37
+74164,55
+74165,19
+74166,25
+74167,25
+74168,23
+74169,56
+74170,29
+74171,46
+74173,56
+74174,64
+74175,24
+74176,29
+74177,32
+74178,23
+74179,28
+74181,30
+74182,25
+74183,26
+74184,20
+74185,31
+74187,22
+74188,38
+74189,29
+74192,35
+74193,28
+74194,24
+74196,32
+74197,23
+74199,29
+74200,20
+74201,39
+74202,22
+74203,26
+74204,23
+74205,13
+74207,39
+74208,31
+74209,23
+74210,28
+74211,16
+74212,22
+74213,31
+74214,41
+74215,28
+74216,39
+74217,36
+74219,24
+74220,41
+74221,29
+74222,34
+74223,31
+74224,23
+74225,26
+74226,22
+74227,32
+74228,14
+74229,25
+74230,26
+74231,38
+74232,28
+74234,30
+74235,25
+74236,23
+74237,30
+74238,33
+74242,30
+74243,76
+74244,16
+74246,16
+74247,45
+74248,34
+74249,34
+74250,32
+74251,25
+74252,31
+74253,22
+74254,24
+74255,31
+74256,25
+74257,27
+74258,33
+74259,64
+74260,28
+74261,29
+74262,26
+74263,18
+74264,25
+74266,29
+74267,36
+74268,24
+74269,21
+74270,33
+74271,32
+74272,33
+74273,39
+74274,20
+74275,37
+74277,36
+74278,40
+74279,51
+74280,31
+74281,25
+74282,29
+74283,37
+74284,21
+74285,31
+74286,46
+74287,35
+74288,31
+74289,29
+74290,26
+74291,24
+74292,38
+74293,23
+74294,28
+74295,29
+74296,31
+74298,29
+74299,25
+74300,22
+74301,28
+74302,15
+74303,25
+74304,30
+74305,24
+74306,63
+74307,30
+74308,45
+74309,22
+74310,23
+74311,38
+74312,46
+74313,36
+74314,24
+74315,22
+74316,24
+74317,29
+74318,20
+74320,29
+74321,25
+74322,42
+74323,19
+74324,29
+74325,33
+74326,30
+74327,30
+74328,25
+74329,32
+74330,24
+74331,18
+74332,25
+74333,34
+74334,55
+74335,40
+74336,37
+74337,42
+74338,42
+74339,32
+74340,21
+74341,21
+74342,25
+74343,39
+74346,27
+74347,37
+74348,36
+74350,27
+74351,39
+74352,24
+74353,30
+74354,50
+74355,38
+74356,29
+74357,23
+74358,39
+74359,24
+74360,18
+74361,23
+74362,30
+74363,32
+74364,22
+74365,45
+74366,31
+74367,33
+74368,22
+74369,22
+74370,23
+74371,23
+74372,26
+74373,23
+74374,30
+74375,29
+74376,23
+74377,28
+74378,37
+74379,29
+74380,25
+74381,26
+74382,27
+74383,26
+74384,28
+74385,46
+74386,23
+74387,39
+74388,40
+74389,24
+74391,28
+74392,31
+74393,30
+74394,40
+74395,62
+74396,35
+74397,30
+74398,38
+74399,22
+74400,24
+74401,24
+74402,30
+74403,21
+74405,25
+74406,26
+74407,34
+74408,34
+74409,22
+74410,32
+74411,17
+74412,30
+74413,28
+74417,21
+74420,24
+74421,28
+74422,21
+74423,33
+74424,21
+74425,24
+74426,32
+74427,22
+74428,32
+74429,29
+74430,33
+74431,46
+74432,31
+74433,46
+74434,24
+74435,24
+74436,27
+74437,32
+74438,22
+74439,23
+74440,27
+74441,26
+74442,51
+74443,27
+74444,29
+74445,23
+74446,24
+74447,19
+74448,22
+74449,19
+74450,51
+74451,22
+74452,25
+74453,37
+74454,52
+74455,18
+74456,22
+74457,30
+74458,33
+74459,19
+74460,23
+74461,21
+74462,49
+74463,23
+74464,55
+74466,55
+74467,20
+74468,22
+74470,30
+74471,43
+74473,25
+74474,42
+74475,20
+74476,34
+74477,29
+74478,27
+74479,21
+74480,35
+74482,23
+74483,24
+74484,25
+74485,24
+74486,33
+74487,25
+74488,28
+74489,28
+74490,28
+74491,22
+74492,22
+74493,31
+74494,35
+74495,27
+74497,29
+74498,30
+74499,21
+74500,43
+74501,43
+74502,26
+74503,32
+74504,30
+74505,57
+74506,30
+74507,41
+74508,35
+74509,28
+74510,32
+74511,25
+74512,35
+74514,29
+74515,36
+74516,25
+74517,19
+74518,29
+74520,31
+74521,36
+74522,29
+74523,30
+74525,23
+74526,23
+74527,28
+74528,29
+74529,23
+74530,27
+74532,21
+74534,56
+74535,37
+74536,29
+74537,32
+74539,31
+74540,18
+74542,28
+74544,27
+74545,19
+74546,21
+74547,29
+74548,21
+74549,19
+74550,41
+74551,48
+74552,40
+74553,26
+74555,32
+74556,30
+74557,30
+74558,45
+74559,25
+74560,34
+74561,47
+74562,23
+74563,39
+74564,43
+74565,44
+74566,29
+74567,31
+74568,55
+74569,41
+74570,35
+74571,25
+74572,31
+74573,27
+74574,26
+74575,27
+74576,34
+74577,27
+74578,22
+74579,20
+74580,21
+74581,29
+74583,28
+74584,28
+74585,25
+74586,21
+74588,20
+74589,34
+74590,30
+74592,32
+74593,35
+74596,50
+74597,27
+74598,28
+74599,56
+74600,27
+74601,36
+74602,39
+74603,26
+74604,55
+74605,29
+74606,42
+74607,21
+74608,18
+74609,47
+74610,16
+74611,30
+74612,35
+74613,26
+74615,24
+74616,28
+74617,29
+74618,38
+74619,24
+74620,41
+74621,34
+74622,23
+74623,24
+74624,38
+74625,23
+74626,33
+74627,34
+74628,41
+74630,22
+74631,38
+74632,26
+74634,23
+74635,46
+74636,32
+74637,21
+74639,25
+74640,42
+74641,29
+74642,38
+74643,18
+74644,33
+74645,19
+74646,45
+74647,30
+74648,43
+74649,30
+74650,19
+74651,28
+74652,39
+74653,16
+74654,21
+74655,45
+74657,31
+74658,23
+74659,23
+74660,33
+74661,55
+74662,25
+74663,29
+74664,20
+74665,19
+74666,42
+74667,45
+74668,29
+74669,35
+74670,13
+74671,26
+74672,21
+74673,23
+74674,26
+74675,35
+74676,21
+74677,26
+74679,35
+74680,26
+74681,47
+74682,40
+74683,35
+74684,19
+74686,20
+74687,48
+74688,33
+74689,23
+74690,41
+74691,24
+74692,23
+74693,15
+74694,17
+74695,25
+74696,31
+74697,17
+74698,24
+74699,30
+74700,25
+74701,36
+74702,20
+74703,27
+74704,20
+74705,28
+74706,19
+74707,26
+74708,23
+74709,21
+74710,49
+74711,19
+74712,44
+74713,36
+74714,27
+74715,27
+74716,26
+74717,34
+74718,25
+74719,43
+74720,29
+74721,26
+74722,28
+74723,19
+74724,25
+74725,31
+74727,57
+74729,25
+74730,30
+74731,26
+74732,30
+74733,47
+74734,24
+74735,36
+74736,29
+74737,18
+74738,41
+74739,18
+74740,25
+74741,32
+74742,39
+74744,32
+74745,25
+74746,27
+74747,32
+74748,31
+74749,23
+74750,36
+74751,25
+74753,41
+74754,29
+74755,27
+74756,21
+74757,20
+74758,30
+74759,39
+74760,24
+74761,29
+74762,22
+74763,28
+74764,18
+74765,25
+74766,30
+74767,35
+74768,31
+74769,29
+74770,23
+74771,25
+74772,22
+74774,29
+74775,27
+74777,23
+74778,42
+74779,31
+74780,24
+74781,35
+74782,19
+74783,23
+74784,39
+74785,28
+74786,20
+74787,26
+74788,25
+74789,40
+74790,21
+74791,21
+74792,21
+74793,32
+74794,42
+74795,27
+74796,33
+74797,27
+74798,23
+74799,24
+74800,23
+74801,44
+74802,23
+74804,33
+74805,25
+74806,23
+74807,37
+74808,30
+74809,37
+74810,31
+74811,27
+74812,23
+74814,37
+74815,62
+74816,21
+74817,35
+74818,44
+74819,22
+74820,25
+74821,30
+74822,33
+74823,19
+74824,26
+74825,33
+74826,30
+74827,23
+74828,27
+74829,31
+74830,30
+74831,44
+74832,26
+74833,21
+74834,32
+74835,28
+74838,32
+74839,33
+74840,29
+74841,34
+74842,36
+74843,51
+74844,29
+74845,30
+74846,40
+74847,34
+74848,28
+74849,25
+74850,37
+74851,33
+74852,24
+74853,62
+74854,20
+74856,45
+74857,24
+74858,69
+74859,22
+74860,12
+74861,40
+74862,20
+74863,29
+74864,47
+74865,28
+74866,25
+74867,25
+74869,37
+74871,47
+74872,32
+74873,37
+74874,28
+74875,19
+74876,30
+74877,34
+74878,24
+74879,20
+74880,22
+74881,55
+74882,40
+74884,30
+74885,41
+74886,18
+74887,28
+74888,34
+74889,38
+74890,38
+74891,24
+74892,24
+74893,24
+74894,18
+74895,31
+74898,30
+74899,24
+74900,31
+74901,26
+74902,37
+74903,33
+74904,28
+74905,24
+74907,32
+74908,26
+74909,33
+74910,28
+74911,36
+74912,24
+74913,35
+74914,45
+74915,29
+74916,37
+74917,25
+74918,36
+74919,37
+74920,20
+74921,20
+74922,37
+74923,36
+74924,25
+74926,22
+74927,26
+74929,23
+74930,40
+74932,37
+74933,50
+74935,44
+74936,26
+74937,35
+74939,24
+74940,37
+74941,42
+74942,22
+74943,24
+74944,27
+74945,26
+74946,17
+74947,29
+74948,29
+74949,28
+74950,42
+74951,32
+74952,28
+74953,26
+74954,24
+74956,22
+74957,29
+74958,35
+74959,24
+74960,21
+74962,40
+74963,50
+74964,28
+74965,36
+74967,25
+74968,43
+74969,31
+74970,28
+74971,26
+74973,36
+74975,34
+74977,25
+74979,33
+74980,24
+74981,21
+74982,19
+74983,52
+74984,26
+74985,22
+74986,43
+74987,22
+74988,32
+74989,25
+74990,22
+74991,31
+74992,22
+74993,36
+74994,30
+74995,21
+74996,34
+74997,34
+74998,32
+74999,23
+75000,25
+75001,25
+75002,32
+75003,25
+75004,44
+75005,29
+75006,29
+75007,47
+75008,33
+75009,21
+75010,26
+75011,36
+75012,39
+75013,42
+75014,35
+75015,29
+75016,27
+75018,23
+75019,32
+75020,35
+75022,25
+75023,30
+75025,23
+75026,27
+75027,25
+75028,23
+75031,20
+75032,30
+75033,35
+75034,22
+75035,45
+75036,20
+75037,26
+75038,28
+75039,36
+75040,29
+75041,22
+75042,24
+75043,35
+75044,23
+75045,32
+75047,30
+75048,27
+75049,27
+75050,29
+75051,23
+75052,46
+75053,19
+75054,32
+75055,55
+75056,27
+75058,32
+75059,42
+75060,53
+75061,30
+75062,24
+75064,14
+75065,36
+75066,24
+75067,27
+75068,39
+75069,33
+75070,24
+75071,22
+75072,16
+75073,38
+75074,25
+75075,30
+75076,42
+75077,29
+75078,36
+75079,30
+75080,27
+75081,49
+75082,27
+75083,32
+75084,27
+75086,33
+75089,25
+75090,41
+75091,19
+75092,28
+75093,21
+75094,35
+75096,29
+75097,29
+75098,34
+75099,31
+75100,28
+75101,33
+75102,49
+75104,24
+75105,27
+75106,37
+75107,30
+75108,31
+75109,22
+75110,18
+75111,24
+75112,26
+75113,39
+75114,27
+75116,23
+75117,22
+75118,37
+75119,21
+75120,38
+75121,23
+75122,59
+75123,30
+75124,38
+75126,30
+75127,34
+75128,40
+75129,30
+75130,26
+75131,20
+75132,26
+75133,29
+75134,40
+75135,19
+75137,24
+75138,24
+75140,20
+75141,38
+75142,29
+75143,25
+75144,26
+75145,23
+75146,21
+75147,33
+75148,25
+75149,30
+75150,14
+75151,54
+75153,34
+75155,26
+75156,31
+75157,18
+75158,22
+75159,35
+75160,29
+75161,26
+75162,15
+75163,43
+75164,21
+75165,40
+75166,28
+75167,18
+75169,24
+75170,25
+75171,28
+75172,23
+75173,25
+75174,25
+75175,27
+75176,14
+75177,18
+75178,26
+75179,44
+75180,29
+75181,33
+75183,24
+75185,23
+75186,23
+75187,29
+75188,34
+75189,31
+75190,40
+75191,25
+75193,33
+75194,18
+75195,24
+75196,49
+75197,30
+75198,31
+75199,31
+75200,35
+75201,33
+75202,21
+75203,38
+75204,28
+75205,55
+75206,16
+75207,29
+75208,27
+75209,27
+75210,47
+75211,35
+75212,23
+75214,37
+75215,33
+75216,30
+75217,23
+75218,22
+75219,18
+75220,19
+75221,21
+75222,26
+75223,59
+75224,35
+75226,29
+75227,17
+75228,26
+75229,22
+75230,31
+75231,46
+75232,29
+75233,36
+75234,45
+75235,39
+75236,65
+75237,27
+75238,18
+75239,30
+75240,32
+75241,33
+75242,28
+75243,29
+75245,26
+75246,23
+75247,38
+75248,37
+75249,21
+75250,29
+75251,26
+75252,28
+75253,34
+75254,26
+75255,43
+75256,24
+75257,26
+75258,30
+75261,35
+75262,23
+75263,34
+75264,22
+75265,21
+75266,29
+75267,36
+75268,33
+75269,38
+75270,25
+75272,37
+75273,35
+75274,46
+75276,29
+75277,32
+75278,33
+75279,31
+75280,25
+75281,27
+75282,25
+75283,24
+75284,31
+75285,33
+75286,26
+75287,37
+75288,47
+75289,25
+75290,30
+75291,49
+75292,28
+75293,17
+75294,29
+75295,21
+75296,20
+75297,36
+75298,38
+75299,36
+75301,29
+75302,24
+75303,35
+75304,23
+75305,22
+75306,33
+75307,24
+75308,39
+75310,36
+75311,38
+75312,25
+75313,45
+75315,23
+75316,26
+75317,28
+75319,35
+75320,27
+75321,37
+75322,27
+75323,35
+75324,60
+75325,23
+75326,26
+75327,21
+75328,29
+75329,17
+75330,22
+75331,39
+75332,21
+75333,22
+75334,35
+75335,27
+75336,18
+75337,32
+75338,17
+75339,33
+75340,21
+75342,30
+75343,26
+75344,25
+75345,25
+75346,25
+75348,27
+75349,37
+75350,30
+75351,42
+75352,24
+75353,40
+75354,26
+75355,15
+75356,16
+75357,30
+75358,26
+75359,24
+75360,18
+75361,22
+75362,28
+75364,23
+75365,16
+75366,35
+75368,27
+75369,24
+75370,35
+75371,38
+75372,33
+75373,27
+75374,40
+75375,28
+75376,31
+75377,24
+75378,22
+75379,41
+75380,31
+75381,28
+75382,28
+75383,19
+75384,19
+75385,23
+75387,58
+75388,29
+75389,44
+75390,46
+75391,19
+75392,26
+75393,23
+75394,16
+75395,30
+75396,32
+75397,37
+75398,29
+75399,30
+75400,23
+75401,29
+75403,39
+75405,29
+75406,34
+75407,19
+75408,35
+75409,33
+75410,60
+75411,32
+75413,23
+75415,28
+75416,29
+75417,33
+75419,39
+75421,34
+75422,25
+75423,31
+75424,30
+75425,33
+75427,35
+75428,27
+75429,32
+75431,24
+75432,36
+75433,25
+75434,29
+75435,26
+75436,31
+75438,34
+75439,34
+75440,12
+75441,38
+75442,34
+75443,21
+75444,48
+75446,27
+75447,55
+75448,27
+75449,37
+75450,29
+75451,26
+75452,19
+75453,34
+75454,33
+75456,30
+75458,31
+75460,32
+75461,30
+75462,23
+75463,39
+75464,31
+75465,15
+75467,25
+75468,28
+75469,26
+75470,30
+75471,46
+75472,33
+75473,33
+75474,32
+75475,28
+75477,23
+75478,34
+75479,29
+75480,29
+75481,38
+75482,43
+75484,23
+75485,43
+75486,36
+75487,30
+75488,39
+75489,27
+75490,27
+75491,36
+75493,43
+75494,22
+75495,29
+75497,33
+75498,34
+75499,19
+75500,20
+75501,17
+75502,23
+75503,23
+75504,23
+75505,48
+75507,29
+75508,24
+75509,24
+75510,28
+75511,30
+75512,33
+75513,33
+75514,36
+75515,19
+75516,25
+75517,28
+75518,30
+75521,24
+75522,26
+75523,27
+75524,35
+75525,33
+75526,22
+75527,30
+75528,27
+75529,25
+75531,28
+75532,30
+75533,31
+75534,28
+75535,27
+75536,37
+75537,23
+75538,24
+75539,23
+75540,30
+75541,33
+75542,29
+75543,40
+75544,28
+75545,62
+75546,24
+75547,24
+75548,30
+75549,29
+75550,37
+75552,30
+75553,42
+75554,19
+75555,35
+75556,27
+75558,31
+75559,25
+75560,27
+75561,37
+75563,25
+75564,33
+75565,29
+75566,23
+75567,18
+75568,31
+75569,35
+75570,31
+75571,49
+75572,39
+75573,33
+75574,40
+75575,18
+75576,35
+75578,30
+75579,25
+75580,27
+75581,24
+75582,19
+75583,38
+75584,50
+75586,62
+75587,33
+75588,48
+75589,31
+75590,25
+75592,23
+75593,17
+75594,24
+75595,26
+75596,36
+75598,26
+75599,35
+75602,22
+75604,32
+75605,26
+75606,32
+75608,27
+75609,29
+75610,40
+75611,24
+75612,26
+75613,34
+75614,33
+75615,29
+75616,27
+75617,36
+75618,21
+75619,40
+75620,18
+75621,30
+75622,19
+75623,14
+75625,31
+75626,24
+75629,24
+75631,31
+75632,32
+75633,24
+75634,36
+75635,32
+75636,28
+75639,30
+75640,31
+75641,22
+75642,29
+75643,43
+75644,51
+75645,29
+75646,27
+75647,21
+75648,23
+75649,52
+75650,28
+75653,52
+75654,24
+75655,46
+75656,26
+75657,27
+75659,39
+75661,24
+75662,33
+75663,28
+75664,37
+75665,31
+75666,23
+75667,39
+75668,44
+75669,38
+75671,31
+75672,43
+75673,29
+75674,32
+75676,22
+75677,27
+75679,18
+75680,36
+75681,31
+75682,26
+75683,25
+75684,27
+75685,21
+75686,22
+75688,18
+75689,38
+75690,24
+75691,28
+75693,21
+75694,41
+75695,31
+75697,22
+75698,37
+75699,37
+75701,25
+75702,25
+75703,27
+75704,23
+75706,30
+75707,33
+75709,26
+75711,37
+75713,30
+75714,27
+75716,36
+75717,25
+75718,46
+75720,42
+75721,33
+75722,15
+75723,35
+75724,21
+75725,20
+75726,45
+75727,21
+75728,28
+75729,25
+75730,28
+75731,25
+75732,28
+75734,23
+75735,19
+75736,26
+75737,32
+75739,29
+75740,26
+75741,34
+75742,36
+75743,28
+75744,25
+75745,30
+75746,29
+75747,28
+75748,42
+75750,43
+75753,28
+75754,32
+75755,25
+75756,25
+75758,36
+75759,23
+75760,35
+75761,43
+75762,27
+75763,27
+75764,58
+75765,44
+75767,35
+75768,43
+75769,32
+75770,19
+75771,43
+75772,23
+75773,34
+75774,35
+75775,25
+75776,36
+75777,42
+75778,36
+75779,29
+75780,27
+75781,24
+75782,26
+75783,25
+75784,41
+75785,35
+75786,31
+75787,22
+75788,47
+75789,29
+75790,20
+75791,30
+75792,22
+75793,21
+75794,29
+75795,24
+75796,56
+75797,27
+75798,28
+75799,23
+75800,27
+75801,29
+75802,30
+75803,35
+75806,35
+75807,20
+75808,25
+75809,33
+75810,22
+75811,22
+75812,40
+75813,31
+75814,30
+75815,54
+75816,38
+75817,31
+75818,26
+75819,24
+75821,19
+75822,15
+75823,25
+75824,19
+75825,22
+75828,29
+75830,24
+75831,45
+75832,47
+75833,41
+75834,33
+75835,24
+75837,28
+75838,46
+75839,27
+75840,38
+75841,37
+75843,29
+75845,25
+75846,23
+75847,40
+75849,23
+75850,23
+75852,21
+75853,39
+75854,27
+75855,23
+75856,98
+75857,30
+75858,30
+75859,25
+75860,33
+75861,29
+75862,17
+75863,22
+75864,17
+75865,33
+75866,52
+75867,32
+75868,27
+75869,34
+75870,35
+75871,34
+75872,20
+75873,24
+75874,27
+75875,30
+75876,42
+75877,24
+75878,36
+75879,27
+75880,29
+75881,30
+75882,38
+75883,22
+75884,38
+75885,30
+75886,27
+75887,26
+75889,23
+75890,37
+75891,54
+75892,38
+75893,26
+75894,27
+75895,17
+75896,37
+75897,20
+75898,29
+75899,30
+75900,37
+75901,26
+75902,27
+75903,22
+75905,20
+75906,25
+75907,38
+75908,50
+75909,40
+75910,31
+75911,42
+75912,31
+75915,49
+75916,55
+75917,44
+75918,34
+75919,38
+75920,41
+75921,27
+75922,29
+75924,33
+75925,37
+75926,21
+75928,30
+75929,41
+75930,32
+75931,45
+75932,28
+75933,23
+75934,30
+75935,29
+75936,39
+75937,32
+75938,32
+75939,35
+75940,17
+75942,23
+75943,53
+75944,34
+75945,27
+75946,27
+75947,28
+75948,25
+75949,28
+75950,23
+75951,28
+75952,20
+75953,24
+75954,27
+75955,28
+75956,28
+75957,21
+75959,18
+75960,36
+75961,43
+75962,32
+75963,29
+75964,27
+75965,59
+75966,24
+75967,37
+75968,59
+75969,36
+75970,23
+75971,31
+75972,28
+75973,24
+75976,36
+75977,30
+75978,30
+75979,27
+75980,36
+75981,23
+75982,24
+75983,28
+75985,17
+75986,40
+75987,22
+75988,19
+75989,38
+75991,21
+75992,39
+75993,21
+75994,34
+75995,32
+75996,29
+75997,25
+75998,28
+75999,26
+76000,39
+76001,45
+76002,24
+76003,41
+76004,22
+76005,31
+76006,28
+76007,39
+76008,27
+76009,21
+76010,20
+76011,38
+76012,32
+76015,24
+76016,25
+76017,29
+76018,43
+76019,30
+76020,52
+76021,20
+76022,41
+76023,32
+76024,32
+76025,22
+76026,21
+76027,28
+76028,40
+76029,29
+76030,25
+76031,34
+76032,28
+76033,17
+76034,35
+76035,23
+76036,26
+76037,36
+76038,33
+76039,45
+76040,37
+76041,30
+76042,25
+76043,35
+76044,37
+76045,22
+76046,27
+76047,29
+76048,62
+76049,24
+76050,34
+76051,21
+76052,30
+76053,28
+76054,29
+76055,25
+76057,58
+76058,25
+76059,19
+76060,17
+76061,38
+76062,28
+76063,23
+76064,32
+76065,27
+76066,16
+76067,22
+76068,32
+76069,38
+76071,18
+76072,34
+76073,28
+76074,34
+76075,28
+76077,33
+76078,25
+76079,20
+76080,23
+76082,25
+76083,40
+76084,23
+76085,26
+76086,32
+76087,34
+76090,30
+76091,42
+76092,31
+76093,29
+76094,28
+76096,45
+76097,33
+76098,21
+76100,41
+76101,45
+76103,25
+76104,24
+76105,27
+76106,33
+76107,35
+76108,49
+76109,37
+76112,25
+76113,14
+76114,31
+76115,40
+76116,44
+76117,29
+76118,31
+76119,24
+76121,24
+76122,23
+76123,26
+76124,59
+76126,23
+76127,20
+76128,49
+76129,48
+76130,29
+76131,34
+76132,25
+76133,16
+76134,21
+76136,30
+76137,34
+76138,18
+76139,19
+76140,21
+76141,36
+76142,27
+76143,31
+76144,28
+76145,41
+76146,40
+76147,38
+76148,45
+76149,33
+76150,29
+76151,36
+76152,22
+76153,20
+76154,35
+76155,39
+76156,20
+76157,24
+76158,23
+76160,23
+76161,28
+76162,41
+76163,56
+76164,25
+76166,35
+76167,22
+76168,28
+76169,35
+76170,26
+76171,28
+76173,36
+76174,60
+76178,24
+76179,22
+76180,34
+76181,31
+76182,29
+76183,27
+76186,21
+76188,29
+76189,24
+76190,22
+76191,24
+76192,24
+76193,22
+76194,31
+76195,28
+76196,51
+76198,27
+76199,21
+76200,37
+76202,29
+76203,29
+76204,25
+76205,34
+76206,33
+76208,35
+76209,29
+76210,33
+76211,38
+76212,31
+76214,18
+76215,23
+76216,22
+76217,20
+76218,28
+76219,19
+76220,13
+76221,37
+76222,23
+76223,32
+76224,32
+76225,40
+76226,29
+76228,24
+76229,27
+76230,28
+76231,16
+76232,26
+76233,32
+76235,56
+76236,28
+76237,19
+76238,36
+76239,27
+76240,30
+76241,28
+76242,25
+76243,28
+76244,24
+76245,27
+76246,28
+76247,38
+76248,29
+76250,25
+76251,43
+76252,18
+76253,23
+76254,42
+76255,25
+76256,23
+76257,19
+76258,23
+76259,23
+76260,24
+76261,43
+76262,29
+76263,26
+76264,24
+76265,36
+76266,32
+76267,28
+76268,36
+76270,21
+76272,42
+76273,44
+76274,33
+76275,18
+76276,28
+76277,24
+76278,29
+76279,26
+76280,27
+76281,27
+76282,22
+76285,24
+76286,30
+76287,21
+76288,22
+76289,32
+76290,25
+76291,37
+76292,27
+76293,27
+76295,35
+76297,30
+76298,24
+76300,21
+76302,36
+76303,34
+76304,27
+76305,24
+76306,23
+76307,48
+76308,18
+76309,35
+76310,39
+76311,30
+76312,22
+76313,37
+76314,35
+76315,38
+76317,24
+76318,30
+76319,33
+76320,26
+76321,45
+76322,17
+76323,19
+76324,26
+76325,17
+76326,22
+76327,47
+76328,22
+76329,22
+76330,29
+76332,23
+76333,28
+76334,22
+76335,22
+76336,23
+76337,28
+76338,31
+76339,26
+76340,28
+76341,52
+76342,42
+76343,33
+76344,35
+76345,36
+76347,41
+76348,31
+76349,44
+76350,30
+76351,25
+76353,21
+76354,34
+76355,23
+76356,18
+76357,22
+76359,28
+76361,21
+76362,25
+76363,45
+76364,19
+76365,28
+76366,22
+76368,29
+76369,24
+76370,32
+76371,37
+76372,25
+76373,31
+76374,23
+76376,23
+76377,27
+76378,26
+76379,39
+76380,32
+76381,42
+76383,34
+76384,28
+76385,48
+76386,23
+76387,27
+76388,21
+76389,25
+76390,27
+76391,31
+76392,23
+76394,33
+76395,20
+76396,20
+76397,38
+76398,23
+76399,27
+76401,21
+76402,25
+76403,55
+76404,28
+76405,27
+76406,27
+76407,31
+76408,31
+76410,21
+76411,17
+76412,27
+76413,27
+76414,25
+76415,32
+76416,31
+76417,30
+76418,38
+76419,35
+76420,18
+76421,28
+76422,29
+76426,15
+76427,32
+76428,31
+76429,49
+76431,32
+76432,26
+76434,23
+76435,38
+76436,34
+76437,36
+76438,42
+76439,23
+76440,32
+76441,31
+76442,22
+76443,26
+76445,36
+76446,20
+76447,31
+76448,22
+76449,30
+76450,16
+76451,28
+76452,27
+76453,28
+76454,59
+76455,31
+76456,14
+76458,38
+76459,17
+76460,27
+76461,36
+76463,41
+76464,23
+76465,21
+76466,42
+76467,31
+76468,27
+76469,21
+76470,21
+76471,27
+76472,38
+76473,38
+76474,25
+76475,21
+76476,24
+76477,19
+76478,24
+76479,26
+76481,38
+76482,18
+76483,27
+76484,41
+76485,46
+76486,30
+76487,31
+76488,23
+76489,20
+76490,40
+76492,16
+76493,34
+76494,49
+76495,31
+76496,27
+76497,19
+76498,30
+76499,46
+76500,22
+76501,28
+76502,33
+76503,34
+76504,25
+76506,29
+76507,34
+76508,19
+76509,29
+76511,40
+76512,25
+76513,28
+76514,40
+76516,32
+76518,25
+76519,26
+76521,33
+76522,28
+76523,27
+76524,24
+76525,20
+76526,27
+76527,29
+76528,39
+76530,28
+76531,18
+76532,27
+76533,22
+76535,28
+76536,23
+76537,28
+76538,52
+76539,41
+76540,22
+76541,39
+76543,20
+76544,24
+76545,21
+76546,27
+76547,23
+76549,23
+76550,22
+76551,29
+76553,41
+76554,27
+76555,30
+76556,28
+76557,32
+76558,31
+76559,29
+76560,32
+76561,37
+76562,37
+76563,37
+76564,22
+76565,25
+76568,26
+76569,32
+76570,26
+76571,26
+76572,41
+76573,36
+76574,19
+76575,58
+76576,20
+76577,40
+76578,27
+76579,31
+76580,39
+76581,22
+76582,25
+76584,50
+76585,33
+76586,30
+76587,27
+76588,22
+76589,25
+76590,52
+76591,31
+76592,22
+76593,26
+76594,33
+76595,26
+76596,30
+76597,26
+76598,17
+76599,32
+76600,36
+76601,23
+76602,17
+76603,26
+76604,28
+76605,22
+76606,22
+76607,18
+76609,24
+76610,25
+76611,25
+76612,29
+76613,23
+76615,30
+76616,37
+76617,36
+76620,21
+76621,25
+76622,25
+76624,29
+76625,35
+76626,46
+76628,18
+76629,17
+76631,27
+76632,28
+76633,23
+76634,21
+76635,22
+76636,23
+76637,40
+76638,27
+76639,32
+76640,21
+76641,33
+76642,34
+76643,38
+76644,25
+76645,25
+76646,29
+76647,25
+76648,42
+76649,44
+76650,32
+76651,29
+76652,17
+76653,25
+76654,55
+76655,39
+76656,16
+76657,21
+76658,30
+76659,32
+76660,31
+76661,40
+76663,23
+76664,22
+76665,35
+76666,27
+76667,31
+76668,39
+76669,16
+76670,34
+76671,29
+76672,26
+76674,35
+76675,28
+76676,21
+76677,37
+76678,23
+76679,25
+76680,26
+76681,29
+76682,29
+76683,25
+76684,24
+76685,37
+76686,27
+76687,41
+76688,35
+76689,30
+76690,24
+76691,29
+76692,41
+76693,22
+76694,20
+76695,25
+76696,48
+76697,40
+76698,41
+76699,22
+76700,23
+76702,30
+76703,37
+76704,34
+76705,27
+76706,30
+76707,31
+76708,20
+76710,41
+76711,42
+76712,33
+76713,27
+76714,25
+76715,28
+76716,16
+76719,17
+76720,26
+76721,22
+76722,19
+76723,22
+76724,30
+76725,40
+76726,30
+76727,22
+76728,40
+76729,35
+76730,37
+76731,25
+76732,28
+76734,30
+76735,23
+76736,24
+76737,41
+76738,29
+76739,28
+76740,37
+76741,27
+76742,18
+76743,40
+76744,29
+76745,30
+76746,33
+76747,21
+76748,21
+76751,40
+76752,44
+76754,20
+76755,26
+76756,52
+76757,35
+76758,41
+76760,40
+76762,36
+76764,22
+76765,24
+76766,22
+76767,39
+76768,22
+76769,28
+76771,19
+76773,25
+76774,27
+76775,24
+76776,37
+76777,30
+76779,27
+76780,24
+76781,34
+76782,30
+76783,35
+76784,41
+76785,52
+76786,37
+76787,23
+76788,33
+76789,16
+76790,34
+76792,24
+76793,30
+76794,39
+76795,42
+76796,26
+76797,22
+76798,22
+76799,26
+76800,49
+76801,24
+76802,21
+76804,28
+76805,32
+76806,28
+76807,43
+76808,35
+76809,30
+76811,30
+76812,23
+76813,50
+76815,29
+76816,19
+76817,33
+76818,33
+76819,30
+76821,24
+76824,21
+76825,43
+76826,32
+76827,24
+76828,23
+76829,25
+76830,25
+76831,23
+76832,23
+76833,34
+76834,52
+76835,22
+76836,24
+76837,26
+76838,30
+76840,27
+76841,21
+76842,29
+76843,22
+76844,27
+76845,42
+76846,33
+76847,52
+76848,23
+76849,29
+76850,31
+76851,15
+76852,30
+76853,20
+76854,27
+76855,56
+76856,37
+76857,24
+76858,22
+76859,30
+76860,47
+76861,32
+76862,27
+76863,23
+76865,31
+76869,27
+76870,33
+76871,33
+76872,47
+76874,32
+76875,42
+76876,34
+76877,27
+76878,37
+76879,33
+76880,43
+76881,17
+76882,39
+76883,50
+76884,35
+76886,33
+76887,20
+76888,20
+76889,71
+76890,42
+76891,32
+76893,22
+76894,19
+76895,34
+76896,35
+76897,23
+76898,40
+76899,28
+76900,20
+76901,26
+76903,16
+76904,48
+76905,30
+76906,20
+76907,34
+76908,37
+76910,37
+76911,24
+76912,23
+76913,23
+76914,24
+76915,31
+76916,34
+76917,35
+76918,38
+76919,14
+76920,30
+76921,24
+76922,39
+76923,28
+76924,35
+76925,28
+76926,26
+76927,24
+76928,21
+76929,15
+76930,32
+76932,36
+76933,26
+76934,25
+76935,20
+76936,35
+76937,38
+76938,38
+76939,62
+76940,24
+76942,23
+76943,32
+76944,39
+76945,30
+76946,22
+76947,33
+76948,41
+76949,36
+76950,18
+76951,46
+76952,24
+76953,39
+76954,52
+76955,23
+76956,16
+76957,27
+76958,41
+76959,23
+76962,57
+76963,22
+76964,18
+76965,37
+76966,19
+76967,46
+76968,33
+76969,37
+76971,37
+76972,38
+76973,41
+76975,48
+76976,25
+76977,20
+76978,22
+76979,22
+76980,34
+76981,22
+76982,29
+76983,28
+76984,24
+76986,26
+76987,32
+76988,26
+76989,42
+76990,48
+76991,34
+76992,25
+76994,42
+76995,30
+76996,23
+76997,37
+76998,31
+76999,55
+77000,52
+77001,35
+77002,30
+77003,39
+77004,21
+77005,19
+77006,20
+77007,40
+77008,24
+77009,47
+77010,34
+77011,30
+77012,39
+77013,21
+77014,38
+77015,30
+77016,29
+77017,27
+77018,17
+77020,32
+77021,29
+77022,29
+77023,24
+77024,28
+77025,47
+77026,33
+77027,32
+77028,26
+77029,27
+77030,57
+77031,37
+77032,16
+77033,26
+77034,58
+77035,22
+77036,30
+77037,32
+77038,34
+77039,22
+77040,22
+77041,19
+77043,35
+77044,31
+77045,44
+77046,31
+77047,22
+77048,29
+77049,35
+77050,37
+77051,32
+77052,21
+77053,25
+77054,33
+77055,52
+77056,30
+77057,28
+77058,30
+77059,39
+77061,28
+77062,39
+77063,31
+77064,22
+77065,28
+77066,35
+77067,23
+77068,28
+77069,29
+77070,36
+77071,24
+77072,24
+77073,27
+77074,31
+77075,39
+77076,32
+77077,29
+77078,22
+77079,22
+77080,29
+77081,22
+77082,27
+77083,30
+77084,24
+77085,24
+77086,19
+77087,43
+77088,33
+77090,41
+77091,24
+77093,46
+77094,32
+77095,21
+77096,50
+77097,23
+77098,29
+77099,21
+77100,38
+77101,27
+77102,32
+77103,21
+77104,35
+77105,43
+77106,25
+77107,41
+77111,40
+77112,21
+77113,44
+77114,21
+77115,30
+77117,28
+77118,37
+77120,28
+77121,33
+77122,18
+77123,33
+77125,36
+77126,34
+77127,38
+77128,25
+77130,24
+77131,26
+77132,17
+77133,39
+77134,22
+77135,26
+77136,17
+77137,28
+77138,20
+77139,17
+77141,21
+77142,30
+77143,32
+77144,24
+77145,40
+77146,29
+77149,19
+77150,24
+77152,21
+77153,34
+77154,33
+77155,33
+77156,25
+77157,25
+77158,32
+77159,27
+77160,38
+77161,25
+77162,19
+77164,29
+77165,30
+77166,31
+77167,41
+77168,54
+77169,31
+77170,19
+77171,30
+77172,18
+77173,29
+77174,50
+77175,28
+77176,32
+77177,32
+77179,45
+77182,25
+77183,24
+77185,23
+77186,31
+77187,39
+77188,32
+77189,24
+77190,21
+77191,25
+77192,26
+77193,28
+77195,22
+77196,25
+77197,27
+77199,17
+77200,34
+77201,22
+77204,36
+77205,26
+77206,19
+77207,24
+77208,27
+77209,25
+77211,22
+77212,27
+77213,20
+77214,34
+77215,28
+77216,29
+77217,38
+77218,30
+77219,33
+77220,47
+77221,29
+77224,25
+77226,24
+77228,16
+77229,21
+77230,45
+77231,30
+77232,26
+77233,22
+77234,26
+77235,47
+77236,32
+77237,32
+77238,35
+77239,27
+77240,27
+77241,31
+77242,32
+77243,20
+77244,36
+77245,31
+77246,30
+77247,36
+77249,22
+77250,16
+77251,42
+77252,24
+77253,28
+77254,20
+77255,32
+77256,25
+77257,30
+77258,27
+77259,27
+77260,23
+77261,26
+77262,30
+77263,17
+77264,38
+77265,26
+77266,21
+77267,24
+77268,45
+77269,25
+77270,61
+77271,31
+77272,33
+77273,26
+77274,25
+77275,25
+77276,28
+77277,25
+77278,22
+77279,29
+77280,27
+77281,24
+77282,35
+77283,30
+77284,25
+77285,17
+77287,35
+77288,16
+77289,38
+77291,29
+77292,26
+77293,21
+77294,29
+77295,30
+77296,34
+77298,26
+77299,29
+77300,24
+77301,28
+77302,22
+77303,28
+77305,46
+77306,38
+77307,16
+77309,17
+77310,32
+77311,37
+77312,21
+77313,34
+77314,28
+77315,34
+77316,26
+77317,30
+77318,16
+77320,21
+77322,21
+77323,31
+77324,24
+77325,32
+77326,28
+77327,22
+77328,29
+77329,42
+77330,32
+77331,30
+77332,25
+77333,24
+77334,25
+77335,35
+77336,23
+77337,41
+77338,27
+77340,26
+77341,19
+77342,25
+77343,35
+77344,30
+77345,57
+77346,38
+77347,28
+77348,27
+77349,27
+77350,19
+77351,35
+77352,36
+77353,38
+77354,26
+77355,27
+77356,52
+77357,25
+77358,25
+77359,32
+77360,14
+77361,36
+77362,23
+77363,20
+77365,24
+77367,30
+77368,28
+77369,28
+77370,31
+77371,33
+77372,32
+77373,35
+77374,23
+77375,44
+77376,30
+77377,34
+77379,22
+77380,41
+77381,26
+77382,20
+77383,64
+77384,37
+77386,28
+77387,20
+77389,44
+77390,40
+77391,41
+77392,24
+77393,34
+77394,25
+77395,31
+77396,21
+77397,18
+77398,20
+77399,28
+77401,15
+77402,28
+77403,29
+77404,25
+77405,30
+77406,26
+77407,23
+77408,19
+77409,43
+77410,25
+77411,28
+77412,23
+77414,45
+77415,21
+77416,33
+77417,25
+77418,35
+77419,31
+77420,13
+77421,31
+77422,28
+77423,25
+77424,18
+77425,23
+77426,34
+77428,36
+77430,34
+77431,44
+77433,26
+77434,20
+77435,42
+77436,28
+77437,46
+77439,22
+77441,29
+77442,33
+77443,32
+77444,29
+77445,29
+77447,35
+77448,41
+77449,26
+77450,25
+77451,30
+77452,26
+77453,27
+77454,60
+77455,28
+77456,18
+77457,22
+77458,37
+77459,68
+77460,53
+77461,34
+77462,28
+77463,24
+77464,22
+77465,31
+77466,26
+77467,24
+77468,21
+77469,23
+77470,17
+77471,28
+77472,32
+77473,31
+77474,23
+77475,37
+77477,22
+77478,18
+77479,21
+77480,68
+77481,33
+77482,26
+77483,44
+77484,35
+77485,43
+77486,16
+77487,14
+77489,26
+77491,40
+77492,33
+77493,27
+77494,33
+77496,35
+77497,21
+77498,22
+77499,36
+77500,32
+77501,33
+77503,17
+77504,32
+77505,23
+77506,43
+77507,37
+77508,31
+77509,31
+77510,34
+77511,25
+77512,21
+77513,25
+77514,31
+77515,32
+77516,35
+77517,36
+77518,29
+77519,34
+77520,32
+77521,37
+77522,24
+77523,23
+77524,23
+77525,59
+77526,28
+77527,20
+77528,30
+77529,28
+77530,26
+77531,39
+77532,30
+77533,24
+77534,20
+77535,30
+77536,35
+77537,27
+77538,24
+77539,26
+77540,22
+77543,19
+77545,43
+77546,29
+77547,37
+77548,67
+77549,20
+77551,39
+77552,24
+77553,20
+77554,29
+77555,27
+77556,26
+77557,31
+77558,15
+77559,21
+77560,33
+77562,36
+77564,24
+77566,24
+77567,40
+77568,27
+77569,28
+77571,22
+77572,44
+77573,30
+77574,33
+77575,25
+77576,27
+77577,35
+77578,31
+77579,24
+77580,20
+77581,23
+77582,55
+77584,26
+77585,24
+77586,26
+77587,27
+77588,24
+77589,28
+77590,25
+77591,20
+77592,26
+77593,29
+77594,13
+77595,38
+77596,23
+77597,26
+77598,25
+77599,22
+77600,42
+77601,35
+77602,23
+77603,28
+77604,29
+77605,37
+77606,34
+77607,23
+77608,48
+77609,21
+77610,17
+77611,35
+77612,40
+77613,51
+77614,32
+77615,22
+77616,22
+77617,26
+77619,31
+77620,33
+77622,23
+77623,32
+77624,44
+77625,27
+77626,21
+77627,28
+77628,32
+77630,22
+77631,34
+77632,28
+77633,25
+77634,51
+77635,25
+77636,35
+77637,18
+77638,23
+77639,31
+77640,33
+77641,23
+77642,24
+77643,43
+77644,28
+77645,34
+77646,24
+77647,24
+77648,46
+77649,29
+77650,32
+77651,36
+77652,20
+77653,54
+77654,31
+77655,26
+77656,30
+77657,24
+77658,19
+77659,43
+77661,29
+77662,27
+77664,16
+77665,29
+77666,29
+77667,25
+77668,67
+77669,36
+77670,22
+77671,27
+77672,21
+77673,40
+77674,45
+77675,31
+77676,32
+77677,45
+77678,35
+77679,43
+77680,28
+77681,22
+77682,27
+77683,32
+77684,25
+77685,39
+77686,24
+77688,26
+77689,52
+77690,25
+77691,26
+77692,24
+77693,38
+77694,37
+77695,24
+77696,39
+77698,24
+77699,41
+77700,27
+77701,33
+77702,21
+77704,24
+77705,29
+77706,30
+77708,27
+77709,45
+77710,32
+77712,23
+77713,33
+77714,44
+77715,33
+77716,33
+77717,33
+77718,18
+77719,39
+77720,31
+77722,53
+77723,29
+77724,23
+77725,20
+77727,24
+77728,27
+77729,22
+77730,38
+77731,23
+77732,43
+77734,60
+77735,27
+77736,20
+77737,27
+77738,22
+77739,38
+77740,19
+77741,38
+77742,28
+77743,40
+77744,27
+77746,54
+77747,23
+77748,25
+77749,26
+77750,39
+77751,30
+77752,25
+77753,47
+77754,19
+77755,53
+77756,34
+77757,27
+77758,36
+77759,33
+77760,26
+77761,25
+77762,24
+77763,24
+77764,31
+77765,20
+77767,39
+77769,43
+77772,28
+77773,27
+77774,50
+77775,15
+77776,29
+77777,34
+77779,30
+77781,14
+77782,14
+77783,21
+77784,23
+77785,18
+77787,23
+77788,38
+77789,19
+77791,26
+77792,25
+77793,35
+77794,26
+77795,26
+77797,29
+77798,63
+77799,51
+77800,34
+77802,27
+77803,30
+77804,37
+77805,29
+77806,29
+77807,50
+77808,28
+77809,48
+77810,33
+77811,37
+77812,28
+77813,22
+77814,37
+77815,31
+77816,30
+77817,28
+77818,34
+77819,24
+77820,30
+77821,25
+77823,24
+77824,51
+77825,27
+77826,29
+77827,28
+77828,32
+77829,29
+77830,46
+77831,27
+77832,22
+77833,42
+77834,42
+77835,21
+77836,49
+77837,30
+77838,25
+77839,28
+77840,24
+77841,14
+77842,24
+77843,30
+77844,24
+77845,26
+77846,20
+77847,25
+77848,27
+77849,21
+77850,35
+77851,37
+77852,21
+77853,21
+77855,37
+77856,26
+77857,34
+77858,22
+77859,29
+77860,52
+77861,48
+77862,27
+77863,29
+77864,46
+77865,26
+77866,21
+77869,36
+77870,32
+77871,21
+77872,23
+77873,35
+77874,27
+77875,41
+77876,41
+77877,26
+77878,23
+77879,26
+77880,34
+77881,22
+77882,16
+77883,31
+77884,37
+77885,20
+77886,38
+77887,21
+77888,21
+77889,27
+77891,41
+77892,36
+77894,38
+77895,33
+77896,37
+77898,35
+77899,33
+77900,18
+77901,30
+77902,34
+77903,20
+77904,20
+77905,24
+77906,23
+77907,34
+77908,30
+77909,20
+77910,30
+77911,24
+77912,24
+77913,52
+77914,24
+77915,29
+77916,24
+77917,22
+77918,24
+77919,32
+77921,24
+77922,27
+77923,29
+77924,48
+77925,21
+77927,40
+77928,46
+77929,31
+77930,25
+77931,31
+77932,32
+77933,51
+77934,27
+77935,42
+77936,21
+77937,28
+77938,26
+77939,56
+77940,30
+77941,37
+77942,26
+77943,25
+77944,19
+77945,26
+77946,20
+77947,26
+77948,20
+77949,26
+77950,35
+77951,34
+77952,48
+77953,26
+77954,43
+77955,25
+77956,26
+77958,28
+77959,25
+77960,28
+77961,18
+77962,29
+77963,31
+77964,31
+77965,44
+77966,26
+77967,33
+77969,24
+77970,47
+77971,27
+77972,36
+77973,37
+77974,29
+77975,29
+77976,28
+77977,27
+77978,28
+77979,27
+77981,17
+77982,28
+77983,38
+77985,40
+77986,31
+77987,36
+77988,21
+77989,27
+77990,27
+77991,31
+77992,35
+77993,28
+77994,28
+77995,25
+77996,35
+77997,42
+77998,38
+77999,28
+78000,29
+78001,33
+78002,21
+78003,48
+78007,23
+78008,30
+78009,24
+78010,30
+78011,34
+78012,33
+78013,29
+78014,17
+78015,65
+78016,21
+78017,33
+78018,32
+78019,42
+78021,38
+78022,29
+78023,31
+78024,47
+78025,32
+78026,32
+78027,31
+78028,34
+78031,46
+78032,24
+78033,30
+78034,19
+78035,38
+78036,27
+78037,20
+78039,27
+78040,20
+78041,37
+78042,32
+78043,29
+78044,24
+78045,32
+78046,36
+78047,29
+78048,42
+78050,45
+78051,19
+78052,32
+78053,35
+78054,23
+78055,24
+78056,27
+78058,27
+78060,24
+78061,23
+78062,39
+78063,31
+78064,34
+78065,18
+78066,38
+78067,26
+78068,47
+78069,29
+78070,37
+78071,40
+78072,31
+78073,25
+78074,20
+78075,19
+78076,52
+78077,55
+78078,28
+78079,26
+78081,22
+78082,44
+78083,38
+78084,34
+78085,34
+78087,34
+78088,22
+78089,43
+78091,29
+78092,34
+78093,31
+78094,30
+78095,33
+78096,24
+78097,33
+78098,18
+78099,38
+78100,28
+78101,28
+78102,23
+78103,29
+78106,36
+78107,26
+78108,20
+78110,56
+78111,20
+78112,29
+78113,31
+78114,25
+78115,28
+78116,35
+78117,28
+78118,24
+78119,42
+78120,53
+78121,26
+78123,22
+78124,33
+78125,23
+78126,28
+78128,45
+78129,30
+78130,37
+78132,22
+78133,24
+78134,32
+78135,24
+78136,58
+78137,22
+78138,40
+78139,28
+78140,37
+78141,32
+78142,24
+78143,34
+78144,40
+78145,47
+78146,35
+78147,22
+78149,25
+78150,26
+78151,32
+78152,54
+78153,37
+78155,24
+78156,40
+78157,35
+78159,21
+78160,21
+78161,21
+78162,43
+78163,36
+78165,47
+78166,26
+78168,28
+78169,35
+78170,32
+78171,22
+78173,28
+78174,27
+78175,28
+78176,33
+78177,30
+78178,31
+78179,28
+78180,31
+78181,32
+78182,28
+78183,35
+78184,42
+78186,33
+78187,16
+78188,36
+78189,35
+78190,18
+78191,33
+78192,31
+78193,17
+78194,31
+78195,32
+78197,45
+78199,61
+78200,30
+78201,42
+78202,27
+78203,34
+78204,24
+78205,17
+78206,32
+78207,40
+78208,30
+78209,21
+78210,23
+78211,24
+78212,30
+78213,29
+78214,29
+78215,17
+78216,23
+78218,45
+78219,37
+78220,33
+78221,14
+78222,23
+78223,20
+78224,31
+78225,20
+78226,34
+78227,22
+78228,42
+78229,24
+78230,55
+78231,43
+78233,30
+78234,51
+78235,34
+78236,23
+78238,22
+78239,29
+78240,34
+78241,25
+78242,30
+78243,27
+78244,24
+78245,25
+78246,22
+78248,28
+78249,29
+78250,31
+78251,36
+78252,28
+78254,25
+78255,25
+78256,30
+78257,32
+78258,27
+78259,28
+78260,20
+78262,28
+78264,35
+78265,18
+78267,16
+78268,17
+78269,26
+78270,24
+78271,31
+78272,26
+78273,40
+78274,28
+78275,30
+78276,53
+78277,30
+78278,26
+78280,21
+78281,28
+78282,23
+78283,36
+78284,33
+78285,33
+78286,33
+78287,34
+78288,29
+78289,26
+78290,25
+78291,48
+78294,21
+78295,25
+78296,29
+78297,25
+78298,31
+78299,23
+78300,32
+78301,28
+78302,35
+78303,47
+78304,50
+78305,29
+78306,29
+78307,27
+78308,29
+78309,46
+78310,35
+78311,48
+78312,32
+78313,36
+78314,22
+78315,22
+78316,41
+78317,19
+78318,34
+78319,23
+78320,40
+78321,20
+78322,21
+78323,17
+78324,18
+78325,57
+78327,23
+78328,33
+78329,14
+78330,33
+78331,27
+78332,24
+78333,26
+78334,29
+78335,25
+78336,23
+78337,16
+78338,32
+78339,29
+78340,54
+78341,23
+78342,28
+78343,37
+78344,33
+78345,29
+78346,30
+78347,30
+78348,26
+78349,30
+78350,27
+78351,27
+78352,36
+78353,28
+78354,34
+78355,45
+78356,35
+78357,20
+78358,36
+78359,27
+78360,20
+78361,21
+78363,25
+78364,22
+78365,20
+78366,32
+78367,32
+78368,29
+78369,39
+78370,27
+78371,15
+78373,17
+78375,28
+78376,25
+78378,40
+78379,34
+78380,25
+78381,25
+78382,22
+78383,48
+78384,22
+78385,24
+78386,38
+78387,29
+78388,33
+78389,48
+78390,21
+78391,39
+78392,29
+78393,18
+78394,41
+78395,22
+78396,24
+78398,30
+78399,25
+78400,24
+78402,23
+78403,30
+78404,59
+78405,27
+78406,25
+78407,25
+78408,44
+78409,27
+78410,56
+78411,30
+78412,56
+78413,23
+78414,64
+78415,21
+78416,30
+78417,26
+78418,36
+78419,24
+78421,37
+78422,24
+78423,20
+78424,34
+78425,17
+78426,20
+78427,27
+78428,45
+78429,49
+78430,27
+78432,27
+78433,27
+78434,38
+78437,31
+78438,37
+78439,20
+78440,43
+78441,18
+78442,34
+78443,35
+78444,18
+78445,28
+78446,29
+78447,34
+78448,30
+78450,22
+78451,31
+78452,30
+78453,23
+78454,27
+78455,32
+78456,39
+78458,25
+78459,50
+78460,25
+78461,33
+78462,22
+78463,31
+78465,22
+78466,34
+78467,42
+78468,37
+78469,23
+78470,24
+78471,30
+78472,26
+78473,26
+78476,28
+78477,33
+78478,38
+78479,32
+78480,30
+78481,25
+78482,98
+78484,34
+78485,23
+78486,21
+78487,23
+78488,19
+78489,42
+78490,32
+78491,42
+78492,40
+78493,36
+78494,29
+78495,27
+78496,24
+78497,67
+78498,25
+78499,29
+78500,28
+78501,24
+78502,31
+78503,21
+78504,35
+78505,18
+78506,21
+78507,46
+78508,26
+78509,27
+78510,20
+78511,33
+78512,25
+78513,30
+78514,30
+78515,36
+78516,27
+78517,31
+78518,21
+78519,26
+78520,39
+78521,38
+78522,20
+78523,39
+78524,23
+78525,25
+78526,25
+78527,24
+78528,32
+78529,24
+78530,27
+78531,56
+78533,38
+78534,56
+78535,21
+78536,27
+78537,41
+78538,29
+78540,39
+78541,23
+78542,20
+78543,34
+78544,27
+78545,34
+78546,31
+78547,30
+78548,22
+78550,31
+78551,29
+78552,28
+78553,26
+78554,20
+78555,24
+78556,31
+78557,31
+78558,28
+78559,22
+78560,35
+78561,17
+78562,99
+78563,25
+78564,29
+78565,36
+78566,24
+78567,23
+78569,16
+78570,22
+78572,36
+78573,36
+78574,35
+78575,15
+78576,35
+78578,38
+78579,22
+78580,30
+78583,40
+78584,29
+78586,33
+78588,28
+78589,48
+78591,34
+78592,23
+78593,23
+78594,25
+78595,21
+78596,24
+78597,29
+78598,24
+78599,28
+78600,47
+78601,25
+78602,32
+78603,34
+78605,25
+78606,43
+78607,17
+78608,17
+78609,30
+78610,25
+78611,43
+78612,27
+78613,35
+78614,26
+78615,35
+78616,28
+78617,28
+78618,27
+78620,26
+78622,30
+78623,24
+78624,22
+78625,24
+78626,27
+78627,29
+78628,23
+78629,26
+78632,26
+78633,29
+78634,28
+78635,35
+78636,24
+78637,32
+78639,29
+78640,23
+78641,48
+78642,29
+78643,52
+78644,47
+78645,35
+78646,30
+78647,32
+78648,24
+78649,36
+78650,27
+78651,24
+78652,65
+78653,27
+78654,28
+78656,49
+78657,23
+78659,19
+78660,34
+78661,31
+78663,28
+78664,36
+78666,18
+78667,19
+78668,34
+78669,27
+78670,21
+78671,22
+78672,50
+78673,30
+78674,26
+78675,30
+78678,44
+78679,23
+78680,34
+78682,42
+78683,47
+78684,17
+78685,44
+78686,28
+78688,18
+78689,33
+78690,25
+78691,52
+78692,14
+78693,30
+78694,32
+78695,34
+78696,30
+78699,18
+78700,18
+78701,52
+78702,44
+78703,28
+78704,27
+78705,21
+78706,23
+78707,36
+78708,35
+78710,30
+78712,23
+78713,29
+78714,31
+78715,31
+78716,41
+78717,32
+78718,29
+78719,18
+78720,26
+78721,28
+78722,22
+78723,34
+78724,21
+78725,36
+78726,30
+78727,33
+78728,28
+78729,27
+78730,31
+78731,34
+78732,24
+78733,29
+78734,40
+78735,48
+78736,24
+78737,32
+78738,39
+78739,20
+78740,35
+78742,27
+78743,28
+78745,23
+78746,24
+78747,31
+78748,38
+78749,27
+78750,27
+78751,51
+78752,21
+78753,23
+78754,28
+78755,27
+78756,23
+78757,28
+78758,29
+78759,27
+78760,26
+78761,54
+78762,34
+78763,29
+78764,28
+78765,38
+78766,21
+78767,28
+78768,22
+78769,26
+78770,62
+78771,32
+78774,21
+78775,26
+78776,26
+78777,52
+78778,41
+78779,35
+78780,29
+78781,34
+78782,20
+78783,27
+78784,18
+78785,32
+78786,28
+78787,24
+78788,23
+78789,25
+78790,24
+78791,33
+78792,26
+78793,35
+78794,34
+78795,36
+78796,40
+78797,49
+78798,41
+78799,27
+78800,23
+78801,84
+78802,20
+78803,42
+78804,28
+78805,33
+78807,30
+78808,15
+78809,25
+78810,38
+78811,30
+78812,34
+78813,27
+78815,46
+78816,43
+78817,26
+78818,28
+78819,23
+78821,24
+78822,30
+78823,24
+78824,25
+78825,34
+78827,29
+78828,36
+78829,19
+78830,31
+78831,23
+78832,34
+78833,25
+78834,31
+78835,22
+78836,29
+78837,25
+78838,16
+78839,24
+78840,18
+78841,23
+78842,36
+78843,43
+78844,30
+78845,30
+78846,20
+78847,27
+78848,33
+78849,54
+78850,21
+78851,28
+78852,26
+78853,32
+78855,39
+78856,25
+78857,28
+78858,36
+78859,35
+78860,44
+78861,20
+78862,30
+78864,28
+78866,21
+78868,33
+78869,22
+78870,22
+78871,32
+78872,22
+78873,19
+78874,36
+78875,23
+78876,54
+78877,29
+78878,28
+78879,31
+78881,21
+78882,25
+78884,27
+78885,39
+78886,25
+78888,20
+78889,26
+78890,26
+78891,15
+78892,57
+78893,28
+78895,32
+78896,37
+78897,27
+78898,28
+78899,36
+78900,38
+78901,25
+78902,59
+78903,27
+78904,23
+78906,40
+78908,25
+78909,42
+78910,23
+78911,25
+78913,20
+78914,29
+78915,20
+78916,24
+78917,22
+78918,27
+78921,29
+78922,27
+78923,29
+78924,33
+78925,39
+78926,33
+78927,28
+78929,27
+78931,31
+78932,25
+78933,25
+78934,30
+78935,27
+78936,25
+78938,28
+78939,30
+78940,27
+78941,34
+78942,34
+78943,19
+78945,33
+78946,29
+78948,27
+78949,24
+78950,23
+78951,28
+78952,36
+78953,42
+78954,32
+78956,46
+78957,22
+78958,29
+78959,32
+78960,24
+78961,43
+78962,36
+78963,21
+78964,37
+78965,23
+78966,22
+78967,25
+78968,18
+78970,25
+78971,35
+78972,27
+78973,30
+78974,23
+78975,39
+78976,31
+78977,32
+78978,30
+78979,27
+78980,31
+78981,52
+78983,36
+78984,25
+78985,25
+78986,27
+78987,38
+78988,28
+78989,38
+78990,29
+78991,28
+78992,24
+78993,23
+78994,30
+78995,24
+78996,28
+78997,21
+78998,25
+78999,26
+79001,24
+79003,35
+79004,27
+79005,26
+79006,30
+79007,21
+79008,19
+79009,27
+79011,41
+79012,43
+79013,22
+79014,27
+79015,40
+79016,21
+79017,26
+79018,19
+79019,45
+79020,31
+79021,19
+79022,33
+79025,28
+79026,30
+79027,24
+79028,26
+79029,33
+79030,23
+79031,23
+79032,23
+79033,32
+79034,59
+79035,40
+79037,30
+79038,28
+79039,25
+79040,25
+79042,24
+79043,17
+79044,30
+79045,22
+79047,22
+79048,40
+79049,32
+79050,45
+79052,40
+79053,26
+79054,34
+79055,24
+79056,25
+79057,32
+79058,23
+79059,39
+79060,24
+79061,21
+79062,33
+79063,28
+79064,36
+79065,37
+79066,21
+79067,40
+79068,19
+79069,14
+79070,43
+79071,34
+79072,27
+79073,28
+79074,32
+79075,47
+79077,35
+79079,21
+79080,25
+79081,22
+79082,30
+79083,49
+79084,25
+79085,40
+79086,28
+79087,22
+79088,22
+79089,28
+79090,41
+79091,27
+79092,18
+79093,43
+79094,31
+79095,58
+79096,24
+79098,20
+79099,22
+79100,36
+79101,28
+79102,20
+79103,28
+79104,30
+79105,23
+79106,25
+79107,26
+79108,46
+79109,35
+79110,27
+79112,27
+79114,28
+79115,27
+79116,28
+79117,33
+79118,36
+79119,34
+79121,25
+79122,35
+79123,50
+79124,25
+79125,29
+79127,24
+79128,28
+79129,22
+79130,27
+79131,31
+79132,26
+79133,29
+79134,51
+79135,31
+79136,32
+79137,27
+79138,28
+79139,39
+79140,34
+79141,50
+79143,17
+79144,34
+79145,49
+79146,48
+79147,38
+79148,38
+79149,41
+79150,40
+79151,22
+79152,25
+79153,16
+79155,19
+79156,25
+79157,28
+79158,20
+79159,24
+79160,25
+79161,44
+79162,30
+79163,23
+79164,32
+79165,20
+79166,22
+79167,22
+79169,23
+79170,33
+79171,30
+79172,31
+79173,23
+79174,22
+79175,24
+79176,37
+79177,23
+79178,29
+79179,47
+79180,28
+79181,19
+79182,28
+79183,34
+79184,19
+79185,27
+79186,30
+79187,27
+79188,35
+79190,30
+79191,25
+79192,25
+79194,32
+79195,28
+79196,25
+79197,27
+79198,56
+79199,27
+79200,35
+79201,31
+79202,24
+79203,22
+79204,15
+79205,24
+79206,32
+79207,19
+79209,23
+79210,24
+79211,23
+79212,35
+79213,18
+79214,18
+79215,24
+79216,40
+79217,39
+79218,23
+79219,23
+79220,32
+79221,35
+79222,23
+79223,22
+79224,21
+79225,23
+79227,29
+79228,24
+79229,28
+79230,20
+79231,24
+79232,25
+79233,27
+79234,26
+79235,36
+79239,17
+79240,42
+79241,28
+79242,21
+79243,44
+79244,30
+79245,25
+79247,28
+79248,33
+79249,26
+79250,28
+79251,27
+79252,35
+79253,15
+79254,31
+79255,30
+79256,27
+79257,27
+79258,17
+79259,41
+79260,41
+79261,31
+79262,20
+79263,40
+79264,30
+79265,60
+79266,35
+79267,35
+79269,43
+79270,24
+79271,26
+79272,26
+79273,16
+79274,26
+79275,37
+79276,29
+79277,29
+79279,23
+79280,37
+79281,25
+79282,22
+79283,23
+79284,36
+79285,41
+79286,18
+79287,35
+79288,28
+79289,36
+79290,21
+79291,26
+79292,21
+79293,26
+79294,29
+79295,25
+79296,27
+79297,27
+79298,36
+79299,30
+79300,32
+79302,27
+79303,27
+79304,26
+79305,28
+79306,33
+79307,29
+79308,32
+79309,24
+79310,44
+79311,26
+79312,23
+79313,48
+79314,23
+79315,42
+79316,51
+79317,19
+79318,19
+79319,24
+79320,29
+79321,28
+79322,37
+79323,30
+79324,28
+79325,31
+79326,1
+79327,40
+79328,16
+79329,26
+79330,29
+79331,41
+79332,26
+79333,21
+79335,24
+79336,41
+79337,40
+79338,38
+79339,22
+79340,43
+79341,29
+79342,21
+79344,24
+79345,34
+79346,16
+79347,30
+79348,29
+79349,33
+79350,27
+79351,22
+79352,20
+79353,24
+79355,21
+79356,13
+79357,47
+79358,22
+79359,39
+79360,47
+79361,26
+79362,28
+79363,38
+79364,35
+79365,37
+79366,27
+79367,24
+79368,24
+79369,24
+79370,32
+79372,36
+79373,27
+79374,34
+79375,26
+79377,27
+79379,41
+79380,30
+79381,42
+79382,23
+79383,28
+79384,21
+79385,32
+79386,23
+79387,25
+79388,32
+79389,30
+79390,21
+79392,38
+79393,25
+79394,59
+79398,22
+79399,18
+79401,25
+79402,26
+79403,27
+79404,17
+79405,25
+79406,20
+79407,27
+79408,55
+79409,50
+79410,26
+79413,17
+79414,26
+79415,44
+79416,34
+79417,35
+79418,23
+79419,24
+79420,50
+79422,18
+79423,23
+79424,57
+79425,26
+79426,38
+79427,23
+79428,25
+79430,43
+79431,63
+79432,52
+79435,28
+79437,22
+79438,23
+79439,37
+79440,40
+79441,30
+79442,22
+79445,27
+79446,26
+79447,26
+79449,39
+79450,22
+79451,23
+79452,27
+79453,26
+79454,48
+79455,22
+79457,34
+79458,26
+79459,21
+79460,34
+79461,29
+79462,22
+79464,30
+79466,28
+79467,33
+79468,21
+79469,18
+79470,23
+79471,22
+79472,18
+79474,27
+79475,18
+79476,33
+79477,28
+79478,25
+79479,21
+79480,31
+79481,27
+79482,44
+79483,39
+79484,32
+79485,49
+79486,29
+79487,27
+79488,37
+79489,18
+79490,25
+79491,21
+79492,26
+79494,28
+79495,40
+79496,24
+79497,37
+79498,31
+79499,26
+79500,18
+79501,27
+79502,35
+79503,33
+79504,23
+79505,32
+79506,44
+79507,20
+79508,29
+79509,36
+79510,36
+79511,29
+79512,24
+79513,43
+79514,27
+79515,22
+79517,29
+79518,35
+79519,33
+79520,47
+79521,28
+79522,27
+79523,25
+79524,17
+79525,47
+79526,21
+79527,25
+79528,31
+79529,23
+79530,36
+79531,18
+79532,36
+79533,26
+79535,23
+79536,23
+79537,58
+79538,32
+79539,27
+79540,23
+79541,19
+79542,28
+79543,28
+79544,27
+79545,42
+79546,28
+79547,26
+79548,53
+79549,21
+79550,39
+79551,25
+79552,30
+79554,30
+79555,21
+79556,21
+79557,32
+79558,24
+79559,35
+79560,23
+79561,32
+79562,31
+79563,28
+79564,34
+79565,25
+79566,21
+79567,30
+79568,20
+79569,28
+79571,23
+79572,24
+79573,31
+79574,51
+79575,28
+79576,44
+79578,30
+79579,40
+79580,49
+79581,17
+79582,27
+79583,19
+79584,31
+79585,34
+79586,23
+79587,56
+79588,29
+79589,29
+79590,28
+79591,38
+79592,24
+79593,45
+79594,22
+79595,31
+79596,40
+79597,29
+79598,31
+79599,22
+79600,28
+79601,38
+79602,41
+79603,36
+79604,29
+79605,20
+79606,25
+79607,38
+79608,42
+79609,23
+79610,33
+79611,48
+79612,22
+79613,23
+79614,55
+79615,23
+79618,25
+79619,19
+79620,41
+79621,35
+79622,37
+79623,65
+79624,27
+79625,52
+79626,37
+79627,36
+79630,39
+79631,23
+79632,23
+79633,30
+79634,30
+79635,32
+79637,31
+79638,42
+79639,30
+79640,33
+79641,24
+79643,32
+79644,63
+79645,21
+79646,46
+79647,39
+79648,23
+79649,22
+79650,27
+79651,36
+79652,27
+79654,60
+79655,35
+79656,24
+79658,18
+79659,25
+79660,24
+79661,37
+79662,26
+79664,23
+79665,28
+79666,36
+79667,24
+79668,23
+79669,72
+79672,45
+79673,20
+79674,21
+79675,19
+79676,45
+79677,22
+79678,35
+79679,31
+79680,19
+79681,26
+79682,25
+79683,28
+79684,21
+79685,43
+79687,17
+79688,47
+79689,38
+79690,35
+79691,30
+79692,29
+79693,16
+79694,31
+79695,23
+79696,28
+79697,30
+79698,31
+79699,22
+79700,23
+79701,21
+79702,36
+79704,22
+79705,25
+79706,20
+79707,31
+79708,23
+79711,33
+79712,26
+79713,16
+79714,26
+79715,34
+79716,42
+79717,24
+79718,53
+79719,22
+79720,24
+79722,22
+79723,21
+79724,38
+79725,24
+79726,39
+79727,32
+79728,37
+79729,25
+79730,22
+79731,21
+79733,20
+79734,31
+79735,28
+79736,25
+79737,27
+79738,29
+79740,31
+79741,32
+79742,25
+79743,30
+79744,33
+79745,27
+79746,27
+79747,34
+79748,23
+79749,27
+79750,32
+79752,25
+79753,69
+79754,31
+79755,29
+79756,50
+79757,34
+79758,24
+79759,27
+79760,26
+79761,24
+79762,23
+79763,25
+79765,30
+79766,34
+79767,32
+79768,23
+79769,32
+79770,38
+79771,44
+79772,25
+79773,27
+79774,72
+79775,45
+79776,26
+79777,33
+79778,30
+79779,38
+79780,22
+79781,28
+79782,23
+79784,46
+79785,56
+79786,22
+79787,36
+79788,40
+79789,27
+79790,32
+79791,21
+79792,30
+79793,31
+79794,31
+79796,18
+79799,28
+79800,31
+79801,41
+79803,23
+79804,22
+79805,31
+79806,35
+79807,24
+79808,26
+79810,28
+79811,33
+79812,38
+79813,26
+79815,38
+79816,34
+79817,23
+79818,28
+79819,25
+79820,31
+79821,46
+79822,19
+79823,18
+79825,36
+79827,22
+79828,24
+79830,37
+79831,18
+79832,26
+79833,34
+79835,34
+79836,44
+79837,26
+79838,25
+79839,26
+79840,25
+79841,31
+79842,18
+79843,46
+79844,41
+79845,30
+79846,32
+79847,40
+79848,53
+79849,42
+79850,23
+79851,20
+79852,25
+79853,39
+79854,34
+79855,42
+79856,30
+79859,19
+79860,43
+79861,28
+79862,22
+79863,27
+79864,33
+79865,48
+79866,23
+79867,39
+79868,67
+79869,24
+79870,29
+79871,30
+79872,21
+79874,48
+79875,27
+79876,36
+79877,26
+79878,36
+79879,30
+79880,26
+79881,22
+79882,25
+79883,55
+79884,29
+79886,38
+79887,23
+79888,29
+79889,26
+79890,40
+79892,24
+79893,34
+79894,20
+79895,25
+79896,29
+79897,21
+79898,22
+79899,22
+79900,34
+79902,25
+79903,39
+79904,24
+79907,25
+79908,33
+79909,34
+79910,24
+79911,27
+79912,45
+79913,37
+79914,22
+79915,35
+79916,42
+79917,29
+79918,23
+79919,30
+79920,24
+79921,35
+79922,26
+79923,17
+79924,29
+79925,49
+79926,31
+79927,30
+79929,25
+79930,28
+79931,30
+79932,33
+79933,34
+79934,28
+79936,22
+79937,28
+79938,32
+79939,24
+79940,22
+79941,25
+79942,20
+79943,20
+79944,21
+79945,35
+79946,26
+79947,25
+79948,24
+79949,23
+79950,41
+79951,20
+79952,30
+79953,28
+79955,31
+79956,31
+79957,24
+79958,36
+79959,27
+79961,41
+79962,30
+79963,26
+79964,24
+79965,30
+79966,35
+79967,37
+79968,29
+79970,44
+79971,26
+79972,16
+79973,14
+79974,26
+79975,29
+79976,31
+79977,38
+79978,23
+79979,25
+79980,30
+79981,26
+79982,33
+79983,56
+79984,27
+79985,26
+79986,24
+79987,37
+79989,38
+79990,21
+79992,23
+79993,26
+79994,25
+79995,28
+79997,30
+79998,28
+79999,43
+80000,33
+80001,17
+80003,24
+80005,51
+80006,18
+80007,41
+80008,24
+80009,33
+80010,26
+80011,43
+80012,24
+80013,44
+80014,21
+80015,24
+80016,41
+80017,39
+80019,27
+80020,23
+80021,45
+80022,22
+80023,27
+80024,17
+80025,25
+80026,36
+80027,30
+80028,25
+80029,37
+80030,32
+80031,23
+80032,21
+80033,30
+80034,52
+80035,36
+80036,23
+80037,31
+80038,35
+80039,29
+80041,23
+80042,35
+80043,33
+80045,52
+80047,17
+80048,30
+80049,32
+80050,31
+80051,23
+80052,35
+80053,51
+80054,33
+80055,24
+80056,35
+80057,35
+80059,28
+80060,27
+80061,50
+80062,47
+80063,36
+80064,32
+80065,36
+80067,53
+80068,19
+80070,28
+80071,36
+80072,31
+80073,28
+80075,24
+80076,33
+80077,27
+80078,23
+80079,26
+80080,47
+80081,24
+80082,26
+80083,22
+80084,26
+80085,41
+80086,21
+80087,32
+80088,47
+80089,40
+80090,27
+80091,30
+80092,39
+80093,20
+80094,24
+80095,40
+80096,51
+80097,33
+80098,30
+80099,44
+80101,26
+80102,46
+80103,35
+80104,25
+80105,22
+80106,32
+80107,29
+80108,32
+80109,26
+80110,24
+80111,28
+80112,30
+80113,36
+80115,39
+80119,21
+80120,21
+80121,29
+80122,25
+80123,25
+80124,24
+80125,28
+80126,39
+80127,41
+80128,57
+80129,29
+80130,28
+80131,48
+80132,20
+80133,28
+80134,30
+80135,20
+80136,31
+80137,34
+80139,30
+80140,28
+80141,39
+80142,24
+80143,36
+80144,22
+80145,24
+80146,28
+80147,36
+80148,20
+80149,29
+80150,30
+80151,26
+80152,47
+80153,42
+80154,30
+80155,31
+80156,24
+80157,27
+80158,43
+80159,36
+80160,44
+80161,47
+80162,21
+80163,15
+80165,43
+80166,31
+80168,38
+80169,55
+80170,57
+80171,22
+80172,32
+80173,46
+80174,54
+80175,26
+80176,36
+80178,27
+80179,42
+80180,35
+80181,16
+80184,27
+80185,29
+80186,31
+80187,27
+80188,43
+80189,41
+80190,43
+80191,28
+80192,26
+80193,41
+80195,20
+80196,37
+80197,22
+80198,29
+80199,57
+80200,25
+80201,27
+80203,36
+80204,24
+80205,31
+80206,31
+80207,34
+80208,20
+80209,33
+80210,30
+80212,15
+80213,25
+80214,25
+80215,48
+80216,24
+80217,22
+80219,28
+80220,19
+80221,35
+80222,54
+80223,31
+80224,43
+80225,25
+80226,38
+80227,28
+80228,35
+80229,23
+80230,29
+80231,29
+80232,39
+80233,26
+80234,25
+80235,38
+80236,29
+80238,17
+80239,30
+80240,39
+80241,33
+80242,24
+80244,25
+80246,31
+80247,35
+80248,28
+80249,25
+80250,50
+80251,37
+80252,24
+80254,59
+80255,41
+80256,19
+80257,26
+80258,28
+80259,40
+80260,25
+80261,45
+80262,27
+80263,30
+80264,17
+80265,26
+80266,30
+80267,31
+80268,19
+80269,20
+80270,39
+80271,24
+80272,30
+80273,51
+80274,38
+80276,36
+80277,19
+80278,30
+80279,34
+80280,30
+80281,34
+80282,23
+80283,42
+80284,23
+80285,41
+80286,36
+80287,29
+80288,22
+80289,21
+80290,54
+80291,20
+80292,33
+80293,33
+80295,15
+80296,22
+80297,26
+80298,23
+80299,27
+80300,38
+80301,36
+80302,24
+80303,27
+80304,28
+80305,30
+80306,30
+80307,18
+80308,50
+80310,20
+80311,30
+80312,36
+80314,48
+80315,34
+80316,25
+80317,25
+80318,29
+80320,46
+80321,32
+80322,33
+80323,28
+80325,19
+80326,37
+80327,25
+80328,28
+80329,26
+80330,27
+80331,59
+80332,29
+80333,29
+80334,19
+80335,25
+80336,14
+80337,34
+80338,24
+80339,21
+80340,35
+80341,21
+80342,32
+80343,35
+80344,25
+80345,38
+80346,26
+80347,68
+80348,21
+80349,27
+80350,36
+80351,32
+80352,45
+80353,45
+80354,33
+80356,25
+80358,31
+80359,18
+80360,21
+80361,34
+80362,44
+80363,32
+80364,40
+80365,30
+80366,27
+80367,30
+80368,27
+80369,13
+80370,26
+80371,19
+80372,37
+80373,25
+80374,23
+80375,27
+80376,45
+80377,33
+80378,41
+80379,29
+80380,39
+80381,18
+80383,32
+80384,30
+80385,30
+80386,29
+80387,21
+80388,24
+80389,40
+80390,16
+80391,39
+80392,23
+80393,51
+80394,40
+80395,29
+80396,37
+80397,23
+80399,25
+80400,24
+80402,19
+80403,24
+80404,34
+80405,26
+80406,24
+80407,32
+80408,36
+80409,19
+80410,36
+80411,20
+80412,23
+80413,52
+80415,34
+80416,29
+80417,22
+80418,28
+80420,29
+80421,31
+80423,26
+80424,24
+80425,26
+80426,29
+80427,26
+80428,33
+80429,30
+80431,30
+80432,36
+80433,25
+80434,42
+80435,23
+80436,27
+80437,37
+80438,34
+80439,39
+80440,53
+80441,18
+80443,25
+80447,26
+80448,38
+80449,29
+80451,24
+80452,24
+80454,36
+80455,42
+80456,26
+80457,30
+80459,41
+80460,21
+80461,50
+80462,32
+80463,14
+80464,45
+80465,34
+80467,23
+80468,24
+80469,26
+80470,37
+80471,36
+80472,47
+80474,33
+80475,58
+80476,31
+80477,33
+80478,39
+80479,22
+80480,26
+80481,20
+80482,26
+80483,12
+80484,29
+80485,23
+80486,47
+80487,36
+80488,75
+80489,22
+80490,45
+80492,42
+80493,27
+80494,32
+80496,25
+80497,24
+80498,28
+80499,25
+80500,13
+80501,30
+80503,35
+80504,43
+80505,27
+80506,29
+80507,33
+80508,31
+80509,27
+80510,38
+80511,29
+80512,21
+80513,22
+80514,25
+80515,23
+80516,46
+80517,23
+80518,29
+80519,24
+80520,22
+80521,60
+80524,25
+80525,44
+80526,19
+80527,18
+80528,23
+80530,72
+80531,23
+80532,27
+80534,38
+80535,40
+80536,18
+80537,18
+80538,37
+80539,25
+80541,22
+80543,37
+80544,27
+80545,27
+80546,61
+80547,33
+80549,27
+80550,32
+80551,46
+80552,26
+80553,33
+80555,34
+80556,25
+80557,27
+80558,48
+80559,25
+80560,25
+80561,30
+80562,23
+80563,34
+80565,21
+80566,32
+80569,31
+80570,30
+80572,17
+80573,25
+80574,26
+80575,38
+80576,19
+80577,17
+80578,27
+80579,43
+80580,30
+80581,58
+80582,20
+80584,22
+80585,25
+80586,27
+80587,32
+80588,14
+80590,19
+80591,21
+80592,31
+80593,48
+80594,22
+80595,43
+80596,23
+80597,23
+80599,28
+80600,25
+80602,23
+80603,24
+80604,29
+80605,21
+80606,35
+80607,73
+80608,35
+80609,26
+80610,34
+80611,20
+80612,62
+80614,18
+80615,46
+80616,25
+80617,25
+80618,59
+80619,37
+80620,24
+80621,20
+80622,40
+80623,34
+80624,36
+80625,32
+80626,27
+80627,22
+80628,22
+80629,18
+80630,48
+80631,23
+80632,22
+80633,65
+80635,40
+80636,22
+80638,23
+80639,35
+80640,24
+80641,25
+80642,28
+80643,25
+80644,33
+80645,56
+80646,32
+80647,27
+80648,20
+80649,22
+80650,23
+80651,33
+80653,49
+80654,38
+80656,26
+80657,30
+80658,44
+80659,36
+80660,25
+80661,22
+80662,39
+80663,43
+80664,23
+80665,32
+80666,33
+80667,26
+80668,26
+80669,40
+80670,25
+80673,47
+80674,19
+80675,32
+80676,25
+80677,29
+80678,25
+80679,49
+80680,37
+80681,26
+80683,32
+80684,65
+80686,28
+80687,33
+80688,28
+80689,29
+80690,36
+80691,40
+80692,24
+80693,49
+80694,45
+80695,27
+80696,29
+80697,28
+80698,16
+80699,29
+80700,26
+80701,52
+80702,27
+80703,26
+80704,20
+80705,38
+80706,32
+80707,30
+80708,27
+80709,29
+80710,33
+80711,20
+80713,23
+80714,32
+80715,44
+80716,49
+80717,39
+80718,25
+80719,28
+80720,21
+80721,30
+80722,29
+80723,37
+80724,21
+80725,33
+80726,26
+80727,39
+80729,16
+80730,44
+80731,33
+80732,22
+80733,38
+80734,26
+80735,19
+80736,24
+80737,31
+80738,34
+80739,47
+80740,43
+80741,36
+80742,43
+80743,27
+80745,46
+80746,25
+80747,25
+80748,30
+80749,30
+80750,33
+80751,34
+80752,40
+80753,28
+80754,34
+80755,39
+80756,36
+80757,27
+80758,44
+80759,25
+80760,31
+80761,35
+80762,75
+80763,24
+80764,28
+80765,26
+80766,40
+80767,37
+80768,23
+80769,33
+80770,28
+80771,28
+80772,34
+80774,49
+80775,36
+80776,22
+80777,26
+80778,31
+80779,44
+80780,26
+80781,31
+80782,31
+80783,33
+80784,23
+80785,48
+80786,26
+80787,48
+80788,31
+80789,38
+80791,29
+80792,34
+80793,23
+80795,24
+80796,27
+80799,31
+80800,24
+80802,35
+80803,36
+80804,31
+80806,44
+80808,28
+80809,22
+80810,46
+80811,32
+80812,38
+80813,29
+80816,27
+80817,35
+80818,34
+80819,24
+80820,23
+80821,25
+80822,24
+80823,27
+80824,29
+80825,33
+80826,29
+80827,27
+80828,34
+80829,21
+80830,28
+80831,38
+80832,27
+80833,25
+80834,22
+80836,39
+80837,25
+80839,29
+80840,24
+80841,23
+80842,28
+80843,31
+80845,33
+80846,30
+80847,19
+80848,34
+80849,41
+80850,38
+80851,20
+80852,36
+80853,25
+80854,57
+80855,52
+80856,38
+80858,21
+80859,23
+80860,27
+80862,22
+80863,23
+80864,29
+80865,32
+80866,26
+80867,31
+80868,47
+80870,23
+80871,24
+80872,27
+80873,65
+80874,18
+80875,25
+80876,28
+80877,27
+80878,22
+80879,31
+80880,22
+80881,31
+80882,23
+80883,40
+80884,27
+80885,40
+80886,26
+80887,47
+80888,24
+80889,35
+80890,38
+80891,34
+80892,22
+80893,35
+80894,28
+80895,37
+80896,37
+80897,36
+80898,23
+80899,25
+80900,27
+80902,28
+80903,51
+80904,31
+80906,49
+80907,23
+80908,38
+80909,26
+80910,28
+80911,36
+80912,32
+80913,33
+80914,35
+80915,55
+80916,33
+80917,27
+80918,45
+80919,34
+80920,18
+80921,36
+80922,29
+80925,28
+80926,18
+80927,45
+80928,24
+80929,37
+80930,17
+80931,35
+80932,35
+80933,37
+80934,30
+80935,40
+80936,43
+80937,29
+80938,51
+80939,20
+80940,29
+80941,22
+80942,26
+80943,48
+80944,24
+80945,57
+80947,34
+80948,19
+80949,34
+80950,33
+80951,25
+80952,23
+80953,34
+80954,28
+80955,35
+80956,21
+80957,20
+80958,27
+80959,24
+80961,29
+80962,33
+80963,32
+80964,34
+80965,21
+80966,29
+80967,22
+80968,31
+80969,21
+80970,29
+80971,20
+80972,52
+80973,44
+80974,21
+80975,14
+80976,27
+80977,33
+80979,35
+80980,42
+80981,26
+80982,35
+80983,32
+80984,40
+80985,28
+80986,33
+80987,26
+80988,27
+80989,21
+80990,26
+80991,25
+80992,17
+80993,23
+80994,26
+80995,37
+80997,30
+80998,33
+80999,27
+81000,28
+81001,36
+81002,31
+81003,24
+81004,50
+81006,21
+81007,24
+81008,32
+81009,42
+81010,22
+81011,25
+81013,36
+81014,56
+81016,29
+81017,27
+81018,40
+81019,27
+81020,27
+81021,26
+81022,24
+81023,56
+81024,23
+81025,21
+81026,21
+81027,30
+81029,24
+81030,31
+81031,21
+81032,33
+81033,25
+81034,21
+81035,29
+81036,31
+81037,30
+81039,14
+81040,29
+81041,30
+81042,63
+81043,31
+81044,48
+81045,37
+81046,32
+81047,22
+81048,21
+81049,36
+81050,33
+81052,18
+81053,29
+81054,38
+81055,30
+81056,35
+81057,16
+81058,39
+81059,28
+81060,25
+81061,30
+81062,29
+81063,59
+81065,47
+81066,27
+81067,32
+81068,29
+81070,27
+81071,37
+81072,27
+81073,23
+81074,28
+81075,28
+81076,40
+81077,18
+81078,37
+81080,22
+81082,28
+81083,23
+81085,25
+81086,32
+81087,29
+81088,41
+81089,23
+81090,29
+81091,45
+81092,30
+81094,21
+81095,31
+81096,33
+81097,33
+81098,22
+81099,18
+81100,22
+81101,30
+81102,41
+81103,20
+81104,38
+81105,27
+81107,20
+81108,26
+81111,29
+81112,20
+81113,39
+81114,24
+81116,25
+81118,34
+81119,24
+81121,24
+81122,30
+81123,37
+81124,35
+81125,25
+81126,42
+81128,23
+81129,45
+81130,21
+81131,25
+81132,21
+81133,20
+81134,26
+81135,20
+81136,20
+81138,15
+81139,25
+81140,27
+81141,43
+81142,27
+81143,21
+81144,21
+81145,21
+81146,35
+81147,28
+81148,24
+81149,28
+81150,25
+81151,52
+81152,33
+81153,24
+81154,28
+81155,17
+81156,26
+81157,27
+81159,25
+81160,37
+81162,23
+81163,28
+81164,27
+81166,38
+81167,26
+81168,36
+81170,50
+81171,21
+81172,27
+81173,25
+81174,19
+81175,24
+81176,34
+81177,18
+81178,32
+81179,17
+81180,30
+81181,30
+81182,21
+81183,28
+81184,19
+81185,24
+81186,28
+81187,39
+81188,38
+81189,31
+81190,25
+81191,24
+81192,23
+81194,26
+81195,23
+81196,34
+81197,31
+81199,25
+81200,29
+81201,27
+81202,24
+81203,35
+81204,38
+81205,27
+81206,36
+81207,27
+81208,41
+81209,26
+81211,43
+81212,27
+81213,19
+81214,25
+81215,31
+81217,35
+81218,40
+81219,30
+81220,33
+81221,32
+81222,21
+81223,50
+81224,36
+81225,33
+81226,17
+81227,38
+81228,37
+81229,38
+81230,39
+81231,32
+81232,48
+81233,26
+81234,26
+81235,42
+81236,28
+81237,23
+81238,24
+81239,24
+81240,35
+81243,46
+81244,27
+81246,62
+81247,27
+81248,21
+81249,38
+81250,24
+81251,24
+81252,48
+81253,18
+81254,41
+81255,26
+81257,45
+81258,31
+81259,25
+81260,26
+81261,36
+81262,26
+81263,28
+81264,26
+81265,35
+81266,36
+81267,46
+81268,27
+81270,23
+81271,35
+81272,43
+81273,33
+81274,20
+81275,30
+81276,18
+81277,32
+81278,22
+81280,37
+81281,31
+81282,27
+81283,22
+81284,73
+81285,35
+81286,28
+81287,25
+81288,31
+81289,32
+81290,24
+81291,32
+81292,38
+81293,23
+81294,32
+81297,24
+81298,58
+81299,30
+81300,26
+81301,33
+81302,23
+81303,22
+81304,24
+81305,30
+81306,37
+81307,29
+81308,34
+81309,19
+81310,50
+81311,48
+81312,29
+81313,30
+81314,25
+81315,27
+81316,29
+81317,25
+81318,27
+81320,59
+81321,29
+81322,25
+81323,50
+81324,28
+81325,39
+81326,25
+81327,37
+81329,38
+81330,26
+81331,32
+81332,28
+81333,20
+81334,30
+81335,32
+81336,36
+81337,39
+81338,34
+81339,18
+81341,49
+81342,39
+81343,29
+81344,25
+81345,29
+81346,36
+81347,32
+81348,58
+81349,33
+81350,26
+81351,28
+81352,33
+81353,18
+81354,33
+81355,21
+81356,38
+81357,18
+81358,36
+81359,39
+81360,26
+81361,32
+81362,25
+81364,21
+81365,40
+81366,64
+81368,21
+81369,51
+81370,66
+81371,69
+81374,47
+81375,24
+81377,35
+81378,42
+81379,46
+81380,28
+81381,31
+81382,27
+81383,30
+81384,45
+81385,30
+81386,25
+81387,25
+81388,37
+81389,28
+81390,29
+81391,20
+81392,23
+81393,40
+81394,48
+81395,31
+81396,22
+81397,26
+81398,28
+81401,29
+81402,20
+81403,41
+81404,26
+81405,50
+81406,37
+81407,19
+81408,40
+81409,52
+81410,35
+81411,27
+81412,40
+81413,16
+81414,25
+81415,27
+81416,32
+81417,34
+81419,31
+81420,33
+81421,41
+81422,20
+81423,28
+81424,49
+81426,22
+81427,20
+81428,34
+81429,29
+81430,27
+81431,38
+81432,18
+81433,23
+81434,36
+81435,34
+81437,22
+81438,22
+81439,31
+81440,42
+81441,21
+81442,28
+81443,27
+81444,22
+81445,38
+81447,29
+81448,22
+81449,78
+81450,14
+81451,27
+81452,44
+81453,24
+81454,38
+81456,52
+81457,31
+81458,28
+81459,23
+81460,27
+81461,47
+81462,31
+81463,42
+81464,23
+81465,23
+81466,30
+81468,43
+81469,22
+81470,32
+81471,21
+81472,24
+81473,32
+81474,32
+81475,33
+81476,36
+81477,38
+81478,19
+81479,28
+81481,44
+81482,35
+81483,23
+81484,28
+81485,40
+81486,21
+81487,25
+81488,26
+81489,31
+81490,29
+81491,24
+81492,27
+81493,25
+81494,34
+81495,21
+81496,26
+81497,35
+81498,21
+81499,39
+81500,23
+81501,29
+81502,20
+81503,27
+81504,21
+81505,36
+81508,27
+81509,39
+81510,27
+81511,32
+81512,24
+81513,20
+81514,27
+81515,36
+81516,24
+81517,38
+81518,37
+81519,44
+81520,41
+81521,39
+81522,21
+81523,32
+81524,30
+81525,33
+81526,18
+81527,33
+81528,29
+81529,45
+81531,21
+81533,24
+81534,26
+81535,27
+81536,23
+81537,37
+81538,21
+81539,19
+81540,27
+81542,37
+81543,27
+81544,29
+81545,22
+81546,40
+81547,31
+81548,20
+81549,23
+81550,29
+81551,24
+81552,27
+81553,23
+81554,19
+81555,41
+81556,25
+81557,18
+81558,45
+81559,38
+81560,24
+81561,25
+81562,23
+81563,26
+81564,44
+81565,21
+81566,17
+81568,21
+81569,23
+81570,27
+81571,36
+81572,25
+81573,36
+81574,32
+81575,28
+81576,31
+81577,39
+81578,17
+81579,33
+81580,24
+81581,41
+81582,23
+81583,50
+81584,38
+81586,23
+81587,31
+81588,29
+81589,20
+81591,29
+81592,32
+81593,24
+81594,56
+81595,50
+81596,24
+81598,29
+81599,31
+81600,23
+81601,36
+81604,23
+81605,24
+81606,27
+81607,23
+81608,46
+81609,36
+81610,31
+81611,35
+81612,30
+81613,30
+81614,21
+81615,33
+81617,38
+81618,23
+81619,31
+81620,54
+81622,49
+81623,21
+81625,46
+81626,28
+81627,30
+81628,28
+81629,20
+81630,27
+81631,24
+81632,16
+81633,37
+81634,31
+81636,35
+81637,32
+81638,21
+81639,36
+81640,30
+81641,26
+81642,18
+81643,68
+81644,21
+81645,28
+81646,21
+81647,31
+81649,54
+81650,24
+81651,32
+81653,45
+81654,31
+81655,28
+81656,18
+81657,40
+81658,23
+81660,42
+81661,16
+81662,31
+81663,24
+81664,27
+81665,36
+81666,39
+81668,26
+81670,36
+81671,17
+81672,26
+81673,30
+81674,28
+81675,34
+81676,22
+81677,27
+81678,21
+81680,22
+81681,23
+81682,34
+81683,25
+81684,29
+81685,24
+81687,24
+81688,15
+81690,23
+81691,31
+81692,35
+81693,15
+81694,50
+81695,30
+81696,27
+81697,25
+81698,20
+81700,27
+81701,54
+81702,27
+81703,19
+81704,34
+81705,29
+81706,31
+81707,32
+81708,32
+81709,33
+81710,16
+81711,24
+81712,37
+81713,26
+81714,23
+81715,42
+81716,22
+81717,26
+81718,33
+81720,29
+81721,20
+81722,28
+81723,28
+81724,33
+81725,27
+81726,30
+81727,25
+81728,23
+81729,33
+81730,26
+81731,35
+81732,38
+81733,21
+81734,52
+81735,34
+81736,30
+81737,44
+81739,39
+81740,22
+81741,16
+81742,28
+81743,26
+81745,34
+81746,23
+81747,22
+81748,42
+81749,42
+81750,26
+81751,26
+81753,16
+81754,25
+81755,33
+81756,30
+81757,22
+81758,36
+81759,40
+81760,31
+81761,27
+81762,47
+81763,26
+81764,17
+81765,32
+81766,39
+81767,48
+81769,27
+81770,25
+81771,35
+81772,20
+81773,26
+81774,27
+81775,24
+81776,37
+81777,22
+81778,25
+81779,19
+81780,50
+81781,24
+81782,50
+81783,29
+81784,37
+81785,22
+81786,25
+81787,25
+81788,25
+81789,43
+81790,31
+81791,29
+81792,27
+81793,36
+81795,41
+81796,61
+81797,20
+81798,34
+81799,30
+81800,21
+81801,28
+81803,23
+81804,22
+81805,48
+81806,19
+81807,33
+81808,26
+81809,25
+81810,23
+81811,26
+81812,24
+81813,64
+81814,31
+81815,37
+81816,27
+81817,19
+81818,28
+81819,21
+81820,33
+81821,24
+81822,32
+81823,28
+81824,25
+81825,19
+81826,29
+81827,20
+81829,33
+81830,32
+81831,37
+81832,30
+81833,43
+81835,40
+81836,23
+81837,40
+81838,28
+81839,35
+81840,28
+81841,23
+81843,19
+81844,23
+81846,20
+81847,23
+81848,19
+81849,30
+81850,32
+81851,33
+81852,18
+81853,27
+81854,22
+81855,35
+81857,21
+81858,32
+81859,46
+81861,37
+81862,27
+81863,41
+81864,40
+81865,40
+81866,38
+81867,22
+81868,25
+81869,29
+81870,14
+81871,41
+81872,23
+81873,20
+81874,24
+81875,21
+81876,24
+81877,28
+81878,22
+81879,25
+81880,35
+81881,28
+81882,33
+81883,45
+81884,29
+81885,28
+81886,19
+81887,25
+81888,16
+81890,33
+81891,25
+81892,32
+81893,18
+81894,24
+81895,28
+81896,27
+81897,34
+81898,28
+81899,31
+81900,26
+81901,24
+81902,30
+81903,30
+81904,31
+81905,27
+81906,22
+81907,29
+81910,61
+81911,25
+81912,26
+81913,31
+81914,27
+81915,28
+81916,22
+81917,31
+81918,53
+81920,29
+81921,31
+81923,38
+81924,36
+81925,43
+81926,33
+81927,32
+81928,36
+81929,26
+81930,39
+81931,33
+81932,23
+81933,37
+81935,24
+81936,21
+81937,29
+81938,50
+81939,39
+81940,17
+81941,20
+81942,34
+81943,26
+81944,47
+81945,21
+81946,21
+81947,28
+81948,20
+81949,57
+81950,25
+81951,38
+81952,49
+81953,30
+81954,26
+81955,23
+81956,31
+81957,30
+81958,27
+81959,49
+81960,36
+81961,41
+81962,32
+81963,30
+81964,25
+81965,30
+81966,20
+81967,56
+81968,34
+81969,43
+81970,27
+81971,27
+81972,27
+81973,23
+81975,20
+81976,28
+81977,22
+81978,19
+81979,65
+81980,25
+81981,26
+81983,37
+81984,37
+81985,35
+81986,29
+81987,45
+81988,35
+81989,27
+81990,26
+81991,40
+81992,25
+81995,31
+81996,32
+81997,27
+81998,24
+82000,25
+82001,34
+82002,30
+82003,25
+82004,26
+82005,37
+82006,27
+82008,26
+82009,45
+82010,21
+82011,23
+82012,20
+82013,25
+82014,25
+82015,28
+82017,36
+82018,22
+82019,29
+82020,35
+82021,34
+82022,21
+82023,34
+82025,40
+82026,45
+82027,32
+82028,26
+82030,29
+82032,31
+82033,42
+82034,34
+82035,27
+82036,40
+82037,28
+82040,26
+82041,28
+82042,19
+82043,24
+82044,26
+82045,22
+82046,20
+82048,34
+82050,30
+82051,25
+82052,30
+82053,36
+82054,33
+82055,29
+82056,29
+82057,37
+82059,28
+82060,21
+82061,24
+82062,20
+82063,24
+82064,23
+82065,30
+82066,27
+82067,32
+82068,29
+82069,28
+82070,29
+82071,31
+82073,22
+82074,30
+82075,27
+82077,44
+82078,57
+82079,30
+82080,34
+82081,21
+82082,17
+82083,27
+82084,35
+82085,38
+82086,28
+82087,29
+82088,20
+82089,35
+82091,42
+82092,62
+82093,24
+82094,32
+82095,26
+82096,27
+82097,32
+82098,39
+82099,30
+82100,22
+82101,46
+82102,36
+82103,20
+82104,24
+82105,33
+82106,23
+82107,34
+82108,35
+82109,35
+82110,29
+82111,25
+82112,20
+82113,27
+82114,15
+82115,34
+82116,18
+82117,16
+82119,24
+82120,24
+82121,28
+82123,30
+82124,31
+82125,24
+82126,22
+82127,33
+82128,24
+82129,29
+82131,26
+82133,23
+82135,31
+82137,13
+82138,30
+82139,32
+82140,30
+82141,24
+82142,27
+82143,22
+82144,27
+82145,24
+82146,24
+82147,24
+82148,38
+82149,26
+82150,35
+82151,66
+82152,23
+82153,28
+82154,57
+82155,25
+82156,37
+82158,25
+82159,25
+82160,25
+82161,27
+82162,18
+82163,22
+82166,29
+82167,34
+82168,45
+82169,25
+82170,32
+82174,37
+82175,28
+82176,31
+82177,27
+82178,38
+82179,24
+82180,51
+82181,22
+82182,26
+82183,25
+82184,22
+82185,28
+82186,37
+82187,28
+82188,47
+82189,23
+82190,28
+82191,16
+82192,24
+82194,45
+82195,28
+82196,33
+82198,26
+82199,33
+82200,30
+82201,33
+82202,39
+82203,36
+82204,31
+82205,22
+82206,29
+82207,70
+82208,22
+82209,26
+82212,24
+82213,29
+82214,25
+82215,27
+82216,1
+82217,36
+82218,43
+82219,31
+82220,33
+82221,34
+82222,19
+82223,35
+82225,23
+82226,26
+82227,19
+82228,37
+82229,35
+82230,40
+82231,23
+82232,24
+82233,23
+82234,35
+82235,27
+82237,20
+82238,54
+82239,31
+82240,46
+82241,44
+82242,30
+82243,33
+82246,38
+82247,35
+82249,30
+82250,22
+82251,35
+82252,22
+82253,44
+82254,19
+82255,17
+82256,52
+82257,39
+82258,24
+82260,34
+82261,42
+82262,19
+82265,37
+82266,31
+82267,30
+82268,36
+82269,31
+82270,21
+82271,28
+82272,16
+82273,34
+82274,23
+82275,37
+82276,26
+82277,39
+82278,32
+82279,24
+82280,39
+82282,27
+82283,28
+82284,24
+82285,28
+82286,37
+82287,43
+82288,26
+82291,34
+82292,23
+82293,40
+82294,30
+82295,28
+82296,48
+82297,31
+82299,38
+82300,26
+82301,34
+82302,25
+82303,23
+82304,28
+82305,25
+82306,16
+82307,24
+82308,24
+82310,43
+82311,23
+82313,29
+82314,38
+82316,35
+82317,59
+82318,28
+82319,27
+82320,20
+82321,24
+82322,23
+82323,24
+82324,46
+82325,16
+82326,32
+82327,38
+82328,23
+82329,27
+82330,29
+82331,39
+82332,39
+82333,29
+82334,27
+82336,42
+82338,34
+82339,24
+82340,33
+82341,43
+82342,24
+82345,50
+82346,18
+82347,29
+82348,38
+82349,39
+82350,44
+82351,45
+82352,25
+82353,24
+82354,27
+82355,31
+82356,20
+82357,23
+82358,23
+82359,31
+82360,23
+82362,34
+82363,27
+82364,64
+82365,27
+82366,39
+82367,29
+82368,31
+82369,28
+82370,18
+82371,28
+82372,27
+82375,40
+82378,51
+82379,41
+82381,32
+82382,24
+82383,20
+82384,29
+82385,24
+82386,26
+82387,21
+82388,31
+82389,24
+82391,34
+82392,35
+82393,30
+82394,22
+82395,24
+82396,27
+82397,39
+82398,31
+82399,18
+82400,26
+82401,26
+82402,21
+82403,20
+82404,46
+82405,35
+82406,31
+82407,38
+82409,20
+82410,27
+82411,17
+82412,20
+82413,25
+82414,22
+82416,25
+82417,42
+82418,40
+82419,29
+82420,25
+82422,22
+82423,22
+82424,36
+82425,31
+82426,31
+82427,21
+82428,30
+82429,22
+82430,32
+82431,23
+82432,21
+82433,37
+82434,23
+82435,28
+82436,31
+82438,18
+82439,38
+82440,25
+82442,19
+82443,30
+82444,31
+82446,47
+82447,34
+82448,25
+82449,17
+82450,26
+82451,23
+82452,29
+82453,23
+82454,44
+82455,42
+82456,23
+82457,44
+82458,38
+82460,30
+82461,32
+82462,24
+82463,27
+82464,27
+82465,59
+82466,29
+82468,42
+82469,27
+82470,25
+82471,28
+82472,25
+82473,31
+82474,32
+82475,20
+82476,23
+82477,32
+82478,25
+82480,42
+82481,22
+82482,26
+82483,20
+82485,46
+82486,50
+82487,25
+82488,28
+82489,24
+82490,18
+82491,22
+82493,29
+82494,36
+82495,34
+82496,23
+82498,29
+82499,56
+82501,40
+82502,29
+82503,38
+82504,17
+82505,34
+82506,31
+82507,41
+82508,26
+82510,28
+82511,21
+82513,38
+82515,12
+82516,40
+82517,49
+82518,31
+82519,40
+82520,20
+82521,41
+82522,31
+82523,28
+82524,27
+82525,21
+82526,34
+82527,24
+82528,62
+82529,26
+82530,40
+82531,19
+82532,34
+82533,38
+82534,16
+82535,24
+82536,22
+82537,31
+82538,38
+82539,29
+82540,25
+82541,20
+82542,19
+82543,29
+82544,50
+82545,27
+82547,22
+82548,26
+82549,32
+82550,16
+82552,25
+82553,36
+82554,42
+82555,35
+82556,28
+82558,28
+82559,19
+82560,25
+82561,37
+82562,33
+82563,32
+82564,40
+82565,43
+82566,38
+82567,27
+82568,36
+82569,24
+82570,34
+82571,34
+82572,26
+82575,41
+82576,36
+82577,36
+82578,48
+82579,40
+82580,15
+82581,26
+82582,34
+82583,24
+82584,27
+82585,30
+82586,27
+82587,22
+82588,30
+82589,22
+82590,48
+82591,27
+82592,15
+82593,33
+82594,25
+82595,24
+82596,41
+82597,51
+82599,26
+82600,26
+82601,36
+82602,22
+82603,41
+82604,24
+82605,20
+82606,24
+82607,46
+82608,29
+82609,36
+82610,37
+82612,19
+82613,32
+82614,23
+82615,32
+82616,27
+82617,30
+82618,23
+82619,26
+82620,27
+82621,21
+82622,20
+82623,30
+82624,33
+82625,52
+82626,18
+82627,40
+82628,25
+82629,26
+82630,29
+82632,34
+82633,31
+82634,37
+82635,45
+82636,51
+82637,21
+82638,20
+82639,30
+82640,34
+82641,34
+82642,28
+82643,28
+82644,36
+82645,32
+82646,27
+82647,48
+82648,36
+82649,39
+82650,22
+82651,21
+82652,20
+82654,31
+82655,19
+82656,22
+82657,43
+82658,29
+82659,36
+82660,22
+82661,33
+82662,31
+82664,21
+82665,44
+82666,27
+82667,28
+82668,38
+82669,37
+82671,25
+82672,35
+82673,22
+82674,26
+82675,35
+82676,24
+82677,38
+82678,25
+82680,35
+82681,40
+82684,34
+82685,26
+82686,22
+82687,30
+82688,25
+82689,33
+82690,27
+82691,35
+82692,35
+82693,75
+82694,30
+82695,22
+82696,24
+82697,14
+82698,19
+82699,19
+82700,27
+82701,27
+82702,33
+82703,23
+82704,32
+82705,23
+82706,29
+82707,33
+82708,38
+82709,27
+82710,16
+82711,21
+82712,27
+82713,56
+82714,27
+82715,21
+82716,28
+82718,27
+82720,26
+82721,23
+82722,27
+82723,19
+82724,24
+82725,28
+82727,22
+82728,30
+82729,28
+82730,51
+82731,19
+82733,23
+82734,27
+82735,23
+82736,37
+82737,25
+82738,25
+82739,24
+82740,21
+82741,55
+82742,21
+82744,25
+82745,30
+82747,25
+82748,39
+82749,22
+82750,35
+82751,31
+82752,33
+82753,26
+82754,23
+82755,29
+82756,28
+82757,21
+82759,13
+82760,27
+82761,21
+82762,37
+82763,29
+82764,26
+82767,36
+82768,21
+82770,45
+82771,33
+82772,31
+82774,31
+82775,28
+82776,36
+82777,25
+82778,56
+82779,19
+82780,29
+82781,28
+82782,50
+82783,21
+82784,30
+82785,16
+82786,29
+82787,37
+82788,40
+82790,36
+82792,32
+82793,34
+82794,28
+82795,38
+82796,30
+82797,20
+82798,29
+82799,23
+82800,30
+82802,31
+82803,61
+82804,14
+82806,26
+82807,36
+82808,32
+82809,60
+82810,23
+82811,26
+82812,30
+82813,17
+82814,38
+82815,36
+82816,50
+82817,30
+82819,28
+82820,30
+82821,19
+82823,30
+82824,29
+82825,29
+82826,31
+82827,37
+82828,29
+82830,47
+82831,18
+82832,18
+82833,49
+82834,22
+82835,22
+82836,27
+82837,24
+82838,37
+82839,26
+82840,33
+82841,27
+82842,31
+82843,18
+82844,25
+82845,33
+82846,28
+82847,54
+82849,24
+82850,24
+82851,36
+82852,28
+82854,22
+82855,45
+82856,27
+82857,57
+82858,30
+82859,29
+82860,25
+82861,28
+82862,23
+82863,29
+82864,49
+82865,28
+82866,30
+82867,24
+82868,33
+82869,25
+82870,20
+82871,38
+82872,29
+82873,36
+82874,42
+82875,33
+82876,20
+82877,62
+82878,20
+82879,35
+82880,29
+82881,45
+82882,31
+82883,30
+82884,27
+82886,46
+82887,18
+82888,39
+82889,24
+82890,39
+82891,24
+82893,31
+82894,39
+82895,22
+82896,22
+82897,39
+82898,37
+82899,28
+82900,31
+82901,27
+82902,35
+82903,22
+82904,23
+82905,25
+82906,22
+82908,25
+82909,26
+82910,33
+82911,33
+82912,43
+82913,33
+82914,34
+82915,60
+82916,36
+82918,28
+82919,22
+82920,32
+82921,30
+82922,35
+82924,37
+82925,40
+82926,23
+82928,21
+82930,24
+82931,32
+82932,32
+82933,20
+82934,27
+82935,28
+82937,29
+82938,48
+82941,28
+82942,22
+82943,27
+82944,20
+82945,32
+82946,23
+82947,29
+82949,22
+82950,32
+82951,24
+82952,21
+82953,24
+82954,24
+82955,27
+82957,26
+82958,28
+82959,43
+82960,20
+82961,24
+82962,30
+82963,21
+82964,23
+82965,22
+82966,22
+82967,37
+82968,34
+82969,24
+82970,42
+82971,38
+82972,23
+82973,38
+82974,29
+82975,39
+82976,28
+82977,44
+82978,29
+82979,25
+82980,23
+82981,20
+82982,33
+82983,27
+82984,15
+82985,35
+82986,29
+82987,20
+82988,25
+82989,23
+82990,27
+82991,38
+82992,38
+82993,30
+82994,34
+82995,32
+82996,30
+82997,29
+82998,24
+82999,33
+83001,21
+83002,26
+83003,29
+83004,25
+83005,37
+83006,33
+83007,36
+83009,32
+83010,20
+83011,25
+83012,20
+83013,28
+83014,23
+83015,37
+83016,28
+83017,36
+83018,31
+83019,18
+83020,12
+83021,44
+83022,38
+83023,41
+83024,39
+83025,28
+83026,33
+83027,23
+83028,29
+83030,19
+83031,23
+83032,37
+83033,27
+83035,29
+83036,29
+83037,25
+83038,25
+83039,27
+83040,26
+83041,54
+83042,41
+83043,21
+83044,26
+83045,23
+83046,34
+83047,34
+83048,29
+83049,30
+83050,32
+83051,24
+83053,48
+83054,26
+83055,32
+83056,28
+83059,32
+83060,27
+83062,23
+83063,18
+83066,48
+83067,25
+83068,22
+83069,38
+83070,40
+83071,23
+83073,26
+83074,27
+83075,23
+83076,38
+83077,34
+83078,24
+83079,19
+83080,23
+83081,25
+83083,32
+83084,22
+83086,25
+83087,41
+83088,33
+83089,21
+83090,30
+83091,27
+83092,34
+83094,30
+83095,23
+83096,31
+83097,29
+83098,27
+83099,25
+83100,45
+83101,26
+83102,28
+83103,41
+83104,31
+83105,29
+83106,29
+83107,35
+83108,28
+83109,25
+83110,32
+83111,31
+83112,47
+83113,34
+83114,24
+83116,42
+83117,30
+83118,33
+83119,19
+83120,23
+83122,21
+83123,28
+83124,26
+83126,28
+83127,20
+83128,31
+83129,24
+83130,29
+83131,33
+83132,18
+83133,27
+83134,31
+83135,28
+83137,28
+83138,29
+83139,35
+83140,40
+83142,25
+83143,26
+83144,24
+83145,24
+83146,19
+83147,25
+83151,43
+83152,32
+83153,33
+83154,20
+83155,29
+83156,43
+83157,18
+83158,47
+83159,29
+83160,26
+83161,20
+83162,40
+83163,41
+83164,30
+83165,24
+83167,28
+83168,24
+83169,30
+83171,22
+83172,30
+83173,37
+83174,23
+83175,25
+83176,51
+83177,21
+83178,27
+83179,44
+83180,20
+83181,20
+83183,27
+83184,54
+83185,20
+83186,20
+83187,26
+83188,29
+83189,26
+83190,33
+83191,30
+83192,42
+83193,22
+83194,25
+83195,20
+83196,36
+83198,22
+83199,39
+83200,32
+83201,23
+83202,32
+83203,27
+83204,30
+83205,21
+83206,21
+83207,33
+83208,30
+83209,36
+83210,31
+83211,37
+83212,36
+83213,32
+83214,49
+83215,31
+83216,23
+83217,24
+83218,41
+83219,20
+83220,30
+83221,42
+83222,36
+83223,24
+83224,31
+83225,34
+83226,32
+83227,36
+83228,19
+83229,19
+83230,31
+83231,36
+83233,24
+83234,20
+83235,25
+83236,26
+83238,29
+83239,28
+83240,30
+83241,33
+83242,16
+83243,23
+83244,48
+83245,29
+83246,38
+83247,22
+83248,28
+83250,28
+83251,35
+83252,23
+83253,24
+83254,37
+83256,26
+83257,22
+83258,26
+83260,33
+83262,26
+83263,24
+83264,24
+83266,25
+83267,39
+83269,47
+83270,32
+83272,57
+83273,21
+83274,36
+83275,20
+83276,27
+83277,30
+83278,15
+83279,27
+83280,47
+83281,23
+83282,28
+83284,43
+83285,29
+83286,21
+83287,26
+83288,21
+83289,23
+83290,39
+83291,29
+83292,26
+83293,33
+83294,45
+83295,21
+83296,22
+83297,28
+83298,39
+83299,17
+83300,26
+83301,35
+83303,70
+83304,24
+83305,32
+83307,33
+83310,21
+83311,29
+83312,37
+83313,26
+83314,22
+83315,35
+83316,32
+83317,24
+83318,23
+83319,38
+83320,36
+83321,29
+83322,24
+83323,13
+83324,30
+83325,39
+83326,27
+83327,17
+83329,29
+83330,30
+83331,27
+83332,35
+83333,30
+83334,29
+83335,20
+83336,36
+83337,22
+83338,33
+83339,27
+83340,27
+83341,40
+83342,23
+83343,23
+83344,34
+83345,28
+83347,24
+83348,43
+83349,21
+83352,52
+83353,29
+83354,28
+83355,63
+83357,34
+83358,23
+83359,33
+83360,28
+83361,23
+83362,22
+83363,29
+83364,33
+83365,30
+83366,27
+83368,31
+83369,37
+83370,20
+83371,50
+83372,37
+83373,30
+83374,33
+83377,25
+83378,58
+83379,33
+83380,16
+83382,32
+83383,21
+83384,33
+83385,28
+83387,23
+83388,35
+83389,16
+83391,28
+83392,29
+83393,24
+83394,50
+83395,37
+83396,25
+83398,40
+83399,36
+83400,33
+83401,23
+83402,33
+83403,30
+83404,30
+83405,27
+83406,33
+83407,52
+83408,26
+83409,32
+83410,48
+83411,24
+83412,28
+83413,28
+83414,26
+83417,15
+83418,31
+83419,51
+83420,30
+83421,38
+83422,49
+83423,28
+83424,55
+83425,17
+83426,30
+83427,29
+83428,29
+83430,1
+83431,28
+83433,28
+83434,30
+83435,24
+83436,38
+83438,31
+83439,23
+83440,19
+83443,28
+83444,35
+83445,46
+83446,38
+83447,40
+83448,30
+83449,21
+83450,45
+83451,52
+83452,34
+83453,20
+83454,21
+83456,23
+83457,25
+83458,44
+83461,31
+83463,37
+83464,22
+83465,41
+83466,29
+83467,48
+83468,22
+83469,20
+83471,25
+83472,22
+83473,22
+83475,52
+83476,30
+83478,37
+83479,26
+83480,32
+83481,44
+83482,35
+83483,28
+83484,22
+83485,38
+83486,30
+83487,33
+83488,30
+83489,18
+83490,35
+83491,38
+83492,20
+83493,28
+83494,17
+83495,31
+83496,26
+83497,33
+83498,23
+83499,31
+83500,31
+83501,37
+83502,28
+83504,29
+83505,22
+83506,48
+83507,38
+83508,36
+83509,21
+83510,32
+83512,22
+83513,22
+83514,27
+83515,24
+83516,27
+83517,20
+83518,20
+83519,26
+83520,31
+83522,30
+83523,20
+83524,26
+83525,34
+83526,26
+83527,32
+83529,29
+83531,23
+83532,24
+83533,39
+83534,39
+83535,23
+83537,21
+83538,34
+83539,20
+83540,32
+83541,32
+83542,28
+83543,32
+83544,22
+83545,20
+83546,22
+83547,71
+83549,28
+83550,37
+83551,23
+83552,24
+83554,16
+83555,29
+83556,29
+83557,38
+83558,23
+83559,24
+83560,21
+83561,19
+83562,28
+83563,38
+83565,48
+83566,21
+83567,19
+83568,24
+83569,26
+83570,28
+83571,23
+83572,28
+83573,18
+83574,27
+83576,38
+83577,18
+83579,58
+83581,26
+83582,30
+83583,51
+83584,16
+83585,30
+83586,24
+83589,27
+83590,28
+83591,28
+83592,25
+83593,28
+83594,43
+83595,52
+83596,27
+83597,31
+83599,29
+83600,27
+83601,99
+83602,28
+83603,40
+83604,31
+83605,34
+83606,39
+83607,25
+83609,27
+83610,25
+83611,37
+83613,17
+83614,29
+83615,28
+83616,16
+83617,26
+83618,25
+83619,30
+83620,22
+83621,30
+83622,20
+83623,17
+83624,22
+83625,28
+83626,35
+83627,25
+83628,22
+83629,45
+83630,36
+83631,24
+83632,27
+83633,60
+83634,28
+83635,22
+83636,56
+83637,33
+83638,34
+83639,58
+83640,29
+83641,40
+83643,37
+83644,30
+83645,32
+83646,19
+83647,31
+83649,31
+83650,36
+83651,29
+83652,21
+83653,34
+83654,55
+83655,37
+83656,28
+83657,44
+83658,45
+83659,19
+83660,25
+83662,27
+83663,26
+83664,33
+83665,33
+83666,24
+83667,21
+83669,28
+83670,29
+83671,33
+83672,51
+83673,60
+83674,27
+83675,27
+83676,41
+83677,31
+83678,30
+83679,36
+83680,26
+83682,42
+83683,45
+83684,41
+83685,32
+83686,41
+83687,35
+83688,30
+83689,31
+83690,36
+83691,30
+83692,26
+83693,24
+83695,55
+83696,20
+83697,37
+83698,40
+83699,24
+83700,21
+83701,39
+83702,26
+83703,47
+83704,20
+83705,22
+83707,29
+83708,21
+83710,30
+83711,28
+83712,26
+83713,26
+83714,30
+83715,39
+83716,28
+83717,29
+83718,26
+83719,32
+83720,35
+83721,24
+83722,30
+83723,26
+83724,42
+83725,36
+83726,19
+83727,24
+83728,15
+83729,27
+83730,26
+83731,24
+83732,19
+83733,32
+83734,36
+83736,22
+83737,32
+83739,29
+83740,23
+83741,60
+83742,30
+83744,28
+83745,27
+83746,34
+83747,37
+83748,32
+83749,23
+83750,28
+83751,40
+83752,23
+83754,23
+83755,24
+83756,25
+83757,24
+83758,33
+83759,36
+83760,28
+83761,31
+83762,25
+83763,28
+83764,57
+83765,30
+83766,34
+83767,41
+83768,24
+83769,20
+83770,32
+83771,33
+83774,39
+83775,50
+83778,22
+83779,27
+83780,39
+83781,26
+83782,25
+83783,33
+83784,30
+83785,23
+83787,28
+83788,53
+83789,25
+83791,41
+83792,22
+83793,25
+83794,27
+83795,24
+83796,28
+83797,26
+83798,22
+83799,31
+83801,30
+83802,31
+83803,68
+83804,29
+83805,22
+83806,23
+83807,23
+83808,25
+83809,36
+83810,54
+83811,19
+83812,20
+83813,30
+83814,22
+83815,18
+83816,17
+83817,34
+83818,23
+83819,46
+83820,25
+83821,33
+83822,16
+83823,35
+83824,33
+83825,54
+83826,22
+83827,21
+83828,33
+83829,31
+83830,23
+83832,46
+83833,31
+83834,24
+83835,19
+83836,20
+83837,35
+83838,33
+83839,23
+83840,30
+83841,25
+83842,24
+83843,19
+83844,29
+83845,30
+83846,27
+83848,22
+83849,37
+83850,23
+83851,25
+83852,26
+83853,24
+83855,34
+83856,42
+83859,33
+83860,29
+83861,36
+83863,29
+83864,46
+83865,20
+83866,29
+83867,37
+83869,22
+83870,34
+83871,26
+83872,25
+83873,27
+83874,26
+83875,23
+83876,16
+83877,26
+83878,25
+83879,26
+83880,31
+83881,25
+83882,27
+83883,24
+83884,20
+83885,28
+83887,42
+83888,32
+83889,22
+83890,24
+83891,21
+83892,21
+83893,61
+83894,38
+83895,28
+83896,25
+83897,33
+83898,33
+83899,23
+83900,32
+83901,26
+83902,28
+83903,31
+83904,30
+83905,21
+83906,20
+83907,31
+83908,27
+83909,25
+83910,29
+83911,32
+83913,36
+83914,33
+83915,16
+83916,27
+83917,30
+83918,25
+83919,28
+83920,28
+83921,28
+83922,30
+83923,23
+83924,39
+83925,31
+83926,26
+83927,49
+83928,28
+83929,24
+83930,41
+83931,23
+83932,48
+83934,15
+83935,25
+83936,29
+83937,24
+83938,32
+83939,18
+83940,30
+83942,32
+83943,18
+83944,32
+83945,42
+83946,32
+83947,29
+83948,31
+83949,23
+83950,23
+83951,21
+83952,47
+83953,24
+83954,32
+83955,27
+83956,24
+83958,24
+83959,27
+83960,30
+83961,43
+83962,40
+83963,27
+83964,30
+83966,23
+83967,33
+83969,20
+83970,30
+83971,25
+83972,30
+83973,30
+83974,29
+83975,33
+83977,25
+83979,36
+83980,31
+83983,43
+83984,20
+83985,25
+83986,27
+83987,27
+83988,19
+83989,29
+83990,21
+83992,33
+83993,27
+83994,33
+83996,36
+83997,20
+83998,35
+83999,53
+84000,47
+84001,52
+84002,32
+84003,26
+84004,31
+84005,24
+84007,21
+84008,47
+84009,35
+84010,26
+84011,32
+84012,24
+84013,22
+84014,36
+84015,24
+84016,19
+84017,20
+84018,28
+84019,33
+84020,30
+84021,21
+84022,18
+84023,34
+84024,35
+84026,26
+84028,27
+84029,25
+84030,25
+84032,22
+84033,28
+84034,25
+84035,41
+84037,25
+84038,33
+84039,19
+84040,24
+84041,25
+84042,24
+84043,27
+84044,40
+84045,27
+84046,37
+84047,40
+84048,37
+84049,29
+84051,32
+84052,40
+84054,30
+84055,33
+84056,24
+84057,22
+84058,38
+84059,36
+84060,30
+84061,22
+84062,29
+84063,38
+84064,52
+84066,20
+84068,33
+84069,33
+84070,39
+84071,36
+84072,40
+84073,34
+84074,44
+84075,39
+84076,39
+84077,41
+84078,23
+84079,15
+84080,38
+84081,42
+84082,40
+84083,38
+84084,99
+84085,28
+84086,58
+84087,29
+84088,24
+84090,29
+84091,26
+84092,42
+84093,43
+84094,41
+84095,25
+84096,32
+84097,29
+84098,21
+84099,29
+84100,55
+84101,57
+84102,39
+84103,34
+84104,26
+84105,24
+84106,41
+84107,27
+84108,53
+84109,22
+84110,29
+84111,56
+84112,23
+84113,16
+84115,26
+84117,25
+84118,27
+84120,26
+84121,31
+84122,26
+84123,27
+84124,31
+84126,31
+84128,32
+84129,22
+84130,23
+84131,21
+84132,28
+84134,21
+84135,30
+84137,34
+84138,26
+84139,31
+84140,23
+84141,30
+84142,21
+84143,20
+84144,22
+84145,17
+84146,29
+84147,23
+84148,18
+84149,23
+84150,47
+84151,20
+84152,18
+84153,26
+84154,30
+84155,30
+84156,22
+84157,28
+84158,30
+84159,31
+84160,35
+84161,33
+84162,29
+84163,27
+84164,23
+84165,30
+84166,35
+84167,18
+84168,24
+84170,17
+84171,40
+84172,29
+84173,23
+84174,48
+84175,38
+84176,28
+84178,33
+84179,27
+84180,36
+84181,34
+84182,23
+84183,16
+84185,28
+84186,29
+84187,35
+84189,25
+84191,23
+84192,50
+84193,29
+84194,21
+84195,22
+84197,37
+84198,38
+84200,38
+84202,39
+84203,25
+84205,30
+84206,25
+84207,22
+84209,35
+84210,43
+84211,48
+84212,23
+84213,33
+84214,28
+84215,38
+84216,24
+84218,28
+84219,53
+84220,33
+84221,19
+84222,40
+84223,36
+84224,27
+84226,28
+84227,24
+84228,23
+84229,38
+84230,27
+84231,36
+84232,29
+84233,46
+84234,27
+84235,24
+84238,20
+84239,34
+84240,24
+84242,23
+84243,23
+84245,31
+84246,26
+84247,35
+84248,34
+84249,29
+84250,41
+84251,34
+84252,24
+84254,58
+84255,29
+84256,29
+84258,24
+84259,47
+84261,24
+84262,28
+84263,43
+84264,33
+84265,37
+84266,19
+84267,25
+84268,19
+84269,47
+84270,18
+84271,30
+84272,29
+84273,29
+84274,25
+84276,36
+84277,37
+84278,25
+84279,23
+84280,34
+84281,25
+84282,25
+84283,41
+84284,35
+84285,36
+84286,34
+84288,32
+84289,34
+84290,19
+84291,37
+84292,24
+84293,30
+84294,39
+84295,35
+84296,26
+84297,30
+84300,20
+84301,30
+84302,31
+84303,23
+84304,31
+84305,42
+84306,24
+84307,32
+84308,26
+84309,51
+84310,47
+84313,27
+84314,20
+84315,84
+84316,41
+84317,57
+84319,25
+84320,36
+84321,42
+84323,59
+84324,25
+84325,37
+84326,31
+84327,23
+84328,28
+84329,34
+84330,28
+84331,41
+84332,25
+84333,33
+84334,26
+84335,24
+84336,28
+84337,26
+84338,26
+84339,23
+84340,43
+84341,25
+84342,19
+84343,22
+84344,22
+84345,19
+84346,23
+84347,27
+84348,29
+84349,35
+84350,35
+84351,28
+84352,28
+84353,41
+84354,19
+84355,28
+84356,23
+84357,30
+84358,30
+84359,48
+84360,27
+84362,37
+84363,37
+84364,20
+84365,30
+84366,28
+84367,37
+84368,24
+84370,34
+84371,19
+84372,31
+84373,40
+84374,40
+84378,20
+84379,36
+84380,30
+84381,30
+84382,25
+84383,57
+84384,23
+84385,27
+84386,38
+84387,39
+84388,36
+84389,33
+84390,59
+84391,42
+84393,30
+84394,30
+84395,23
+84396,20
+84398,20
+84399,50
+84401,23
+84402,20
+84403,24
+84404,26
+84405,28
+84407,46
+84408,44
+84409,62
+84410,18
+84411,32
+84413,26
+84414,32
+84417,29
+84418,37
+84419,25
+84420,25
+84421,39
+84422,35
+84423,25
+84425,32
+84426,30
+84427,28
+84428,40
+84430,50
+84431,20
+84432,32
+84433,20
+84434,24
+84435,29
+84436,33
+84437,37
+84438,33
+84439,27
+84440,40
+84441,26
+84442,48
+84444,29
+84445,27
+84446,19
+84447,26
+84448,35
+84449,32
+84450,38
+84451,27
+84452,20
+84453,31
+84454,33
+84455,49
+84458,36
+84459,34
+84460,33
+84462,31
+84463,25
+84464,44
+84465,36
+84466,23
+84467,21
+84468,25
+84469,39
+84471,27
+84472,41
+84473,25
+84474,33
+84475,30
+84476,52
+84477,22
+84478,32
+84479,25
+84480,17
+84481,29
+84482,25
+84483,33
+84485,23
+84486,20
+84487,45
+84488,32
+84489,44
+84490,57
+84491,28
+84492,29
+84493,30
+84494,28
+84495,20
+84496,28
+84497,42
+84498,35
+84499,28
+84500,39
+84502,29
+84503,26
+84507,16
+84508,29
+84510,36
+84511,69
+84512,23
+84513,29
+84514,29
+84515,35
+84517,19
+84518,34
+84519,17
+84520,35
+84521,50
+84522,26
+84523,17
+84524,20
+84525,31
+84526,23
+84527,32
+84528,21
+84529,26
+84530,27
+84531,22
+84532,22
+84533,24
+84534,25
+84536,25
+84537,23
+84538,28
+84540,17
+84541,24
+84542,29
+84544,17
+84545,33
+84546,24
+84547,29
+84548,39
+84549,41
+84550,21
+84552,21
+84553,21
+84554,34
+84555,26
+84556,53
+84557,26
+84559,19
+84561,49
+84562,18
+84564,27
+84565,31
+84566,22
+84567,37
+84568,26
+84569,49
+84570,34
+84571,23
+84572,30
+84573,29
+84574,34
+84575,45
+84576,45
+84577,14
+84578,32
+84579,36
+84580,42
+84581,25
+84582,35
+84583,16
+84584,30
+84585,36
+84587,32
+84588,25
+84590,53
+84591,39
+84592,28
+84593,39
+84594,34
+84595,19
+84596,35
+84597,24
+84598,45
+84599,22
+84601,43
+84602,42
+84603,22
+84604,24
+84605,37
+84606,30
+84607,28
+84608,29
+84610,23
+84611,29
+84612,39
+84613,30
+84614,26
+84615,25
+84616,50
+84618,32
+84620,17
+84621,33
+84622,26
+84623,31
+84624,24
+84625,24
+84626,38
+84627,26
+84628,23
+84629,23
+84630,23
+84631,26
+84632,37
+84633,19
+84635,38
+84637,35
+84638,33
+84639,18
+84640,31
+84641,22
+84642,23
+84643,36
+84644,38
+84645,26
+84646,30
+84648,31
+84649,61
+84650,21
+84651,32
+84652,28
+84653,29
+84654,24
+84655,26
+84657,39
+84658,37
+84659,31
+84660,50
+84661,18
+84662,32
+84663,29
+84664,21
+84665,32
+84666,1
+84667,21
+84668,55
+84670,49
+84672,37
+84673,60
+84675,30
+84676,22
+84677,30
+84678,31
+84679,40
+84680,34
+84681,36
+84682,28
+84683,35
+84684,31
+84685,31
+84686,28
+84689,35
+84690,27
+84691,31
+84692,17
+84693,23
+84695,20
+84696,31
+84697,23
+84698,21
+84700,29
+84702,33
+84703,23
+84704,24
+84705,45
+84706,27
+84707,22
+84708,26
+84709,27
+84710,31
+84711,39
+84712,31
+84713,23
+84715,39
+84716,31
+84718,31
+84720,21
+84721,32
+84723,24
+84724,25
+84725,32
+84726,27
+84727,24
+84728,26
+84730,30
+84731,30
+84732,37
+84733,20
+84734,12
+84735,40
+84736,32
+84737,29
+84738,46
+84739,61
+84740,54
+84741,25
+84742,55
+84743,63
+84745,28
+84746,21
+84747,38
+84748,20
+84749,26
+84750,37
+84751,25
+84752,37
+84753,32
+84754,24
+84755,29
+84756,29
+84757,28
+84758,30
+84759,22
+84760,54
+84762,31
+84763,24
+84764,28
+84765,28
+84766,32
+84767,30
+84768,25
+84771,38
+84772,53
+84773,44
+84774,28
+84775,27
+84776,52
+84777,53
+84778,23
+84779,51
+84780,19
+84781,33
+84782,37
+84783,30
+84784,35
+84785,28
+84786,28
+84787,30
+84788,51
+84789,28
+84790,24
+84791,37
+84792,23
+84793,31
+84795,15
+84796,38
+84797,22
+84800,41
+84801,25
+84802,37
+84803,32
+84804,24
+84805,26
+84806,21
+84807,19
+84808,36
+84809,24
+84810,40
+84811,31
+84812,31
+84813,57
+84814,34
+84815,23
+84816,36
+84817,16
+84818,35
+84819,32
+84821,42
+84822,30
+84823,27
+84824,31
+84826,24
+84827,18
+84829,36
+84830,32
+84831,23
+84832,20
+84833,23
+84834,25
+84835,17
+84836,27
+84837,46
+84838,55
+84839,28
+84840,39
+84841,43
+84842,29
+84843,33
+84844,42
+84845,23
+84846,24
+84847,66
+84848,43
+84849,23
+84850,22
+84851,20
+84852,24
+84853,22
+84854,28
+84855,20
+84856,24
+84857,48
+84858,33
+84859,22
+84860,18
+84861,26
+84862,70
+84864,19
+84865,34
+84866,35
+84867,47
+84868,46
+84870,24
+84871,21
+84874,28
+84875,28
+84876,17
+84877,35
+84878,45
+84879,27
+84880,28
+84882,27
+84883,42
+84884,28
+84885,29
+84886,50
+84887,38
+84888,18
+84889,24
+84890,32
+84891,49
+84892,28
+84893,23
+84894,34
+84896,34
+84897,26
+84898,43
+84899,27
+84901,22
+84902,29
+84903,35
+84904,22
+84905,26
+84906,37
+84907,20
+84908,42
+84909,23
+84910,49
+84911,26
+84912,23
+84913,17
+84914,29
+84915,26
+84916,46
+84917,23
+84918,25
+84919,41
+84920,31
+84921,46
+84922,34
+84923,28
+84924,31
+84925,31
+84926,34
+84927,29
+84929,27
+84930,22
+84931,36
+84932,29
+84933,31
+84934,29
+84935,39
+84936,39
+84937,41
+84938,26
+84939,24
+84940,39
+84941,26
+84942,23
+84943,19
+84944,24
+84945,37
+84947,25
+84948,22
+84949,30
+84950,34
+84951,50
+84953,27
+84954,36
+84955,39
+84956,31
+84957,29
+84958,39
+84959,14
+84960,41
+84961,23
+84962,22
+84963,26
+84964,43
+84965,27
+84966,26
+84967,25
+84968,29
+84969,30
+84970,32
+84971,30
+84972,51
+84973,55
+84974,55
+84975,28
+84976,25
+84977,28
+84978,29
+84979,24
+84980,34
+84981,36
+84982,22
+84983,22
+84984,21
+84985,34
+84986,41
+84987,27
+84988,22
+84989,22
+84990,18
+84991,24
+84993,55
+84994,22
+84995,18
+84996,29
+84997,30
+84999,36
+85000,29
+85001,33
+85002,24
+85003,40
+85004,30
+85005,44
+85007,40
+85008,28
+85009,28
+85010,15
+85011,43
+85012,32
+85013,29
+85014,18
+85015,30
+85016,30
+85017,49
+85018,24
+85019,37
+85020,40
+85021,27
+85022,35
+85023,21
+85024,31
+85025,27
+85026,25
+85027,29
+85028,26
+85029,18
+85031,17
+85032,40
+85033,24
+85035,30
+85037,29
+85038,29
+85039,40
+85040,33
+85041,20
+85042,36
+85043,29
+85044,24
+85045,21
+85046,25
+85047,35
+85048,30
+85049,26
+85050,43
+85051,20
+85052,36
+85053,34
+85054,26
+85056,23
+85057,23
+85058,24
+85059,31
+85060,26
+85061,24
+85062,30
+85063,44
+85064,24
+85065,26
+85066,39
+85067,30
+85068,28
+85069,34
+85070,30
+85071,28
+85072,18
+85073,21
+85074,28
+85075,50
+85077,16
+85079,20
+85080,31
+85081,33
+85082,27
+85083,36
+85084,33
+85085,21
+85086,34
+85087,19
+85088,41
+85089,39
+85090,25
+85091,26
+85092,37
+85093,23
+85095,33
+85096,37
+85098,27
+85099,33
+85100,26
+85101,48
+85102,29
+85103,31
+85104,49
+85105,30
+85106,41
+85107,27
+85108,23
+85109,49
+85110,29
+85111,47
+85113,31
+85114,31
+85115,35
+85116,34
+85117,25
+85118,21
+85119,35
+85120,44
+85121,44
+85122,18
+85123,33
+85124,23
+85125,27
+85126,29
+85127,20
+85128,22
+85129,30
+85130,33
+85131,42
+85133,31
+85134,36
+85135,18
+85137,33
+85138,39
+85139,23
+85140,24
+85141,30
+85143,32
+85144,35
+85145,29
+85146,21
+85148,31
+85149,34
+85150,44
+85151,27
+85152,26
+85153,28
+85154,75
+85155,40
+85156,31
+85157,20
+85159,29
+85160,18
+85161,23
+85162,37
+85163,27
+85164,39
+85165,35
+85166,29
+85167,30
+85168,35
+85169,28
+85170,35
+85171,25
+85172,19
+85173,18
+85174,20
+85175,28
+85176,22
+85177,32
+85178,21
+85179,36
+85181,27
+85183,21
+85184,30
+85185,39
+85186,29
+85187,22
+85189,21
+85190,49
+85191,32
+85192,25
+85193,29
+85194,23
+85195,23
+85196,23
+85197,23
+85198,27
+85199,44
+85200,43
+85201,45
+85202,20
+85203,26
+85204,34
+85205,23
+85206,30
+85207,20
+85209,28
+85210,30
+85211,26
+85212,26
+85213,34
+85214,40
+85215,49
+85216,27
+85217,25
+85218,26
+85219,25
+85220,25
+85221,24
+85223,23
+85224,40
+85226,24
+85227,23
+85228,34
+85229,31
+85230,25
+85231,33
+85232,41
+85233,19
+85234,22
+85235,32
+85236,31
+85237,22
+85238,35
+85239,34
+85240,28
+85241,22
+85242,23
+85243,37
+85244,30
+85246,32
+85247,32
+85248,54
+85249,29
+85250,55
+85251,27
+85252,50
+85253,30
+85254,29
+85255,27
+85256,25
+85257,22
+85258,36
+85259,39
+85260,27
+85261,40
+85262,22
+85263,23
+85264,25
+85265,24
+85267,39
+85269,38
+85270,35
+85271,34
+85272,29
+85273,31
+85274,37
+85275,25
+85276,24
+85277,24
+85278,28
+85279,30
+85280,27
+85281,13
+85282,24
+85283,29
+85284,30
+85285,29
+85286,24
+85287,27
+85288,35
+85289,22
+85290,23
+85291,26
+85292,23
+85293,18
+85294,18
+85295,31
+85296,25
+85297,19
+85298,37
+85299,33
+85300,23
+85301,31
+85302,24
+85303,2
+85304,21
+85305,29
+85306,22
+85307,25
+85308,30
+85309,47
+85310,34
+85311,28
+85312,26
+85313,39
+85315,25
+85316,35
+85317,23
+85318,32
+85319,53
+85320,32
+85321,23
+85322,32
+85323,22
+85324,30
+85325,21
+85326,27
+85327,22
+85328,31
+85329,30
+85330,33
+85331,22
+85332,44
+85333,29
+85334,34
+85335,28
+85336,42
+85337,27
+85339,23
+85340,32
+85341,21
+85342,26
+85343,29
+85344,38
+85345,35
+85347,35
+85348,23
+85349,18
+85350,28
+85352,17
+85353,24
+85354,21
+85355,48
+85357,23
+85358,36
+85360,55
+85361,22
+85362,28
+85363,41
+85364,27
+85366,29
+85367,30
+85368,42
+85369,37
+85370,39
+85371,36
+85372,30
+85373,47
+85374,48
+85375,21
+85377,30
+85378,64
+85379,32
+85380,33
+85381,30
+85382,24
+85384,29
+85385,26
+85386,32
+85387,25
+85388,47
+85389,36
+85391,30
+85392,28
+85393,28
+85394,42
+85395,28
+85397,14
+85398,33
+85399,30
+85400,25
+85401,43
+85402,34
+85403,34
+85404,31
+85405,32
+85406,19
+85407,26
+85408,45
+85409,26
+85411,20
+85412,26
+85413,29
+85414,26
+85415,32
+85416,42
+85417,33
+85418,27
+85419,26
+85420,23
+85421,48
+85422,33
+85423,33
+85424,34
+85426,37
+85427,22
+85428,20
+85430,29
+85431,33
+85432,36
+85433,23
+85434,23
+85436,17
+85437,26
+85438,28
+85439,31
+85440,21
+85441,27
+85442,28
+85443,31
+85444,24
+85445,44
+85446,43
+85447,23
+85448,24
+85449,25
+85450,25
+85451,35
+85452,30
+85453,29
+85454,25
+85455,29
+85457,41
+85458,42
+85459,28
+85460,19
+85461,38
+85462,31
+85463,25
+85464,36
+85465,23
+85466,34
+85467,30
+85468,22
+85469,22
+85470,36
+85471,32
+85472,35
+85473,17
+85474,33
+85475,24
+85476,26
+85477,30
+85479,44
+85480,42
+85482,22
+85483,30
+85484,35
+85485,24
+85487,16
+85488,31
+85489,27
+85490,39
+85491,17
+85492,36
+85493,45
+85496,26
+85497,19
+85498,32
+85499,18
+85500,28
+85501,36
+85502,69
+85503,42
+85504,22
+85505,20
+85506,38
+85507,20
+85508,20
+85509,19
+85510,28
+85511,18
+85512,46
+85513,36
+85514,30
+85515,30
+85516,60
+85518,41
+85519,27
+85520,28
+85521,20
+85522,27
+85523,28
+85524,29
+85525,28
+85526,30
+85530,67
+85531,24
+85532,43
+85533,43
+85534,32
+85535,24
+85536,26
+85537,30
+85539,26
+85540,28
+85541,27
+85542,32
+85543,29
+85544,40
+85545,49
+85546,32
+85547,31
+85548,23
+85549,45
+85550,39
+85551,24
+85552,25
+85553,31
+85554,42
+85555,23
+85556,19
+85557,26
+85558,26
+85559,32
+85560,21
+85561,27
+85562,23
+85563,32
+85564,21
+85565,30
+85566,37
+85567,27
+85569,32
+85570,49
+85571,27
+85572,37
+85573,32
+85574,29
+85575,34
+85576,38
+85577,26
+85578,27
+85579,26
+85580,19
+85581,23
+85582,17
+85583,33
+85584,31
+85587,60
+85588,21
+85589,30
+85590,23
+85591,26
+85592,28
+85593,24
+85594,36
+85595,24
+85596,31
+85598,47
+85600,30
+85601,28
+85602,25
+85603,23
+85604,25
+85605,24
+85606,26
+85607,29
+85608,38
+85609,28
+85610,25
+85611,40
+85612,29
+85614,30
+85615,26
+85616,27
+85617,41
+85618,30
+85619,37
+85620,28
+85621,28
+85622,25
+85624,23
+85625,30
+85626,30
+85627,32
+85628,40
+85629,41
+85630,30
+85631,25
+85632,25
+85633,16
+85634,26
+85635,36
+85636,34
+85638,21
+85639,58
+85640,28
+85641,28
+85643,34
+85644,26
+85646,24
+85647,34
+85648,32
+85649,23
+85650,45
+85651,28
+85652,30
+85653,23
+85654,34
+85655,38
+85656,31
+85657,39
+85659,24
+85660,30
+85661,26
+85662,19
+85663,26
+85664,36
+85665,35
+85666,37
+85667,26
+85668,20
+85669,28
+85670,29
+85671,41
+85673,50
+85674,41
+85675,28
+85677,38
+85678,23
+85679,36
+85680,26
+85681,28
+85682,30
+85683,30
+85684,29
+85685,28
+85686,29
+85687,43
+85688,27
+85689,49
+85690,29
+85691,33
+85692,16
+85693,22
+85694,23
+85695,39
+85696,33
+85698,40
+85699,22
+85700,36
+85701,16
+85702,27
+85703,17
+85704,55
+85705,26
+85706,18
+85707,30
+85708,30
+85709,34
+85711,26
+85712,25
+85713,22
+85714,25
+85715,28
+85716,23
+85718,46
+85719,32
+85720,31
+85721,42
+85722,30
+85723,42
+85724,31
+85725,17
+85728,40
+85729,45
+85730,38
+85731,25
+85732,37
+85733,32
+85734,22
+85736,34
+85739,28
+85740,16
+85741,23
+85742,35
+85743,32
+85747,26
+85748,29
+85749,28
+85750,24
+85751,27
+85752,47
+85753,35
+85754,57
+85755,30
+85756,31
+85757,38
+85758,22
+85759,30
+85760,40
+85761,24
+85762,32
+85763,44
+85764,34
+85765,28
+85766,24
+85767,25
+85768,26
+85769,27
+85771,44
+85772,35
+85773,39
+85774,32
+85775,26
+85776,57
+85777,24
+85778,28
+85779,40
+85780,21
+85781,27
+85782,35
+85783,25
+85784,32
+85785,53
+85786,27
+85787,32
+85788,27
+85789,31
+85790,23
+85791,29
+85792,22
+85793,23
+85794,28
+85795,34
+85796,35
+85797,27
+85799,31
+85800,23
+85801,24
+85802,39
+85803,32
+85804,34
+85805,18
+85806,31
+85807,23
+85808,24
+85809,14
+85810,32
+85811,31
+85812,29
+85813,25
+85814,23
+85815,45
+85816,36
+85817,47
+85818,24
+85819,23
+85820,21
+85821,21
+85822,23
+85823,32
+85824,23
+85825,24
+85826,21
+85828,46
+85829,54
+85830,27
+85831,21
+85832,52
+85833,25
+85834,40
+85835,36
+85836,23
+85837,29
+85838,33
+85840,37
+85841,26
+85843,56
+85844,17
+85845,38
+85846,48
+85847,35
+85849,67
+85850,22
+85851,23
+85852,26
+85853,22
+85854,25
+85855,24
+85856,31
+85857,47
+85858,32
+85859,24
+85860,31
+85861,30
+85862,32
+85863,48
+85864,27
+85865,29
+85866,27
+85867,24
+85868,43
+85869,34
+85870,23
+85871,33
+85873,25
+85874,38
+85875,27
+85876,21
+85877,25
+85878,25
+85879,28
+85880,39
+85881,24
+85883,22
+85884,24
+85885,15
+85886,36
+85887,36
+85888,20
+85889,60
+85890,29
+85891,27
+85892,22
+85894,25
+85895,31
+85896,25
+85898,30
+85900,24
+85901,39
+85902,59
+85903,33
+85904,30
+85905,28
+85906,41
+85907,27
+85908,26
+85909,42
+85910,45
+85911,25
+85912,24
+85913,30
+85914,55
+85915,28
+85916,24
+85917,26
+85918,34
+85919,29
+85920,32
+85921,28
+85922,23
+85924,28
+85925,33
+85926,42
+85927,54
+85928,24
+85929,24
+85930,33
+85931,40
+85932,25
+85933,30
+85935,23
+85936,21
+85937,38
+85938,22
+85939,29
+85940,28
+85941,18
+85943,35
+85944,26
+85946,25
+85947,24
+85948,26
+85949,21
+85950,38
+85951,35
+85952,25
+85953,39
+85954,53
+85957,29
+85958,26
+85959,27
+85960,17
+85962,35
+85963,25
+85964,34
+85966,42
+85968,22
+85969,30
+85970,24
+85971,37
+85972,22
+85973,25
+85974,74
+85976,17
+85977,31
+85978,26
+85979,26
+85980,50
+85981,30
+85982,27
+85983,32
+85984,47
+85986,24
+85987,27
+85988,66
+85989,41
+85990,20
+85992,41
+85993,32
+85995,52
+85996,25
+85997,24
+85998,36
+86001,25
+86002,31
+86003,33
+86004,36
+86005,27
+86006,27
+86007,27
+86008,37
+86009,47
+86010,27
+86011,23
+86013,38
+86014,21
+86015,27
+86016,26
+86017,24
+86018,26
+86019,31
+86021,25
+86022,41
+86024,45
+86025,34
+86026,54
+86027,38
+86028,37
+86029,50
+86030,42
+86031,23
+86032,21
+86033,31
+86034,31
+86035,25
+86036,22
+86037,34
+86038,32
+86039,27
+86040,33
+86041,27
+86042,20
+86043,31
+86045,18
+86046,29
+86047,20
+86048,33
+86049,29
+86050,26
+86052,23
+86054,29
+86055,29
+86056,30
+86057,26
+86058,38
+86060,24
+86061,22
+86062,24
+86063,29
+86065,23
+86066,40
+86067,25
+86068,24
+86069,31
+86070,25
+86071,30
+86072,30
+86073,35
+86074,19
+86075,26
+86076,24
+86077,40
+86078,17
+86079,28
+86080,28
+86081,25
+86082,42
+86084,27
+86085,21
+86086,50
+86087,32
+86088,21
+86090,31
+86091,22
+86093,14
+86094,28
+86095,24
+86096,29
+86097,20
+86098,46
+86099,35
+86100,39
+86101,26
+86102,31
+86103,28
+86105,20
+86106,29
+86107,30
+86108,42
+86109,31
+86110,26
+86111,35
+86112,26
+86113,30
+86114,35
+86115,29
+86116,20
+86117,25
+86118,24
+86119,33
+86120,23
+86121,23
+86122,34
+86123,40
+86124,19
+86125,22
+86126,38
+86127,31
+86128,28
+86129,30
+86130,24
+86131,45
+86132,34
+86133,24
+86134,26
+86136,31
+86137,32
+86138,36
+86139,22
+86140,24
+86141,24
+86142,48
+86143,31
+86144,40
+86145,16
+86146,29
+86147,33
+86148,24
+86149,26
+86150,30
+86151,45
+86152,27
+86153,27
+86154,37
+86156,25
+86157,20
+86158,20
+86159,23
+86160,55
+86161,35
+86162,29
+86163,29
+86166,38
+86167,26
+86168,36
+86169,23
+86170,26
+86171,34
+86172,29
+86173,20
+86174,37
+86175,32
+86176,42
+86177,32
+86178,32
+86179,29
+86180,15
+86181,22
+86182,35
+86183,28
+86185,31
+86186,23
+86187,36
+86188,38
+86189,30
+86190,29
+86191,21
+86192,25
+86193,34
+86194,34
+86195,41
+86196,46
+86197,42
+86198,34
+86199,24
+86200,29
+86201,43
+86204,16
+86205,20
+86206,26
+86207,46
+86208,31
+86209,30
+86210,23
+86211,38
+86212,40
+86213,26
+86214,30
+86215,27
+86216,29
+86218,28
+86219,28
+86220,30
+86221,36
+86222,23
+86223,30
+86224,25
+86225,28
+86226,24
+86227,29
+86228,29
+86230,38
+86231,25
+86232,40
+86234,25
+86235,22
+86236,41
+86237,32
+86238,26
+86239,25
+86240,50
+86241,27
+86242,29
+86243,39
+86244,62
+86245,27
+86246,30
+86247,22
+86248,29
+86249,24
+86250,43
+86252,29
+86253,29
+86254,34
+86255,37
+86256,39
+86257,23
+86259,16
+86260,26
+86261,40
+86262,28
+86263,27
+86264,38
+86265,34
+86266,33
+86267,26
+86268,28
+86269,30
+86270,31
+86271,31
+86272,25
+86273,26
+86274,14
+86275,14
+86276,27
+86277,32
+86278,27
+86279,54
+86280,26
+86281,28
+86282,23
+86283,15
+86284,29
+86285,35
+86286,28
+86287,18
+86288,17
+86289,34
+86290,25
+86291,25
+86292,31
+86293,32
+86294,22
+86295,45
+86296,30
+86297,22
+86298,19
+86299,23
+86300,28
+86301,26
+86302,28
+86304,45
+86305,26
+86307,38
+86308,31
+86310,28
+86311,28
+86312,34
+86313,31
+86314,28
+86315,31
+86316,36
+86317,22
+86318,30
+86319,25
+86320,30
+86321,28
+86322,27
+86323,29
+86324,25
+86325,23
+86326,34
+86327,25
+86328,19
+86329,24
+86330,18
+86331,29
+86332,46
+86333,27
+86334,29
+86335,31
+86336,22
+86337,27
+86338,32
+86339,34
+86340,21
+86341,23
+86342,32
+86343,17
+86344,28
+86345,22
+86346,34
+86347,25
+86349,31
+86350,28
+86351,27
+86352,28
+86353,29
+86355,30
+86356,47
+86357,30
+86358,20
+86359,15
+86360,28
+86363,15
+86364,33
+86365,38
+86366,28
+86367,32
+86368,26
+86369,28
+86370,64
+86371,33
+86372,27
+86373,29
+86374,47
+86375,23
+86376,23
+86377,38
+86378,30
+86379,28
+86380,29
+86381,31
+86382,36
+86383,27
+86384,38
+86385,19
+86386,50
+86387,53
+86388,19
+86389,29
+86390,35
+86391,26
+86392,28
+86393,22
+86394,26
+86395,35
+86396,36
+86397,28
+86398,30
+86399,20
+86400,21
+86401,32
+86402,32
+86403,19
+86404,26
+86405,35
+86406,22
+86408,32
+86409,49
+86410,32
+86411,29
+86412,44
+86413,27
+86414,44
+86415,18
+86416,26
+86417,22
+86418,21
+86419,16
+86420,31
+86421,41
+86422,35
+86423,45
+86424,34
+86425,26
+86426,23
+86427,44
+86428,22
+86429,25
+86431,26
+86432,60
+86433,28
+86434,37
+86437,38
+86438,33
+86439,19
+86440,24
+86441,27
+86442,27
+86444,28
+86445,22
+86446,22
+86447,30
+86449,34
+86450,23
+86452,27
+86453,26
+86454,30
+86457,33
+86458,24
+86459,26
+86460,33
+86462,33
+86464,26
+86465,36
+86466,21
+86467,26
+86468,71
+86469,28
+86470,27
+86471,55
+86472,42
+86474,24
+86475,19
+86476,20
+86477,20
+86478,28
+86479,26
+86480,29
+86481,32
+86482,24
+86483,36
+86484,35
+86485,27
+86486,22
+86487,43
+86488,23
+86489,21
+86491,43
+86492,35
+86493,31
+86494,26
+86495,32
+86496,45
+86497,38
+86498,25
+86499,20
+86500,44
+86501,19
+86502,28
+86503,24
+86504,29
+86505,32
+86506,30
+86507,35
+86508,26
+86509,33
+86510,22
+86511,31
+86512,23
+86513,55
+86514,17
+86516,24
+86517,24
+86519,22
+86520,33
+86521,22
+86522,18
+86523,39
+86524,20
+86525,39
+86526,33
+86527,26
+86528,38
+86529,55
+86530,20
+86531,13
+86532,32
+86533,35
+86534,32
+86535,33
+86536,34
+86537,29
+86538,58
+86539,27
+86541,24
+86542,43
+86543,18
+86545,25
+86546,43
+86547,22
+86548,26
+86549,31
+86550,26
+86551,30
+86553,13
+86554,33
+86555,29
+86556,14
+86558,41
+86559,31
+86560,24
+86562,32
+86563,26
+86564,33
+86565,46
+86567,30
+86568,30
+86570,23
+86571,20
+86572,35
+86573,41
+86574,27
+86575,40
+86576,30
+86577,22
+86578,35
+86579,32
+86580,3
+86581,24
+86582,53
+86583,30
+86585,32
+86586,28
+86587,27
+86588,19
+86589,24
+86590,22
+86591,33
+86593,35
+86594,55
+86596,28
+86597,46
+86598,38
+86599,24
+86600,28
+86601,21
+86602,21
+86603,35
+86604,21
+86605,45
+86606,27
+86607,25
+86608,25
+86609,24
+86610,36
+86612,35
+86614,41
+86615,21
+86616,37
+86618,27
+86620,25
+86621,19
+86622,23
+86623,25
+86624,25
+86625,25
+86626,22
+86627,25
+86628,25
+86629,23
+86630,58
+86631,33
+86632,37
+86633,23
+86634,31
+86635,20
+86636,24
+86637,27
+86639,34
+86640,22
+86641,36
+86642,24
+86643,41
+86644,22
+86645,34
+86646,25
+86647,28
+86648,33
+86649,42
+86650,25
+86651,23
+86652,43
+86653,34
+86654,29
+86655,15
+86656,26
+86657,28
+86659,23
+86660,34
+86661,29
+86663,38
+86664,25
+86665,23
+86666,24
+86667,25
+86668,30
+86669,25
+86670,24
+86671,47
+86672,26
+86673,35
+86674,15
+86675,20
+86676,30
+86677,32
+86678,31
+86679,23
+86680,27
+86682,38
+86684,26
+86685,13
+86686,28
+86687,32
+86688,25
+86689,55
+86690,24
+86691,25
+86692,31
+86693,27
+86694,40
+86695,15
+86696,26
+86698,21
+86699,19
+86700,27
+86701,53
+86702,22
+86703,54
+86704,22
+86705,35
+86706,18
+86708,21
+86709,40
+86710,38
+86711,29
+86712,42
+86713,32
+86715,33
+86716,62
+86717,38
+86718,13
+86719,35
+86720,30
+86721,38
+86722,26
+86723,26
+86724,23
+86725,29
+86726,27
+86727,21
+86728,31
+86729,28
+86730,23
+86731,26
+86733,25
+86734,25
+86735,24
+86736,23
+86737,28
+86738,24
+86739,23
+86740,35
+86741,25
+86744,51
+86745,27
+86746,24
+86749,20
+86750,31
+86751,30
+86752,28
+86753,30
+86754,16
+86755,24
+86756,21
+86757,39
+86758,25
+86760,38
+86761,32
+86762,31
+86763,31
+86764,29
+86765,30
+86767,19
+86768,51
+86769,43
+86770,32
+86771,36
+86772,25
+86773,31
+86774,40
+86776,24
+86777,32
+86778,37
+86779,36
+86780,32
+86781,24
+86782,18
+86783,21
+86784,24
+86785,33
+86786,24
+86787,24
+86788,24
+86789,27
+86790,29
+86791,24
+86792,31
+86793,26
+86794,37
+86795,24
+86796,34
+86797,34
+86798,38
+86799,37
+86800,32
+86801,20
+86802,31
+86804,28
+86805,29
+86807,20
+86808,23
+86809,28
+86810,29
+86811,21
+86812,20
+86813,23
+86814,30
+86815,33
+86816,38
+86818,27
+86819,35
+86820,25
+86821,33
+86822,33
+86823,14
+86824,30
+86825,26
+86826,28
+86827,40
+86828,34
+86829,34
+86831,18
+86833,37
+86834,20
+86835,28
+86836,31
+86837,24
+86838,41
+86840,51
+86842,37
+86843,16
+86844,21
+86845,26
+86846,26
+86847,38
+86848,27
+86849,32
+86850,24
+86851,30
+86853,20
+86854,49
+86855,32
+86856,50
+86857,43
+86859,23
+86860,40
+86861,26
+86862,29
+86863,35
+86864,58
+86865,47
+86866,24
+86868,37
+86869,53
+86870,33
+86871,26
+86872,31
+86873,23
+86874,25
+86875,42
+86877,30
+86879,34
+86880,27
+86881,22
+86883,31
+86884,38
+86885,20
+86886,45
+86888,22
+86889,44
+86890,35
+86891,26
+86892,24
+86893,29
+86894,24
+86895,32
+86896,27
+86897,30
+86898,36
+86899,28
+86900,27
+86901,30
+86902,24
+86903,17
+86904,26
+86905,31
+86906,36
+86907,25
+86908,24
+86909,22
+86910,35
+86911,25
+86912,30
+86913,29
+86914,28
+86915,27
+86916,24
+86917,27
+86918,25
+86919,38
+86920,40
+86921,14
+86922,34
+86923,25
+86924,27
+86925,45
+86926,32
+86927,29
+86928,45
+86929,25
+86931,62
+86932,25
+86933,39
+86934,31
+86935,38
+86936,35
+86937,31
+86938,26
+86939,25
+86940,17
+86941,28
+86942,40
+86943,40
+86944,24
+86945,38
+86946,29
+86948,30
+86951,28
+86952,44
+86954,28
+86955,23
+86956,30
+86957,26
+86958,27
+86959,39
+86960,33
+86962,29
+86963,28
+86964,38
+86965,32
+86966,31
+86967,40
+86969,34
+86970,47
+86971,44
+86972,65
+86973,39
+86974,24
+86975,22
+86977,45
+86978,22
+86979,30
+86981,28
+86982,24
+86983,30
+86984,21
+86986,46
+86987,42
+86988,22
+86989,28
+86990,46
+86991,26
+86992,25
+86993,25
+86994,31
+86995,23
+86996,35
+86997,24
+87000,20
+87001,19
+87002,18
+87003,53
+87004,34
+87005,28
+87006,24
+87007,29
+87008,24
+87009,26
+87011,22
+87013,32
+87014,34
+87015,37
+87016,32
+87017,33
+87018,29
+87019,22
+87020,31
+87021,31
+87023,51
+87024,22
+87026,27
+87027,21
+87028,33
+87029,28
+87030,38
+87031,18
+87032,27
+87033,23
+87034,44
+87036,37
+87037,26
+87038,28
+87039,28
+87040,20
+87041,25
+87042,30
+87043,21
+87044,25
+87045,28
+87046,24
+87047,15
+87048,30
+87049,29
+87051,29
+87053,31
+87054,44
+87055,33
+87056,33
+87057,24
+87058,33
+87059,35
+87060,26
+87061,18
+87062,28
+87063,23
+87064,23
+87065,31
+87066,25
+87067,32
+87069,36
+87070,34
+87071,20
+87072,37
+87073,22
+87074,39
+87075,29
+87076,30
+87077,32
+87078,53
+87080,26
+87081,14
+87082,20
+87083,23
+87084,25
+87085,43
+87086,33
+87087,42
+87088,33
+87089,30
+87090,26
+87092,32
+87093,28
+87094,48
+87095,23
+87096,22
+87097,51
+87099,20
+87100,26
+87101,21
+87102,22
+87103,18
+87104,29
+87106,23
+87107,52
+87108,22
+87109,28
+87110,40
+87111,27
+87112,31
+87113,33
+87114,31
+87115,27
+87116,25
+87117,30
+87118,39
+87119,27
+87120,26
+87121,24
+87122,34
+87123,45
+87124,41
+87125,22
+87126,22
+87128,58
+87129,24
+87130,14
+87131,31
+87132,32
+87133,37
+87134,20
+87135,19
+87136,19
+87137,29
+87138,36
+87139,34
+87140,23
+87142,32
+87143,27
+87144,32
+87145,28
+87146,24
+87147,28
+87148,46
+87149,30
+87150,46
+87152,24
+87153,30
+87154,39
+87155,28
+87156,37
+87158,25
+87159,22
+87160,21
+87161,29
+87162,27
+87163,30
+87164,44
+87165,27
+87166,23
+87168,31
+87169,34
+87170,36
+87171,27
+87172,28
+87173,50
+87174,26
+87176,29
+87177,26
+87178,33
+87179,25
+87180,38
+87181,21
+87182,27
+87183,21
+87184,26
+87185,29
+87186,43
+87187,32
+87188,38
+87189,25
+87190,26
+87191,26
+87192,26
+87193,25
+87194,45
+87195,52
+87196,36
+87197,26
+87198,26
+87199,28
+87200,22
+87201,56
+87202,57
+87203,47
+87204,25
+87205,27
+87206,34
+87207,35
+87208,39
+87209,27
+87210,32
+87211,29
+87212,23
+87213,18
+87214,23
+87215,42
+87216,26
+87217,26
+87218,48
+87219,29
+87220,36
+87221,18
+87222,23
+87223,23
+87224,34
+87225,24
+87226,42
+87227,30
+87228,32
+87229,31
+87230,28
+87231,25
+87232,27
+87233,33
+87234,23
+87235,28
+87236,35
+87237,26
+87238,22
+87239,36
+87240,30
+87241,25
+87243,28
+87244,34
+87245,32
+87246,23
+87247,30
+87248,26
+87249,29
+87250,27
+87251,30
+87253,29
+87254,27
+87255,33
+87256,35
+87258,29
+87260,33
+87261,35
+87262,40
+87263,42
+87264,33
+87265,24
+87266,26
+87267,31
+87269,30
+87270,25
+87271,44
+87272,36
+87274,30
+87275,30
+87276,50
+87278,63
+87279,34
+87280,53
+87281,53
+87282,24
+87283,19
+87284,36
+87285,21
+87286,36
+87287,41
+87288,25
+87289,33
+87290,34
+87292,28
+87294,32
+87295,21
+87296,34
+87297,30
+87298,50
+87299,37
+87300,30
+87301,47
+87302,39
+87305,29
+87306,28
+87307,22
+87308,32
+87310,39
+87311,30
+87312,38
+87313,38
+87314,65
+87315,32
+87316,20
+87317,16
+87318,31
+87319,23
+87320,31
+87321,31
+87322,27
+87323,21
+87325,67
+87326,24
+87327,25
+87328,30
+87329,24
+87330,30
+87331,28
+87333,38
+87336,34
+87338,30
+87339,23
+87340,30
+87341,30
+87343,35
+87344,25
+87345,29
+87346,40
+87347,28
+87348,26
+87349,17
+87350,24
+87351,32
+87353,22
+87354,53
+87355,33
+87356,36
+87357,41
+87358,36
+87359,33
+87360,59
+87362,27
+87363,28
+87364,32
+87365,34
+87366,56
+87367,26
+87368,38
+87369,26
+87370,28
+87372,25
+87373,26
+87374,26
+87375,43
+87377,33
+87378,32
+87379,19
+87380,22
+87381,34
+87382,25
+87383,25
+87384,23
+87385,26
+87387,19
+87388,31
+87389,27
+87390,58
+87391,27
+87393,38
+87394,37
+87395,41
+87396,41
+87397,38
+87398,41
+87399,44
+87401,35
+87402,58
+87403,39
+87405,45
+87406,36
+87407,23
+87408,29
+87409,37
+87411,52
+87412,25
+87413,32
+87414,41
+87415,20
+87416,23
+87417,33
+87418,17
+87419,19
+87420,30
+87421,20
+87422,43
+87423,27
+87424,31
+87425,23
+87426,21
+87427,28
+87428,27
+87429,22
+87430,24
+87431,36
+87432,35
+87433,54
+87434,25
+87436,34
+87437,38
+87438,23
+87439,22
+87440,24
+87441,24
+87442,27
+87443,26
+87444,24
+87445,22
+87446,18
+87447,38
+87448,25
+87449,24
+87451,30
+87452,15
+87453,24
+87454,35
+87455,18
+87456,24
+87457,33
+87458,36
+87459,23
+87460,22
+87461,18
+87462,46
+87463,25
+87464,31
+87465,32
+87468,39
+87469,41
+87470,36
+87471,76
+87472,26
+87473,29
+87474,24
+87475,31
+87476,24
+87477,36
+87478,33
+87479,26
+87480,29
+87481,37
+87482,29
+87483,54
+87484,20
+87485,21
+87486,30
+87487,50
+87488,30
+87490,22
+87491,31
+87492,29
+87493,36
+87494,33
+87495,21
+87496,19
+87497,32
+87498,22
+87499,43
+87500,27
+87501,30
+87502,30
+87503,24
+87504,18
+87505,18
+87506,27
+87507,32
+87508,42
+87509,30
+87510,18
+87511,16
+87512,35
+87513,28
+87514,24
+87515,26
+87516,35
+87517,32
+87518,27
+87519,29
+87521,35
+87522,48
+87523,22
+87524,26
+87525,26
+87526,26
+87527,42
+87528,31
+87529,26
+87531,24
+87534,34
+87535,50
+87536,21
+87537,29
+87538,22
+87539,28
+87540,29
+87541,27
+87542,29
+87543,21
+87544,27
+87546,50
+87547,22
+87548,46
+87549,40
+87550,22
+87551,35
+87552,28
+87553,30
+87554,41
+87555,33
+87556,27
+87558,19
+87559,35
+87560,21
+87562,29
+87563,43
+87564,26
+87565,32
+87566,33
+87567,38
+87568,23
+87569,13
+87570,25
+87571,23
+87572,27
+87573,28
+87574,24
+87575,24
+87576,33
+87577,29
+87578,36
+87579,40
+87580,26
+87581,25
+87582,26
+87584,48
+87585,23
+87586,24
+87587,21
+87588,52
+87590,29
+87591,22
+87592,26
+87593,26
+87594,21
+87595,25
+87596,44
+87599,23
+87600,27
+87601,37
+87602,34
+87603,19
+87604,32
+87606,24
+87607,33
+87608,18
+87609,36
+87610,42
+87611,32
+87612,24
+87613,40
+87614,28
+87615,28
+87616,20
+87617,34
+87618,19
+87619,31
+87620,17
+87621,17
+87622,22
+87623,39
+87624,26
+87626,25
+87627,43
+87628,30
+87629,28
+87630,29
+87631,29
+87632,33
+87633,19
+87634,40
+87635,22
+87636,25
+87638,29
+87639,25
+87640,34
+87641,21
+87642,22
+87643,53
+87644,56
+87645,19
+87648,42
+87649,17
+87651,31
+87652,31
+87653,20
+87654,23
+87655,29
+87656,25
+87657,28
+87658,24
+87659,28
+87660,29
+87661,40
+87662,34
+87663,25
+87664,16
+87665,26
+87666,30
+87667,26
+87668,31
+87669,20
+87670,25
+87671,38
+87673,53
+87674,25
+87675,32
+87676,42
+87677,26
+87678,26
+87679,38
+87681,44
+87682,22
+87683,30
+87684,24
+87685,35
+87686,38
+87687,32
+87688,40
+87689,53
+87691,27
+87692,22
+87693,34
+87694,18
+87695,30
+87696,26
+87697,29
+87698,28
+87699,24
+87700,22
+87701,25
+87703,25
+87704,29
+87705,32
+87706,29
+87707,26
+87708,32
+87709,23
+87710,25
+87711,34
+87712,32
+87713,19
+87714,22
+87715,20
+87717,24
+87719,27
+87720,39
+87721,37
+87722,25
+87723,33
+87724,22
+87725,28
+87726,23
+87728,28
+87729,32
+87730,25
+87731,24
+87732,30
+87733,44
+87734,38
+87735,39
+87736,48
+87737,21
+87738,31
+87740,31
+87741,25
+87742,23
+87743,42
+87744,21
+87745,39
+87746,28
+87747,28
+87748,55
+87749,27
+87750,22
+87751,48
+87752,23
+87753,24
+87754,30
+87755,68
+87756,38
+87757,38
+87758,23
+87759,22
+87760,24
+87762,25
+87763,33
+87764,30
+87766,23
+87767,27
+87768,30
+87769,44
+87770,26
+87771,49
+87772,28
+87773,21
+87774,36
+87775,21
+87776,25
+87777,60
+87778,29
+87779,24
+87780,16
+87781,36
+87782,22
+87785,35
+87786,30
+87787,25
+87788,23
+87789,38
+87790,34
+87791,35
+87792,28
+87793,43
+87794,26
+87795,35
+87796,15
+87797,27
+87798,44
+87799,31
+87800,42
+87801,31
+87802,25
+87803,35
+87804,24
+87805,19
+87806,28
+87807,24
+87808,39
+87809,24
+87810,25
+87811,26
+87812,38
+87813,31
+87814,23
+87815,55
+87816,24
+87817,50
+87818,34
+87819,48
+87820,20
+87821,16
+87823,29
+87824,28
+87825,26
+87826,21
+87827,23
+87828,22
+87829,22
+87830,32
+87831,28
+87832,42
+87833,19
+87834,17
+87835,27
+87836,21
+87837,24
+87838,28
+87839,32
+87840,27
+87841,24
+87842,18
+87844,37
+87845,30
+87847,37
+87848,40
+87849,57
+87850,46
+87851,35
+87852,47
+87853,34
+87854,29
+87855,42
+87856,23
+87857,24
+87858,17
+87859,29
+87860,25
+87861,23
+87862,24
+87863,25
+87864,24
+87865,30
+87866,30
+87867,30
+87868,31
+87869,27
+87870,25
+87871,20
+87872,40
+87873,21
+87874,27
+87876,28
+87878,31
+87881,31
+87882,26
+87883,30
+87884,40
+87885,24
+87886,27
+87887,21
+87889,23
+87891,20
+87892,30
+87894,27
+87895,52
+87896,32
+87897,21
+87898,25
+87899,26
+87900,28
+87901,19
+87902,45
+87904,21
+87905,37
+87906,18
+87907,20
+87908,18
+87909,36
+87910,25
+87911,28
+87912,35
+87913,36
+87914,39
+87915,24
+87916,25
+87917,29
+87918,41
+87920,30
+87921,29
+87922,33
+87923,30
+87924,21
+87926,39
+87927,23
+87928,24
+87929,18
+87930,24
+87931,28
+87932,26
+87933,27
+87934,16
+87935,29
+87936,22
+87937,25
+87939,33
+87940,24
+87941,33
+87942,25
+87943,59
+87944,29
+87945,29
+87946,27
+87947,26
+87948,31
+87949,23
+87950,29
+87951,20
+87952,29
+87953,21
+87954,30
+87955,24
+87956,14
+87957,26
+87958,30
+87959,24
+87960,26
+87961,44
+87962,25
+87964,24
+87965,28
+87966,38
+87967,20
+87968,25
+87969,38
+87971,43
+87972,25
+87973,23
+87975,31
+87976,24
+87977,32
+87978,14
+87979,20
+87980,25
+87981,34
+87982,31
+87983,28
+87984,18
+87985,28
+87986,18
+87987,30
+87989,31
+87990,26
+87991,25
+87992,21
+87993,31
+87994,40
+87995,41
+87996,64
+87997,31
+87998,33
+87999,29
+88000,20
+88001,30
+88002,35
+88003,22
+88004,29
+88005,28
+88006,25
+88007,35
+88008,30
+88009,27
+88010,23
+88011,32
+88012,22
+88013,30
+88014,26
+88015,26
+88016,37
+88017,23
+88018,32
+88019,31
+88020,32
+88021,47
+88022,23
+88023,30
+88025,32
+88026,23
+88027,23
+88028,23
+88029,25
+88030,30
+88032,25
+88034,26
+88035,21
+88036,23
+88037,18
+88038,27
+88039,38
+88040,29
+88041,17
+88042,28
+88044,26
+88045,20
+88046,21
+88047,46
+88048,22
+88049,18
+88050,25
+88051,40
+88052,13
+88053,21
+88054,28
+88055,32
+88056,36
+88057,20
+88058,24
+88059,34
+88060,16
+88061,19
+88063,35
+88064,37
+88065,17
+88066,29
+88068,29
+88069,31
+88070,21
+88071,29
+88072,31
+88073,20
+88074,25
+88077,29
+88078,32
+88079,33
+88080,29
+88081,27
+88082,28
+88084,26
+88085,28
+88086,28
+88087,32
+88088,22
+88090,26
+88091,33
+88092,35
+88093,25
+88094,26
+88095,23
+88096,24
+88097,25
+88098,26
+88100,30
+88101,45
+88102,22
+88103,34
+88104,28
+88105,22
+88106,24
+88107,22
+88108,26
+88110,18
+88111,20
+88112,26
+88113,29
+88114,15
+88116,26
+88117,17
+88118,35
+88119,25
+88121,27
+88122,25
+88123,28
+88124,20
+88125,29
+88126,21
+88127,23
+88128,46
+88129,43
+88130,20
+88131,21
+88132,29
+88133,33
+88135,39
+88136,25
+88137,46
+88138,34
+88139,50
+88140,29
+88141,30
+88142,19
+88143,38
+88144,25
+88145,35
+88146,25
+88147,29
+88148,46
+88149,26
+88150,22
+88151,28
+88153,22
+88154,54
+88155,30
+88156,33
+88157,28
+88158,45
+88159,33
+88160,22
+88161,46
+88162,49
+88163,29
+88164,26
+88165,17
+88166,28
+88167,28
+88168,36
+88169,30
+88170,29
+88171,31
+88172,32
+88174,29
+88175,30
+88176,25
+88177,25
+88178,32
+88179,28
+88180,19
+88183,24
+88184,21
+88185,38
+88186,23
+88187,30
+88188,27
+88189,24
+88190,25
+88191,25
+88192,23
+88193,33
+88194,27
+88195,32
+88196,26
+88197,24
+88198,45
+88200,16
+88201,12
+88202,45
+88203,26
+88204,40
+88205,20
+88206,82
+88207,34
+88208,33
+88209,26
+88210,38
+88211,28
+88213,30
+88214,26
+88215,34
+88216,43
+88218,61
+88219,36
+88220,30
+88221,18
+88222,36
+88223,24
+88224,45
+88225,39
+88226,27
+88227,48
+88228,28
+88229,18
+88230,32
+88231,50
+88232,21
+88233,95
+88234,26
+88235,33
+88236,35
+88237,21
+88238,24
+88239,32
+88240,19
+88241,35
+88242,37
+88243,31
+88244,23
+88245,56
+88246,25
+88247,28
+88248,29
+88249,33
+88250,23
+88251,20
+88252,18
+88253,26
+88254,18
+88255,30
+88256,24
+88258,52
+88259,45
+88260,45
+88261,37
+88262,22
+88263,35
+88264,20
+88265,28
+88266,27
+88267,28
+88268,30
+88269,23
+88270,25
+88271,25
+88272,22
+88273,28
+88275,18
+88277,19
+88278,24
+88279,24
+88281,25
+88283,36
+88284,29
+88285,28
+88286,29
+88287,31
+88288,20
+88290,45
+88291,23
+88292,24
+88293,28
+88294,28
+88295,23
+88296,46
+88297,16
+88298,31
+88299,22
+88300,31
+88301,17
+88302,36
+88303,27
+88304,29
+88306,21
+88307,23
+88308,31
+88309,30
+88310,41
+88313,24
+88314,21
+88315,30
+88316,32
+88317,32
+88318,24
+88320,24
+88321,27
+88322,34
+88323,43
+88324,21
+88325,24
+88326,41
+88327,30
+88328,27
+88330,34
+88331,27
+88332,26
+88334,39
+88335,39
+88336,35
+88337,34
+88338,39
+88339,40
+88340,24
+88341,24
+88342,31
+88343,55
+88344,20
+88345,30
+88346,26
+88347,37
+88348,18
+88349,17
+88350,32
+88351,31
+88352,30
+88353,46
+88354,22
+88355,28
+88356,21
+88357,32
+88359,23
+88360,25
+88361,24
+88362,40
+88364,25
+88365,32
+88366,29
+88367,32
+88368,21
+88369,19
+88370,32
+88371,18
+88372,43
+88373,21
+88374,20
+88375,38
+88376,33
+88378,54
+88379,22
+88381,41
+88382,26
+88383,19
+88384,24
+88385,18
+88386,33
+88387,26
+88388,25
+88389,22
+88390,23
+88392,31
+88393,26
+88394,26
+88395,32
+88398,35
+88399,53
+88400,27
+88401,31
+88402,17
+88404,24
+88406,38
+88407,99
+88408,24
+88409,51
+88410,26
+88411,29
+88412,30
+88413,20
+88414,28
+88415,32
+88416,20
+88417,25
+88418,42
+88419,32
+88420,23
+88421,27
+88422,43
+88423,28
+88424,25
+88425,21
+88426,24
+88427,20
+88428,27
+88429,32
+88430,41
+88431,26
+88432,26
+88434,23
+88435,22
+88436,43
+88437,25
+88438,22
+88439,32
+88440,39
+88441,49
+88442,43
+88443,24
+88444,28
+88445,22
+88446,43
+88449,29
+88450,13
+88451,47
+88452,24
+88453,24
+88454,30
+88455,36
+88456,29
+88457,43
+88458,24
+88459,38
+88460,37
+88461,24
+88462,44
+88463,46
+88464,28
+88465,38
+88466,31
+88467,26
+88468,25
+88469,55
+88470,29
+88471,30
+88472,33
+88473,28
+88474,34
+88475,32
+88477,24
+88478,32
+88479,42
+88480,27
+88481,31
+88482,24
+88483,28
+88484,20
+88485,18
+88486,38
+88487,26
+88488,84
+88489,28
+88490,35
+88491,21
+88492,39
+88493,32
+88494,22
+88495,36
+88496,29
+88497,25
+88498,27
+88499,28
+88501,30
+88502,28
+88503,22
+88504,20
+88507,14
+88508,20
+88510,29
+88512,25
+88513,29
+88514,33
+88515,28
+88517,32
+88518,27
+88519,24
+88520,33
+88521,30
+88522,24
+88523,38
+88525,15
+88526,26
+88527,26
+88528,15
+88529,18
+88531,24
+88532,35
+88533,56
+88534,41
+88535,37
+88536,30
+88537,31
+88538,33
+88539,27
+88540,15
+88541,30
+88542,17
+88544,31
+88546,23
+88547,53
+88548,24
+88549,26
+88550,34
+88551,22
+88553,19
+88554,24
+88555,27
+88556,41
+88557,36
+88558,34
+88559,23
+88560,21
+88561,32
+88562,22
+88563,45
+88564,32
+88566,21
+88567,32
+88569,20
+88570,26
+88571,36
+88572,39
+88574,41
+88575,18
+88576,44
+88577,24
+88578,32
+88579,25
+88580,31
+88581,25
+88582,32
+88583,18
+88584,23
+88585,39
+88586,30
+88587,60
+88588,20
+88590,44
+88592,43
+88593,29
+88594,25
+88596,36
+88597,38
+88598,48
+88599,28
+88602,31
+88603,26
+88604,33
+88605,33
+88606,35
+88607,25
+88608,26
+88609,16
+88611,34
+88612,28
+88613,30
+88614,37
+88616,18
+88617,21
+88618,42
+88619,23
+88620,36
+88621,12
+88622,48
+88623,21
+88624,42
+88625,24
+88627,29
+88628,28
+88629,23
+88630,37
+88631,34
+88632,32
+88633,24
+88634,23
+88635,24
+88638,40
+88639,23
+88640,31
+88641,45
+88643,20
+88644,26
+88646,39
+88647,30
+88648,38
+88649,46
+88650,29
+88651,25
+88652,25
+88653,28
+88654,35
+88656,41
+88657,33
+88658,22
+88659,27
+88660,36
+88661,20
+88662,29
+88663,31
+88664,24
+88665,47
+88666,33
+88667,33
+88668,61
+88669,19
+88670,24
+88671,27
+88672,56
+88673,42
+88674,20
+88675,34
+88676,18
+88677,31
+88678,21
+88679,30
+88680,26
+88681,25
+88683,52
+88684,27
+88685,22
+88686,22
+88687,26
+88688,28
+88689,37
+88690,40
+88691,36
+88692,29
+88693,39
+88694,39
+88696,22
+88697,25
+88698,28
+88699,28
+88700,19
+88701,37
+88702,22
+88703,32
+88705,20
+88706,26
+88707,23
+88710,29
+88711,31
+88712,36
+88713,27
+88714,63
+88717,31
+88718,46
+88719,27
+88720,27
+88721,26
+88722,26
+88724,20
+88725,21
+88726,28
+88727,24
+88728,33
+88729,28
+88732,49
+88733,30
+88734,29
+88735,29
+88736,16
+88737,46
+88738,26
+88740,19
+88741,29
+88742,30
+88743,36
+88744,27
+88745,27
+88746,24
+88747,37
+88748,39
+88749,25
+88751,32
+88752,29
+88754,29
+88755,28
+88757,29
+88758,29
+88760,28
+88761,26
+88762,54
+88764,27
+88765,21
+88766,29
+88768,50
+88769,29
+88770,30
+88771,26
+88772,38
+88773,27
+88774,19
+88775,17
+88777,26
+88778,32
+88779,25
+88780,27
+88781,36
+88782,19
+88783,31
+88784,17
+88785,27
+88786,28
+88787,32
+88788,35
+88789,22
+88790,37
+88791,22
+88792,26
+88793,28
+88794,37
+88795,39
+88796,49
+88797,21
+88798,28
+88799,40
+88800,20
+88801,29
+88803,45
+88806,20
+88807,28
+88808,25
+88809,20
+88810,22
+88812,25
+88813,44
+88815,27
+88817,40
+88818,28
+88820,30
+88821,20
+88822,41
+88823,29
+88824,35
+88825,26
+88827,30
+88828,27
+88829,21
+88830,27
+88831,27
+88832,30
+88833,26
+88834,43
+88835,40
+88836,25
+88837,33
+88838,28
+88839,30
+88840,20
+88841,34
+88842,27
+88843,22
+88844,36
+88845,32
+88846,25
+88847,22
+88848,28
+88849,37
+88850,34
+88851,28
+88852,31
+88853,27
+88855,27
+88857,40
+88858,24
+88859,21
+88860,45
+88861,41
+88862,21
+88864,21
+88865,36
+88866,28
+88867,29
+88868,30
+88869,30
+88870,25
+88871,22
+88873,37
+88874,26
+88875,35
+88876,23
+88877,48
+88878,26
+88879,34
+88881,37
+88883,33
+549,65
+905,25
+1248,39
+1265,29
+1352,47
+2413,32
+2782,60
+2836,31
+2848,29
+3005,22
+3326,23
+4176,16
+4208,42
+4406,39
+5439,24
+6234,60
+6563,18
+6789,28
+7160,28
+7697,42
+7759,38
+7826,21
+8130,35
+8381,27
+9555,49
+9871,22
+10269,24
+10337,25
+10702,34
+11059,23
+11147,42
+11613,19
+13291,67
+13311,40
+13646,36
+14062,35
+14140,29
+14388,39
+14564,25
+14724,12
+14736,33
+14826,23
+15160,26
+15177,17
+15208,21
+15380,17
+15620,48
+16102,26
+16103,23
+16637,20
+16679,36
+16842,26
+17425,48
+17648,34
+17706,34
+17760,28
+17905,22
+18111,21
+18256,42
+18447,27
+19099,58
+19280,20
+19635,40
+19758,45
+20000,28
+20091,20
+20096,38
+20184,44
+20567,22
+20892,43
+21826,22
+22000,69
+22168,5
+22337,37
+22432,44
+22890,22
+22978,25
+23500,27
+23671,21
+23754,24
+24311,38
+24611,29
+24725,33
+24861,23
+25114,22
+25205,24
+25422,29
+26349,32
+26396,51
+26419,24
+26812,16
+26927,50
+27229,34
+27343,29
+27544,42
+28181,22
+28355,62
+28364,37
+28557,40
+29300,23
+29413,29
+29601,54
+29826,26
+29998,33
+30104,1
+30141,31
+30491,49
+30608,64
+31162,18
+31420,22
+31591,49
+31699,28
+31955,24
+32041,23
+32760,38
+32941,20
+32975,28
+33081,36
+33596,23
+34138,50
+34646,21
+34777,16
+35390,30
+35659,21
+35731,61
+35973,55
+36530,34
+36798,19
+37024,36
+37527,23
+37686,21
+37850,16
+37951,25
+38509,26
+38660,26
+38948,23
+39117,22
+39277,24
+39382,50
+39449,16
+39777,36
+39951,20
+40556,35
+40561,54
+40782,26
+40917,52
+41201,57
+42535,48
+42540,35
+42599,30
+42685,23
+42855,20
+43870,30
+43897,13
+43989,33
+44123,28
+44585,28
+44923,37
+45273,25
+45527,24
+45575,32
+45788,22
+46216,43
+46296,17
+46513,44
+46543,67
+46650,66
+46743,51
+47122,57
+47259,40
+47775,21
+47792,25
+48042,33
+48134,36
+48416,66
+48443,27
+48922,25
+49401,18
+49705,21
+50665,32
+51009,22
+52270,27
+52368,47
+53011,71
+53984,29
+54324,30
+54777,38
+54942,23
+55003,31
+55885,57
+55901,14
+56135,58
+56384,29
+57071,29
+57388,26
+57472,29
+57520,30
+57536,22
+57664,52
+57785,27
+57913,31
+58561,5
+58708,38
+58971,47
+59190,47
+59435,28
+59455,24
+59604,39
+59659,23
+59827,65
+60066,20
+60133,28
+60184,26
+60630,25
+61177,36
+61753,50
+61787,62
+61922,22
+62114,46
+62740,29
+62789,17
+62999,34
+63462,51
+64391,87
+64517,24
+64998,29
+65265,45
+65296,31
+65884,37
+65988,18
+66751,35
+66972,30
+67206,14
+67588,28
+68027,19
+68525,32
+69366,26
+69741,16
+70630,36
+70746,34
+71055,2
+71160,19
+72325,15
+72492,22
+75496,26
+75842,27
+77890,47
+77920,52
+77968,26
+78292,60
+78326,29
+78887,28
+79798,22
+80116,64
+80319,18
+81093,29
+81994,22
+82007,40
+82717,44
+82789,17
+82805,34
+83000,29
+83397,27
+83786,57
+83862,24
+84539,23
+85642,34
+85738,15
+85961,45
+86012,24
+86566,74
+86638,30
+86806,19
+87352,59
+87386,21
+87739,25
+88212,40
+88863,18
diff --git a/Python/Matplotlib/06-Histograms/finished_code.py b/Python/Matplotlib/06-Histograms/finished_code.py
new file mode 100644
index 000000000..c9344c77c
--- /dev/null
+++ b/Python/Matplotlib/06-Histograms/finished_code.py
@@ -0,0 +1,27 @@
+import pandas as pd
+from matplotlib import pyplot as plt
+
+plt.style.use('fivethirtyeight')
+
+data = pd.read_csv('data.csv')
+ids = data['Responder_id']
+ages = data['Age']
+
+bins = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
+
+plt.hist(ages, bins=bins, edgecolor='black', log=True)
+
+median_age = 29
+color = '#fc4f30'
+
+plt.axvline(median_age, color=color, label='Age Median', linewidth=2)
+
+plt.legend()
+
+plt.title('Ages of Respondents')
+plt.xlabel('Ages')
+plt.ylabel('Total Respondents')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/06-Histograms/starting_code.py b/Python/Matplotlib/06-Histograms/starting_code.py
new file mode 100644
index 000000000..94c71c5b6
--- /dev/null
+++ b/Python/Matplotlib/06-Histograms/starting_code.py
@@ -0,0 +1,23 @@
+import pandas as pd
+from matplotlib import pyplot as plt
+
+plt.style.use('fivethirtyeight')
+
+ages = [18, 19, 21, 25, 26, 26, 30, 32, 38, 45, 55]
+
+# data = pd.read_csv('data.csv')
+# ids = data['Responder_id']
+# ages = data['Age']
+
+# median_age = 29
+# color = '#fc4f30'
+
+# plt.legend()
+
+plt.title('Ages of Respondents')
+plt.xlabel('Ages')
+plt.ylabel('Total Respondents')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/07-ScatterPlots/2019-05-31-data.csv b/Python/Matplotlib/07-ScatterPlots/2019-05-31-data.csv
new file mode 100644
index 000000000..380f53113
--- /dev/null
+++ b/Python/Matplotlib/07-ScatterPlots/2019-05-31-data.csv
@@ -0,0 +1,201 @@
+view_count,likes,ratio
+8036001,324742,96.91
+9378067,562589,98.19
+2182066,273650,99.38
+6525864,94698,96.25
+9481284,582481,97.22
+1853121,89903,97.46
+2875684,183163,94.52
+483827,4864,91.53
+1677046,103227,97.52
+289756,2387,92.95
+2561907,237728,98.8
+468390,25346,98.34
+18977153,768968,98.73
+365731,5997,93.29
+680701,41543,97.99
+5748289,225966,99.17
+3575950,374937,97.69
+865788,31806,98.3
+5433739,389145,98.84
+3643458,369667,97.88
+247602,1516,89.18
+300443,25429,99.49
+313500,56891,98.35
+3525217,92948,95.29
+195072,23832,98.97
+142697,20708,98.91
+456783,2625,94.53
+601565,38792,98.34
+6021472,342044,97.54
+940583,14292,97.7
+446569,7557,97.15
+767900,11091,97.14
+5895810,98088,95.87
+381910,45178,99.21
+2468645,188315,98.73
+407859,19407,98.77
+846399,29308,95.93
+872092,27298,94.85
+1279718,98471,99.06
+1068377,92634,98.89
+4691951,164807,98.93
+1091006,55346,98.53
+891230,30612,88.39
+720734,35647,98.11
+1025214,19926,94.86
+505146,3309,59.69
+265430,2124,91.99
+3651318,283911,98.64
+1290212,201881,99.3
+420393,5434,95.99
+655107,21485,96.16
+1010207,23720,95.85
+777547,9167,94.46
+686703,34001,98.54
+1625877,62101,98.35
+2107926,59334,97.3
+1564214,81581,97.96
+2277765,53425,89.82
+1558609,95695,98.23
+1689305,88050,95.43
+3382856,74078,93.32
+4835746,276098,94.3
+248754,2041,90.75
+687182,63309,97.61
+751948,24359,98.3
+737756,23093,82.35
+964229,18898,86.34
+973121,22810,97.6
+575508,16975,94.75
+1114419,35208,94.3
+722956,21843,97.6
+1560200,38185,96.52
+281397,3706,91.53
+1122525,28232,97.23
+20650480,212862,91.88
+225207,1524,84.76
+598367,24260,94.51
+2117363,162960,99.12
+1233027,16400,88.81
+2566897,112005,54.67
+11907188,1234111,83.49
+1477059,36018,98.75
+292469,5656,92.71
+466862,47754,98.96
+1055798,46122,97.84
+1278142,26021,97.37
+1938747,16942,87.66
+338563,8416,96.46
+645274,17943,94.67
+730110,26868,92.31
+1521090,19761,86.6
+1719425,79646,98.33
+3028604,75484,97.22
+1236239,55409,96.0
+906642,14128,91.88
+1257902,20899,92.93
+1163635,30173,89.82
+1413936,90918,97.87
+709519,6013,95.14
+628111,41450,97.03
+2478832,143686,98.28
+2524598,32486,93.66
+821547,18708,97.31
+3016943,38294,95.76
+743575,20181,89.7
+919626,22114,95.84
+2536083,538376,99.6
+959442,13220,95.94
+2044159,41080,92.48
+1554417,67165,93.0
+2181022,180132,98.19
+1010899,13696,97.57
+2620663,72681,96.68
+5732609,189529,97.16
+1187273,73120,99.24
+1594532,85661,97.01
+8403016,294629,96.97
+5972754,133474,96.6
+6189511,267690,99.03
+1042734,23761,91.61
+9476773,417402,97.8
+8040754,789213,98.73
+2724624,88968,91.74
+1085592,27288,98.51
+3393417,219213,95.68
+16396012,208578,79.21
+3226905,19814,91.77
+6276301,286642,98.15
+647094,19753,89.98
+8081040,477122,98.81
+886934,29360,98.46
+1228396,29893,98.2
+697471,6452,94.85
+1605670,78364,96.63
+2056991,121925,98.44
+397981,6185,58.36
+2760289,106828,97.14
+3655043,54069,89.65
+10662064,320959,97.89
+3105500,108620,96.6
+2238691,48825,96.77
+1153518,25832,96.44
+686228,24882,96.57
+7523411,614901,98.87
+2641916,49354,95.78
+11657853,233343,97.82
+5932061,172195,95.91
+6313988,323119,98.18
+2850316,218273,98.14
+2620142,36637,93.99
+854120,54821,98.05
+13799864,317613,96.07
+906841,35315,98.09
+689607,20658,98.58
+441729,14901,99.0
+797800,14327,95.41
+1682016,75706,98.17
+1426251,57965,98.73
+2268534,91796,97.75
+750032,39406,98.19
+4272799,26229,98.03
+2449662,80825,97.54
+5988592,512483,99.4
+3662227,75552,97.46
+725964,42700,98.98
+1647440,111190,98.85
+985104,12721,96.5
+1665692,23961,92.37
+2051794,81790,96.64
+4112883,116481,93.46
+33297045,1293427,99.07
+1517628,19931,96.25
+1675692,18803,72.76
+3626738,173591,98.44
+1169663,7766,92.99
+446959,4923,89.48
+6995153,195994,96.69
+519706,18975,98.94
+4373224,169228,93.01
+4024087,73080,97.71
+731349,42205,98.52
+94366013,4539630,97.66
+2458132,34337,95.52
+1812670,17476,94.43
+2028445,158178,97.94
+1335703,12622,94.14
+938717,17120,97.26
+2926955,42554,97.73
+4018930,32919,82.1
+6439402,81148,51.58
+5665790,166892,96.95
+899728,28115,96.49
+2792057,206926,96.99
+12839663,722491,97.84
+5694139,146797,98.19
+1069693,3970,90.66
+590760,70454,99.18
+319347,1208,92.5
+27594927,1351963,96.4
+26993425,437561,97.42
diff --git a/Python/Matplotlib/07-ScatterPlots/finished_code.py b/Python/Matplotlib/07-ScatterPlots/finished_code.py
new file mode 100644
index 000000000..53363f7ea
--- /dev/null
+++ b/Python/Matplotlib/07-ScatterPlots/finished_code.py
@@ -0,0 +1,27 @@
+
+import pandas as pd
+from matplotlib import pyplot as plt
+
+plt.style.use('seaborn')
+
+data = pd.read_csv('2019-05-31-data.csv')
+view_count = data['view_count']
+likes = data['likes']
+ratio = data['ratio']
+
+plt.scatter(view_count, likes, c=ratio, cmap='summer',
+ edgecolor='black', linewidth=1, alpha=0.75)
+
+cbar = plt.colorbar()
+cbar.set_label('Like/Dislike Ratio')
+
+plt.xscale('log')
+plt.yscale('log')
+
+plt.title('Trending YouTube Videos')
+plt.xlabel('View Count')
+plt.ylabel('Total Likes')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/07-ScatterPlots/starting_code.py b/Python/Matplotlib/07-ScatterPlots/starting_code.py
new file mode 100644
index 000000000..b03ba42db
--- /dev/null
+++ b/Python/Matplotlib/07-ScatterPlots/starting_code.py
@@ -0,0 +1,27 @@
+
+import pandas as pd
+from matplotlib import pyplot as plt
+
+plt.style.use('seaborn')
+
+x = [5, 7, 8, 5, 6, 7, 9, 2, 3, 4, 4, 4, 2, 6, 3, 6, 8, 6, 4, 1]
+y = [7, 4, 3, 9, 1, 3, 2, 5, 2, 4, 8, 7, 1, 6, 4, 9, 7, 7, 5, 1]
+
+
+# colors = [7, 5, 9, 7, 5, 7, 2, 5, 3, 7, 1, 2, 8, 1, 9, 2, 5, 6, 7, 5]
+
+# sizes = [209, 486, 381, 255, 191, 315, 185, 228, 174,
+# 538, 239, 394, 399, 153, 273, 293, 436, 501, 397, 539]
+
+# data = pd.read_csv('2019-05-31-data.csv')
+# view_count = data['view_count']
+# likes = data['likes']
+# ratio = data['ratio']
+
+# plt.title('Trending YouTube Videos')
+# plt.xlabel('View Count')
+# plt.ylabel('Total Likes')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/08-TimeSeries/data.csv b/Python/Matplotlib/08-TimeSeries/data.csv
new file mode 100644
index 000000000..e3bcbd839
--- /dev/null
+++ b/Python/Matplotlib/08-TimeSeries/data.csv
@@ -0,0 +1,15 @@
+Date,Open,High,Low,Close,Adj Close,Volume
+2019-05-18,7266.080078,8281.660156,7257.259766,8193.139648,8193.139648,723011166
+2019-05-19,8193.139648,8193.139648,7591.850098,7998.290039,7998.290039,637617163
+2019-05-20,7998.290039,8102.319824,7807.770020,7947.930176,7947.930176,357803946
+2019-05-21,7947.930176,8033.759766,7533.660156,7626.890137,7626.890137,424501866
+2019-05-22,7626.890137,7971.259766,7478.740234,7876.500000,7876.500000,386766321
+2019-05-23,7876.500000,8165.450195,7801.569824,7996.399902,7996.399902,413162746
+2019-05-24,7996.399902,8140.819824,7948.680176,8059.129883,8059.129883,179206342
+2019-05-25,8059.129883,8779.000000,7894.529785,8726.230469,8726.230469,483663699
+2019-05-26,8726.230469,8931.530273,8668.459961,8785.169922,8785.169922,507164714
+2019-05-27,8785.169922,8818.709961,8562.200195,8718.849609,8718.849609,360752199
+2019-05-28,8718.849609,8760.480469,8444.099609,8664.559570,8664.559570,380343928
+2019-05-29,8664.559570,9065.889648,8027.209961,8276.250000,8276.250000,815525590
+2019-05-30,8276.250000,8570.780273,8116.000000,8560.080078,8560.080078,500141087
+2019-05-31,8550.629883,8576.339844,8459.650391,8504.980469,8504.980469,69915456
diff --git a/Python/Matplotlib/08-TimeSeries/finished_code.py b/Python/Matplotlib/08-TimeSeries/finished_code.py
new file mode 100644
index 000000000..24d5c34d7
--- /dev/null
+++ b/Python/Matplotlib/08-TimeSeries/finished_code.py
@@ -0,0 +1,26 @@
+import pandas as pd
+from datetime import datetime, timedelta
+from matplotlib import pyplot as plt
+from matplotlib import dates as mpl_dates
+
+plt.style.use('seaborn')
+
+data = pd.read_csv('data.csv')
+
+data['Date'] = pd.to_datetime(data['Date'])
+data.sort_values('Date', inplace=True)
+
+price_date = data['Date']
+price_close = data['Close']
+
+plt.plot_date(price_date, price_close, linestyle='solid')
+
+plt.gcf().autofmt_xdate()
+
+plt.title('Bitcoin Prices')
+plt.xlabel('Date')
+plt.ylabel('Closing Price')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/08-TimeSeries/starting_code.py b/Python/Matplotlib/08-TimeSeries/starting_code.py
new file mode 100644
index 000000000..9d06a8722
--- /dev/null
+++ b/Python/Matplotlib/08-TimeSeries/starting_code.py
@@ -0,0 +1,30 @@
+import pandas as pd
+from datetime import datetime, timedelta
+from matplotlib import pyplot as plt
+from matplotlib import dates as mpl_dates
+
+plt.style.use('seaborn')
+
+dates = [
+ datetime(2019, 5, 24),
+ datetime(2019, 5, 25),
+ datetime(2019, 5, 26),
+ datetime(2019, 5, 27),
+ datetime(2019, 5, 28),
+ datetime(2019, 5, 29),
+ datetime(2019, 5, 30)
+]
+
+y = [0, 1, 3, 4, 6, 5, 7]
+
+# data = pd.read_csv('data.csv')
+# price_date = data['Date']
+# price_close = data['Close']
+
+# plt.title('Bitcoin Prices')
+# plt.xlabel('Date')
+# plt.ylabel('Closing Price')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Matplotlib/09-LiveData/data_gen.py b/Python/Matplotlib/09-LiveData/data_gen.py
new file mode 100644
index 000000000..618f2eecb
--- /dev/null
+++ b/Python/Matplotlib/09-LiveData/data_gen.py
@@ -0,0 +1,35 @@
+
+import csv
+import random
+import time
+
+x_value = 0
+total_1 = 1000
+total_2 = 1000
+
+fieldnames = ["x_value", "total_1", "total_2"]
+
+
+with open('data.csv', 'w') as csv_file:
+ csv_writer = csv.DictWriter(csv_file, fieldnames=fieldnames)
+ csv_writer.writeheader()
+
+while True:
+
+ with open('data.csv', 'a') as csv_file:
+ csv_writer = csv.DictWriter(csv_file, fieldnames=fieldnames)
+
+ info = {
+ "x_value": x_value,
+ "total_1": total_1,
+ "total_2": total_2
+ }
+
+ csv_writer.writerow(info)
+ print(x_value, total_1, total_2)
+
+ x_value += 1
+ total_1 = total_1 + random.randint(-6, 8)
+ total_2 = total_2 + random.randint(-5, 6)
+
+ time.sleep(1)
diff --git a/Python/Matplotlib/09-LiveData/finished_code.py b/Python/Matplotlib/09-LiveData/finished_code.py
new file mode 100644
index 000000000..2fea49f98
--- /dev/null
+++ b/Python/Matplotlib/09-LiveData/finished_code.py
@@ -0,0 +1,34 @@
+
+import random
+from itertools import count
+import pandas as pd
+import matplotlib.pyplot as plt
+from matplotlib.animation import FuncAnimation
+
+plt.style.use('fivethirtyeight')
+
+x_vals = []
+y_vals = []
+
+index = count()
+
+
+def animate(i):
+ data = pd.read_csv('data.csv')
+ x = data['x_value']
+ y1 = data['total_1']
+ y2 = data['total_2']
+
+ plt.cla()
+
+ plt.plot(x, y1, label='Channel 1')
+ plt.plot(x, y2, label='Channel 2')
+
+ plt.legend(loc='upper left')
+ plt.tight_layout()
+
+
+ani = FuncAnimation(plt.gcf(), animate, interval=1000)
+
+plt.tight_layout()
+plt.show()
diff --git a/Python/Matplotlib/09-LiveData/snippets.txt b/Python/Matplotlib/09-LiveData/snippets.txt
new file mode 100644
index 000000000..5d95ffffa
--- /dev/null
+++ b/Python/Matplotlib/09-LiveData/snippets.txt
@@ -0,0 +1,48 @@
+# Another way to do it without clearing the Axis
+from itertools import count
+import pandas as pd
+import matplotlib.pyplot as plt
+from matplotlib.animation import FuncAnimation
+
+plt.style.use('fivethirtyeight')
+
+x_vals = []
+y_vals = []
+
+plt.plot([], [], label='Channel 1')
+plt.plot([], [], label='Channel 2')
+
+
+def animate(i):
+ data = pd.read_csv('data.csv')
+ x = data['x_value']
+ y1 = data['total_1']
+ y2 = data['total_2']
+
+ ax = plt.gca()
+ line1, line2 = ax.lines
+
+ line1.set_data(x, y1)
+ line2.set_data(x, y2)
+
+ xlim_low, xlim_high = ax.get_xlim()
+ ylim_low, ylim_high = ax.get_ylim()
+
+ ax.set_xlim(xlim_low, (x.max() + 5))
+
+ y1max = y1.max()
+ y2max = y2.max()
+ current_ymax = y1max if (y1max > y2max) else y2max
+
+ y1min = y1.min()
+ y2min = y2.min()
+ current_ymin = y1min if (y1min < y2min) else y2min
+
+ ax.set_ylim((current_ymin - 5), (current_ymax + 5))
+
+
+ani = FuncAnimation(plt.gcf(), animate, interval=1000)
+
+plt.legend()
+plt.tight_layout()
+plt.show()
diff --git a/Python/Matplotlib/09-LiveData/starting_code.py b/Python/Matplotlib/09-LiveData/starting_code.py
new file mode 100644
index 000000000..242bc0e90
--- /dev/null
+++ b/Python/Matplotlib/09-LiveData/starting_code.py
@@ -0,0 +1,29 @@
+
+import random
+from itertools import count
+import pandas as pd
+import matplotlib.pyplot as plt
+
+plt.style.use('fivethirtyeight')
+
+x_vals = [0, 1, 2, 3, 4, 5]
+y_vals = [0, 1, 3, 2, 3, 5]
+
+plt.plot(x_vals, y_vals)
+
+
+# index = count()
+
+# def animate(i):
+# x_vals.append(next(index))
+# y_vals.append(random.randint(0, 5))
+
+
+plt.tight_layout()
+plt.show()
+
+
+# data = pd.read_csv('data.csv')
+# x = data['x_value']
+# y1 = data['total_1']
+# y2 = data['total_2']
diff --git a/Python/Matplotlib/10-Subplots/data.csv b/Python/Matplotlib/10-Subplots/data.csv
new file mode 100644
index 000000000..b862ebaf9
--- /dev/null
+++ b/Python/Matplotlib/10-Subplots/data.csv
@@ -0,0 +1,39 @@
+Age,All_Devs,Python,JavaScript
+18,17784,20046,16446
+19,16500,17100,16791
+20,18012,20000,18942
+21,20628,24744,21780
+22,25206,30500,25704
+23,30252,37732,29000
+24,34368,41247,34372
+25,38496,45372,37810
+26,42000,48876,43515
+27,46752,53850,46823
+28,49320,57287,49293
+29,53200,63016,53437
+30,56000,65998,56373
+31,62316,70003,62375
+32,64928,70000,66674
+33,67317,71496,68745
+34,68748,75370,68746
+35,73752,83640,74583
+36,77232,84666,79000
+37,78000,84392,78508
+38,78508,78254,79996
+39,79536,85000,80403
+40,82488,87038,83820
+41,88935,91991,88833
+42,90000,100000,91660
+43,90056,94796,87892
+44,95000,97962,96243
+45,90000,93302,90000
+46,91633,99240,99313
+47,91660,102736,91660
+48,98150,112285,102264
+49,98964,100771,100000
+50,100000,104708,100000
+51,98988,108423,91660
+52,100000,101407,99240
+53,108923,112542,108000
+54,105000,122870,105000
+55,103117,120000,104000
diff --git a/Python/Matplotlib/10-Subplots/fig1.png b/Python/Matplotlib/10-Subplots/fig1.png
new file mode 100644
index 000000000..9d8699574
Binary files /dev/null and b/Python/Matplotlib/10-Subplots/fig1.png differ
diff --git a/Python/Matplotlib/10-Subplots/fig2.png b/Python/Matplotlib/10-Subplots/fig2.png
new file mode 100644
index 000000000..be36f85b2
Binary files /dev/null and b/Python/Matplotlib/10-Subplots/fig2.png differ
diff --git a/Python/Matplotlib/10-Subplots/finished_code.py b/Python/Matplotlib/10-Subplots/finished_code.py
new file mode 100644
index 000000000..73d1c5546
--- /dev/null
+++ b/Python/Matplotlib/10-Subplots/finished_code.py
@@ -0,0 +1,35 @@
+
+import pandas as pd
+from matplotlib import pyplot as plt
+
+plt.style.use('seaborn')
+
+data = pd.read_csv('data.csv')
+ages = data['Age']
+dev_salaries = data['All_Devs']
+py_salaries = data['Python']
+js_salaries = data['JavaScript']
+
+fig1, ax1 = plt.subplots()
+fig2, ax2 = plt.subplots()
+
+ax1.plot(ages, dev_salaries, color='#444444',
+ linestyle='--', label='All Devs')
+
+ax2.plot(ages, py_salaries, label='Python')
+ax2.plot(ages, js_salaries, label='JavaScript')
+
+ax1.legend()
+ax1.set_title('Median Salary (USD) by Age')
+ax1.set_ylabel('Median Salary (USD)')
+
+ax2.legend()
+ax2.set_xlabel('Ages')
+ax2.set_ylabel('Median Salary (USD)')
+
+plt.tight_layout()
+
+plt.show()
+
+fig1.savefig('fig1.png')
+fig2.savefig('fig2.png')
diff --git a/Python/Matplotlib/10-Subplots/starting_code.py b/Python/Matplotlib/10-Subplots/starting_code.py
new file mode 100644
index 000000000..41fbe57ea
--- /dev/null
+++ b/Python/Matplotlib/10-Subplots/starting_code.py
@@ -0,0 +1,27 @@
+
+import pandas as pd
+from matplotlib import pyplot as plt
+
+plt.style.use('seaborn')
+
+data = pd.read_csv('data.csv')
+ages = data['Age']
+dev_salaries = data['All_Devs']
+py_salaries = data['Python']
+js_salaries = data['JavaScript']
+
+plt.plot(ages, py_salaries, label='Python')
+plt.plot(ages, js_salaries, label='JavaScript')
+
+plt.plot(ages, dev_salaries, color='#444444',
+ linestyle='--', label='All Devs')
+
+plt.legend()
+
+plt.title('Median Salary (USD) by Age')
+plt.xlabel('Ages')
+plt.ylabel('Median Salary (USD)')
+
+plt.tight_layout()
+
+plt.show()
diff --git a/Python/Pipenv/requirements.txt b/Python/Pipenv/requirements.txt
new file mode 100644
index 000000000..cf94928d3
--- /dev/null
+++ b/Python/Pipenv/requirements.txt
@@ -0,0 +1,4 @@
+Django==2.1
+django-crispy-forms==1.7.2
+Pillow==5.2.0
+pytz==2018.5
diff --git a/Python/Requests-HTML/simple.html b/Python/Requests-HTML/simple.html
new file mode 100644
index 000000000..b5129e246
--- /dev/null
+++ b/Python/Requests-HTML/simple.html
@@ -0,0 +1,33 @@
+
+
+
+ Test - A Sample Website
+
+
+
+
+
+ Test Website
+
+
+
+
This is a summary of article 1
+
+
+
+
+
This is a summary of article 2
+
+
+
+
+
+
diff --git a/Python/Site-Monitor/monitor.py b/Python/Site-Monitor/monitor.py
new file mode 100644
index 000000000..9bdcd4694
--- /dev/null
+++ b/Python/Site-Monitor/monitor.py
@@ -0,0 +1,51 @@
+import os
+import smtplib
+import requests
+# import logging
+from linode_api4 import LinodeClient, Instance
+
+EMAIL_ADDRESS = os.environ.get('EMAIL_USER')
+EMAIL_PASSWORD = os.environ.get('EMAIL_PASS')
+LINODE_TOKEN = os.environ.get('LINODE_TOKEN')
+
+# logging.basicConfig(filename='PATH_TO_DESIRED_LOG_FILE',
+# level=logging.INFO,
+# format='%(asctime)s:%(levelname)s:%(message)s')
+
+
+def notify_user():
+ with smtplib.SMTP('smtp.gmail.com', 587) as smtp:
+ smtp.ehlo()
+ smtp.starttls()
+ smtp.ehlo()
+
+ smtp.login(EMAIL_ADDRESS, EMAIL_PASSWORD)
+
+ subject = 'YOUR SITE IS DOWN!'
+ body = 'Make sure the server restarted and it is back up'
+ msg = f'Subject: {subject}\n\n{body}'
+
+ # logging.info('Sending Email...')
+ smtp.sendmail(EMAIL_ADDRESS, 'INSERT_RECEIVER_ADDRESS', msg)
+
+
+def reboot_server():
+ client = LinodeClient(LINODE_TOKEN)
+ my_server = client.load(Instance, 376715)
+ my_server.reboot()
+ # logging.info('Attempting to reboot server...')
+
+
+try:
+ r = requests.get('https://example.com', timeout=5)
+
+ if r.status_code != 200:
+ # logging.info('Website is DOWN!')
+ notify_user()
+ reboot_server()
+ else:
+ # logging.info('Website is UP')
+except Exception as e:
+ # logging.info('Website is DOWN!')
+ notify_user()
+ reboot_server()