diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/coolpress.iml b/.idea/coolpress.iml new file mode 100644 index 0000000..088ac7a --- /dev/null +++ b/.idea/coolpress.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..4064368 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..fcb3c34 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..3c1b315 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 73f253c..c5d2790 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # coolpress +# Fatma Nasser CoolPress is an application to show the power of web development using Django diff --git a/coolpress/__init__.py b/coolpress/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/coolpress/coolpress/__init__.py b/coolpress/coolpress/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/coolpress/coolpress/asgi.py b/coolpress/coolpress/asgi.py new file mode 100644 index 0000000..640f4af --- /dev/null +++ b/coolpress/coolpress/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for coolpress project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'coolpress.settings') + +application = get_asgi_application() diff --git a/coolpress/coolpress/settings-prod.py b/coolpress/coolpress/settings-prod.py new file mode 100644 index 0000000..0254faf --- /dev/null +++ b/coolpress/coolpress/settings-prod.py @@ -0,0 +1,10 @@ +import os + +from coolpress.settings import * + +DEBUG = False +ALLOWED_HOSTS = ['*'] + +SECRET_KEY = os.environ['DJANGO_SECRET_KEY'] + +STATIC_ROOT = "/var/www/coolpress/static/" diff --git a/coolpress/coolpress/settings.py b/coolpress/coolpress/settings.py new file mode 100644 index 0000000..9b2b5c9 --- /dev/null +++ b/coolpress/coolpress/settings.py @@ -0,0 +1,126 @@ +import os +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-w$_pqet301==4$)f39qr#8*5psljee+5(07vx6&de7k$k^8ea@' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'rest_framework', + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'press', +] + +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 = 'coolpress.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', + "press.context_processors.categories_processor", + ], + }, + }, +] + +WSGI_APPLICATION = 'coolpress.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.2/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.2/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/3.2/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/3.2/howto/static-files/ + +STATIC_URL = '/static/' +STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') + +# Default primary key field type +# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' + +HOME_INDEX = 'posts-list' +LOGIN_REDIRECT_URL = HOME_INDEX +LOGOUT_REDIRECT_URL = HOME_INDEX + +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' + +MEDIASTACK_ACCESS_KEY = 'beecae97e6a25b2c2e0fbf79b7039510' diff --git a/coolpress/coolpress/urls.py b/coolpress/coolpress/urls.py new file mode 100644 index 0000000..49fd6f8 --- /dev/null +++ b/coolpress/coolpress/urls.py @@ -0,0 +1,31 @@ +from django.contrib import admin +from django.urls import path, include + +from press import views +from rest_framework import routers + +router = routers.DefaultRouter() +router.register(r'categories', views.CategoryViewSet) +router.register(r'posts', views.PostViewSet) +router.register(r'authors', views.AuthorsViewSet) + +urlpatterns = [ + path('home/', views.home), + path('post_details/', views.post_detail, name='posts-detail'), + path('post//comment-add/', views.add_post_comment, name='comment-add'), + path('post/update/', views.post_update, name='post-update'), + path('post/add/', views.post_update, name='post-add'), + path('about/', views.AboutView.as_view(), name='about'), + path('categories/', views.CategoryListView.as_view(), name='category-list'), + path('posts/', views.PostClassBasedListView.as_view(), name='posts-list'), + path('posts/', views.PostClassFilteringListView.as_view(), name='posts-list-by-category'), + path('posts-author/', views.AuthorClassFilteringListView.as_view(), name='author_list'), + path('api-category/', views.category_api, name='category-api'), + path('api-categories/', views.categories_api, name='categories-api'), + path('api/', include(router.urls)), + path('post-search/', views.search_post, name='post-search'), + path('api-auth/', include('rest_framework.urls')), + path('accounts/', include('django.contrib.auth.urls')), + path('author/', views.author_details, name='author-detail'), + path('admin/', admin.site.urls), +] \ No newline at end of file diff --git a/coolpress/coolpress/wsgi.py b/coolpress/coolpress/wsgi.py new file mode 100644 index 0000000..e6e72e1 --- /dev/null +++ b/coolpress/coolpress/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for coolpress 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/3.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'coolpress.settings') + +application = get_wsgi_application() diff --git a/coolpress/dumpdata.jason b/coolpress/dumpdata.jason new file mode 100644 index 0000000..274b37b Binary files /dev/null and b/coolpress/dumpdata.jason differ diff --git a/coolpress/manage.py b/coolpress/manage.py new file mode 100644 index 0000000..bd1eda1 --- /dev/null +++ b/coolpress/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'coolpress.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) + + +if __name__ == '__main__': + main() diff --git a/coolpress/press/__init__.py b/coolpress/press/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/coolpress/press/admin.py b/coolpress/press/admin.py new file mode 100644 index 0000000..e8b8e6f --- /dev/null +++ b/coolpress/press/admin.py @@ -0,0 +1,37 @@ +from django.contrib import admin + +# Register your models here. +from django.urls import reverse +from django.utils.html import format_html + +from press.models import Category, Post, CoolUser + + +class CategoryAdmin(admin.ModelAdmin): + list_display = ('label', 'view_post_lisk', 'slug') + + def view_post_lisk(self, obj): + post_cnt = obj.post_set.count() + url = reverse('admin:press_post_changelist') + f'?category__id={obj.id}' + + return format_html(f'{post_cnt}') + + +admin.site.register(Category, CategoryAdmin) + + +class PostAdmin(admin.ModelAdmin): + date_hierarchy = 'creation_date' + search_fields = ['title', 'author__user__username'] + list_display = ['title', 'author'] + list_filter = ['category'] + + +admin.site.register(Post, PostAdmin) + + +class CoolUserAdmin(admin.ModelAdmin): + pass + + +admin.site.register(CoolUser, CoolUserAdmin) \ No newline at end of file diff --git a/coolpress/press/apps.py b/coolpress/press/apps.py new file mode 100644 index 0000000..1067a7e --- /dev/null +++ b/coolpress/press/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class PressConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'press' diff --git a/coolpress/press/context_processors.py b/coolpress/press/context_processors.py new file mode 100644 index 0000000..ec88ba2 --- /dev/null +++ b/coolpress/press/context_processors.py @@ -0,0 +1,6 @@ +from press.models import Category + + +def categories_processor(request): + categories = Category.objects.all() + return {'categories': categories} diff --git a/coolpress/press/forms.py b/coolpress/press/forms.py new file mode 100644 index 0000000..fdbcd3f --- /dev/null +++ b/coolpress/press/forms.py @@ -0,0 +1,44 @@ +from django import forms +from django.forms import ModelForm + +from press.models import Post, Category, CoolUser + + +class CommentForm(forms.Form): + body = forms.CharField(label='Add some comment', + widget=forms.Textarea(attrs={'class': 'form-control'})) + votes = forms.IntegerField(label='Vote the post', min_value=1, max_value=10, + widget=forms.NumberInput(attrs={'class': 'form-control'})) + + +class PostForm(ModelForm): + class Meta: + model = Post + fields = ['title', 'body', 'image_link', 'category', 'status'] + widgets = { + 'title': forms.TextInput(attrs={'class': 'form-control'}), + 'body': forms.Textarea(attrs={'class': 'form-control'}), + 'image_link': forms.TextInput(attrs={'class': 'form-control'}), + 'category': forms.Select(attrs={'class': 'form-control'}), + 'status': forms.Select(attrs={'class': 'form-control'}), + } + + +class CategoryForm(ModelForm): + class Meta: + model = Category + fields = ['slug', 'label'] + widgets = { + 'slug': forms.TextInput(attrs={'class': 'form-control'}), + 'label': forms.TextInput(attrs={'class': 'form-control'}), + } + + +class CoolUserForm(ModelForm): + email = forms.EmailField(max_length=254, help_text='Required. Inform a valid email address.') + github_profile = forms.CharField(max_length=254, + help_text='Required. Inform a valid email address.') + + class Meta: + model = CoolUser + fields = ('github_profile',) diff --git a/coolpress/press/mediastack_manager.py b/coolpress/press/mediastack_manager.py new file mode 100644 index 0000000..913f750 --- /dev/null +++ b/coolpress/press/mediastack_manager.py @@ -0,0 +1,82 @@ +import datetime +from typing import List + +from django.contrib.auth.models import User +import requests + +from coolpress.settings import MEDIASTACK_ACCESS_KEY +from press.models import Post, PostStatus, Category, CoolUser + + +def get_or_create_mediastack_author(r_json) -> CoolUser: + names = (r_json.get('author') or 'anonymous').split() + username = ''.join(names).lower() + try: + return CoolUser.objects.get(user__username=username) + except CoolUser.DoesNotExist: + first_name = names[0] + last_name = ' '.join(names[1:]) + user = User.objects.create(username=username, first_name=first_name, last_name=last_name) + return CoolUser.objects.create(user=user) + + +def get_or_create_mediastack_category(r_json) -> Category: + label = r_json.get('category', 'general').title() + try: + return Category.objects.get(label=label) + except Category.DoesNotExist: + slug = label.replace(' ', '-').lower() + return Category.objects.create(label=label, slug=slug) + + +def get_post_publish_time(r_json) -> datetime: + return datetime.datetime.fromisoformat(r_json['published_at']) + + +def serialize_from_mediastack(response_json) -> Post: + body = f"{response_json.get('description', '')}\nsee more at: {response_json.get('url', '')}" + title = response_json.get('title', 'No Title') + category = get_or_create_mediastack_category(response_json) + image_link = response_json.get('image', '') + try: + return Post.objects.get(body=body, title=title, category=category, image_link=image_link) + except Post.DoesNotExist: + cu = get_or_create_mediastack_author(response_json) + publish_date = get_post_publish_time(response_json) + return Post.objects.create(title=title, + body=body, + image_link=image_link, + status=PostStatus.PUBLISHED, + author=cu, + category=category, + publish_date=publish_date) + + +def get_mediastack_posts(sources: List[str] = None, date: datetime.datetime = None, + languages: List[str] = None, keywords: List[str] = None, + categories: List[str] = None, + countries: List[str] = ['us'], + access_key=MEDIASTACK_ACCESS_KEY): + params = {} + if sources: + params['sources'] = ','.join(sources) + if date: + formatter = '%Y-%m-%d' + params['date'] = date.strftime(formatter) + if languages: + params['languages'] = ','.join(languages) + if keywords: + params['keywords'] = ','.join(keywords) + if categories: + params['categories'] = ','.join(categories) + if countries: + params['countries'] = ','.join(countries) + params['access_key'] = access_key + url = f'http://api.mediastack.com/v1/news' + response = requests.get(url, params=params) + json_returned = response.json() + posts = [] + for response_json_post in json_returned.get('data', []): + post = serialize_from_mediastack(response_json_post) + posts.append(post) + return posts diff --git a/coolpress/press/migrations/0001_initial.py b/coolpress/press/migrations/0001_initial.py new file mode 100644 index 0000000..ec10b57 --- /dev/null +++ b/coolpress/press/migrations/0001_initial.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.7 on 2022-11-08 13:54 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Category', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('label', models.CharField(max_length=200)), + ('slug', models.SlugField()), + ], + ), + ] diff --git a/coolpress/press/migrations/0002_post.py b/coolpress/press/migrations/0002_post.py new file mode 100644 index 0000000..8b3335d --- /dev/null +++ b/coolpress/press/migrations/0002_post.py @@ -0,0 +1,25 @@ +# Generated by Django 3.2.7 on 2022-11-11 16:55 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Post', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('title', models.CharField(max_length=400)), + ('body', models.TextField()), + ('img_link', models.URLField()), + ('status', models.CharField(choices=[('Draft', 'Published'), ('DRAFT', 'PUBLISHED')], default='DRAFT', max_length=32)), + ('creation_date', models.DateTimeField(auto_now_add=True)), + ('last_update', models.DateTimeField(auto_now=True)), + ], + ), + ] diff --git a/coolpress/press/migrations/0003_auto_20221111_1827.py b/coolpress/press/migrations/0003_auto_20221111_1827.py new file mode 100644 index 0000000..2732151 --- /dev/null +++ b/coolpress/press/migrations/0003_auto_20221111_1827.py @@ -0,0 +1,38 @@ +# Generated by Django 3.2.7 on 2022-11-11 17:27 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('press', '0002_post'), + ] + + operations = [ + migrations.AddField( + model_name='post', + name='category', + field=models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, to='press.category'), + preserve_default=False, + ), + migrations.CreateModel( + name='CoolUser', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('gravatar_link', models.URLField()), + ('github_prof', models.URLField()), + ('github_repo', models.IntegerField(null=True)), + ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + migrations.AddField( + model_name='post', + name='auther', + field=models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, to='press.cooluser'), + preserve_default=False, + ), + ] diff --git a/coolpress/press/migrations/0004_rename_auther_post_author.py b/coolpress/press/migrations/0004_rename_auther_post_author.py new file mode 100644 index 0000000..111507e --- /dev/null +++ b/coolpress/press/migrations/0004_rename_auther_post_author.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.7 on 2022-11-13 21:42 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0003_auto_20221111_1827'), + ] + + operations = [ + migrations.RenameField( + model_name='post', + old_name='auther', + new_name='author', + ), + ] diff --git a/coolpress/press/migrations/0005_auto_20221114_1253.py b/coolpress/press/migrations/0005_auto_20221114_1253.py new file mode 100644 index 0000000..9586e98 --- /dev/null +++ b/coolpress/press/migrations/0005_auto_20221114_1253.py @@ -0,0 +1,27 @@ +# Generated by Django 3.2.7 on 2022-11-14 11:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0004_rename_auther_post_author'), + ] + + operations = [ + migrations.RemoveField( + model_name='cooluser', + name='github_prof', + ), + migrations.AddField( + model_name='cooluser', + name='github_profile', + field=models.URLField(null=True), + ), + migrations.AlterField( + model_name='cooluser', + name='gravatar_link', + field=models.URLField(null=True), + ), + ] diff --git a/coolpress/press/migrations/0006_rename_post_posts.py b/coolpress/press/migrations/0006_rename_post_posts.py new file mode 100644 index 0000000..64b78db --- /dev/null +++ b/coolpress/press/migrations/0006_rename_post_posts.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.7 on 2022-11-14 11:58 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0005_auto_20221114_1253'), + ] + + operations = [ + migrations.RenameModel( + old_name='Post', + new_name='Posts', + ), + ] diff --git a/coolpress/press/migrations/0007_rename_posts_post.py b/coolpress/press/migrations/0007_rename_posts_post.py new file mode 100644 index 0000000..c5f57d5 --- /dev/null +++ b/coolpress/press/migrations/0007_rename_posts_post.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.7 on 2022-11-15 15:37 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0006_rename_post_posts'), + ] + + operations = [ + migrations.RenameModel( + old_name='Posts', + new_name='Post', + ), + ] diff --git a/coolpress/press/migrations/0008_auto_20221115_2144.py b/coolpress/press/migrations/0008_auto_20221115_2144.py new file mode 100644 index 0000000..8dbcfe6 --- /dev/null +++ b/coolpress/press/migrations/0008_auto_20221115_2144.py @@ -0,0 +1,69 @@ +# Generated by Django 3.2.7 on 2022-11-15 20:44 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0007_rename_posts_post'), + ] + + operations = [ + migrations.AlterModelOptions( + name='category', + options={'verbose_name_plural': 'categories'}, + ), + migrations.RemoveField( + model_name='cooluser', + name='github_repo', + ), + migrations.RemoveField( + model_name='post', + name='img_link', + ), + migrations.AddField( + model_name='cooluser', + name='gh_repositories', + field=models.IntegerField(blank=True, null=True), + ), + migrations.AddField( + model_name='post', + name='image_link', + field=models.URLField(null=True), + ), + migrations.AlterField( + model_name='cooluser', + name='github_profile', + field=models.URLField(blank=True, null=True), + ), + migrations.AlterField( + model_name='cooluser', + name='gravatar_link', + field=models.URLField(blank=True, null=True), + ), + migrations.AlterField( + model_name='post', + name='body', + field=models.TextField(null=True), + ), + migrations.AlterField( + model_name='post', + name='status', + field=models.CharField(choices=[('DRAFT', 'Draft'), ('PUBLISHED', 'Pasdfasdfublished Post')], default='DRAFT', max_length=32), + ), + migrations.CreateModel( + name='Comment', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('body', models.TextField()), + ('status', models.CharField(choices=[('PUBLISHED', 'Published'), ('NON_PUBLISHED', 'Non Published')], default='PUBLISHED', max_length=32)), + ('votes', models.IntegerField()), + ('creation_date', models.DateTimeField(auto_now_add=True)), + ('last_update', models.DateTimeField(auto_now=True)), + ('author', models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, to='press.cooluser')), + ('post', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='press.post')), + ], + ), + ] diff --git a/coolpress/press/migrations/0009_alter_post_status.py b/coolpress/press/migrations/0009_alter_post_status.py new file mode 100644 index 0000000..a9b07c0 --- /dev/null +++ b/coolpress/press/migrations/0009_alter_post_status.py @@ -0,0 +1,19 @@ +# Generated by Django 3.2.7 on 2022-11-17 16:30 + +from django.db import migrations, models +import press.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0008_auto_20221115_2144'), + ] + + operations = [ + migrations.AlterField( + model_name='post', + name='status', + field=models.CharField(choices=[(press.models.PostStatus['DRAFT'], 'Draft'), (press.models.PostStatus['PUBLISHED'], 'Pasdfasdfublished Post')], default=press.models.PostStatus['DRAFT'], max_length=32), + ), + ] diff --git a/coolpress/press/migrations/0010_auto_20221122_2342.py b/coolpress/press/migrations/0010_auto_20221122_2342.py new file mode 100644 index 0000000..2aff937 --- /dev/null +++ b/coolpress/press/migrations/0010_auto_20221122_2342.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.7 on 2022-11-22 22:42 + +from django.db import migrations, models +import press.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0009_alter_post_status'), + ] + + operations = [ + migrations.AlterField( + model_name='cooluser', + name='github_profile', + field=models.CharField(blank=True, max_length=300, null=True), + ), + migrations.AlterField( + model_name='post', + name='status', + field=models.CharField(choices=[(press.models.PostStatus['DRAFT'], 'DRAFT'), (press.models.PostStatus['PUBLISHED'], 'PUBLISHED')], default=press.models.PostStatus['DRAFT'], max_length=32), + ), + ] diff --git a/coolpress/press/migrations/0011_cooluser_last_update.py b/coolpress/press/migrations/0011_cooluser_last_update.py new file mode 100644 index 0000000..548ec7c --- /dev/null +++ b/coolpress/press/migrations/0011_cooluser_last_update.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.7 on 2022-11-22 23:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0010_auto_20221122_2342'), + ] + + operations = [ + migrations.AddField( + model_name='cooluser', + name='last_update', + field=models.DateTimeField(auto_now=True), + ), + ] diff --git a/coolpress/press/migrations/0012_auto_20221123_1306.py b/coolpress/press/migrations/0012_auto_20221123_1306.py new file mode 100644 index 0000000..0a144a4 --- /dev/null +++ b/coolpress/press/migrations/0012_auto_20221123_1306.py @@ -0,0 +1,24 @@ +# Generated by Django 3.2.7 on 2022-11-23 12:06 + +from django.db import migrations, models +import django.utils.timezone + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0011_cooluser_last_update'), + ] + + operations = [ + migrations.RemoveField( + model_name='cooluser', + name='last_update', + ), + migrations.AddField( + model_name='cooluser', + name='gravatar_updated_at', + field=models.DateTimeField(blank=True, default=django.utils.timezone.now), + preserve_default=False, + ), + ] diff --git a/coolpress/press/migrations/0013_cooluser_gh_stars.py b/coolpress/press/migrations/0013_cooluser_gh_stars.py new file mode 100644 index 0000000..818dbc0 --- /dev/null +++ b/coolpress/press/migrations/0013_cooluser_gh_stars.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.7 on 2022-11-23 15:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0012_auto_20221123_1306'), + ] + + operations = [ + migrations.AddField( + model_name='cooluser', + name='gh_stars', + field=models.IntegerField(blank=True, null=True), + ), + ] diff --git a/coolpress/press/migrations/0014_post_publish_date.py b/coolpress/press/migrations/0014_post_publish_date.py new file mode 100644 index 0000000..7766bc8 --- /dev/null +++ b/coolpress/press/migrations/0014_post_publish_date.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.7 on 2022-11-24 16:58 + +from django.db import migrations, models +import django.utils.timezone + + +class Migration(migrations.Migration): + + dependencies = [ + ('press', '0013_cooluser_gh_stars'), + ] + + operations = [ + migrations.AddField( + model_name='post', + name='publish_date', + field=models.DateTimeField(blank=True, default=django.utils.timezone.now), + preserve_default=False, + ), + ] diff --git a/coolpress/press/migrations/__init__.py b/coolpress/press/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/coolpress/press/models.py b/coolpress/press/models.py new file mode 100644 index 0000000..97c12f1 --- /dev/null +++ b/coolpress/press/models.py @@ -0,0 +1,118 @@ +import datetime +from enum import Enum + +import requests +import bs4 +from libgravatar import Gravatar +from django.contrib.auth.models import User +from django.db import models +from pyparsing import Optional + + +class CoolUser(models.Model): + user = models.OneToOneField(User, on_delete=models.CASCADE) + gravatar_link = models.URLField(null=True, blank=True) + github_profile = models.CharField(max_length=300, null=True, blank=True) + gh_repositories = models.IntegerField(null=True, blank=True) + gh_stars = models.IntegerField(null=True, blank=True) + + gravatar_updated_at = models.DateTimeField(auto_now=False, blank=True) + + def save(self, *args, **kwargs): + if self.user.email is not None: + gravatar_link = Gravatar(self.user.email).get_image() + if gravatar_link != self.gravatar_link: + self.gravatar_updated_at = datetime.datetime.utcnow() + self.gh_repositories = self.get_github_repos() + self.gh_stars = self.get_github_stars() + super(CoolUser, self).save(*args, **kwargs) + + def get_github_url(self): + if self.github_profile: + url = f'https://github.com/{self.github_profile}' + response = requests.get(url) + if response.status_code == 200: + return url + + def get_github_repos(self): + url = self.get_github_url() + if url: + response = requests.get(url) + soup = bs4.BeautifulSoup(response.content, 'html.parser') + css_selector = '.Counter' + repositories_info = soup.select_one(css_selector) + repos_text = repositories_info.text + return int(repos_text) + + def get_github_stars(self): + url = self.get_github_url() + if url: + response = requests.get(url) + soup = bs4.BeautifulSoup(response.content, 'html.parser') + css_selector = 'body > div.application-main > main > div.mt-4.position-sticky.top-0.d-none.d-md-block.color-bg-default.width-full.border-bottom.color-border-muted > div > div > div.Layout-main > div > nav > a:nth-child(5) > span' + stars_info = soup.select_one(css_selector) + repos_text = stars_info.text + return int(repos_text) + + +class Category(models.Model): + class Meta: + verbose_name_plural = 'categories' + + label = models.CharField(max_length=200) + slug = models.SlugField() + + def __str__(self): + return f'{self.label} ({self.id})' + + +class PostStatus(Enum): + DRAFT = 'DRAFT' + PUBLISHED = 'PUBLISHED' + + +class Post(models.Model): + title = models.CharField(max_length=400) + body = models.TextField(null=True) + image_link = models.URLField(null=True) + status = models.CharField(max_length=32, + choices=[(PostStatus.DRAFT, 'DRAFT'), + (PostStatus.PUBLISHED, 'PUBLISHED')], + default=PostStatus.DRAFT) + + author = models.ForeignKey(CoolUser, on_delete=models.CASCADE) + category = models.ForeignKey(Category, on_delete=models.CASCADE) + + creation_date = models.DateTimeField(auto_now_add=True) + publish_date = models.DateTimeField(blank=True) + last_update = models.DateTimeField(auto_now=True) + commentcounter = 0 + + + def CommentCounter(self): + self.commentcounter += 1 + + def __str__(self): + return self.title + +class CommentStatus: + PUBLISHED = 'PUBLISHED' + NON_PUBLISHED = 'NON_PUBLISHED' + + +class Comment(models.Model): + body = models.TextField() + status = models.CharField(max_length=32, + choices=[(CommentStatus.PUBLISHED, 'Published'), + (CommentStatus.NON_PUBLISHED, 'Non Published')], + default=CommentStatus.PUBLISHED) + votes = models.IntegerField() + author = models.ForeignKey(CoolUser, on_delete=models.DO_NOTHING) + post = models.ForeignKey(Post, on_delete=models.CASCADE) + creation_date = models.DateTimeField(auto_now_add=True) + last_update = models.DateTimeField(auto_now=True) + + + + def __str__(self): + return f'{self.body[:10]} - from: {self.author.user.username}' diff --git a/coolpress/press/pip.py b/coolpress/press/pip.py new file mode 100644 index 0000000..1dbdd60 --- /dev/null +++ b/coolpress/press/pip.py @@ -0,0 +1,4 @@ +import Gravatar as Gravatar +import djangorestframework as djangorestframework +!pip install djangorestframework +!pip install Gravatar diff --git a/coolpress/press/prod_sample.json b/coolpress/press/prod_sample.json new file mode 100644 index 0000000..016dd92 --- /dev/null +++ b/coolpress/press/prod_sample.json @@ -0,0 +1 @@ +[{"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$260000$DyKus19iCPWhGiciwMZuL4$61s5254IlyRV3lIhxx6tZMSLt3orKswW0Mp7alqbsbg=", "last_login": "2021-10-14T10:42:11Z", "is_superuser": true, "username": "oscar", "first_name": "", "last_name": "", "email": "tuxskar@gmail.com", "is_staff": true, "is_active": true, "date_joined": "2021-10-14T10:39:36Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jmusto@noemail.com", "first_name": "Julia", "last_name": "Musto", "email": "jmusto@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:41:19.792Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 3, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "krivas@noemail.com", "first_name": "Kayla", "last_name": "Rivas", "email": "krivas@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:43:38.594Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 4, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ccaron@noemail.com", "first_name": "Christina", "last_name": "Caron", "email": "ccaron@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:43:40.561Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 5, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mrichtelandsheilakaplan@noemail.com", "first_name": "Matt", "last_name": "Richtel and Sheila Kaplan", "email": "mrichtelandsheilakaplan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:43:42.352Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 6, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "xm.com@noemail.com", "first_name": "XM.com", "last_name": "", "email": "xm.com@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:01.207Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 7, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "queenseyes@noemail.com", "first_name": "queenseyes", "last_name": "", "email": "queenseyes@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:02.810Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 8, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "silicon@noemail.com", "first_name": "silicon", "last_name": "", "email": "silicon@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:04.415Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 9, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jahmed@noemail.com", "first_name": "Javed", "last_name": "Ahmed", "email": "jahmed@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:06.296Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 10, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "anonymous@noemail.com", "first_name": "anonymous", "last_name": "", "email": "anonymous@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:09.847Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 11, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nmascarenhas@noemail.com", "first_name": "Natasha", "last_name": "Mascarenhas", "email": "nmascarenhas@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:45.682Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 12, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "chall@noemail.com", "first_name": "Christine", "last_name": "Hall", "email": "chall@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:47.700Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 13, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jporter@noemail.com", "first_name": "Jon", "last_name": "Porter", "email": "jporter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:49.485Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 14, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ilykiardopoulou@noemail.com", "first_name": "Ioanna", "last_name": "Lykiardopoulou", "email": "ilykiardopoulou@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:51.232Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 15, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tkene-okafor@noemail.com", "first_name": "Tage", "last_name": "Kene-Okafor", "email": "tkene-okafor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:44:52.994Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 16, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lthackray@noemail.com", "first_name": "Lucy", "last_name": "Thackray", "email": "lthackray@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:21.705Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 17, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nsmileybyte@noemail.com", "first_name": "Nii", "last_name": "Smiley Byte", "email": "nsmileybyte@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:23.086Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 18, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "fhanitijo@noemail.com", "first_name": "Flora", "last_name": "Hanitijo", "email": "fhanitijo@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:24.741Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 19, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "pwade@noemail.com", "first_name": "Prudence", "last_name": "Wade", "email": "pwade@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:26.395Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 20, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jgauthier@noemail.com", "first_name": "JF", "last_name": "Gauthier", "email": "jgauthier@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:49.083Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 21, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "clawrence@noemail.com", "first_name": "Cate", "last_name": "Lawrence", "email": "clawrence@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:50.919Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 22, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mmoon@noemail.com", "first_name": "Mariella", "last_name": "Moon", "email": "mmoon@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:52.780Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 23, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ilunden@noemail.com", "first_name": "Ingrid", "last_name": "Lunden", "email": "ilunden@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:45:54.327Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 24, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@abmn.com", "first_name": "ABMN Staff", "last_name": "", "email": "info@abmn.com", "is_staff": false, "is_active": false, "date_joined": "2021-10-14T10:46:15.262Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 25, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tnewsservice@noemail.com", "first_name": "Tribune", "last_name": "News Service", "email": "tnewsservice@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T11:49:41.315Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 26, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sfitton@noemail.com", "first_name": "Sarah", "last_name": "Fitton", "email": "sfitton@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T11:50:48.102Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 27, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mweber@noemail.com", "first_name": "Michael", "last_name": "Weber", "email": "mweber@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T11:55:27.664Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 28, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mnews@noemail.com", "first_name": "MarketBeat", "last_name": "News", "email": "mnews@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T11:56:58.785Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 29, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "oisinkelly@noemail.com", "first_name": "oisinkelly", "last_name": "", "email": "oisinkelly@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:00.107Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 30, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aadejobi@noemail.com", "first_name": "Alicia", "last_name": "Adejobi", "email": "aadejobi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:01.650Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 31, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mbrantley@noemail.com", "first_name": "Max", "last_name": "Brantley", "email": "mbrantley@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:03.120Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 32, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tcanadianpress@noemail.com", "first_name": "The", "last_name": "Canadian Press", "email": "tcanadianpress@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:04.594Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 33, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bcost@noemail.com", "first_name": "Ben", "last_name": "Cost", "email": "bcost@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:06.059Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 34, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kšormaz@noemail.com", "first_name": "Kristina", "last_name": "Šormaz", "email": "kšormaz@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:07.539Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 35, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "blyons@noemail.com", "first_name": "Bill", "last_name": "Lyons", "email": "blyons@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:09.032Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 36, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cemelone@noemail.com", "first_name": "Christine", "last_name": "Emelone", "email": "cemelone@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:10.515Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 37, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kwomack@noemail.com", "first_name": "Kalyn", "last_name": "Womack", "email": "kwomack@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:11.971Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 38, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cchan@noemail.com", "first_name": "Cheryl", "last_name": "Chan", "email": "cchan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:13.477Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 39, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "odiarybureau@noemail.com", "first_name": "Odisha", "last_name": "Diary bureau", "email": "odiarybureau@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:14.948Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 40, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "juitti@noemail.com", "first_name": "Jacob", "last_name": "Uitti", "email": "juitti@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:16.436Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 41, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lukef@noemail.com", "first_name": "Lukef", "last_name": "", "email": "lukef@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:17.891Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 42, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "blomborg@noemail.com", "first_name": "Bjorn", "last_name": "Lomborg", "email": "blomborg@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:19.399Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 43, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kconaglen@noemail.com", "first_name": "Katrina", "last_name": "Conaglen", "email": "kconaglen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T15:09:20.905Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 44, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dorochena@noemail.com", "first_name": "David", "last_name": "Orochena", "email": "dorochena@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T16:00:51.639Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 45, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dbarnes@noemail.com", "first_name": "Deaundre", "last_name": "Barnes", "email": "dbarnes@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T16:00:54.633Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 46, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kwallace@noemail.com", "first_name": "Kim", "last_name": "Wallace", "email": "kwallace@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T16:00:56.593Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 47, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "agrant@noemail.com", "first_name": "Alex", "last_name": "Grant", "email": "agrant@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T16:00:58.786Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 48, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tcoates@noemail.com", "first_name": "Tom", "last_name": "Coates", "email": "tcoates@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T16:01:00.602Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 49, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jkeith@noemail.com", "first_name": "Joseph", "last_name": "Keith", "email": "jkeith@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-04T16:01:02.862Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 50, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nkamanzimuteteri@noemail.com", "first_name": "Nicole", "last_name": "Kamanzi Muteteri", "email": "nkamanzimuteteri@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:46.346Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 51, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mallan@noemail.com", "first_name": "Matt", "last_name": "Allan", "email": "mallan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:48.011Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 52, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "clucas@noemail.com", "first_name": "Caroline", "last_name": "Lucas", "email": "clucas@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:49.855Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 53, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aarsenych@noemail.com", "first_name": "Alex", "last_name": "Arsenych", "email": "aarsenych@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:52.332Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 54, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "manuel@noemail.com", "first_name": "Manuel", "last_name": "", "email": "manuel@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:54.264Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 55, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tgase@noemail.com", "first_name": "Thomas", "last_name": "Gase", "email": "tgase@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:56.199Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 56, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wnewsservices@noemail.com", "first_name": "WND", "last_name": "News Services", "email": "wnewsservices@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:57.885Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 57, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mliss1578@noemail.com", "first_name": "mliss1578", "last_name": "", "email": "mliss1578@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-05T16:00:59.595Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 58, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ebaytimeseditorial@noemail.com", "first_name": "East", "last_name": "Bay Times editorial", "email": "ebaytimeseditorial@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:02:10.549Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 59, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ahenderson@noemail.com", "first_name": "Alex", "last_name": "Henderson", "email": "ahenderson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:02:12.701Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 60, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "odalys@noemail.com", "first_name": "odalys", "last_name": "", "email": "odalys@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:02:14.766Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 61, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mperegrine@noemail.com", "first_name": "Michael", "last_name": "Peregrine", "email": "mperegrine@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:07.674Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 62, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "akaitlincastillo@noemail.com", "first_name": "Airman", "last_name": "Kaitlin Castillo", "email": "akaitlincastillo@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:10.711Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 63, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tammye@noemail.com", "first_name": "Tammye", "last_name": "", "email": "tammye@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:13.328Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 64, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "asmith@noemail.com", "first_name": "Adam", "last_name": "Smith", "email": "asmith@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:16.234Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 65, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lilchi@noemail.com", "first_name": "Layla", "last_name": "Ilchi", "email": "lilchi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:20.482Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 66, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cwallace@noemail.com", "first_name": "Chris", "last_name": "Wallace", "email": "cwallace@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:22.924Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 67, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rrequintina@noemail.com", "first_name": "Robert", "last_name": "Requintina", "email": "rrequintina@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:26.535Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 68, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dyates@noemail.com", "first_name": "David", "last_name": "Yates", "email": "dyates@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:29.098Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 69, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rhurd@noemail.com", "first_name": "Rick", "last_name": "Hurd", "email": "rhurd@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-06T16:03:30.988Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 70, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "escambray@noemail.com", "first_name": "Escambray", "last_name": "", "email": "escambray@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:00:48.669Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 71, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "pgabriel@noemail.com", "first_name": "Parker", "last_name": "Gabriel", "email": "pgabriel@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:00:50.418Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 72, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eaustin@noemail.com", "first_name": "Edie", "last_name": "Austin", "email": "eaustin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:00:52.278Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 73, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kchhabra@noemail.com", "first_name": "Kaishi", "last_name": "Chhabra", "email": "kchhabra@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:00:54.178Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 74, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bkruger@noemail.com", "first_name": "Brooke", "last_name": "Kruger", "email": "bkruger@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:00:56.108Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 75, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "btoday@noemail.com", "first_name": "Barbados", "last_name": "Today", "email": "btoday@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:00:57.836Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 76, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "inmaricopa@noemail.com", "first_name": "InMaricopa", "last_name": "", "email": "inmaricopa@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:00:59.767Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 77, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jpowell@noemail.com", "first_name": "Jason", "last_name": "Powell", "email": "jpowell@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:01.551Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 78, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "akotyk@noemail.com", "first_name": "Alyse", "last_name": "Kotyk", "email": "akotyk@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:03.803Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 79, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hcrawford@noemail.com", "first_name": "Holly", "last_name": "Crawford", "email": "hcrawford@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:06.584Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 80, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ckeene@noemail.com", "first_name": "C.J.", "last_name": "Keene", "email": "ckeene@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:09.006Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 81, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cprice@noemail.com", "first_name": "Chris", "last_name": "Price", "email": "cprice@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:11.847Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 82, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rfigueroa@noemail.com", "first_name": "Rafael", "last_name": "Figueroa", "email": "rfigueroa@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:14.017Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 83, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wpadgett@noemail.com", "first_name": "Will", "last_name": "Padgett", "email": "wpadgett@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:16.597Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 84, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jdevine@noemail.com", "first_name": "John", "last_name": "Devine", "email": "jdevine@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:19.088Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 85, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jrusso@noemail.com", "first_name": "Jenelyn", "last_name": "Russo", "email": "jrusso@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:21.609Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 86, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@thestreet.com", "first_name": "TheStreet Staff", "last_name": "", "email": "info@thestreet.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:23.424Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 87, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "amamiit@noemail.com", "first_name": "Aaron", "last_name": "Mamiit", "email": "amamiit@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-07T16:01:25.360Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 88, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "stodorović@noemail.com", "first_name": "Srđan", "last_name": "Todorović", "email": "stodorović@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-08T16:00:50.439Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 89, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bwhitehead@noemail.com", "first_name": "Brian", "last_name": "Whitehead", "email": "bwhitehead@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-08T16:00:52.519Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 90, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sbassin@noemail.com", "first_name": "STEVEN", "last_name": "BASSIN", "email": "sbassin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-08T16:00:54.797Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 91, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mswanson@noemail.com", "first_name": "Mirjam", "last_name": "Swanson", "email": "mswanson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-08T16:00:56.566Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 92, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rescambray@noemail.com", "first_name": "Redacción", "last_name": "Escambray", "email": "rescambray@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:00:47.945Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 93, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "abassili@noemail.com", "first_name": "Albert", "last_name": "Bassili", "email": "abassili@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:00:49.842Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 94, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "booya711@noemail.com", "first_name": "Booya711", "last_name": "", "email": "booya711@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:00:51.681Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 95, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "osportsstaff@noemail.com", "first_name": "OCVarsity", "last_name": "sports staff", "email": "osportsstaff@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:00:53.551Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 96, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ebashforth@noemail.com", "first_name": "Emily", "last_name": "Bashforth", "email": "ebashforth@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:00:55.391Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 97, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jalexander@noemail.com", "first_name": "Jim", "last_name": "Alexander", "email": "jalexander@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:00:57.140Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 98, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cclinic@noemail.com", "first_name": "Cleveland", "last_name": "Clinic", "email": "cclinic@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:00:59.458Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 99, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rcancerinstituteofnewjersey@noemail.com", "first_name": "Rutgers", "last_name": "Cancer Institute of New Jersey", "email": "rcancerinstituteofnewjersey@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:03.571Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 100, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hmedicalschool@noemail.com", "first_name": "Harvard", "last_name": "Medical School", "email": "hmedicalschool@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:05.889Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 101, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "uofutahhealth@noemail.com", "first_name": "University", "last_name": "of Utah Health", "email": "uofutahhealth@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:08.581Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 102, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "onewseditor@noemail.com", "first_name": "Online", "last_name": "News Editor", "email": "onewseditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:11.171Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 103, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eblackstock@noemail.com", "first_name": "Elizabeth", "last_name": "Blackstock", "email": "eblackstock@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:14.135Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 104, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "reuters@noemail.com", "first_name": "Reuters", "last_name": "", "email": "reuters@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:16.675Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 105, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jr.@noemail.com", "first_name": "Jayanth", "last_name": "R.", "email": "jr.@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:18.884Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 106, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aswanson@noemail.com", "first_name": "Anna", "last_name": "Swanson", "email": "aswanson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:21.199Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 107, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "pologq@noemail.com", "first_name": "pologq", "last_name": "", "email": "pologq@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-10T16:01:23.255Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 108, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nnews@noemail.com", "first_name": "NBC", "last_name": "News", "email": "nnews@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:00:48.867Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 109, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "spape@noemail.com", "first_name": "Stefan", "last_name": "Pape", "email": "spape@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:00:50.930Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 110, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mgrant@noemail.com", "first_name": "Michael", "last_name": "Grant", "email": "mgrant@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:00:52.774Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 111, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jdarmody@noemail.com", "first_name": "Jenny", "last_name": "Darmody", "email": "jdarmody@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:00:54.742Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 112, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rnewsservice@noemail.com", "first_name": "Reuters", "last_name": "News Service", "email": "rnewsservice@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:00:56.709Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 113, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aiveson@noemail.com", "first_name": "Ali", "last_name": "Iveson", "email": "aiveson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:00:58.541Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 114, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "akalmowitz@noemail.com", "first_name": "Andy", "last_name": "Kalmowitz", "email": "akalmowitz@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:01:00.479Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 115, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tpinheiro@noemail.com", "first_name": "Tatiana", "last_name": "Pinheiro", "email": "tpinheiro@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:01:02.735Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 116, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hjackson@noemail.com", "first_name": "Hannah", "last_name": "Jackson", "email": "hjackson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:01:05.857Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 117, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hdavies@noemail.com", "first_name": "Hannah", "last_name": "Davies", "email": "hdavies@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:01:09.057Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 118, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jweisberger@noemail.com", "first_name": "Jason", "last_name": "Weisberger", "email": "jweisberger@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:01:12.809Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 119, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jvučić@noemail.com", "first_name": "Jasna", "last_name": "Vučić", "email": "jvučić@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:01:15.221Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 120, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dgiles@noemail.com", "first_name": "David", "last_name": "Giles", "email": "dgiles@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-11T16:01:18.689Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 121, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "m(deanmurray@noemail.com", "first_name": "mirrornews@mirror.co.uk", "last_name": "(Dean Murray", "email": "m(deanmurray@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:00:51.728Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 122, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jchisholm@noemail.com", "first_name": "Johanna", "last_name": "Chisholm", "email": "jchisholm@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:00:53.847Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 123, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hwoosley-collins@noemail.com", "first_name": "Hannah", "last_name": "Woosley-Collins", "email": "hwoosley-collins@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:00:56.595Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 124, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lgrace@noemail.com", "first_name": "Liam", "last_name": "Grace", "email": "lgrace@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:00:58.595Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 125, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jalper@noemail.com", "first_name": "Josh", "last_name": "Alper", "email": "jalper@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:01:00.722Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 126, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "scontent@noemail.com", "first_name": "Submitted", "last_name": "Content", "email": "scontent@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:01:02.719Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 127, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cschubert@noemail.com", "first_name": "Charlotte", "last_name": "Schubert", "email": "cschubert@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:01:05.385Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 128, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "anetwork@noemail.com", "first_name": "Action", "last_name": "Network", "email": "anetwork@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:01:08.153Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 129, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sreporter@noemail.com", "first_name": "SWNS", "last_name": "Reporter", "email": "sreporter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:01:10.947Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 130, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rbeecham@noemail.com", "first_name": "Richard", "last_name": "Beecham", "email": "rbeecham@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-12T16:01:13.591Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 131, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jbuck@noemail.com", "first_name": "Joe", "last_name": "Buck", "email": "jbuck@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:00:51.190Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 132, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mhamm@noemail.com", "first_name": "Mark", "last_name": "Hamm", "email": "mhamm@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:00:53.001Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 133, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "vbjelić@noemail.com", "first_name": "Vesna", "last_name": "Bjelić", "email": "vbjelić@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:00:54.853Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 134, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mfrauenfelder@noemail.com", "first_name": "Mark", "last_name": "Frauenfelder", "email": "mfrauenfelder@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:00:56.695Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 135, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rrocca@noemail.com", "first_name": "Ryan", "last_name": "Rocca", "email": "rrocca@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:00:58.505Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 136, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jtrussell@noemail.com", "first_name": "Jacob", "last_name": "Trussell", "email": "jtrussell@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:00.781Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 137, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bbrown@noemail.com", "first_name": "Bruce", "last_name": "Brown", "email": "bbrown@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:03.049Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 138, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "awhistance@noemail.com", "first_name": "Abi", "last_name": "Whistance", "email": "awhistance@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:06.211Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 139, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "stitches@noemail.com", "first_name": "Stitches", "last_name": "", "email": "stitches@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:08.779Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 140, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "khamilton@noemail.com", "first_name": "Kirsty", "last_name": "Hamilton", "email": "khamilton@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:11.159Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 141, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "smedium@noemail.com", "first_name": "Seattle", "last_name": "Medium", "email": "smedium@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:13.237Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 142, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "iradivojević@noemail.com", "first_name": "Ivana", "last_name": "Radivojević", "email": "iradivojević@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:15.855Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 143, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nmomčilović@noemail.com", "first_name": "Nikola", "last_name": "Momčilović", "email": "nmomčilović@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:18.809Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 144, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nframe@noemail.com", "first_name": "Nick", "last_name": "Frame", "email": "nframe@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:21.179Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 145, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "acourt@noemail.com", "first_name": "Andrew", "last_name": "Court", "email": "acourt@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:23.185Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 146, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "awilliams@noemail.com", "first_name": "Aaron", "last_name": "Williams", "email": "awilliams@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:25.183Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 147, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "emugisha@noemail.com", "first_name": "Elvis", "last_name": "Mugisha", "email": "emugisha@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:27.102Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 148, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nmcglade@noemail.com", "first_name": "Neil", "last_name": "McGlade", "email": "nmcglade@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:28.947Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 149, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "knews@noemail.com", "first_name": "KRDO", "last_name": "News", "email": "knews@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:30.813Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 150, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ysteinbuch@noemail.com", "first_name": "Yaron", "last_name": "Steinbuch", "email": "ysteinbuch@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-13T16:01:32.630Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 151, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dmcalpine@noemail.com", "first_name": "Dayna", "last_name": "McAlpine", "email": "dmcalpine@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:00:52.163Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 152, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jlennox@noemail.com", "first_name": "Jesse", "last_name": "Lennox", "email": "jlennox@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:00:53.893Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 153, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kg.richardson@noemail.com", "first_name": "Kelly", "last_name": "G. Richardson", "email": "kg.richardson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:00:56.040Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 154, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tdimacali@noemail.com", "first_name": "TJ", "last_name": "Dimacali", "email": "tdimacali@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:00:57.912Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 155, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ktherriault@noemail.com", "first_name": "ktherriault", "last_name": "", "email": "ktherriault@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:00:59.905Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 156, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hgutmann@noemail.com", "first_name": "Harold", "last_name": "Gutmann", "email": "hgutmann@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:01.960Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 157, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tilić@noemail.com", "first_name": "Tamara", "last_name": "Ilić", "email": "tilić@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:04.527Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 158, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nlisinac@noemail.com", "first_name": "Nemanja", "last_name": "Lisinac", "email": "nlisinac@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:06.898Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 159, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rbricken@noemail.com", "first_name": "Rob", "last_name": "Bricken", "email": "rbricken@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:09.425Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 160, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tcitizen@noemail.com", "first_name": "The", "last_name": "Citizen", "email": "tcitizen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:12.372Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 161, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "agonzalez@noemail.com", "first_name": "Alex", "last_name": "Gonzalez", "email": "agonzalez@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:14.903Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 162, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jbrow@noemail.com", "first_name": "Jason", "last_name": "Brow", "email": "jbrow@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:18.065Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 163, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gadams@noemail.com", "first_name": "Greg", "last_name": "Adams", "email": "gadams@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:20.247Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 164, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tbenitez-eves@noemail.com", "first_name": "Tina", "last_name": "Benitez-Eves", "email": "tbenitez-eves@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:22.357Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 165, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "smeviane@noemail.com", "first_name": "Saint-Paul", "last_name": "Meviane", "email": "smeviane@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:24.520Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 166, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "fyemi@noemail.com", "first_name": "Frank", "last_name": "Yemi", "email": "fyemi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:26.589Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 167, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tbailey@noemail.com", "first_name": "Tiffany", "last_name": "Bailey", "email": "tbailey@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:28.446Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 168, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "msimmons@noemail.com", "first_name": "Myles", "last_name": "Simmons", "email": "msimmons@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-14T16:01:30.390Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 169, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bherald@noemail.com", "first_name": "Boston", "last_name": "Herald", "email": "bherald@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:00:49.597Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 170, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ngartrell@noemail.com", "first_name": "Nate", "last_name": "Gartrell", "email": "ngartrell@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:00:51.525Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 171, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mlarkin@noemail.com", "first_name": "Matt", "last_name": "Larkin", "email": "mlarkin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:00:54.113Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 172, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kmathiesen@noemail.com", "first_name": "Karl", "last_name": "Mathiesen", "email": "kmathiesen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:00:56.146Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 173, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ljacobs@noemail.com", "first_name": "Lisa", "last_name": "Jacobs", "email": "ljacobs@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:00:57.931Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 174, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cwriter@noemail.com", "first_name": "Contributing", "last_name": "Writer", "email": "cwriter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:00:59.804Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 175, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mrowbottom@noemail.com", "first_name": "Mike", "last_name": "Rowbottom", "email": "mrowbottom@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:01.753Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 176, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "apress@noemail.com", "first_name": "Associated", "last_name": "Press", "email": "apress@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:04.053Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 177, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@report.com", "first_name": "Staff Report", "last_name": "", "email": "info@report.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:06.883Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 178, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aadeyemo-osogbo@noemail.com", "first_name": "Adeolu", "last_name": "Adeyemo - Osogbo", "email": "aadeyemo-osogbo@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:09.393Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 179, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "csauertieg@noemail.com", "first_name": "Clay", "last_name": "Sauertieg", "email": "csauertieg@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:12.669Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 180, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sschnur@noemail.com", "first_name": "Sabrina", "last_name": "Schnur", "email": "sschnur@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:15.177Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 181, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jlevine@noemail.com", "first_name": "Jon", "last_name": "Levine", "email": "jlevine@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:17.917Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 182, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "newsdesk@noemail.com", "first_name": "Newsdesk", "last_name": "", "email": "newsdesk@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-15T16:01:20.046Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 183, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "slankaguardian@noemail.com", "first_name": "Sri", "last_name": "Lanka Guardian", "email": "slankaguardian@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:00:52.985Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 184, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lgeorge@noemail.com", "first_name": "Liz", "last_name": "George", "email": "lgeorge@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:00:54.802Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 185, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "elawson@noemail.com", "first_name": "Eleanor", "last_name": "Lawson", "email": "elawson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:00:56.735Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 186, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dlieberman@noemail.com", "first_name": "Dan", "last_name": "Lieberman", "email": "dlieberman@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:00:58.641Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 187, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "anews/wire@noemail.com", "first_name": "AFP", "last_name": "News/Wire", "email": "anews/wire@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:00.451Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 188, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tassociatedpress@noemail.com", "first_name": "The", "last_name": "Associated Press", "email": "tassociatedpress@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:02.675Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 189, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "vpatel@noemail.com", "first_name": "Vimal", "last_name": "Patel", "email": "vpatel@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:05.129Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 190, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rqubein@noemail.com", "first_name": "Ramsey", "last_name": "Qubein", "email": "rqubein@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:07.713Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 191, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gkilanderandjohnbowden@noemail.com", "first_name": "Gustaf", "last_name": "Kilander and John Bowden", "email": "gkilanderandjohnbowden@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:10.249Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 192, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "marcher@noemail.com", "first_name": "Meaghan", "last_name": "Archer", "email": "marcher@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:13.273Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 193, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mj.scottdetweiler@noemail.com", "first_name": "Maj.", "last_name": "J. Scott Detweiler", "email": "mj.scottdetweiler@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:15.470Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 194, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gnews@noemail.com", "first_name": "Ghana", "last_name": "News", "email": "gnews@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:18.357Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 195, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "trecorderandtimesstaff@noemail.com", "first_name": "The", "last_name": "Recorder and Times staff", "email": "trecorderandtimesstaff@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:20.715Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 196, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tblaze@noemail.com", "first_name": "The", "last_name": "Blaze", "email": "tblaze@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:23.118Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 197, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@sportsgrid-.com", "first_name": "Sportsgrid-Staff", "last_name": "", "email": "info@sportsgrid-.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-16T16:01:25.686Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 198, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wpreussen@noemail.com", "first_name": "Wilhelmine", "last_name": "Preussen", "email": "wpreussen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:46.031Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 199, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@sgt. eliezer soto.com", "first_name": "Staff Sgt. Eliezer Soto", "last_name": "", "email": "info@sgt. eliezer soto.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:47.650Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 200, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aengler@noemail.com", "first_name": "Alex", "last_name": "Engler", "email": "aengler@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:49.351Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 201, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "clord@noemail.com", "first_name": "Craig", "last_name": "Lord", "email": "clord@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:51.069Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 202, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ebrennan@noemail.com", "first_name": "Eliott", "last_name": "Brennan", "email": "ebrennan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:52.666Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 203, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mmarczi@noemail.com", "first_name": "Matthew", "last_name": "Marczi", "email": "mmarczi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:54.393Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 204, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kos@noemail.com", "first_name": "Kos", "last_name": "", "email": "kos@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:55.967Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 205, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tlavalette@noemail.com", "first_name": "Tristan", "last_name": "Lavalette", "email": "tlavalette@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:57.636Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 206, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "fm@noemail.com", "first_name": "fm", "last_name": "", "email": "fm@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:00:59.213Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 207, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rupson@noemail.com", "first_name": "Raquel", "last_name": "Upson", "email": "rupson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:01:00.764Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 208, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rlewis@noemail.com", "first_name": "Rachelle", "last_name": "Lewis", "email": "rlewis@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:01:02.439Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 209, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mstarforth@noemail.com", "first_name": "Miles", "last_name": "Starforth", "email": "mstarforth@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:01:04.354Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 210, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ckitson@noemail.com", "first_name": "Calli", "last_name": "Kitson", "email": "ckitson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-17T16:01:06.893Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 211, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dchen@noemail.com", "first_name": "Dalson", "last_name": "Chen", "email": "dchen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:46.411Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 212, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rmatuson@noemail.com", "first_name": "Roberta", "last_name": "Matuson", "email": "rmatuson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:48.156Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 213, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "utoday@noemail.com", "first_name": "USA", "last_name": "TODAY", "email": "utoday@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:49.714Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 214, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "yfinancevideo@noemail.com", "first_name": "Yahoo", "last_name": "Finance Video", "email": "yfinancevideo@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:51.359Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 215, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "echang@noemail.com", "first_name": "Ellen", "last_name": "Chang", "email": "echang@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:53.053Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 216, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "echau@noemail.com", "first_name": "Eddie", "last_name": "Chau", "email": "echau@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:54.668Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 217, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "agilbert@noemail.com", "first_name": "Andrew", "last_name": "Gilbert", "email": "agilbert@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:56.272Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 218, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gavalos@noemail.com", "first_name": "George", "last_name": "Avalos", "email": "gavalos@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:57.889Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 219, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@.com", "first_name": "Staff", "last_name": "", "email": "info@.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:00:59.591Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 220, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lhlarsen@noemail.com", "first_name": "Linda", "last_name": "H Larsen", "email": "lhlarsen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:01:01.209Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 221, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "msockol@noemail.com", "first_name": "MATTHEW", "last_name": "SOCKOL", "email": "msockol@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:01:03.657Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 222, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "olloyd@noemail.com", "first_name": "Owen", "last_name": "Lloyd", "email": "olloyd@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:01:05.849Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 223, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rblazenhoff@noemail.com", "first_name": "Rusty", "last_name": "Blazenhoff", "email": "rblazenhoff@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-18T16:01:08.458Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 224, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lsealey@noemail.com", "first_name": "Louis", "last_name": "Sealey", "email": "lsealey@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:00:52.173Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 225, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kidspot@noemail.com", "first_name": "Kidspot", "last_name": "", "email": "kidspot@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:00:53.760Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 226, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ttemin@noemail.com", "first_name": "Tom", "last_name": "Temin", "email": "ttemin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:00:55.375Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 227, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jhobbs@noemail.com", "first_name": "Jack", "last_name": "Hobbs", "email": "jhobbs@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:00:57.016Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 228, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jtanaka@noemail.com", "first_name": "Jennifer", "last_name": "Tanaka", "email": "jtanaka@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:00:58.729Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 229, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "apatton@noemail.com", "first_name": "Alli", "last_name": "Patton", "email": "apatton@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:00.595Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 230, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jrima@noemail.com", "first_name": "Jason", "last_name": "Rima", "email": "jrima@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:02.930Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 231, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "athompson@noemail.com", "first_name": "Avery", "last_name": "Thompson", "email": "athompson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:06.265Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 232, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "schilds@noemail.com", "first_name": "Shawn", "last_name": "Childs", "email": "schilds@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:08.847Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 233, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tscargill@noemail.com", "first_name": "Tom", "last_name": "Scargill", "email": "tscargill@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:11.710Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 234, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "spalopoli@noemail.com", "first_name": "Steve", "last_name": "Palopoli", "email": "spalopoli@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:14.289Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 235, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "shealey@noemail.com", "first_name": "Shawna", "last_name": "Healey", "email": "shealey@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:16.876Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 236, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sedelstein@noemail.com", "first_name": "Stephen", "last_name": "Edelstein", "email": "sedelstein@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:19.441Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 237, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kfraser@noemail.com", "first_name": "Kristopher", "last_name": "Fraser", "email": "kfraser@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:21.797Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 238, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eflint@noemail.com", "first_name": "Emma", "last_name": "Flint", "email": "eflint@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:24.073Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 239, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bbilly@noemail.com", "first_name": "Bitcoin", "last_name": "Billy", "email": "bbilly@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:25.831Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 240, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "etodisco@noemail.com", "first_name": "Eric", "last_name": "Todisco", "email": "etodisco@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:27.499Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 241, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "zjatoi@noemail.com", "first_name": "Zainab", "last_name": "Jatoi", "email": "zjatoi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-19T16:01:29.219Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 242, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bnewseditor@noemail.com", "first_name": "Bitcoin", "last_name": "News Editor", "email": "bnewseditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:01:44.375Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 243, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aeditor@noemail.com", "first_name": "AUD", "last_name": "Editor", "email": "aeditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:01:47.197Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 244, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hmail@noemail.com", "first_name": "Harry", "last_name": "Mail", "email": "hmail@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:01:50.077Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 245, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jeditor@noemail.com", "first_name": "JPY", "last_name": "Editor", "email": "jeditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:01:52.453Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 246, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "geditor@noemail.com", "first_name": "GBP", "last_name": "Editor", "email": "geditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:01:54.482Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 247, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tshepherd@noemail.com", "first_name": "Tyler", "last_name": "Shepherd", "email": "tshepherd@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:01:56.796Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 248, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "scorrespondent@noemail.com", "first_name": "Special", "last_name": "Correspondent", "email": "scorrespondent@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:01:59.191Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 249, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wtopstaff@noemail.com", "first_name": "Wtopstaff", "last_name": "", "email": "wtopstaff@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:01.295Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 250, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "thindubureau@noemail.com", "first_name": "The", "last_name": "Hindu Bureau", "email": "thindubureau@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:04.092Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 251, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "blyman@noemail.com", "first_name": "Brianna", "last_name": "Lyman", "email": "blyman@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:07.329Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 252, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mmilano@noemail.com", "first_name": "Matt", "last_name": "Milano", "email": "mmilano@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:09.717Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 253, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "makers@noemail.com", "first_name": "Mick", "last_name": "Akers", "email": "makers@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:12.551Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 254, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cnardi@noemail.com", "first_name": "Christopher", "last_name": "Nardi", "email": "cnardi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:15.403Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 255, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "csinclair@noemail.com", "first_name": "Carla", "last_name": "Sinclair", "email": "csinclair@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:17.923Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 256, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aduralde@noemail.com", "first_name": "Alonso", "last_name": "Duralde", "email": "aduralde@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:21.213Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 257, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bbadmus-lagos@noemail.com", "first_name": "Bola", "last_name": "Badmus- Lagos", "email": "bbadmus-lagos@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:23.469Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 258, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@digital trends.com", "first_name": "Digital Trends Staff", "last_name": "", "email": "info@digital trends.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-20T16:02:26.082Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 259, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "anews@noemail.com", "first_name": "AP", "last_name": "News", "email": "anews@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-21T16:00:58.001Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 260, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ldearden@noemail.com", "first_name": "Lizzie", "last_name": "Dearden", "email": "ldearden@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-21T16:01:00.078Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 261, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@irishcentral.com", "first_name": "IrishCentral Staff", "last_name": "", "email": "info@irishcentral.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-21T16:01:04.788Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 262, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "s(chrisburns)@noemail.com", "first_name": "staff@slashgear.com", "last_name": "(Chris Burns)", "email": "s(chrisburns)@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-21T16:01:07.357Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 263, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@sports.com", "first_name": "Sports Staff", "last_name": "", "email": "info@sports.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:00.355Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 264, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ahutchinson@noemail.com", "first_name": "Andrew", "last_name": "Hutchinson", "email": "ahutchinson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:03.121Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 265, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mpetrović@noemail.com", "first_name": "Maria", "last_name": "Petrović", "email": "mpetrović@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:05.696Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 266, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "amaclure@noemail.com", "first_name": "Abbey", "last_name": "Maclure", "email": "amaclure@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:09.192Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 267, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cgraham@noemail.com", "first_name": "Crystal", "last_name": "Graham", "email": "cgraham@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:11.905Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 268, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "___@noemail.com", "first_name": "___", "last_name": "", "email": "___@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:14.935Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 269, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "popkin@noemail.com", "first_name": "Popkin", "last_name": "", "email": "popkin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:18.254Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 270, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bgutierrez@noemail.com", "first_name": "Barbara", "last_name": "Gutierrez", "email": "bgutierrez@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:21.004Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 271, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lveloso@noemail.com", "first_name": "Lea", "last_name": "Veloso", "email": "lveloso@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:23.496Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 272, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "highlandsport@noemail.com", "first_name": "highlandsport", "last_name": "", "email": "highlandsport@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:26.072Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 273, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cschill@noemail.com", "first_name": "Charlie", "last_name": "Schill", "email": "cschill@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:28.337Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 274, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "matthewprigge@noemail.com", "first_name": "Matthewprigge", "last_name": "", "email": "matthewprigge@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:30.557Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 275, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sbuchanandmichaelfaulkender@noemail.com", "first_name": "Sam", "last_name": "Buchan And Michael Faulkender", "email": "sbuchanandmichaelfaulkender@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:32.581Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 276, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bcantor@noemail.com", "first_name": "Brian", "last_name": "Cantor", "email": "bcantor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:34.303Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 277, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tmorton@noemail.com", "first_name": "Tom", "last_name": "Morton", "email": "tmorton@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:35.942Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 278, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "knewman@noemail.com", "first_name": "Kyle", "last_name": "Newman", "email": "knewman@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-22T16:01:37.829Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 279, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gsmyth@noemail.com", "first_name": "Graham", "last_name": "Smyth", "email": "gsmyth@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:00:54.461Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 280, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jcollins@noemail.com", "first_name": "Jeff", "last_name": "Collins", "email": "jcollins@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:00:56.316Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 281, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rstelter@noemail.com", "first_name": "Ryan", "last_name": "Stelter", "email": "rstelter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:00:57.998Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 282, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mbogovac@noemail.com", "first_name": "Miloš", "last_name": "Bogovac", "email": "mbogovac@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:00:59.651Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 283, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "acheshire@noemail.com", "first_name": "Adam", "last_name": "Cheshire", "email": "acheshire@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:01.378Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 284, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lsteacy@noemail.com", "first_name": "Lisa", "last_name": "Steacy", "email": "lsteacy@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:03.543Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 285, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gmrosko@noemail.com", "first_name": "Geno", "last_name": "Mrosko", "email": "gmrosko@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:06.511Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 286, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "swire@noemail.com", "first_name": "Sun-Times", "last_name": "Wire", "email": "swire@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:09.444Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 287, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "daynet@noemail.com", "first_name": "daynet", "last_name": "", "email": "daynet@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:12.571Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 288, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "smaunier@noemail.com", "first_name": "Sean", "last_name": "Maunier", "email": "smaunier@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:15.748Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 289, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kwang@noemail.com", "first_name": "Kelly", "last_name": "Wang", "email": "kwang@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:18.740Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 290, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jbrunner@noemail.com", "first_name": "Jeryl", "last_name": "Brunner", "email": "jbrunner@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:22.013Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 291, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mroscoe@noemail.com", "first_name": "Matthew", "last_name": "Roscoe", "email": "mroscoe@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:24.697Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 292, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "odadmin@noemail.com", "first_name": "OdAdmin", "last_name": "", "email": "odadmin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-23T16:01:27.337Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 293, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "acubanadenoticias@noemail.com", "first_name": "Agencia", "last_name": "Cubana de Noticias", "email": "acubanadenoticias@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:00:59.439Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 294, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hsaltzgaver@noemail.com", "first_name": "Harry", "last_name": "Saltzgaver", "email": "hsaltzgaver@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:01.211Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 295, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ablanco@noemail.com", "first_name": "Andrea", "last_name": "Blanco", "email": "ablanco@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:05.714Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 296, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dmitchell@noemail.com", "first_name": "Don", "last_name": "Mitchell", "email": "dmitchell@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:09.045Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 297, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "winpartnershipwithdigitalnod@noemail.com", "first_name": "Written", "last_name": "In Partnership with Digital Nod", "email": "winpartnershipwithdigitalnod@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:11.661Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 298, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "shwashwi@noemail.com", "first_name": "Shwashwi", "last_name": "", "email": "shwashwi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:14.841Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 299, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nbogel-burroughs@noemail.com", "first_name": "Nicholas", "last_name": "Bogel-Burroughs", "email": "nbogel-burroughs@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:18.184Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 300, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "snaidoo@noemail.com", "first_name": "Sonri", "last_name": "Naidoo", "email": "snaidoo@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:21.621Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 301, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tnewcivilrightsmovement@noemail.com", "first_name": "The", "last_name": "New Civil Rights Movement", "email": "tnewcivilrightsmovement@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:24.151Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 302, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "phollis@noemail.com", "first_name": "Patrick", "last_name": "Hollis", "email": "phollis@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-24T16:01:26.569Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 303, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cdenison@noemail.com", "first_name": "Caleb", "last_name": "Denison", "email": "cdenison@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:00:55.243Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 304, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aacademyofdermatology@noemail.com", "first_name": "American", "last_name": "Academy of Dermatology", "email": "aacademyofdermatology@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:00:57.304Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 305, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jyaden@noemail.com", "first_name": "Joseph", "last_name": "Yaden", "email": "jyaden@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:00:59.006Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 306, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nchwatt@noemail.com", "first_name": "Nikki", "last_name": "Chwatt", "email": "nchwatt@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:00.833Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 307, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jmahoney@noemail.com", "first_name": "Joe", "last_name": "Mahoney", "email": "jmahoney@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:02.907Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 308, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "agolubandpassantrabie@noemail.com", "first_name": "Artem", "last_name": "Golub and Passant Rabie", "email": "agolubandpassantrabie@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:05.272Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 309, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "janderson@noemail.com", "first_name": "Jeremy", "last_name": "Anderson", "email": "janderson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:07.780Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 310, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "oolukoya-abeokuta@noemail.com", "first_name": "Olayinka", "last_name": "Olukoya - Abeokuta", "email": "oolukoya-abeokuta@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:10.281Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 311, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "adabb@noemail.com", "first_name": "Annie", "last_name": "Dabb", "email": "adabb@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:13.005Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 312, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eevans@noemail.com", "first_name": "Ethan", "last_name": "Evans", "email": "eevans@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:15.565Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 313, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ajames@noemail.com", "first_name": "Alicea", "last_name": "James", "email": "ajames@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:18.448Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 314, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mzuma@noemail.com", "first_name": "Mbalenhle", "last_name": "Zuma", "email": "mzuma@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:22.596Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 315, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "krosen@noemail.com", "first_name": "Kayla", "last_name": "Rosen", "email": "krosen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:24.979Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 316, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "awilkinson@noemail.com", "first_name": "Alan", "last_name": "Wilkinson", "email": "awilkinson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:27.493Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 317, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "llane@noemail.com", "first_name": "Lexi", "last_name": "Lane", "email": "llane@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:29.805Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 318, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "krobertson@noemail.com", "first_name": "Kirsten", "last_name": "Robertson", "email": "krobertson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-25T16:01:31.744Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 319, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lbyareader@noemail.com", "first_name": "Letter", "last_name": "by a Reader", "email": "lbyareader@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:00:51.884Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 320, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jheitritter@noemail.com", "first_name": "Jonathan", "last_name": "Heitritter", "email": "jheitritter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:00:53.894Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 321, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eglover@noemail.com", "first_name": "Ella", "last_name": "Glover", "email": "eglover@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:00:55.532Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 322, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "noganesyan@noemail.com", "first_name": "Natalie", "last_name": "Oganesyan", "email": "noganesyan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:00:57.195Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 323, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sbrookuniversity@noemail.com", "first_name": "Stony", "last_name": "Brook University", "email": "sbrookuniversity@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:00:58.824Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 324, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mescarpio@noemail.com", "first_name": "Max", "last_name": "Escarpio", "email": "mescarpio@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:00.590Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 325, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nsilverio@noemail.com", "first_name": "Nicole", "last_name": "Silverio", "email": "nsilverio@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:02.813Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 326, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "koyelere-kano@noemail.com", "first_name": "Kola", "last_name": "Oyelere - Kano", "email": "koyelere-kano@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:05.346Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 327, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jlemoncelli@noemail.com", "first_name": "Jenna", "last_name": "Lemoncelli", "email": "jlemoncelli@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:08.501Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 328, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cpress@noemail.com", "first_name": "Canadian", "last_name": "Press", "email": "cpress@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:11.045Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 329, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "fweather@noemail.com", "first_name": "FOX", "last_name": "Weather", "email": "fweather@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:13.610Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 330, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "uoftexasm.d.andersoncancercenter@noemail.com", "first_name": "University", "last_name": "of Texas M. D. Anderson Cancer Center", "email": "uoftexasm.d.andersoncancercenter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:16.429Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 331, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "buniversity@noemail.com", "first_name": "Binghamton", "last_name": "University", "email": "buniversity@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:18.582Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 332, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mwashingtonhospitalcenter@noemail.com", "first_name": "MedStar", "last_name": "Washington Hospital Center", "email": "mwashingtonhospitalcenter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:20.553Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 333, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rsuperableagustin@noemail.com", "first_name": "Ram", "last_name": "Superable Agustin", "email": "rsuperableagustin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:22.445Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 334, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ajoseph@noemail.com", "first_name": "Adam", "last_name": "Joseph", "email": "ajoseph@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:24.373Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 335, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sbalsara@noemail.com", "first_name": "Samira", "last_name": "Balsara", "email": "sbalsara@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:26.391Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 336, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "nnwogu-umuahia@noemail.com", "first_name": "Nnanna", "last_name": "Nwogu - Umuahia", "email": "nnwogu-umuahia@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:28.390Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 337, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "neweuro@noemail.com", "first_name": "neweuro", "last_name": "", "email": "neweuro@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:30.151Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 338, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ssmittle@noemail.com", "first_name": "Stephanie", "last_name": "Smittle", "email": "ssmittle@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:32.237Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 339, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "pofficer2ndclassrichardrodgers@noemail.com", "first_name": "Petty", "last_name": "Officer 2nd Class Richard Rodgers", "email": "pofficer2ndclassrichardrodgers@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-26T16:01:34.079Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 340, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lwilland@noemail.com", "first_name": "Lauren", "last_name": "Willand", "email": "lwilland@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:00.556Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 341, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "twise@noemail.com", "first_name": "Tyler", "last_name": "Wise", "email": "twise@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:04.431Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 342, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tbreen@noemail.com", "first_name": "Thomas", "last_name": "Breen", "email": "tbreen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:06.937Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 343, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "artappraiser@noemail.com", "first_name": "artappraiser", "last_name": "", "email": "artappraiser@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:09.484Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 344, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eschmittanddavide.sanger@noemail.com", "first_name": "Eric", "last_name": "Schmitt and David E. Sanger", "email": "eschmittanddavide.sanger@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:12.332Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 345, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aday@noemail.com", "first_name": "aday", "last_name": "", "email": "aday@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:14.954Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 346, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "vcosta@noemail.com", "first_name": "Victoria", "last_name": "Costa", "email": "vcosta@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:18.301Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 347, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "liza@noemail.com", "first_name": "LizA", "last_name": "", "email": "liza@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:20.407Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 348, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aquinn@noemail.com", "first_name": "Andrew", "last_name": "Quinn", "email": "aquinn@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-27T16:01:22.595Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 349, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eeditor@noemail.com", "first_name": "EUR", "last_name": "Editor", "email": "eeditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:12.465Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 350, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rbortles@noemail.com", "first_name": "Rachel", "last_name": "Bortles", "email": "rbortles@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:15.165Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 351, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "emmakd@noemail.com", "first_name": "emmakd", "last_name": "", "email": "emmakd@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:17.939Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 352, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tsgt.jefferyfoster@noemail.com", "first_name": "Tech.", "last_name": "Sgt. Jeffery Foster", "email": "tsgt.jefferyfoster@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:20.428Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 353, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bseanovertonandethanpearce@noemail.com", "first_name": "By", "last_name": "Sean Overton and Ethan Pearce", "email": "bseanovertonandethanpearce@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:24.091Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 354, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "smoore@noemail.com", "first_name": "Sam", "last_name": "Moore", "email": "smoore@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:26.545Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 355, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jnattrass@noemail.com", "first_name": "JJ", "last_name": "Nattrass", "email": "jnattrass@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:28.892Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 356, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tfoltz@noemail.com", "first_name": "Tori", "last_name": "Foltz", "email": "tfoltz@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:31.729Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 357, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dyoung@noemail.com", "first_name": "David", "last_name": "Young", "email": "dyoung@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:33.817Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 358, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jisrael@noemail.com", "first_name": "Josh", "last_name": "Israel", "email": "jisrael@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:36.598Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 359, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rj.epstein@noemail.com", "first_name": "Reid", "last_name": "J. Epstein", "email": "rj.epstein@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:39.033Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 360, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tzeller@noemail.com", "first_name": "Terry", "last_name": "Zeller", "email": "tzeller@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:41.331Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 361, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aabbott@noemail.com", "first_name": "Anikka", "last_name": "Abbott", "email": "aabbott@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-28T16:01:43.642Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 362, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rdobson@noemail.com", "first_name": "Robyn", "last_name": "Dobson", "email": "rdobson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:00:54.385Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 363, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jb.white@noemail.com", "first_name": "Jeremy", "last_name": "B. White", "email": "jb.white@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:00:56.034Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 364, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bc.t.wright@noemail.com", "first_name": "Bruce", "last_name": "C.T. Wright", "email": "bc.t.wright@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:00:57.811Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 365, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aalany@noemail.com", "first_name": "AJ", "last_name": "Alany", "email": "aalany@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:00:59.456Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 366, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aforrest@noemail.com", "first_name": "Allen", "last_name": "Forrest", "email": "aforrest@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:01.303Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 367, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cnewssource@noemail.com", "first_name": "CNN", "last_name": "Newssource", "email": "cnewssource@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:03.757Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 368, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "highlandnews@noemail.com", "first_name": "highlandnews", "last_name": "", "email": "highlandnews@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:06.149Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 369, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jshipley@noemail.com", "first_name": "John", "last_name": "Shipley", "email": "jshipley@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:09.180Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 370, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cd.@noemail.com", "first_name": "C.", "last_name": "D.", "email": "cd.@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:13.797Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 371, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dwebteam@noemail.com", "first_name": "DNA", "last_name": "Web Team", "email": "dwebteam@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:17.044Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 372, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mellis@noemail.com", "first_name": "Meaghan", "last_name": "Ellis", "email": "mellis@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:19.499Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 373, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jjohnson@noemail.com", "first_name": "Jimmy", "last_name": "Johnson", "email": "jjohnson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-29T16:01:22.716Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 374, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@toofab.com", "first_name": "TooFab Staff", "last_name": "", "email": "info@toofab.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:00:58.038Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 375, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "lchilton@noemail.com", "first_name": "Louis", "last_name": "Chilton", "email": "lchilton@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:00:59.832Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 376, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mdavidsmith@noemail.com", "first_name": "Michael", "last_name": "David Smith", "email": "mdavidsmith@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:01.698Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 377, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@alabama news network.com", "first_name": "Alabama News Network Staff", "last_name": "", "email": "info@alabama news network.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:04.541Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 378, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "acopeland@noemail.com", "first_name": "Angela", "last_name": "Copeland", "email": "acopeland@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:08.138Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 379, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ysports@noemail.com", "first_name": "Yahoo", "last_name": "Sports", "email": "ysports@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:10.680Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 380, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ltotheeditor@noemail.com", "first_name": "Letters", "last_name": "to the editor", "email": "ltotheeditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:13.481Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 381, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "eselleck@noemail.com", "first_name": "Emily", "last_name": "Selleck", "email": "eselleck@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:16.126Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 382, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@editorial.com", "first_name": "Editorial Staff", "last_name": "", "email": "info@editorial.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:18.855Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 383, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tsandells@noemail.com", "first_name": "Tom", "last_name": "Sandells", "email": "tsandells@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:21.564Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 384, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "paulmbanks@noemail.com", "first_name": "paulmbanks", "last_name": "", "email": "paulmbanks@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:23.777Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 385, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "to'toole@noemail.com", "first_name": "Tom", "last_name": "O'Toole", "email": "to'toole@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-30T16:01:26.261Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 386, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mmallat@noemail.com", "first_name": "Maria", "last_name": "Mallat", "email": "mmallat@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:00:54.274Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 387, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "drandall@noemail.com", "first_name": "Dakota", "last_name": "Randall", "email": "drandall@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:00:55.973Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 388, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dkurtenbach@noemail.com", "first_name": "Dieter", "last_name": "Kurtenbach", "email": "dkurtenbach@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:00:57.876Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 389, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "roliver@noemail.com", "first_name": "Robert", "last_name": "Oliver", "email": "roliver@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:00:59.965Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 390, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "adiaz@noemail.com", "first_name": "Adriana", "last_name": "Diaz", "email": "adiaz@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:01:01.672Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 391, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "boliver@noemail.com", "first_name": "Bill", "last_name": "Oliver", "email": "boliver@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:01:03.969Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 392, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cnewsource@noemail.com", "first_name": "CNN", "last_name": "Newsource", "email": "cnewsource@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:01:06.797Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 393, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mhatamoto@noemail.com", "first_name": "Michael", "last_name": "Hatamoto", "email": "mhatamoto@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-10-31T16:01:09.465Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 394, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cromero-chan@noemail.com", "first_name": "Christine", "last_name": "Romero-Chan", "email": "cromero-chan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:00:55.583Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 395, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mortiz@noemail.com", "first_name": "Mariana", "last_name": "Ortiz", "email": "mortiz@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:00:57.279Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 396, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "a1stclassalexispentzer@noemail.com", "first_name": "Airman", "last_name": "1st Class Alexis Pentzer", "email": "a1stclassalexispentzer@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:00:59.163Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 397, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@sgt. colville mcfee.com", "first_name": "Staff Sgt. Colville McFee", "last_name": "", "email": "info@sgt. colville mcfee.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:01.313Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 398, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "msgt.nancyfalcon@noemail.com", "first_name": "Master", "last_name": "Sgt. Nancy Falcon", "email": "msgt.nancyfalcon@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:04.131Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 399, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jsmith@noemail.com", "first_name": "Jason", "last_name": "Smith", "email": "jsmith@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:06.929Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 400, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jmandes@noemail.com", "first_name": "Jeanelle", "last_name": "Mandes", "email": "jmandes@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:09.947Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 401, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "vscullard@noemail.com", "first_name": "Vickie", "last_name": "Scullard", "email": "vscullard@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:12.849Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 402, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mclinic@noemail.com", "first_name": "Mayo", "last_name": "Clinic", "email": "mclinic@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:15.575Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 403, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ainstituteofphysics(aip)@noemail.com", "first_name": "American", "last_name": "Institute of Physics (AIP)", "email": "ainstituteofphysics(aip)@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:18.877Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 404, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "msinaihealthsystem@noemail.com", "first_name": "Mount", "last_name": "Sinai Health System", "email": "msinaihealthsystem@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:21.113Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 405, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wforestuniversityschoolofmedicine@noemail.com", "first_name": "Wake", "last_name": "Forest University School of Medicine", "email": "wforestuniversityschoolofmedicine@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:23.217Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 406, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "uofchicagomedicalcenter@noemail.com", "first_name": "University", "last_name": "of Chicago Medical Center", "email": "uofchicagomedicalcenter@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:25.329Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 407, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "srinkunas@noemail.com", "first_name": "Susan", "last_name": "Rinkunas", "email": "srinkunas@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:27.524Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 408, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "agolub@noemail.com", "first_name": "Artem", "last_name": "Golub", "email": "agolub@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:29.500Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 409, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wwilliams@noemail.com", "first_name": "Wayne", "last_name": "Williams", "email": "wwilliams@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:31.543Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 410, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hsolomon@noemail.com", "first_name": "Howard", "last_name": "Solomon", "email": "hsolomon@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-01T16:01:33.492Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 411, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sdelvecchio@noemail.com", "first_name": "Steve", "last_name": "DelVecchio", "email": "sdelvecchio@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:10.142Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 412, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "marmstrong@noemail.com", "first_name": "Megan", "last_name": "Armstrong", "email": "marmstrong@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:13.111Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 413, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "skearns@noemail.com", "first_name": "Sean", "last_name": "Kearns", "email": "skearns@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:15.440Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 414, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jkelly@noemail.com", "first_name": "Jack", "last_name": "Kelly", "email": "jkelly@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:18.019Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 415, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ssherry@noemail.com", "first_name": "Sophie", "last_name": "Sherry", "email": "ssherry@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:20.233Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 416, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jmennie@noemail.com", "first_name": "James", "last_name": "Mennie", "email": "jmennie@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:23.266Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 417, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mfranklin@noemail.com", "first_name": "Michael", "last_name": "Franklin", "email": "mfranklin@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:25.503Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 418, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "fthompson@noemail.com", "first_name": "Flora", "last_name": "Thompson", "email": "fthompson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:28.943Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 419, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "iprice@noemail.com", "first_name": "Ian", "last_name": "Price", "email": "iprice@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:32.109Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 420, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "avajda@noemail.com", "first_name": "Anja", "last_name": "Vajda", "email": "avajda@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:34.284Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 421, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ahopper@noemail.com", "first_name": "Alex", "last_name": "Hopper", "email": "ahopper@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:36.184Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 422, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "s(chrisdavies)@noemail.com", "first_name": "staff@slashgear.com", "last_name": "(Chris Davies)", "email": "s(chrisdavies)@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-03T16:01:38.153Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 423, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "omarcus@noemail.com", "first_name": "Olivia", "last_name": "Marcus", "email": "omarcus@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:02.477Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 424, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mstaniforth@noemail.com", "first_name": "Mark", "last_name": "Staniforth", "email": "mstaniforth@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:05.849Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 425, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "winpartnershipwithamirbakian@noemail.com", "first_name": "Written", "last_name": "in Partnership with Amir Bakian", "email": "winpartnershipwithamirbakian@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:08.956Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 426, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ajournalpress@noemail.com", "first_name": "Asian", "last_name": "Journal Press", "email": "ajournalpress@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:12.013Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 427, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gfalk@noemail.com", "first_name": "Graham", "last_name": "Falk", "email": "gfalk@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:15.014Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 428, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sadekola-lagos@noemail.com", "first_name": "Shola", "last_name": "Adekola - Lagos", "email": "sadekola-lagos@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:17.677Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 429, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "sdavidson@noemail.com", "first_name": "Sean", "last_name": "Davidson", "email": "sdavidson@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:20.855Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 430, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cengelbrecht@noemail.com", "first_name": "Cora", "last_name": "Engelbrecht", "email": "cengelbrecht@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:24.451Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 431, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "kbutcher@noemail.com", "first_name": "Kristin", "last_name": "Butcher", "email": "kbutcher@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:26.772Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 432, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jameschikwanha@noemail.com", "first_name": "jameschikwanha", "last_name": "", "email": "jameschikwanha@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:28.839Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 433, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tmead@noemail.com", "first_name": "Tom", "last_name": "Mead", "email": "tmead@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:30.927Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 434, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "aismail@noemail.com", "first_name": "Adam", "last_name": "Ismail", "email": "aismail@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:33.041Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 435, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "winpartnershipwithadogy@noemail.com", "first_name": "Written", "last_name": "in Partnership with Adogy", "email": "winpartnershipwithadogy@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:34.866Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 436, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "zjohnston@noemail.com", "first_name": "Zachary", "last_name": "Johnston", "email": "zjohnston@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:36.626Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 437, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wnewsdesk@noemail.com", "first_name": "WTVQ", "last_name": "News Desk", "email": "wnewsdesk@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-04T16:01:38.429Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 438, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jfleming@noemail.com", "first_name": "Jess", "last_name": "Fleming", "email": "jfleming@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-05T16:01:01.687Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 439, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ro'connor@noemail.com", "first_name": "Rachael", "last_name": "O'Connor", "email": "ro'connor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-05T16:01:06.646Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 440, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "acooke@noemail.com", "first_name": "Alex", "last_name": "Cooke", "email": "acooke@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-05T16:01:09.331Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 441, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "rreports@noemail.com", "first_name": "Rafu", "last_name": "Reports", "email": "rreports@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-05T16:01:12.298Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 442, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dkennedy@noemail.com", "first_name": "Dana", "last_name": "Kennedy", "email": "dkennedy@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-05T16:01:15.849Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 443, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "hkanik@noemail.com", "first_name": "Hannah", "last_name": "Kanik", "email": "hkanik@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:01.783Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 444, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "slazarević@noemail.com", "first_name": "Stefan", "last_name": "Lazarević", "email": "slazarević@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:04.917Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 445, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dallen@noemail.com", "first_name": "David", "last_name": "Allen", "email": "dallen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:08.187Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 446, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "tsforza@noemail.com", "first_name": "Teri", "last_name": "Sforza", "email": "tsforza@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:11.070Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 447, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dcadey@noemail.com", "first_name": "Dana", "last_name": "Cadey", "email": "dcadey@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:14.373Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 448, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "zeditor@noemail.com", "first_name": "Zimpapers", "last_name": "Editor", "email": "zeditor@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:17.181Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 449, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dbryan@noemail.com", "first_name": "Dave", "last_name": "Bryan", "email": "dbryan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:19.787Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 450, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@reporter-herald.com", "first_name": "Reporter-Herald Staff", "last_name": "", "email": "info@reporter-herald.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:23.444Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 451, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "acurtis@noemail.com", "first_name": "Aaron", "last_name": "Curtis", "email": "acurtis@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:25.587Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 452, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "info@pa sport.com", "first_name": "Pa Sport Staff", "last_name": "", "email": "info@pa sport.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:27.866Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 453, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "vscott@noemail.com", "first_name": "Victoria", "last_name": "Scott", "email": "vscott@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:30.413Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 454, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mstolpe@noemail.com", "first_name": "Mylene", "last_name": "Stolpe", "email": "mstolpe@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:32.690Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 455, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "obrowning@noemail.com", "first_name": "Oliver", "last_name": "Browning", "email": "obrowning@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:34.719Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 456, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mshepherd@noemail.com", "first_name": "Marshall", "last_name": "Shepherd", "email": "mshepherd@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:36.724Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 457, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jdeehan@noemail.com", "first_name": "John", "last_name": "Deehan", "email": "jdeehan@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:38.454Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 458, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mčule@noemail.com", "first_name": "Milica", "last_name": "Čule", "email": "mčule@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-06T16:01:40.292Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 459, "fields": {"password": "pbkdf2_sha256$260000$aYFceJ15c4NfnGALe1CTAS$1NfNgAVl/yFDq+nJtAGZ64S4+CEB5nVa5F9IRo99yHg=", "last_login": "2022-11-07T07:52:58.403Z", "is_superuser": true, "username": "tuxskar", "first_name": "", "last_name": "", "email": "tuxskar@gmail.com", "is_staff": true, "is_active": true, "date_joined": "2022-11-07T07:52:49.368Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 460, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dcaballero@noemail.com", "first_name": "David", "last_name": "Caballero", "email": "dcaballero@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:01.067Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 461, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "itv@noemail.com", "first_name": "Independent", "last_name": "TV", "email": "itv@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:04.396Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 462, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "krenić@noemail.com", "first_name": "Karla", "last_name": "Renić", "email": "krenić@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:07.032Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 463, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wclonews@noemail.com", "first_name": "wclonews", "last_name": "", "email": "wclonews@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:09.485Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 464, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "dloebmcclain@noemail.com", "first_name": "Dylan", "last_name": "Loeb McClain", "email": "dloebmcclain@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:12.142Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 465, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "drosen@noemail.com", "first_name": "Dara", "last_name": "Rosen", "email": "drosen@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:15.789Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 466, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "wosher@noemail.com", "first_name": "Wendy", "last_name": "Osher", "email": "wosher@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:18.237Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 467, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "styler@noemail.com", "first_name": "Samantha", "last_name": "Tyler", "email": "styler@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:21.414Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 468, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ggraziosi@noemail.com", "first_name": "Graig", "last_name": "Graziosi", "email": "ggraziosi@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:23.588Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 469, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "mredmond@noemail.com", "first_name": "Mike", "last_name": "Redmond", "email": "mredmond@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:26.537Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 470, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "zfolk@noemail.com", "first_name": "Zachary", "last_name": "Folk", "email": "zfolk@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:28.622Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 471, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cphillips@noemail.com", "first_name": "Carey", "last_name": "Phillips", "email": "cphillips@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:30.673Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 472, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "owillis@noemail.com", "first_name": "Oliver", "last_name": "Willis", "email": "owillis@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-07T16:01:32.657Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 473, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "cgugel@noemail.com", "first_name": "Carly", "last_name": "Gugel", "email": "cgugel@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-08T16:01:00.119Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 474, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "jhorseman@noemail.com", "first_name": "Jeff", "last_name": "Horseman", "email": "jhorseman@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-08T16:01:03.037Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 475, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "bwire@noemail.com", "first_name": "Business", "last_name": "Wire", "email": "bwire@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-08T16:01:06.517Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 476, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "ecrane@noemail.com", "first_name": "Emily", "last_name": "Crane", "email": "ecrane@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-08T16:01:09.269Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 477, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "elawrence@noemail.com", "first_name": "Erin", "last_name": "Lawrence", "email": "elawrence@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-08T16:01:12.224Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 478, "fields": {"password": "", "last_login": null, "is_superuser": false, "username": "gzavala@noemail.com", "first_name": "Gerardo", "last_name": "Zavala", "email": "gzavala@noemail.com", "is_staff": false, "is_active": false, "date_joined": "2022-11-08T16:01:14.881Z", "groups": [], "user_permissions": []}}, {"model": "press.cooluser", "pk": 1, "fields": {"user": 2, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 2, "fields": {"user": 3, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 3, "fields": {"user": 4, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 4, "fields": {"user": 5, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 5, "fields": {"user": 6, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 6, "fields": {"user": 7, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 7, "fields": {"user": 8, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 8, "fields": {"user": 9, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 9, "fields": {"user": 10, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 10, "fields": {"user": 11, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 11, "fields": {"user": 12, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 12, "fields": {"user": 13, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 13, "fields": {"user": 14, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 14, "fields": {"user": 15, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 15, "fields": {"user": 16, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 16, "fields": {"user": 17, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 17, "fields": {"user": 18, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 18, "fields": {"user": 19, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 19, "fields": {"user": 20, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 20, "fields": {"user": 21, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 21, "fields": {"user": 22, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 22, "fields": {"user": 23, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 23, "fields": {"user": 24, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 24, "fields": {"user": 1, "github_profile": "tuxskar", "gh_repositories": 34, "gravatar_link": "https://www.gravatar.com/avatar/139f76ac09f8b9d3a2392b45b7ad5f4c"}}, {"model": "press.cooluser", "pk": 25, "fields": {"user": 25, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 26, "fields": {"user": 26, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 27, "fields": {"user": 27, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 28, "fields": {"user": 28, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 29, "fields": {"user": 29, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 30, "fields": {"user": 30, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 31, "fields": {"user": 31, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 32, "fields": {"user": 32, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 33, "fields": {"user": 33, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 34, "fields": {"user": 34, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 35, "fields": {"user": 35, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 36, "fields": {"user": 36, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 37, "fields": {"user": 37, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 38, "fields": {"user": 38, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 39, "fields": {"user": 39, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 40, "fields": {"user": 40, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 41, "fields": {"user": 41, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 42, "fields": {"user": 42, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 43, "fields": {"user": 43, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 44, "fields": {"user": 44, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 45, "fields": {"user": 45, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 46, "fields": {"user": 46, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 47, "fields": {"user": 47, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 48, "fields": {"user": 48, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 49, "fields": {"user": 49, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 50, "fields": {"user": 50, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 51, "fields": {"user": 51, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 52, "fields": {"user": 52, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 53, "fields": {"user": 53, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 54, "fields": {"user": 54, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 55, "fields": {"user": 55, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 56, "fields": {"user": 56, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 57, "fields": {"user": 57, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 58, "fields": {"user": 58, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 59, "fields": {"user": 59, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 60, "fields": {"user": 60, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 61, "fields": {"user": 61, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 62, "fields": {"user": 62, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 63, "fields": {"user": 63, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 64, "fields": {"user": 64, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 65, "fields": {"user": 65, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 66, "fields": {"user": 66, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 67, "fields": {"user": 67, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 68, "fields": {"user": 68, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 69, "fields": {"user": 69, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 70, "fields": {"user": 70, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 71, "fields": {"user": 71, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 72, "fields": {"user": 72, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 73, "fields": {"user": 73, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 74, "fields": {"user": 74, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 75, "fields": {"user": 75, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 76, "fields": {"user": 76, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 77, "fields": {"user": 77, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 78, "fields": {"user": 78, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 79, "fields": {"user": 79, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 80, "fields": {"user": 80, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 81, "fields": {"user": 81, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 82, "fields": {"user": 82, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 83, "fields": {"user": 83, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 84, "fields": {"user": 84, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 85, "fields": {"user": 85, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 86, "fields": {"user": 86, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 87, "fields": {"user": 87, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 88, "fields": {"user": 88, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 89, "fields": {"user": 89, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 90, "fields": {"user": 90, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 91, "fields": {"user": 91, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 92, "fields": {"user": 92, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 93, "fields": {"user": 93, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 94, "fields": {"user": 94, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 95, "fields": {"user": 95, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 96, "fields": {"user": 96, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 97, "fields": {"user": 97, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 98, "fields": {"user": 98, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 99, "fields": {"user": 99, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 100, "fields": {"user": 100, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 101, "fields": {"user": 101, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 102, "fields": {"user": 102, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 103, "fields": {"user": 103, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 104, "fields": {"user": 104, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 105, "fields": {"user": 105, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 106, "fields": {"user": 106, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 107, "fields": {"user": 107, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 108, "fields": {"user": 108, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 109, "fields": {"user": 109, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 110, "fields": {"user": 110, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 111, "fields": {"user": 111, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 112, "fields": {"user": 112, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 113, "fields": {"user": 113, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 114, "fields": {"user": 114, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 115, "fields": {"user": 115, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 116, "fields": {"user": 116, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 117, "fields": {"user": 117, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 118, "fields": {"user": 118, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 119, "fields": {"user": 119, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 120, "fields": {"user": 120, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 121, "fields": {"user": 121, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 122, "fields": {"user": 122, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 123, "fields": {"user": 123, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 124, "fields": {"user": 124, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 125, "fields": {"user": 125, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 126, "fields": {"user": 126, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 127, "fields": {"user": 127, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 128, "fields": {"user": 128, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 129, "fields": {"user": 129, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 130, "fields": {"user": 130, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 131, "fields": {"user": 131, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 132, "fields": {"user": 132, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 133, "fields": {"user": 133, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 134, "fields": {"user": 134, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 135, "fields": {"user": 135, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 136, "fields": {"user": 136, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 137, "fields": {"user": 137, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 138, "fields": {"user": 138, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 139, "fields": {"user": 139, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 140, "fields": {"user": 140, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 141, "fields": {"user": 141, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 142, "fields": {"user": 142, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 143, "fields": {"user": 143, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 144, "fields": {"user": 144, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 145, "fields": {"user": 145, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 146, "fields": {"user": 146, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 147, "fields": {"user": 147, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 148, "fields": {"user": 148, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 149, "fields": {"user": 149, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 150, "fields": {"user": 150, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 151, "fields": {"user": 151, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 152, "fields": {"user": 152, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 153, "fields": {"user": 153, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 154, "fields": {"user": 154, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 155, "fields": {"user": 155, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 156, "fields": {"user": 156, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 157, "fields": {"user": 157, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 158, "fields": {"user": 158, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 159, "fields": {"user": 159, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 160, "fields": {"user": 160, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 161, "fields": {"user": 161, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 162, "fields": {"user": 162, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 163, "fields": {"user": 163, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 164, "fields": {"user": 164, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 165, "fields": {"user": 165, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 166, "fields": {"user": 166, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 167, "fields": {"user": 167, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 168, "fields": {"user": 168, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 169, "fields": {"user": 169, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 170, "fields": {"user": 170, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 171, "fields": {"user": 171, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 172, "fields": {"user": 172, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 173, "fields": {"user": 173, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 174, "fields": {"user": 174, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 175, "fields": {"user": 175, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 176, "fields": {"user": 176, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 177, "fields": {"user": 177, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 178, "fields": {"user": 178, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 179, "fields": {"user": 179, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 180, "fields": {"user": 180, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 181, "fields": {"user": 181, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 182, "fields": {"user": 182, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 183, "fields": {"user": 183, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 184, "fields": {"user": 184, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 185, "fields": {"user": 185, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 186, "fields": {"user": 186, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 187, "fields": {"user": 187, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 188, "fields": {"user": 188, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 189, "fields": {"user": 189, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 190, "fields": {"user": 190, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 191, "fields": {"user": 191, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 192, "fields": {"user": 192, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 193, "fields": {"user": 193, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 194, "fields": {"user": 194, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 195, "fields": {"user": 195, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 196, "fields": {"user": 196, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 197, "fields": {"user": 197, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 198, "fields": {"user": 198, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 199, "fields": {"user": 199, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 200, "fields": {"user": 200, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 201, "fields": {"user": 201, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 202, "fields": {"user": 202, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 203, "fields": {"user": 203, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 204, "fields": {"user": 204, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 205, "fields": {"user": 205, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 206, "fields": {"user": 206, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 207, "fields": {"user": 207, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 208, "fields": {"user": 208, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 209, "fields": {"user": 209, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 210, "fields": {"user": 210, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 211, "fields": {"user": 211, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 212, "fields": {"user": 212, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 213, "fields": {"user": 213, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 214, "fields": {"user": 214, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 215, "fields": {"user": 215, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 216, "fields": {"user": 216, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 217, "fields": {"user": 217, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 218, "fields": {"user": 218, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 219, "fields": {"user": 219, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 220, "fields": {"user": 220, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 221, "fields": {"user": 221, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 222, "fields": {"user": 222, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 223, "fields": {"user": 223, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 224, "fields": {"user": 224, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 225, "fields": {"user": 225, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 226, "fields": {"user": 226, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 227, "fields": {"user": 227, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 228, "fields": {"user": 228, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 229, "fields": {"user": 229, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 230, "fields": {"user": 230, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 231, "fields": {"user": 231, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 232, "fields": {"user": 232, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 233, "fields": {"user": 233, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 234, "fields": {"user": 234, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 235, "fields": {"user": 235, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 236, "fields": {"user": 236, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 237, "fields": {"user": 237, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 238, "fields": {"user": 238, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 239, "fields": {"user": 239, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 240, "fields": {"user": 240, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 241, "fields": {"user": 241, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 242, "fields": {"user": 242, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 243, "fields": {"user": 243, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 244, "fields": {"user": 244, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 245, "fields": {"user": 245, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 246, "fields": {"user": 246, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 247, "fields": {"user": 247, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 248, "fields": {"user": 248, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 249, "fields": {"user": 249, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 250, "fields": {"user": 250, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 251, "fields": {"user": 251, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 252, "fields": {"user": 252, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 253, "fields": {"user": 253, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 254, "fields": {"user": 254, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 255, "fields": {"user": 255, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 256, "fields": {"user": 256, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 257, "fields": {"user": 257, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 258, "fields": {"user": 258, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 259, "fields": {"user": 259, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 260, "fields": {"user": 260, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 261, "fields": {"user": 261, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 262, "fields": {"user": 262, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 263, "fields": {"user": 263, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 264, "fields": {"user": 264, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 265, "fields": {"user": 265, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 266, "fields": {"user": 266, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 267, "fields": {"user": 267, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 268, "fields": {"user": 268, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 269, "fields": {"user": 269, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 270, "fields": {"user": 270, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 271, "fields": {"user": 271, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 272, "fields": {"user": 272, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 273, "fields": {"user": 273, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 274, "fields": {"user": 274, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 275, "fields": {"user": 275, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 276, "fields": {"user": 276, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 277, "fields": {"user": 277, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 278, "fields": {"user": 278, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 279, "fields": {"user": 279, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 280, "fields": {"user": 280, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 281, "fields": {"user": 281, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 282, "fields": {"user": 282, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 283, "fields": {"user": 283, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 284, "fields": {"user": 284, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 285, "fields": {"user": 285, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 286, "fields": {"user": 286, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 287, "fields": {"user": 287, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 288, "fields": {"user": 288, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 289, "fields": {"user": 289, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 290, "fields": {"user": 290, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 291, "fields": {"user": 291, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 292, "fields": {"user": 292, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 293, "fields": {"user": 293, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 294, "fields": {"user": 294, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 295, "fields": {"user": 295, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 296, "fields": {"user": 296, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 297, "fields": {"user": 297, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 298, "fields": {"user": 298, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 299, "fields": {"user": 299, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 300, "fields": {"user": 300, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 301, "fields": {"user": 301, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 302, "fields": {"user": 302, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 303, "fields": {"user": 303, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 304, "fields": {"user": 304, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 305, "fields": {"user": 305, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 306, "fields": {"user": 306, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 307, "fields": {"user": 307, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 308, "fields": {"user": 308, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 309, "fields": {"user": 309, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 310, "fields": {"user": 310, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 311, "fields": {"user": 311, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 312, "fields": {"user": 312, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 313, "fields": {"user": 313, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 314, "fields": {"user": 314, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 315, "fields": {"user": 315, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 316, "fields": {"user": 316, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 317, "fields": {"user": 317, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 318, "fields": {"user": 318, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 319, "fields": {"user": 319, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 320, "fields": {"user": 320, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 321, "fields": {"user": 321, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 322, "fields": {"user": 322, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 323, "fields": {"user": 323, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 324, "fields": {"user": 324, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 325, "fields": {"user": 325, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 326, "fields": {"user": 326, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 327, "fields": {"user": 327, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 328, "fields": {"user": 328, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 329, "fields": {"user": 329, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 330, "fields": {"user": 330, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 331, "fields": {"user": 331, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 332, "fields": {"user": 332, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 333, "fields": {"user": 333, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 334, "fields": {"user": 334, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 335, "fields": {"user": 335, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 336, "fields": {"user": 336, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 337, "fields": {"user": 337, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 338, "fields": {"user": 338, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 339, "fields": {"user": 339, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 340, "fields": {"user": 340, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 341, "fields": {"user": 341, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 342, "fields": {"user": 342, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 343, "fields": {"user": 343, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 344, "fields": {"user": 344, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 345, "fields": {"user": 345, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 346, "fields": {"user": 346, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 347, "fields": {"user": 347, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 348, "fields": {"user": 348, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 349, "fields": {"user": 349, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 350, "fields": {"user": 350, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 351, "fields": {"user": 351, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 352, "fields": {"user": 352, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 353, "fields": {"user": 353, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 354, "fields": {"user": 354, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 355, "fields": {"user": 355, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 356, "fields": {"user": 356, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 357, "fields": {"user": 357, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 358, "fields": {"user": 358, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 359, "fields": {"user": 359, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 360, "fields": {"user": 360, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 361, "fields": {"user": 361, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 362, "fields": {"user": 362, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 363, "fields": {"user": 363, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 364, "fields": {"user": 364, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 365, "fields": {"user": 365, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 366, "fields": {"user": 366, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 367, "fields": {"user": 367, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 368, "fields": {"user": 368, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 369, "fields": {"user": 369, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 370, "fields": {"user": 370, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 371, "fields": {"user": 371, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 372, "fields": {"user": 372, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 373, "fields": {"user": 373, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 374, "fields": {"user": 374, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 375, "fields": {"user": 375, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 376, "fields": {"user": 376, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 377, "fields": {"user": 377, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 378, "fields": {"user": 378, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 379, "fields": {"user": 379, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 380, "fields": {"user": 380, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 381, "fields": {"user": 381, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 382, "fields": {"user": 382, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 383, "fields": {"user": 383, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 384, "fields": {"user": 384, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 385, "fields": {"user": 385, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 386, "fields": {"user": 386, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 387, "fields": {"user": 387, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 388, "fields": {"user": 388, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 389, "fields": {"user": 389, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 390, "fields": {"user": 390, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 391, "fields": {"user": 391, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 392, "fields": {"user": 392, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 393, "fields": {"user": 393, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 394, "fields": {"user": 394, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 395, "fields": {"user": 395, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 396, "fields": {"user": 396, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 397, "fields": {"user": 397, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 398, "fields": {"user": 398, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 399, "fields": {"user": 399, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 400, "fields": {"user": 400, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 401, "fields": {"user": 401, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 402, "fields": {"user": 402, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 403, "fields": {"user": 403, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 404, "fields": {"user": 404, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 405, "fields": {"user": 405, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 406, "fields": {"user": 406, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 407, "fields": {"user": 407, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 408, "fields": {"user": 408, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 409, "fields": {"user": 409, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 410, "fields": {"user": 410, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 411, "fields": {"user": 411, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 412, "fields": {"user": 412, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 413, "fields": {"user": 413, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 414, "fields": {"user": 414, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 415, "fields": {"user": 415, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 416, "fields": {"user": 416, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 417, "fields": {"user": 417, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 418, "fields": {"user": 418, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 419, "fields": {"user": 419, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 420, "fields": {"user": 420, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 421, "fields": {"user": 421, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 422, "fields": {"user": 422, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 423, "fields": {"user": 423, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 424, "fields": {"user": 424, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 425, "fields": {"user": 425, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 426, "fields": {"user": 426, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 427, "fields": {"user": 427, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 428, "fields": {"user": 428, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 429, "fields": {"user": 429, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 430, "fields": {"user": 430, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 431, "fields": {"user": 431, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 432, "fields": {"user": 432, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 433, "fields": {"user": 433, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 434, "fields": {"user": 434, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 435, "fields": {"user": 435, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 436, "fields": {"user": 436, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 437, "fields": {"user": 437, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 438, "fields": {"user": 438, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 439, "fields": {"user": 439, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 440, "fields": {"user": 440, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 441, "fields": {"user": 441, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 442, "fields": {"user": 442, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 443, "fields": {"user": 443, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 444, "fields": {"user": 444, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 445, "fields": {"user": 445, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 446, "fields": {"user": 446, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 447, "fields": {"user": 447, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 448, "fields": {"user": 448, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 449, "fields": {"user": 449, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 450, "fields": {"user": 450, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 451, "fields": {"user": 451, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 452, "fields": {"user": 452, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 453, "fields": {"user": 453, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 454, "fields": {"user": 454, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 455, "fields": {"user": 455, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 456, "fields": {"user": 456, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 457, "fields": {"user": 457, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 458, "fields": {"user": 458, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 459, "fields": {"user": 459, "github_profile": null, "gh_repositories": null, "gravatar_link": "https://www.gravatar.com/avatar/139f76ac09f8b9d3a2392b45b7ad5f4c"}}, {"model": "press.cooluser", "pk": 460, "fields": {"user": 460, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 461, "fields": {"user": 461, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 462, "fields": {"user": 462, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 463, "fields": {"user": 463, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 464, "fields": {"user": 464, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 465, "fields": {"user": 465, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 466, "fields": {"user": 466, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 467, "fields": {"user": 467, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 468, "fields": {"user": 468, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 469, "fields": {"user": 469, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 470, "fields": {"user": 470, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 471, "fields": {"user": 471, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 472, "fields": {"user": 472, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 473, "fields": {"user": 473, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 474, "fields": {"user": 474, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 475, "fields": {"user": 475, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 476, "fields": {"user": 476, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 477, "fields": {"user": 477, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.cooluser", "pk": 478, "fields": {"user": 478, "github_profile": null, "gh_repositories": null, "gravatar_link": null}}, {"model": "press.category", "pk": 1, "fields": {"label": "Health", "slug": "health"}}, {"model": "press.category", "pk": 2, "fields": {"label": "General", "slug": "general"}}, {"model": "press.category", "pk": 3, "fields": {"label": "Technology", "slug": "technology"}}, {"model": "press.category", "pk": 4, "fields": {"label": "Entertainment", "slug": "entertainment"}}, {"model": "press.category", "pk": 5, "fields": {"label": "Events News", "slug": "event"}}, {"model": "press.post", "pk": 1, "fields": {"title": "Flu season 2021: What to know", "body": "As temperatures cool and students return to classrooms amidst the ongoing COVID-19 pandemic, flu season has arrived once again.", "image_link": "https://static.foxnews.com/foxnews.com/content/uploads/2021/10/Flu-Shot.jpg", "word_cloud_link": null, "source_link": "http://feeds.foxnews.com/~r/foxnews/health/~3/WTKTJ3Ewn0Q/flu-season-2021-what-to-know", "source_label": "FOX News - Health", "status": "PUBLISHED", "author": 1, "category": 1, "creation_date": "2021-10-14T10:43:38.592Z", "last_update": "2021-10-14T10:43:38.592Z"}}, {"model": "press.post", "pk": 2, "fields": {"title": "Fauci says COVID-19 pandemic uncontrolled as 66M remain unvaccinated", "body": "With the U.S. averaging nearly 90,000 new COVID-19 infections each day and some 66 million Americans remaining unvaccinated, Dr. Anthony Fauci, President Biden’s chief medical adviser, said the country needs to gain control to approach normalcy.", "image_link": "https://static.foxnews.com/foxnews.com/content/uploads/2020/08/gettyimages-Fauci-.jpg", "word_cloud_link": null, "source_link": "http://feeds.foxnews.com/~r/foxnews/health/~3/HtOxMqaaeW4/fauci-covid-pandemic-control", "source_label": "FOX News - Health", "status": "PUBLISHED", "author": 2, "category": 1, "creation_date": "2021-10-14T10:43:40.558Z", "last_update": "2021-10-14T10:43:40.558Z"}}, {"model": "press.post", "pk": 3, "fields": {"title": "What Do You Like to Do During a Mental Health Day?", "body": "We’re seeking inspiration from our readers.", "image_link": "https://static01.nyt.com/images/2021/10/12/well/Well-MentalHealthDay/Well-MentalHealthDay-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2021/10/13/well/mind/mental-health-day-ideas.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 3, "category": 1, "creation_date": "2021-10-14T10:43:42.346Z", "last_update": "2021-10-14T10:43:42.346Z"}}, {"model": "press.post", "pk": 4, "fields": {"title": "WHO announces committee to probe COVID-19 pandemic origins", "body": "The World Health Organization (WHO) announced 26 proposed members to an advisory committee aimed to steer studies into the origin of the COVID-19 pandemic and other pathogens of epidemic potential.", "image_link": "https://static.foxnews.com/foxnews.com/content/uploads/2020/12/WHO_resized.jpg", "word_cloud_link": null, "source_link": "http://feeds.foxnews.com/~r/foxnews/health/~3/6NmhX2B3qV0/who-announces-committee-coronavirus-origins", "source_label": "FOX News - Health", "status": "PUBLISHED", "author": 1, "category": 1, "creation_date": "2021-10-14T10:43:42.350Z", "last_update": "2021-10-14T10:43:42.350Z"}}, {"model": "press.post", "pk": 5, "fields": {"title": "F.D.A. Authorizes E-Cigarettes to Stay on U.S. Market for the First Time", "body": "The agency approved three Vuse vaping products and said their benefits in helping smokers quit outweighed the risks of hooking youths.", "image_link": "https://static01.nyt.com/images/2021/10/12/science/12vaping/12vaping-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2021/10/12/health/ecigarettes-fda-vuse.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 4, "category": 1, "creation_date": "2021-10-14T10:43:43.989Z", "last_update": "2021-10-14T10:43:43.989Z"}}, {"model": "press.post", "pk": 6, "fields": {"title": "Stocks And Gold Recover As Fed Path Gets Recalibrated", "body": "Expectations of earlier but shallower Fed rate path revive optimism Dollar retreats, stocks and gold recover as long-dated yields drop China’s factory prices soar, central bank speakers in focus Fed repricing Investors are having second thoughts about the structure of the Fed’s rate hike cycle. The latest moves in the bond market suggest the FOMC […]The post Stocks And Gold Recover As Fed Path Gets Recalibrated appeared first on Action Forex.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.actionforex.com/contributors/fundamental-analysis/409115-stocks-and-gold-recover-as-fed-path-gets-recalibrated/", "source_label": "actionforex", "status": "PUBLISHED", "author": 5, "category": 2, "creation_date": "2021-10-14T10:44:02.808Z", "last_update": "2021-10-14T10:44:02.808Z"}}, {"model": "press.post", "pk": 7, "fields": {"title": "Convention Center will get a steel clad and polycarbonate facelift.", "body": "Earlier this week Erie County Executive Mark Poloncarz announced that the Buffalo Niagara Convention Center would be getting a facade makeover. This announcement comes at […]", "image_link": "https://www.buffalorising.com/wp-content/uploads/2021/10/FBgTKBjWUAEZCGV-300x195.jpg", "word_cloud_link": null, "source_link": "https://www.buffalorising.com/2021/10/convention-center-will-get-a-steel-clad-and-polycarbonate-facelift/", "source_label": "buffalorising", "status": "PUBLISHED", "author": 6, "category": 2, "creation_date": "2021-10-14T10:44:04.413Z", "last_update": "2021-10-14T10:44:04.413Z"}}, {"model": "press.post", "pk": 8, "fields": {"title": "How this scientist went from intern to technical specialist", "body": "Having started as an intern at MSD, Fiona Hennessy urges other interns to take whatever opportunities come their way.The post How this scientist went from intern to technical specialist appeared first on Silicon Republic.", "image_link": "https://www.siliconrepublic.com/wp-content/uploads/2021/10/Fiona-Henessy-330x251.jpg", "word_cloud_link": null, "source_link": "https://www.siliconrepublic.com/people/msd-intern-technical-specialist-fiona-hennessy", "source_label": "siliconrepublic", "status": "PUBLISHED", "author": 7, "category": 2, "creation_date": "2021-10-14T10:44:06.294Z", "last_update": "2021-10-14T10:44:06.294Z"}}, {"model": "press.post", "pk": 9, "fields": {"title": "UP Min announces Rs 50 lakh, govt job for kin of Sepoy Saraj Singh killed in Poonch encounter", "body": "Shahjahanpur (Uttar Pradesh) , Uttar Pradesh Minister Suresh Kumar Khanna on Thursday announced Rs 50 lakhs as financial assistance and a government job for a family member of Sepoy Saraj Singh, who lost his life in Poonch encounter on Monday.We have given Rs 50 lakhs as financial assistance to the family. A road will be […]The post UP Min announces Rs 50 lakh, govt job for kin of Sepoy Saraj Singh killed in Poonch encounter appeared first on The DayAfter.", "image_link": null, "word_cloud_link": null, "source_link": "https://dayafterindia.com/2021/10/14/up-min-announces-rs-50-lakh-govt-job-for-kin-of-sepoy-saraj-singh-killed-in-poonch-encounter/", "source_label": "dayafterindia", "status": "PUBLISHED", "author": 8, "category": 2, "creation_date": "2021-10-14T10:44:09.844Z", "last_update": "2021-10-14T10:44:09.844Z"}}, {"model": "press.post", "pk": 10, "fields": {"title": "Roger Hunt: Funeral of Liverpool legend and England 1966 World Cup winner takes place on Merseyside", "body": "Hunt, who is the second-highest scorer in Liverpool club history with a staggering 285 goals, passed away peacefully at home at the age of 83 last month.", "image_link": "https://i.dailymail.co.uk/1s/2021/10/14/10/49160011-0-image-m-66_1634203959258.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/sport/sportsnews/article-10091079/Funeral-Liverpool-legend-England-1966-World-Cup-winner-Roger-Hunt-takes-place-Merseyside.html?ns_mchannel=rss&ito=1490&ns_campaign=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2021-10-14T10:44:12.881Z", "last_update": "2021-10-14T10:44:12.881Z"}}, {"model": "press.post", "pk": 11, "fields": {"title": "Outschool’s after-school enrichment marketplace is now valued at $3 billion", "body": "In the last 12 months, Outschool, a marketplace for kid-friendly enrichment classes, has raised its Series B, Series C and, now, it’s Series D. The startup announced today that its latest round, a $110 million tranche of capital, brings its valuation to $3 billion just four months after hitting unicorn status. The fast infusion of […]", "image_link": null, "word_cloud_link": null, "source_link": "https://techcrunch.com/2021/10/14/outschools-after-school-enrichment-marketplace-is-now-valued-at-3-billion/", "source_label": "TechCrunch", "status": "PUBLISHED", "author": 10, "category": 3, "creation_date": "2021-10-14T10:44:47.698Z", "last_update": "2021-10-14T10:44:47.698Z"}}, {"model": "press.post", "pk": 12, "fields": {"title": "Cannabis commerce company Dutchie doubles valuation following new funding round", "body": "The industry will continue to see adoption across all areas, especially as more people are educated on finding the right product and modality and more states legalize cannabis.", "image_link": null, "word_cloud_link": null, "source_link": "https://techcrunch.com/2021/10/14/cannabis-commerce-company-dutchie-doubles-valuation-following-new-funding-round/", "source_label": "TechCrunch", "status": "PUBLISHED", "author": 11, "category": 3, "creation_date": "2021-10-14T10:44:49.467Z", "last_update": "2021-10-14T10:44:49.467Z"}}, {"model": "press.post", "pk": 13, "fields": {"title": "Modular Framework laptop gets a marketplace for all those modules", "body": "Framework, makers of the modular 13.5-inch Framework laptop that’s designed to be easily repaired and upgraded, has launched a dedicated marketplace filled with replacement parts and upgrades for its portable computer. Writing in a blog post, the company said the marketplace is currently focused on replacement parts and expansion cards, but that it hopes to add more customization modules like additional language keyboards later this year, as well as third-party and community developed modules in 2022.It’s an important step for the modular laptop, which has been shipping for a little over...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.theverge.com/2021/10/14/22725935/framework-laptop-modular-marketplace-launches-spare-parts-upgrades-expansions", "source_label": "The Verge", "status": "PUBLISHED", "author": 12, "category": 3, "creation_date": "2021-10-14T10:44:51.229Z", "last_update": "2021-10-14T10:44:51.229Z"}}, {"model": "press.post", "pk": 14, "fields": {"title": "The transport industry isn’t doing enough to halt climate change, report says", "body": "Despite a global push towards cleaner forms of energy, we are not on track to battle global warming, the International Energy Agency (IEA) warns in its World Energy Outlook 2021 report. Even more alarmingly, the scenarios mapped out in the report show that announced pledges fall far short of the emission reductions needed to limit the temperature rises to 1.5 Celsius degrees — beyond which the worst impacts of climate change will be felt. Feeling depressed yet? Me too. Transport at the core of the problem Not surprisingly, transport is expectedly a focal point of the report, as it has…...", "image_link": "https://img-cdn.tnwcdn.com/image?fit=796%2C417&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F10%2FUntitled-design-24-1.jpg&signature=f81aac1940afa7467f0d3d5adb714a0a", "word_cloud_link": null, "source_link": "http://feedproxy.google.com/~r/TheNextWeb/~3/aHeoNG38JEQ/transport-industry-isnt-doing-enough-halt-climate-change-iea-report-says", "source_label": "The Next Web", "status": "PUBLISHED", "author": 13, "category": 3, "creation_date": "2021-10-14T10:44:52.991Z", "last_update": "2021-10-14T10:44:52.991Z"}}, {"model": "press.post", "pk": 15, "fields": {"title": "Uzoma Dozie’s Sparkle raises $3.1M for personal, business neobank play in Nigeria", "body": "The neobank wave is beginning to take shape in Africa, particularly in Nigeria, where new fintechs are trying to take on legacy banks by providing cheaper and more personalized banking services. Sparkle, founded by an ex-CEO of a former Nigerian incumbent bank, is one such fintech, and it has closed a seed round of $3.1 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://techcrunch.com/2021/10/14/uzoma-dozies-sparkle-raises-3-1m-for-personal-business-neobank-play-in-nigeria/", "source_label": "TechCrunch", "status": "PUBLISHED", "author": 14, "category": 3, "creation_date": "2021-10-14T10:44:54.490Z", "last_update": "2021-10-14T10:44:54.490Z"}}, {"model": "press.post", "pk": 16, "fields": {"title": "Airline association boss Willie Walsh slams ongoing PCR testing ‘rip-off’", "body": "Compulsory travel tests are a ‘state-sponsored rip-off’, says Iata chief", "image_link": "https://static.independent.co.uk/2021/10/14/10/51549890381_0c8607b547_c.jpg?width=1024&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/travel/news-and-advice/pcr-tests-iata-willie-walsh-b1938261.html", "source_label": "The Independent - Travel", "status": "PUBLISHED", "author": 15, "category": 4, "creation_date": "2021-10-14T10:45:23.084Z", "last_update": "2021-10-14T10:45:23.084Z"}}, {"model": "press.post", "pk": 17, "fields": {"title": "Laughable Tracey Boakye Turns Herself Into A Cartoon In Highly Edited and Photoshopped PHOTO", "body": "Tracey Boakye has magically turned into a cartoon in a photo that is so laughably edited and photoshopped, it takes one second to spot it. The desperation from the ‘ashawobrity’ class to escape from their real selves has no end. They fake everything online – their wealth, their homes, their cars – whatever you see ... Read moreThe post Laughable Tracey Boakye Turns Herself Into A Cartoon In Highly Edited and Photoshopped PHOTO appeared first on GhanaCelebrities.Com.", "image_link": null, "word_cloud_link": null, "source_link": "http://feedproxy.google.com/~r/Ghanacelebritiescom/~3/InT2cUnJPWk/", "source_label": "GhanaCelebrities.com", "status": "PUBLISHED", "author": 16, "category": 4, "creation_date": "2021-10-14T10:45:24.734Z", "last_update": "2021-10-14T10:45:24.734Z"}}, {"model": "press.post", "pk": 18, "fields": {"title": "Meet the Whiteman Who Speaks Better Twi than Mzbel – Watch Their Interview", "body": "Mzbel has been left in shock after meeting a Greek in London who speaks Twi even better than she does. The Ghanaian singer was recently in the United Kingdom to appear at the Ghana Music Awards UK. She performed at the show but is still in the UK chilling before she returns to Ghana. In ... Read moreThe post Meet the Whiteman Who Speaks Better Twi than Mzbel – Watch Their Interview appeared first on GhanaCelebrities.Com.", "image_link": null, "word_cloud_link": null, "source_link": "http://feedproxy.google.com/~r/Ghanacelebritiescom/~3/DYPP_Gr-3Y0/", "source_label": "GhanaCelebrities.com", "status": "PUBLISHED", "author": 16, "category": 4, "creation_date": "2021-10-14T10:45:24.739Z", "last_update": "2021-10-14T10:45:24.739Z"}}, {"model": "press.post", "pk": 19, "fields": {"title": "Tell T a Joke | Anna Sui", "body": "The fashion designer and famed maximalist delivers a wisecrack about hoarding.", "image_link": "https://static01.nyt.com/images/2021/10/11/t-magazine/11tmag-jokes/11tmag-jokes-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/video/t-magazine/100000007990218/tell-t-a-joke-anna-sui.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 17, "category": 4, "creation_date": "2021-10-14T10:45:26.390Z", "last_update": "2021-10-14T10:45:26.390Z"}}, {"model": "press.post", "pk": 20, "fields": {"title": "Dele Alli is eager to learn more about plant-based food and sustainability", "body": "The Tottenham footballer has been considering how diet can impact your health and the environment", "image_link": "https://static.independent.co.uk/2021/10/14/10/13134543-937800e4-5322-4269-aecf-8050dd519b49.jpg?width=1024&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/life-style/health-and-families/dele-alli-harry-kane-milton-keynes-eric-dier-ben-davies-b1938246.html", "source_label": "The Independent - Life and Style", "status": "PUBLISHED", "author": 18, "category": 4, "creation_date": "2021-10-14T10:45:28.049Z", "last_update": "2021-10-14T10:45:28.049Z"}}, {"model": "press.post", "pk": 21, "fields": {"title": "3 simple (but difficult) steps to grow your startup ecosystem", "body": "Growing a startup ecosystem can sound daunting — you’ve got to attract talent, streamline regulations, build capacity, ensure sufficient capital — and a quick glance at the Global Startup Ecosystem Report from my organization, Startup Genome, might not disabuse you of the notion. For our latest edition, released September 22nd, we analyzed 280 ecosystems, crunched data on 3 million startups, and used more than 100 metrics to quantify their performance.  As Startup Genome’s founder and CEO I’m here to offer a simplified view of startup ecosystem building. But, keep in mind, although...", "image_link": "https://img-cdn.tnwcdn.com/image?fit=796%2C417&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F10%2FUntitled-design-25.jpg&signature=c262a0ef4fe87d5d78bfe3cd148e0f07", "word_cloud_link": null, "source_link": "http://feedproxy.google.com/~r/TheNextWeb/~3/zlW4-PjOJ18/3-simple-but-difficult-steps-to-grow-your-startup-ecosystem", "source_label": "The Next Web", "status": "PUBLISHED", "author": 19, "category": 3, "creation_date": "2021-10-14T10:45:50.916Z", "last_update": "2021-10-14T10:45:50.917Z"}}, {"model": "press.post", "pk": 22, "fields": {"title": "Wow, there’s an actual use for blockchain? Helium can democratize internet connectivity", "body": "I’m always looking for good blockchain use cases. There are only a few companies that I rate. One is Helium, who calls itself “The People’s Network.” It was co-founded by Shawn Fanning (Napster co-creator) and Amir Haleem in 2013 with a mighty mission: to democratize access to the internet. They achieve this by creating their own P2P internet network. This is a radical shift to wide area networks and internet connectivity. I spoke to Frank Mong, Helium’s COO to find out more about the company, their tech, and their latest partnership. How does it all work? What underpins Helium is a...", "image_link": "https://img-cdn.tnwcdn.com/image?fit=796%2C417&url=https%3A%2F%2Fcdn0.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2021%2F10%2FUntitled-design.jpeg&signature=9f9412f914e9d6f2034244bde6eb945e", "word_cloud_link": null, "source_link": "http://feedproxy.google.com/~r/TheNextWeb/~3/5zM_qf1LDWQ/helium-powers-internet-connectivity-with-blockhain-technology", "source_label": "The Next Web", "status": "PUBLISHED", "author": 20, "category": 3, "creation_date": "2021-10-14T10:45:52.778Z", "last_update": "2021-10-14T10:45:52.778Z"}}, {"model": "press.post", "pk": 23, "fields": {"title": "Volvo reveals its first vehicle made of fossil-free steel", "body": "A few months ago, Volvo teamed up with Swedish steel producer SSAB to develop a type of steel it can use for its vehicles that doesn't use fossil fuels. Now, the automaker has revealed what it says is the world's first vehicle made of fossil-free steel: A four wheeled fully electric load carrier made for quarrying and mining. In addition to having no greenhouse gas emission, it's also autonomous and can follow a pre-programmed route to transport materials at a job site.SSAB produces fossil-free steel by replacing the coal used during the manufacturing process with hydrogen from...", "image_link": "https://s.yimg.com/os/creatr-uploaded-images/2021-10/35b64780-2caf-11ec-b5af-c36e4b669756", "word_cloud_link": null, "source_link": "https://www.engadget.com/volvo-first-vehicle-fossil-free-steel-055542393.html?src=rss", "source_label": "Engadget", "status": "PUBLISHED", "author": 21, "category": 3, "creation_date": "2021-10-14T10:45:54.325Z", "last_update": "2021-10-14T10:45:54.325Z"}}, {"model": "press.post", "pk": 24, "fields": {"title": "European point of sale provider SumUp acquires customer loyalty startup Fivestars for $317M", "body": "SumUp, a European-based competitor to Square, PayPal/iZettle and others that provide mobile-powered card readers and other sales technology to merchants and small businesses, has made an acquisition in the U.S. to dig deeper into that market, and to expand the kinds of services that it provides to customers globally. The company has acquired Fivestars, which […]", "image_link": null, "word_cloud_link": null, "source_link": "https://techcrunch.com/2021/10/13/european-point-of-sale-provider-sumup-acquires-customer-loyalty-startup-fivestars-for-317m/", "source_label": "TechCrunch", "status": "PUBLISHED", "author": 22, "category": 3, "creation_date": "2021-10-14T10:45:56.112Z", "last_update": "2021-10-14T10:45:56.112Z"}}, {"model": "press.post", "pk": 25, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Acquires Shares of 87,400 Old National Bancorp (NASDAQ:ONB)", "body": "Healthcare of Ontario Pension Plan Trust Fund acquired a new stake in shares of Old National Bancorp (NASDAQ:ONB) during the second quarter, according to its most recent Form 13F filing with the SEC. The fund acquired 87,400 shares of the bank’s stock, valued at approximately $1,539,000. Healthcare of Ontario Pension Plan Trust Fund owned 0.05% […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-acquires-shares-of-87400-old-national-bancorp-nasdaqonb.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.730Z", "last_update": "2021-10-14T10:46:17.730Z"}}, {"model": "press.post", "pk": 26, "fields": {"title": "Cintas Co. (NASDAQ:CTAS) Shares Sold by Healthcare of Ontario Pension Plan Trust Fund", "body": "Healthcare of Ontario Pension Plan Trust Fund decreased its holdings in Cintas Co. (NASDAQ:CTAS) by 71.4% during the 2nd quarter, according to the company in its most recent disclosure with the SEC. The institutional investor owned 4,005 shares of the business services provider’s stock after selling 10,000 shares during the quarter. Healthcare of Ontario Pension […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/cintas-co-nasdaqctas-shares-sold-by-healthcare-of-ontario-pension-plan-trust-fund.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.737Z", "last_update": "2021-10-14T10:46:17.737Z"}}, {"model": "press.post", "pk": 27, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Buys New Shares in Veritex Holdings, Inc. (NASDAQ:VBTX)", "body": "Healthcare of Ontario Pension Plan Trust Fund bought a new stake in Veritex Holdings, Inc. (NASDAQ:VBTX) during the 2nd quarter, according to the company in its most recent 13F filing with the Securities and Exchange Commission (SEC). The fund bought 38,800 shares of the financial services provider’s stock, valued at approximately $1,374,000. Healthcare of Ontario […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-buys-new-shares-in-veritex-holdings-inc-nasdaqvbtx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.741Z", "last_update": "2021-10-14T10:46:17.741Z"}}, {"model": "press.post", "pk": 28, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Has $1.46 Million Holdings in Santander Consumer USA Holdings Inc. (NYSE:SC)", "body": "Healthcare of Ontario Pension Plan Trust Fund lowered its stake in Santander Consumer USA Holdings Inc. (NYSE:SC) by 9.5% in the second quarter, according to its most recent disclosure with the Securities and Exchange Commission (SEC). The fund owned 40,235 shares of the financial services provider’s stock after selling 4,231 shares during the period. Healthcare […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-has-1-46-million-holdings-in-santander-consumer-usa-holdings-inc-nysesc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.745Z", "last_update": "2021-10-14T10:46:17.745Z"}}, {"model": "press.post", "pk": 29, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Acquires New Stake in iShares Global Materials ETF (NYSEARCA:MXI)", "body": "Healthcare of Ontario Pension Plan Trust Fund bought a new stake in iShares Global Materials ETF (NYSEARCA:MXI) in the 2nd quarter, according to its most recent 13F filing with the Securities and Exchange Commission. The institutional investor bought 16,100 shares of the company’s stock, valued at approximately $1,464,000. Healthcare of Ontario Pension Plan Trust Fund […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-acquires-new-stake-in-ishares-global-materials-etf-nysearcamxi.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.750Z", "last_update": "2021-10-14T10:46:17.750Z"}}, {"model": "press.post", "pk": 30, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Takes Position in Perficient, Inc. (NASDAQ:PRFT)", "body": "Healthcare of Ontario Pension Plan Trust Fund bought a new stake in shares of Perficient, Inc. (NASDAQ:PRFT) in the second quarter, according to its most recent Form 13F filing with the Securities and Exchange Commission. The institutional investor bought 16,900 shares of the digital transformation consultancy’s stock, valued at approximately $1,359,000. Healthcare of Ontario Pension […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-takes-position-in-perficient-inc-nasdaqprft.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.754Z", "last_update": "2021-10-14T10:46:17.754Z"}}, {"model": "press.post", "pk": 31, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Takes Position in GeoPark Limited (NYSE:GPRK)", "body": "Healthcare of Ontario Pension Plan Trust Fund acquired a new stake in shares of GeoPark Limited (NYSE:GPRK) during the 2nd quarter, according to the company in its most recent filing with the Securities and Exchange Commission (SEC). The institutional investor acquired 102,900 shares of the oil and gas company’s stock, valued at approximately $1,302,000. Healthcare […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-takes-position-in-geopark-limited-nysegprk.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.758Z", "last_update": "2021-10-14T10:46:17.759Z"}}, {"model": "press.post", "pk": 32, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Cuts Position in Northwest Bancshares, Inc. (NASDAQ:NWBI)", "body": "Healthcare of Ontario Pension Plan Trust Fund decreased its holdings in Northwest Bancshares, Inc. (NASDAQ:NWBI) by 63.4% in the 2nd quarter, according to its most recent Form 13F filing with the SEC. The institutional investor owned 96,000 shares of the savings and loans company’s stock after selling 166,000 shares during the quarter. Healthcare of Ontario […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-cuts-position-in-northwest-bancshares-inc-nasdaqnwbi.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.763Z", "last_update": "2021-10-14T10:46:17.763Z"}}, {"model": "press.post", "pk": 33, "fields": {"title": "Dimensional Fund Advisors LP Sells 5,222 Shares of Masonite International Co. (NYSE:DOOR)", "body": "Dimensional Fund Advisors LP lessened its holdings in shares of Masonite International Co. (NYSE:DOOR) by 0.8% during the second quarter, according to the company in its most recent filing with the Securities and Exchange Commission. The institutional investor owned 679,431 shares of the company’s stock after selling 5,222 shares during the period. Dimensional Fund Advisors […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/dimensional-fund-advisors-lp-sells-5222-shares-of-masonite-international-co-nysedoor.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.767Z", "last_update": "2021-10-14T10:46:17.767Z"}}, {"model": "press.post", "pk": 34, "fields": {"title": "Healthcare of Ontario Pension Plan Trust Fund Buys Shares of 150,000 COVA Acquisition Corp. (NASDAQ:COVA)", "body": "Healthcare of Ontario Pension Plan Trust Fund bought a new stake in COVA Acquisition Corp. (NASDAQ:COVA) in the 2nd quarter, according to its most recent disclosure with the SEC. The fund bought 150,000 shares of the company’s stock, valued at approximately $1,454,000. Healthcare of Ontario Pension Plan Trust Fund owned approximately 0.40% of COVA Acquisition […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/healthcare-of-ontario-pension-plan-trust-fund-buys-shares-of-150000-cova-acquisition-corp-nasdaqcova.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.771Z", "last_update": "2021-10-14T10:46:17.771Z"}}, {"model": "press.post", "pk": 35, "fields": {"title": "ACI Worldwide, Inc. (NASDAQ:ACIW) Position Boosted by Healthcare of Ontario Pension Plan Trust Fund", "body": "Healthcare of Ontario Pension Plan Trust Fund increased its holdings in ACI Worldwide, Inc. (NASDAQ:ACIW) by 169.3% in the second quarter, according to its most recent 13F filing with the Securities and Exchange Commission (SEC). The institutional investor owned 41,200 shares of the technology company’s stock after buying an additional 25,900 shares during the quarter. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2021/10/14/aci-worldwide-inc-nasdaqaciw-position-boosted-by-healthcare-of-ontario-pension-plan-trust-fund.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2021-10-14T10:46:17.775Z", "last_update": "2021-10-14T10:46:17.775Z"}}, {"model": "press.post", "pk": 36, "fields": {"title": "The Python event of the year! PyConEs Online", "body": "This year the PyCon in spain is again online so don't miss it and join many other developers and python lovers.\r\n\r\nOn this edition there is no limit ot assistance and the entrance is free.\r\n\r\nThe event will be online due to the current situation but this won't stop us to enjoy some time sharing ideas and latests news about this awesome language", "image_link": "https://elpythonista.com/wp-content/uploads/2021/09/Pycones_21-1-768x432.jpg", "word_cloud_link": null, "source_link": null, "source_label": null, "status": "PUBLISHED", "author": 24, "category": 3, "creation_date": "2021-10-14T10:53:07.690Z", "last_update": "2021-10-14T10:53:07.690Z"}}, {"model": "press.post", "pk": 37, "fields": {"title": "How to install Python - The great tutorial", "body": "Python is the language of the present and the future, so checkout this great tutorial that will show you how to install it and become a pythonista in record time", "image_link": "https://elpythonista.com/wp-content/uploads/2020/10/Instalar_Python-768x432.jpg", "word_cloud_link": null, "source_link": null, "source_label": null, "status": "PUBLISHED", "author": 24, "category": 3, "creation_date": "2021-10-14T11:53:17.179Z", "last_update": "2021-10-14T11:53:17.179Z"}}, {"model": "press.post", "pk": 38, "fields": {"title": "Check the best Programming books!", "body": "Check out the books section selected by and for programmers at:\r\n\r\nhttps://elpythonista.com/python-books", "image_link": "https://elpythonista.com/wp-content/uploads/2020/10/Libros-de-Python-y-programacion-1024x683.jpg", "word_cloud_link": null, "source_link": null, "source_label": null, "status": "PUBLISHED", "author": 24, "category": 3, "creation_date": "2021-10-14T11:53:51.261Z", "last_update": "2021-10-14T11:53:51.261Z"}}, {"model": "press.post", "pk": 39, "fields": {"title": "Released a review of the best seller Clean Code!", "body": "Clean Code has become a reference book for the programmers around the world. It explains some techniques and concepts that would allow us to improve our programming skills making our code more maintainable and scalable. Also it provides many examples on how to improve some code and pieces of code on how to transform it.", "image_link": "https://elpythonista.com/wp-content/uploads/2020/10/Clean_Code-portada-768x432.jpg", "word_cloud_link": null, "source_link": null, "source_label": null, "status": "PUBLISHED", "author": 24, "category": 3, "creation_date": "2021-10-14T11:55:14.535Z", "last_update": "2021-10-14T11:55:14.536Z"}}, {"model": "press.post", "pk": 40, "fields": {"title": "The Python event of the year! PyConEs Online", "body": "This year the PyCon in spain is again online so don't miss it and join many other developers and python lovers.\r\n\r\nOn this edition there is no limit ot assistance and the entrance is free.\r\n\r\nThe event will be online due to the current situation but this won't stop us to enjoy some time sharing ideas and latests news about this awesome language", "image_link": "https://elpythonista.com/wp-content/uploads/2021/09/Pycones_21-1-768x432.jpg", "word_cloud_link": null, "source_link": null, "source_label": null, "status": "PUBLISHED", "author": 24, "category": 5, "creation_date": "2021-10-14T11:55:54.843Z", "last_update": "2021-10-14T11:55:54.843Z"}}, {"model": "press.post", "pk": 41, "fields": {"title": "Fenerbahçe'nin 7 maçlık zorlu fikstürü", "body": "Fenerbahçe, milli aranın sona ermesiyle birlikte bu ay içerisinde 7 maç daha yapacak. Fenerbahçe", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sporx.com/futbol/superlig/fenerbahce/fenerbahce-nin-7-maclik-zorlu-fiksturu-SXHBQ990556SXQ?utm_source=icerikPaylas", "source_label": "sporx", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T11:55:27.637Z", "last_update": "2022-10-04T11:55:27.637Z"}}, {"model": "press.post", "pk": 42, "fields": {"title": "Granite Investment Partners LLC Has $8.77 Million Holdings in Thermo Fisher Scientific Inc. (NYSE:TMO)", "body": "Granite Investment Partners LLC Has $8.77 Million Holdings in Thermo Fisher Scientific Inc. (NYSE:TMO)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/granite-investment-partners-llc-has-8-77-million-holdings-in-thermo-fisher-scientific-inc-nysetmo.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.511Z", "last_update": "2022-10-04T11:56:58.511Z"}}, {"model": "press.post", "pk": 43, "fields": {"title": "Capital Investment Advisory Services LLC Sells 9,473 Shares of Iron Mountain Incorporated (NYSE:IRM)", "body": "Capital Investment Advisory Services LLC Sells 9,473 Shares of Iron Mountain Incorporated (NYSE:IRM)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/capital-investment-advisory-services-llc-sells-9473-shares-of-iron-mountain-incorporated-nyseirm.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.545Z", "last_update": "2022-10-04T11:56:58.545Z"}}, {"model": "press.post", "pk": 44, "fields": {"title": "Church & Dwight Co., Inc. (NYSE:CHD) Shares Sold by Capital Investment Advisory Services LLC", "body": "Church & Dwight Co., Inc. (NYSE:CHD) Shares Sold by Capital Investment Advisory Services LLC", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/church-dwight-co-inc-nysechd-shares-sold-by-capital-investment-advisory-services-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.576Z", "last_update": "2022-10-04T11:56:58.576Z"}}, {"model": "press.post", "pk": 45, "fields": {"title": "Capital Investment Advisory Services LLC Trims Position in Analog Devices, Inc. (NASDAQ:ADI)", "body": "Capital Investment Advisory Services LLC Trims Position in Analog Devices, Inc. (NASDAQ:ADI)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/capital-investment-advisory-services-llc-trims-position-in-analog-devices-inc-nasdaqadi.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.608Z", "last_update": "2022-10-04T11:56:58.608Z"}}, {"model": "press.post", "pk": 46, "fields": {"title": "Capital Investment Advisory Services LLC Boosts Holdings in Enbridge Inc. (NYSE:ENB)", "body": "Capital Investment Advisory Services LLC Boosts Holdings in Enbridge Inc. (NYSE:ENB)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/capital-investment-advisory-services-llc-boosts-holdings-in-enbridge-inc-nyseenb.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.641Z", "last_update": "2022-10-04T11:56:58.641Z"}}, {"model": "press.post", "pk": 47, "fields": {"title": "Capital Investment Advisory Services LLC Purchases 399 Shares of Fidelity MSCI Utilities Index ETF (NYSEARCA:FUTY)", "body": "Capital Investment Advisory Services LLC Purchases 399 Shares of Fidelity MSCI Utilities Index ETF (NYSEARCA:FUTY)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/capital-investment-advisory-services-llc-purchases-399-shares-of-fidelity-msci-utilities-index-etf-nysearcafuty.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.674Z", "last_update": "2022-10-04T11:56:58.674Z"}}, {"model": "press.post", "pk": 48, "fields": {"title": "Intel Co. (NASDAQ:INTC) Shares Bought by Capital Investment Advisory Services LLC", "body": "Intel Co. (NASDAQ:INTC) Shares Bought by Capital Investment Advisory Services LLC", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/intel-co-nasdaqintc-shares-bought-by-capital-investment-advisory-services-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.705Z", "last_update": "2022-10-04T11:56:58.705Z"}}, {"model": "press.post", "pk": 49, "fields": {"title": "Truist Financial Corp Trims Stock Position in Ingersoll Rand Inc. (NYSE:IR)", "body": "Truist Financial Corp Trims Stock Position in Ingersoll Rand Inc. (NYSE:IR)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/truist-financial-corp-trims-stock-position-in-ingersoll-rand-inc-nyseir.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.736Z", "last_update": "2022-10-04T11:56:58.736Z"}}, {"model": "press.post", "pk": 50, "fields": {"title": "iShares Floating Rate Bond ETF (BATS:FLOT) Shares Bought by Truist Financial Corp", "body": "iShares Floating Rate Bond ETF (BATS:FLOT) Shares Bought by Truist Financial Corp", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/ishares-floating-rate-bond-etf-batsflot-shares-bought-by-truist-financial-corp.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T11:56:58.765Z", "last_update": "2022-10-04T11:56:58.765Z"}}, {"model": "press.post", "pk": 51, "fields": {"title": "Spain to transfer 2.9 billion euros to state pension fund, Budget minister says", "body": "(marketscreener.com) Spain will transfer 2.9 billion euros to the state pension reserve fund for the first time in 13 years, Budget Minister Maria Jesus Montero told reporters on Tuesday. https://www.marketscreener.com/news/latest/Spain-to-transfer-2-9-billion-euros-to-state-pension-fund-Budget-minister-says--41926094/?utm_medium=RSS&utm_content=20221004", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/Spain-to-transfer-2-9-billion-euros-to-state-pension-fund-Budget-minister-says--41926094/?utm_medium=RSS&utm_content=20221004", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T15:09:00.080Z", "last_update": "2022-10-04T15:09:00.080Z"}}, {"model": "press.post", "pk": 52, "fields": {"title": "Six Donegal Ladies on All Star nominations list", "body": "This years nominations for the TG4 Ladies Football All Stars have been released with six players from Donegal on the shortlist. In the full back line, theres Evelyn McGinley and Tanya Kennedy, Nicole McLaughlin in the half back line, County Captain Niamh McLaughlin is named among the midfielders, Niamh Hegarty is included in the half … Six Donegal Ladies on All Star nominations list Read More »The post Six Donegal Ladies on All Star nominations list appeared first on Highland Radio - Latest Donegal News and Sport.", "image_link": null, "word_cloud_link": null, "source_link": "https://highlandradio.com/2022/10/04/six-donegal-ladies-on-all-star-nominations-list/", "source_label": "Highland Radio", "status": "PUBLISHED", "author": 29, "category": 2, "creation_date": "2022-10-04T15:09:01.558Z", "last_update": "2022-10-04T15:09:01.558Z"}}, {"model": "press.post", "pk": 53, "fields": {"title": "Former Chicago Bears linebacker Khalil Mack sells Gold Coast condo for $7M", "body": "Former Chicago Bears linebacker Khalil Mack on Sept. 26 sold his 4,275- square-foot condominium in the building at 9 W. Walton Street in the Gold Coast for $6.9 million in an off-market transaction. At present, Chicago Bulls guard Zach LaVine rents a unit in the building, while Chicago Blackhawks star Patrick Kane owns a 25th- floor unit in the building that he...", "image_link": "https://www.denverpost.com/wp-content/uploads/2022/10/202210041038TMS_____MNGTRPUB_SPORTS-FORMER-CHICAGO-BEARS-LINEBACKER-KHALIL-MACK-1-TB5.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.denverpost.com/2022/10/04/former-chicago-bears-linebacker-khalil-mack-sells-gold-coast-condo-for-7m/", "source_label": "photos", "status": "PUBLISHED", "author": 25, "category": 2, "creation_date": "2022-10-04T15:09:01.587Z", "last_update": "2022-10-04T15:09:01.587Z"}}, {"model": "press.post", "pk": 54, "fields": {"title": "HSBC exploring sale of its ‘very strong’ Canadian business  ", "body": "HSBC says the review is in the early stages and no decisions have been made.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/20221004091056-16841f00c50296f37a6d594cac9f97889ed87819f1ba0b8fb570e8ebba716556.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9175059/hsbc-considering-canada-business-sale/", "source_label": "globalmontreal", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T15:09:01.615Z", "last_update": "2022-10-04T15:09:01.615Z"}}, {"model": "press.post", "pk": 55, "fields": {"title": "Country music icon Loretta Lynn dies aged 90", "body": "Lynn died at her home in Hurricane Hills, Tennessee on Tuesday.", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/04/loretta-lynn-dead-country-music-icon-dies-aged-90-17501563/", "source_label": "Metro", "status": "PUBLISHED", "author": 30, "category": 2, "creation_date": "2022-10-04T15:09:03.101Z", "last_update": "2022-10-04T15:09:03.101Z"}}, {"model": "press.post", "pk": 56, "fields": {"title": "State ends first quarter of fiscal year with $175 million surplus", "body": "The money pours in.The post State ends first quarter of fiscal year with $175 million surplus appeared first on Arkansas Times.", "image_link": null, "word_cloud_link": null, "source_link": "https://arktimes.com/arkansas-blog/2022/10/04/state-ends-first-quarter-of-fiscal-year-with-175-million-surplus", "source_label": "arktimes", "status": "PUBLISHED", "author": 31, "category": 2, "creation_date": "2022-10-04T15:09:04.570Z", "last_update": "2022-10-04T15:09:04.570Z"}}, {"model": "press.post", "pk": 57, "fields": {"title": "Vancouver home sales down 46% from last Sept., 10% from August: board", "body": "The B.C. board says sales in the region totalled 1,687 last month, down from 3,149 the September before and 1,870 in August.", "image_link": null, "word_cloud_link": null, "source_link": "https://vancouversun.com/business/real-estate/vancouver-home-sales-down-46-from-last-sept-10-from-august-board", "source_label": "vancouversun", "status": "PUBLISHED", "author": 32, "category": 2, "creation_date": "2022-10-04T15:09:06.036Z", "last_update": "2022-10-04T15:09:06.036Z"}}, {"model": "press.post", "pk": 58, "fields": {"title": "Joan Hotchkis, star of the ‘Odd Couple’ and ‘Legacy,’ dead at 95", "body": "Actress and playwright Joan Hotchkis has passed away at 95 due to congestive heart failure.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/Joan-Hotchkis-23.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/04/joan-hotchkis-odd-couple-and-legacy-star-dead-at-95/", "source_label": "Post", "status": "PUBLISHED", "author": 33, "category": 2, "creation_date": "2022-10-04T15:09:07.517Z", "last_update": "2022-10-04T15:09:07.517Z"}}, {"model": "press.post", "pk": 59, "fields": {"title": "Trudnica završila u španskom zatvoru, strahuje da će se tamo poroditi: \"Pakao\" zbog neplaćenih 420 evra kazne", "body": "Trudnica iz Velike Britanije, koja je zadržana na pasoškoj kontroli i zatvorena na početku svog odmora na Tenerifima, možda će biti primorana da se porodi u zatvoru.", "image_link": "https://xdn.tf.rs/2022/10/04/jamielee-fielding-1.jpg?ver=022633", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/vesti/svet/3565322-trudnica-zavrsila-u-spanskom-zatvoru-strahuje-da-ce-se-tamo-poroditi-pakao-zbog-neplacenih-420-evra-kazne", "source_label": "Telegraf", "status": "PUBLISHED", "author": 34, "category": 2, "creation_date": "2022-10-04T15:09:08.979Z", "last_update": "2022-10-04T15:09:08.979Z"}}, {"model": "press.post", "pk": 60, "fields": {"title": "Wiele osób z Ólafsfjörður szuka pomocy z powodu traumy", "body": "Z powodu morderstwa, które miało miejsce w Ólafsfjörður, wiele osób skorzystało z opieki pourazowej Kościoła i Czerwonego Krzyża.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.visir.is/g/20222319631d/wiele-osob-z-olafsfjordur-szuka-pomocy-z-powodu-traumy", "source_label": "Visir", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T15:09:09.010Z", "last_update": "2022-10-04T15:09:09.010Z"}}, {"model": "press.post", "pk": 61, "fields": {"title": "Four Keys To Sustainable Growth For Your Small Business", "body": "Growth is a priority, of course, but what matters is that the growth be smart and sustainable.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/633c44d5ca525718b0b3ab3f/0x0.jpg?width=960", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/forbesbooksauthors/2022/10/04/four-keys-to-sustainable-growth-for-your-small-business/", "source_label": "Forbes", "status": "PUBLISHED", "author": 35, "category": 2, "creation_date": "2022-10-04T15:09:10.491Z", "last_update": "2022-10-04T15:09:10.491Z"}}, {"model": "press.post", "pk": 62, "fields": {"title": "National Highways officially switches over to autumn and winter operations", "body": "Autumn and winter operations at National Highways officially got underway at the weekend (Sat Oct 1) – to help keep motorists moving safely on our roads – whatever adverse weather occurs over the coming months.", "image_link": "https://www.biggleswadetoday.co.uk/webimg/b25lY21zOjA5ODJjOWZhLTVjMzQtNGVhZC1hYzlhLWIwMTM4ODhjMzNiZDpjMWFlZDljNi02NTdmLTQ0NGMtYTllNy1jNTA2NjVmODZmMWM=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.biggleswadetoday.co.uk/lifestyle/travel/national-highways-officially-switches-over-to-autumn-and-winter-operations-3867020", "source_label": "biggleswadetoday", "status": "PUBLISHED", "author": 36, "category": 2, "creation_date": "2022-10-04T15:09:11.953Z", "last_update": "2022-10-04T15:09:11.953Z"}}, {"model": "press.post", "pk": 63, "fields": {"title": "Two of George Floyd’s Killers Head to Their New Home: Federal Prison", "body": "Two former Minneapolis officers, J. Alexander Kueng and Tou Thao, are to begin serving their federal sentence for violating George Floyd’s civil rights in his murder back in 2020, according to The Associated Press. Their federal charges are in addition to their state charges of aiding and abetting Derek Chauvin in the…Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.theroot.com/two-of-george-floyd-s-killers-head-to-their-new-home-f-1849613690", "source_label": "theroot", "status": "PUBLISHED", "author": 37, "category": 2, "creation_date": "2022-10-04T15:09:13.424Z", "last_update": "2022-10-04T15:09:13.424Z"}}, {"model": "press.post", "pk": 64, "fields": {"title": "TSX rallies to near two-week high as rate hike worries ebb", "body": "(marketscreener.com) Canada's main stock index surged in abroad-based rally on Tuesday, led by rate-sensitive technologyand energy stocks, as a pause in bond yields increased appetitefor riskier equities after a selloff in the last quarter. At 10:05 a.m. ET , the Toronto Stock Exchange'sS&P/TSX composite index was up 493.93 points, or2.62%, at...https://www.marketscreener.com/news/latest/TSX-rallies-to-near-two-week-high-as-rate-hike-worries-ebb--41926111/?utm_medium=RSS&utm_content=20221004", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/TSX-rallies-to-near-two-week-high-as-rate-hike-worries-ebb--41926111/?utm_medium=RSS&utm_content=20221004", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T15:09:13.454Z", "last_update": "2022-10-04T15:09:13.454Z"}}, {"model": "press.post", "pk": 65, "fields": {"title": "Traffic alert: Heavy congestion after 'vehicle incident' on Highway 1 in Coquitlam", "body": "The left and centre lanes heading westbound were closed for about an hour.", "image_link": null, "word_cloud_link": null, "source_link": "https://vancouversun.com/news/traffic-alert-heavy-congestion-after-vehicle-incident-highway-1-coquitlam", "source_label": "vancouversun", "status": "PUBLISHED", "author": 38, "category": 2, "creation_date": "2022-10-04T15:09:14.926Z", "last_update": "2022-10-04T15:09:14.926Z"}}, {"model": "press.post", "pk": 66, "fields": {"title": "CCI approves amalgamation of Zee Entertainment Enterprises Limited (ZEE) and Bangla Entertainment Private Limited (BEPL) with Culver Max Entertainment Private Limited (CME), with certain modifications", "body": "New Delhi : The Competition Commission of India (CCI) approves amalgamation of Zee Entertainment Enterprises Limited (ZEE) and Bangla Entertainment Private Limited (BEPL) with Culver Max Entertainment Private Limited (CME), with certain modifications. The proposed combination relates to (i) amalgamation of each of ZEE and BEPL with and into CME; and (ii) preferential allotment of […]", "image_link": null, "word_cloud_link": null, "source_link": "https://orissadiary.com/cci-approves-amalgamation-of-zee-entertainment-enterprises-limited-zee-and-bangla-entertainment-private-limited-bepl-with-culver-max-entertainment-private-limited-cme-with-certain-modification/", "source_label": "orissadiary", "status": "PUBLISHED", "author": 39, "category": 2, "creation_date": "2022-10-04T15:09:16.411Z", "last_update": "2022-10-04T15:09:16.411Z"}}, {"model": "press.post", "pk": 67, "fields": {"title": "The 22 Best Hip-Hop Acts of the ’80s—From The Beastie Boys and Ice-T to Run DMC, and LL Cool J", "body": "Hip-hop music began in the 1970s. But that was its most rudimentary stages, in the parks of the Boogie Down Bronx in New York City. Slowly, the genre, which has since taken over the world as the most dominant art form, began to spread its wings to other Big Apple boroughs and beyond. Today, rap […]The post The 22 Best Hip-Hop Acts of the ’80s—From The Beastie Boys and Ice-T to Run DMC, and LL Cool J appeared first on American Songwriter.", "image_link": null, "word_cloud_link": null, "source_link": "https://americansongwriter.com/the-22-best-hip-hop-acts-of-the-80s-from-the-beastie-boys-and-ice-t-to-run-dmc-and-ll-cool-j/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 40, "category": 2, "creation_date": "2022-10-04T15:09:17.870Z", "last_update": "2022-10-04T15:09:17.870Z"}}, {"model": "press.post", "pk": 68, "fields": {"title": "Unions vow to bring Transnet to a standstill over wage row", "body": "Transnet says it can’t afford to pay employees moreThe post Unions vow to bring Transnet to a standstill over wage row appeared first on The Mail & Guardian.", "image_link": null, "word_cloud_link": null, "source_link": "https://mg.co.za/news/2022-10-04-unions-vow-to-bring-transnet-to-a-standstill-over-wage-row/", "source_label": "Mail & Guardian", "status": "PUBLISHED", "author": 41, "category": 2, "creation_date": "2022-10-04T15:09:19.351Z", "last_update": "2022-10-04T15:09:19.351Z"}}, {"model": "press.post", "pk": 69, "fields": {"title": "Facts On Hurricanes And Climate Are Blowing In The Wind", "body": "Yes, we need to find smart climate solutions. But if our goal is to protect lives and property from hurricanes, better infrastructure, fed by improved technology and wealth, does more than cutting carbon emissions.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/633c44c9b344964b5a8286fd/0x0.jpg?width=960&precrop=1064%2C599%2Cx0%2Cy24", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/bjornlomborg/2022/10/04/facts-on-hurricanes-and-climate-are-blowing-in-the-wind/", "source_label": "Forbes", "status": "PUBLISHED", "author": 42, "category": 2, "creation_date": "2022-10-04T15:09:20.852Z", "last_update": "2022-10-04T15:09:20.852Z"}}, {"model": "press.post", "pk": 70, "fields": {"title": "Luận án tiến sĩ về áo ngực gây xôn xao: Đại diện ĐH Bách khoa Hà Nội lý giải", "body": "Đại diện trường Đại học Bách khoa Hà Nội lên tiếng trước nhiều ý kiến trái chiều liên quan luận án tiến sĩ nghiên cứu áo ngực phụ nữ.", "image_link": null, "word_cloud_link": null, "source_link": "https://kenh14.vn/luan-an-tien-si-ve-ao-nguc-gay-xon-xao-dai-dien-dh-bach-khoa-ha-noi-ly-giai-20221004154451543.chn", "source_label": "Kenh 14", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T15:09:20.882Z", "last_update": "2022-10-04T15:09:20.882Z"}}, {"model": "press.post", "pk": 71, "fields": {"title": "International Vodka Day 2022: The Bottle Club reveals top 8 vodkas to sip- including Ciroc, Crystal Head, Elf", "body": "Vodka is arguably the most versatile spirit - perfect for a plethora of cocktails. Here are seven drops you should add to your liquor cabinet for International Vodka Day", "image_link": "https://www.sussexexpress.co.uk/jpim-static/image/2022/10/04/09/Collage%20Maker-04-Oct-2022-09.11-AM.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.sussexexpress.co.uk/recommended/international-vodka-day-2022-top-seven-3865971", "source_label": "hastingsobserver", "status": "PUBLISHED", "author": 43, "category": 2, "creation_date": "2022-10-04T15:09:22.347Z", "last_update": "2022-10-04T15:09:22.347Z"}}, {"model": "press.post", "pk": 72, "fields": {"title": "WhaleRoom (WHL) Price Tops $1.41 on Major Exchanges", "body": "WhaleRoom (WHL) traded up 19.2% against the U.S. dollar during the 1-day period ending at 11:00 AM ET on October 4th. WhaleRoom has a market capitalization of $1.41 million and approximately $14,146.00 worth of WhaleRoom was traded on exchanges in the last 24 hours. Over the last week, WhaleRoom has traded up 23.6% against the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/whaleroom-whl-price-tops-1-41-on-major-exchanges.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:51.169Z", "last_update": "2022-10-04T16:00:51.169Z"}}, {"model": "press.post", "pk": 73, "fields": {"title": "Sheesha Finance [BEP20] Hits 1-Day Volume of $705,571.00 (SHEESHA)", "body": "Sheesha Finance [BEP20] (SHEESHA) traded up 5.8% against the dollar during the one day period ending at 11:00 AM ET on October 4th. One Sheesha Finance [BEP20] coin can now be bought for $19.35 or 0.00096293 BTC on popular cryptocurrency exchanges. In the last seven days, Sheesha Finance [BEP20] has traded 8.4% higher against the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/sheesha-finance-bep20-hits-1-day-volume-of-705571-00-sheesha.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:51.265Z", "last_update": "2022-10-04T16:00:51.265Z"}}, {"model": "press.post", "pk": 74, "fields": {"title": "Sanshu Inu (SANSHU) Trading 24.3% Lower Over Last 7 Days", "body": "Sanshu Inu (SANSHU) traded down 13.1% against the dollar during the one day period ending at 11:00 AM Eastern on October 4th. One Sanshu Inu coin can now be purchased for about $0.0000 or 0.00000000 BTC on major exchanges. Sanshu Inu has a total market cap of $3.24 million and $11,002.00 worth of Sanshu Inu […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/sanshu-inu-sanshu-trading-24-3-lower-over-last-7-days.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:51.348Z", "last_update": "2022-10-04T16:00:51.348Z"}}, {"model": "press.post", "pk": 75, "fields": {"title": "Carbon Coin 24 Hour Volume Hits $10,009.00 (CXRBN)", "body": "Carbon Coin (CXRBN) traded 0.1% lower against the US dollar during the twenty-four hour period ending at 11:00 AM ET on October 4th. In the last seven days, Carbon Coin has traded down 0.1% against the US dollar. One Carbon Coin coin can now be purchased for $0.40 or 0.00002063 BTC on major exchanges. Carbon […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/carbon-coin-24-hour-volume-hits-10009-00-cxrbn.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:51.392Z", "last_update": "2022-10-04T16:00:51.392Z"}}, {"model": "press.post", "pk": 76, "fields": {"title": "BitSong Hits Self Reported Market Capitalization of $3.69 Million (BTSG)", "body": "BitSong (BTSG) traded 6.5% higher against the U.S. dollar during the 1-day period ending at 11:00 AM ET on October 4th. Over the last week, BitSong has traded 11.8% lower against the U.S. dollar. BitSong has a total market capitalization of $3.69 million and approximately $10,557.00 worth of BitSong was traded on exchanges in the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/bitsong-hits-self-reported-market-capitalization-of-3-69-million-btsg.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:51.448Z", "last_update": "2022-10-04T16:00:51.448Z"}}, {"model": "press.post", "pk": 77, "fields": {"title": "Treecle (TRCL) Tops 24-Hour Trading Volume of $26,990.00", "body": "Treecle (TRCL) traded down 1.5% against the dollar during the 1-day period ending at 11:00 AM ET on October 4th. One Treecle coin can currently be purchased for $0.0021 or 0.00000010 BTC on popular cryptocurrency exchanges. Over the last week, Treecle has traded 4.8% lower against the dollar. Treecle has a market capitalization of $1.41 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/treecle-trcl-tops-24-hour-trading-volume-of-26990-00-2.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:51.499Z", "last_update": "2022-10-04T16:00:51.499Z"}}, {"model": "press.post", "pk": 78, "fields": {"title": "MobiFi (MoFi) Price Hits $0.0033", "body": "MobiFi (MoFi) traded down 1.6% against the U.S. dollar during the 1 day period ending at 11:00 AM E.T. on October 4th. MobiFi has a market cap of $495,811.00 and approximately $10,115.00 worth of MobiFi was traded on exchanges in the last day. One MobiFi coin can now be purchased for about $0.0033 or 0.00000016 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/mobifi-mofi-price-hits-0-0033.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:51.576Z", "last_update": "2022-10-04T16:00:51.576Z"}}, {"model": "press.post", "pk": 79, "fields": {"title": "Perspective Of An Average Steelers Fan: Times are A-Changin’", "body": "GAME PRELUDE Back in the USA and attended the Steelers game with Rich “Sugar Bear” Frankenfield. The day before the game we caught a rugby match at the Pittsburgh Harlequins Founders Field in Cheswick. Our alma mater California University now part of the Penn West conglomerate played Saint Vincent’s College. If your ever out by […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/10/perspective-of-an-average-steelers-fan-get-it-together-2/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 44, "category": 2, "creation_date": "2022-10-04T16:00:53.362Z", "last_update": "2022-10-04T16:00:53.362Z"}}, {"model": "press.post", "pk": 80, "fields": {"title": "Metaverse Dualchain Network Architecture Trading 0.2% Lower This Week (DNA)", "body": "Metaverse Dualchain Network Architecture (DNA) traded 0.9% lower against the dollar during the 1 day period ending at 11:00 AM E.T. on October 4th. During the last week, Metaverse Dualchain Network Architecture has traded down 0.2% against the dollar. One Metaverse Dualchain Network Architecture coin can currently be purchased for about $0.0001 or 0.00000000 BTC […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/metaverse-dualchain-network-architecture-trading-0-2-lower-this-week-dna.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:53.469Z", "last_update": "2022-10-04T16:00:53.469Z"}}, {"model": "press.post", "pk": 81, "fields": {"title": "ZYX (ZYX) Trading 1.8% Higher This Week", "body": "ZYX (ZYX) Trading 1.8% Higher This Week", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/zyx-zyx-trading-1-8-higher-this-week.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:53.609Z", "last_update": "2022-10-04T16:00:53.609Z"}}, {"model": "press.post", "pk": 82, "fields": {"title": "Polylastic (POLX) Self Reported Market Capitalization Tops $7.70 Million", "body": "Polylastic (POLX) Self Reported Market Capitalization Tops $7.70 Million", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/polylastic-polx-self-reported-market-capitalization-tops-7-70-million.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:53.717Z", "last_update": "2022-10-04T16:00:53.717Z"}}, {"model": "press.post", "pk": 83, "fields": {"title": "Vulkania Hits Self Reported Market Cap of $710,250.12 (VLK)", "body": "Vulkania Hits Self Reported Market Cap of $710,250.12 (VLK)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/vulkania-hits-self-reported-market-cap-of-710250-12-vlk.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:53.845Z", "last_update": "2022-10-04T16:00:53.845Z"}}, {"model": "press.post", "pk": 84, "fields": {"title": "IRON Titanium Token 24 Hour Trading Volume Reaches $154,889.00 (TITAN)", "body": "IRON Titanium Token 24 Hour Trading Volume Reaches $154,889.00 (TITAN)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/iron-titanium-token-24-hour-trading-volume-reaches-154889-00-titan.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:53.920Z", "last_update": "2022-10-04T16:00:53.920Z"}}, {"model": "press.post", "pk": 85, "fields": {"title": "Mover (MOVE) Trading 17.8% Lower Over Last 7 Days", "body": "Mover (MOVE) Trading 17.8% Lower Over Last 7 Days", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/mover-move-trading-17-8-lower-over-last-7-days.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:54.009Z", "last_update": "2022-10-04T16:00:54.009Z"}}, {"model": "press.post", "pk": 86, "fields": {"title": "Universe.XYZ Price Hits $0.0109 on Top Exchanges (XYZ)", "body": "Universe.XYZ Price Hits $0.0109 on Top Exchanges (XYZ)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/universe-xyz-price-hits-0-0109-on-top-exchanges-xyz.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:54.125Z", "last_update": "2022-10-04T16:00:54.126Z"}}, {"model": "press.post", "pk": 87, "fields": {"title": "Liti Capital Price Tops $0.0051 on Top Exchanges (WLITI)", "body": "Liti Capital Price Tops $0.0051 on Top Exchanges (WLITI)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/liti-capital-price-tops-0-0051-on-top-exchanges-wliti.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:54.222Z", "last_update": "2022-10-04T16:00:54.222Z"}}, {"model": "press.post", "pk": 88, "fields": {"title": "Minds Reaches One Day Volume of $28,258.00 (MINDS)", "body": "Minds Reaches One Day Volume of $28,258.00 (MINDS)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/minds-reaches-one-day-volume-of-28258-00-minds.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:54.305Z", "last_update": "2022-10-04T16:00:54.305Z"}}, {"model": "press.post", "pk": 89, "fields": {"title": "Privatix (PRIX) Market Capitalization Achieves $37,315.60", "body": "Privatix (PRIX) Market Capitalization Achieves $37,315.60", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/privatix-prix-market-capitalization-achieves-37315-60.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:54.440Z", "last_update": "2022-10-04T16:00:54.440Z"}}, {"model": "press.post", "pk": 90, "fields": {"title": "Pastel One Day Volume Reaches $5.04 Million (PSL)", "body": "Pastel One Day Volume Reaches $5.04 Million (PSL)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/04/pastel-one-day-volume-reaches-5-04-million-psl.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-04T16:00:54.554Z", "last_update": "2022-10-04T16:00:54.554Z"}}, {"model": "press.post", "pk": 91, "fields": {"title": "Cardi B Calls City Girls’ JT A “Lapdog” + Sparks Nasty Twitter War", "body": "It was an eventful night as fans witnessed superstar rappers JT and Cardi B go at each other’s throats on Twitter. The “I Like It” artist called the City Girl a “lapdog,” which appeared to spark an all-out Twitter war. Twitter has been in a frenzy since a public disagreement between rappers Cardi B and […]The post Cardi B Calls City Girls’ JT A “Lapdog” + Sparks Nasty Twitter War appeared first on SOHH.com.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sohh.com/cardi-b-calls-city-girls-jt-a-lapdog-sparks-nasty-twitter-war/", "source_label": "sohh", "status": "PUBLISHED", "author": 45, "category": 2, "creation_date": "2022-10-04T16:00:56.504Z", "last_update": "2022-10-04T16:00:56.504Z"}}, {"model": "press.post", "pk": 92, "fields": {"title": "Elizabeth Hurley is all smiles in a plunging pink pantsuit in NYC", "body": "Elizabeth Hurley stood out in a bright pink sequin pantsuit as she braved the New York weather. As a long-standing ambassador for Estée Lauder’s Breast Cancer Campaign, she wore the eye-catching outfit to help switch on a pink lighting display at the top of the Empire State Building to signify", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/celebrity/elizabeth-hurley-is-all-smiles-in-a-plunging-pink-pantsuit-in-nyc/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 46, "category": 2, "creation_date": "2022-10-04T16:00:58.278Z", "last_update": "2022-10-04T16:00:58.278Z"}}, {"model": "press.post", "pk": 93, "fields": {"title": "Modi, Zelenskyy discuss Ukraine conflict; PM says there can be 'no military solution'", "body": "Modi, Zelenskyy discuss Ukraine conflict; PM says there can be 'no military solution'", "image_link": null, "word_cloud_link": null, "source_link": "https://www.deccanchronicle.com/nation/current-affairs/041022/modi-zelenskyy-discuss-ukraine-conflict-pm-says-there-can-be-no-mil.html", "source_label": "deccanchronicle", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T16:00:58.333Z", "last_update": "2022-10-04T16:00:58.333Z"}}, {"model": "press.post", "pk": 94, "fields": {"title": "Cate Blanchett in 'Tár,' Constance Wu's New Memoir, 'Koshersoul' Cookbook, Margo Price's 'Maybe We'll Make It'", "body": "In the latest film from writer and director Todd Field, Cate Blanchett stars as Lydia Tár, a pioneering and domineering conductor at the top of her game, an EGOT winner and the head of a major Berlin orchestra. But as allegations of misconduct follow her, Lydia struggles to keep a hold of her job, her power, her family, and perhaps even her sanity. Todd Field and Cate Blanchett join us discuss \"Tár,\" in theaters October 7th.Constance Wu is known and beloved for her roles in \"Crazy Rich Asians\" and \"Fresh Off the Boat.\" But until now, she has not revealed some of the more challenging...", "image_link": null, "word_cloud_link": null, "source_link": "http://www.wnyc.org/story/all-of-it-2022-10-04/", "source_label": "wnyc", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T16:00:58.433Z", "last_update": "2022-10-04T16:00:58.433Z"}}, {"model": "press.post", "pk": 95, "fields": {"title": "Country Music Queen Loretta Lynn Dead at 90", "body": "Country Music Queen Loretta Lynn Dead at 90", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pastemagazine.com/music/loretta-lynn-dead-at-90/", "source_label": "pastemagazine", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T16:00:58.496Z", "last_update": "2022-10-04T16:00:58.496Z"}}, {"model": "press.post", "pk": 96, "fields": {"title": "The Best New YA Books of October 2022", "body": "The Best New YA Books of October 2022", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pastemagazine.com/books/ya-books/best-new-young-adult-books-october-2022/", "source_label": "pastemagazine", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T16:00:58.546Z", "last_update": "2022-10-04T16:00:58.546Z"}}, {"model": "press.post", "pk": 97, "fields": {"title": "Researchers find numerical ratings of human feelings have value", "body": "A pair of researchers at the University of Oxford's Wellbeing Research Center, reports that numerical ratings people use to measure their feelings have value. In their paper published in Proceedings of the National Academy of Sciences, Caspar Kaiser and Andrew Oswald describe their analysis of datasets from people in several countries to compare how they rated their feelings with actions they took.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/researchers-find-numer.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-10-numerical-human.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T16:00:58.653Z", "last_update": "2022-10-04T16:00:58.653Z"}}, {"model": "press.post", "pk": 98, "fields": {"title": "A deadly disease has driven seven Australian frog species to extinction. But this endangered frog is fighting back", "body": "Frogs are among the world's most imperiled animals, and much of the blame lies with a deadly frog disease called the amphibian chytrid fungus. The chytrid fungus has caused populations of over 500 frog species worldwide to plummet, and rendered seven Australian frogs extinct.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/a-deadly-disease-has-d.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-10-deadly-disease-driven-australian-frog.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-04T16:00:58.740Z", "last_update": "2022-10-04T16:00:58.741Z"}}, {"model": "press.post", "pk": 99, "fields": {"title": "Leeds train strikes: Workers warned not to travel as Wednesday industrial action to decimate rail services", "body": "Workers in Leeds and across the UK have been advised to find alternative transport to work tomorrow with the latest round of strikes to cause chaos.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOjYzZDYzMjIyLWNjZTMtNGU4Yy1hMjE4LWI1ODcyMzYxYThhNToxZDM2OTQzMC03NDVmLTQ0OWYtYmYxNS1mZDk5NDhmZDQ0MzU=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/transport/leeds-train-strikes-workers-warned-not-to-travel-as-wednesday-industrial-action-to-decimate-rail-services-3867003", "source_label": "crossgatestoday", "status": "PUBLISHED", "author": 47, "category": 2, "creation_date": "2022-10-04T16:01:00.558Z", "last_update": "2022-10-04T16:01:00.558Z"}}, {"model": "press.post", "pk": 100, "fields": {"title": "Christmas in Leeds: 'Ice Cube @Christmas' ice skating rink set to return to Millennium Square", "body": "Millennium Square’s ice skating rink is set to return to Leeds for the festive season.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOjEzMjdmNjQzLWE3ZDMtNDBkMS1hOTJjLTYyNmI1YTFmZDc5MDpkMWUwODI5NC1jZTliLTQxZDAtOWY3MC05ZDc0NWI4NDI1NTY=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/lifestyle/christmas/christmas-in-leeds-ice-cube-christmas-ice-skating-rink-set-to-return-to-millennium-square-3866864", "source_label": "crossgatestoday", "status": "PUBLISHED", "author": 48, "category": 2, "creation_date": "2022-10-04T16:01:02.799Z", "last_update": "2022-10-04T16:01:02.799Z"}}, {"model": "press.post", "pk": 101, "fields": {"title": "The Pantry Leeds: New Oakwood cafe and 'haven full of local suppliers' set to open on Roundhay Road", "body": "A new cafe and grocery shop is set to open in north Leeds.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmQ5ZjMxNjg4LWZiNDYtNDdlNi1iOTNlLTQwNjUxMDU2YjQ2Njo5NDUxZGQ5OC1jZmMxLTRhZjAtYTRiZi02YjEwZDhkODNhMTc=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/business/consumer/the-pantry-leeds-new-oakwood-cafe-and-haven-full-of-local-suppliers-set-to-open-on-roundhay-road-3866683", "source_label": "crossgatestoday", "status": "PUBLISHED", "author": 49, "category": 2, "creation_date": "2022-10-04T16:01:05.121Z", "last_update": "2022-10-04T16:01:05.121Z"}}, {"model": "press.post", "pk": 102, "fields": {"title": "Watch live: NASA, SpaceX launch Crew 5 mission to International Space Station", "body": "NASA and SpaceX are launching the Crew 5 mission to the International Space Station at noon EDT on Wednesday from Cape Canaveral Space Force Station in Florida. Watch live.", "image_link": "https://cdnph.upi.com/ph/st/th/3091664981535/2022/upi/99059916be2236af585c16d2f3ff53cb/v1.5/Watch-live-NASA-SpaceX-launch-Crew-5-mission-to-International-Space-Station.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Science_News/2022/10/05/crew-5-nasa-spacex-launch/3091664981535/", "source_label": "upiasia", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-05T16:00:46.279Z", "last_update": "2022-10-05T16:00:46.279Z"}}, {"model": "press.post", "pk": 103, "fields": {"title": "Iwacu TV journalists acquitted", "body": "The High Court has acquitted three journalists who run a YouTube channel dubbed ‘Iwacu TV' who have been facing charges of spreading false information with intention to create hostile international opinion against Rwanda, publishing unoriginal statements or pictures, and inciting public insurrection. -News/ HomeHighlights1, MainSlideNews", "image_link": null, "word_cloud_link": null, "source_link": "https://en.igihe.com/news/article/iwacu-tv-journalists-acquitted", "source_label": "IGIHE", "status": "PUBLISHED", "author": 50, "category": 2, "creation_date": "2022-10-05T16:00:47.955Z", "last_update": "2022-10-05T16:00:47.955Z"}}, {"model": "press.post", "pk": 104, "fields": {"title": "2022 Toyota Yaris review: hybrid supermini brings high-tech specification and impressive economy", "body": "Toyota’s Fiesta rival justifies a higher starting price with “big car” technology, strong looks and a smart and efficent hybrid motor", "image_link": "https://www.portsmouth.co.uk/jpim-static/image/2022/10/05/16/mattmot%20Yaris-GR_034-scaled.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.portsmouth.co.uk/lifestyle/cars/2022-toyota-yaris-hybrid-review-price-specification-economy-rivals-3865950", "source_label": "portsmouth", "status": "PUBLISHED", "author": 51, "category": 2, "creation_date": "2022-10-05T16:00:49.568Z", "last_update": "2022-10-05T16:00:49.568Z"}}, {"model": "press.post", "pk": 105, "fields": {"title": "Brexit Bill proves our only solution is rejoining EU when the time is right", "body": "The Brexit bonfire does nothing to help people through the crises we face right now.", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/05/tory-brexit-bill-proves-that-our-only-solution-is-rejoining-the-eu-17509255/", "source_label": "Metro", "status": "PUBLISHED", "author": 52, "category": 2, "creation_date": "2022-10-05T16:00:51.566Z", "last_update": "2022-10-05T16:00:51.566Z"}}, {"model": "press.post", "pk": 106, "fields": {"title": "Rabbit Finance Reaches Self Reported Market Capitalization of $1.48 Million (RABBIT)", "body": "Rabbit Finance (RABBIT) traded up 1.6% against the U.S. dollar during the 1 day period ending at 11:00 AM ET on October 5th. One Rabbit Finance coin can now be bought for $0.0083 or 0.00000042 BTC on popular cryptocurrency exchanges. During the last week, Rabbit Finance has traded down 2.3% against the U.S. dollar. Rabbit […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/05/rabbit-finance-reaches-self-reported-market-capitalization-of-1-48-million-rabbit.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-05T16:00:51.937Z", "last_update": "2022-10-05T16:00:51.937Z"}}, {"model": "press.post", "pk": 107, "fields": {"title": "Ethermon (EMON) Trading 24.1% Lower This Week", "body": "Ethermon (EMON) traded down 7.6% against the dollar during the twenty-four hour period ending at 11:00 AM Eastern on October 5th. One Ethermon coin can now be bought for approximately $0.0034 or 0.00000017 BTC on popular cryptocurrency exchanges. During the last week, Ethermon has traded 24.1% lower against the dollar. Ethermon has a market capitalization […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/05/ethermon-emon-trading-24-1-lower-this-week.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-05T16:00:52.011Z", "last_update": "2022-10-05T16:00:52.011Z"}}, {"model": "press.post", "pk": 108, "fields": {"title": "WeStarter Hits One Day Trading Volume of $81,891.00 (WAR)", "body": "WeStarter (WAR) traded 0.2% lower against the dollar during the 1 day period ending at 11:00 AM E.T. on October 5th. In the last week, WeStarter has traded 0% higher against the dollar. WeStarter has a market capitalization of $1.30 million and approximately $81,891.00 worth of WeStarter was traded on exchanges in the last 24 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/05/westarter-hits-one-day-trading-volume-of-81891-00-war.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-05T16:00:52.100Z", "last_update": "2022-10-05T16:00:52.100Z"}}, {"model": "press.post", "pk": 109, "fields": {"title": "BLOCKMAX Trading Up 4.2% Over Last Week (OCB)", "body": "BLOCKMAX (OCB) traded up 0.3% against the U.S. dollar during the 1-day period ending at 11:00 AM ET on October 5th. One BLOCKMAX coin can currently be bought for approximately $0.0187 or 0.00000094 BTC on major cryptocurrency exchanges. During the last seven days, BLOCKMAX has traded up 4.2% against the U.S. dollar. BLOCKMAX has a […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/05/blockmax-trading-up-4-2-over-last-week-ocb.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-05T16:00:52.189Z", "last_update": "2022-10-05T16:00:52.189Z"}}, {"model": "press.post", "pk": 110, "fields": {"title": "UltimoGG (ULTGG) Price Tops $0.0000 on Exchanges", "body": "UltimoGG (ULTGG) traded down 1.3% against the U.S. dollar during the 24 hour period ending at 11:00 AM ET on October 5th. One UltimoGG coin can now be purchased for $0.0000 or 0.00000000 BTC on cryptocurrency exchanges. Over the last seven days, UltimoGG has traded down 58.4% against the U.S. dollar. UltimoGG has a total […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/05/ultimogg-ultgg-price-tops-0-0000-on-exchanges.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-05T16:00:52.281Z", "last_update": "2022-10-05T16:00:52.281Z"}}, {"model": "press.post", "pk": 111, "fields": {"title": "Lotto Max draw turns up big winners in Ontario", "body": "There are four big winning tickets in Ontario, though Lotto Max’s whopping $70 million prize is still up for the taking.", "image_link": "https://www.cp24.com/polopoly_fs/1.6096873.1664978338!/httpImage/image.jpg_gen/derivatives/landscape_300/image.jpg", "word_cloud_link": null, "source_link": "https://www.cp24.com/news/lotto-max-draw-turns-up-big-winners-in-ontario-1.6097018", "source_label": "CP24", "status": "PUBLISHED", "author": 53, "category": 2, "creation_date": "2022-10-05T16:00:54.037Z", "last_update": "2022-10-05T16:00:54.037Z"}}, {"model": "press.post", "pk": 112, "fields": {"title": "PicaArtMoney Reaches 24 Hour Trading Volume of $52,332.00 (PICA)", "body": "PicaArtMoney (PICA) traded up 12.1% against the US dollar during the 1-day period ending at 11:00 AM ET on October 5th. One PicaArtMoney coin can currently be purchased for about $0.0040 or 0.00000020 BTC on major cryptocurrency exchanges. PicaArtMoney has a total market cap of $1.78 million and approximately $52,332.00 worth of PicaArtMoney was traded […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/05/picaartmoney-reaches-24-hour-trading-volume-of-52332-00-pica.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-05T16:00:54.088Z", "last_update": "2022-10-05T16:00:54.088Z"}}, {"model": "press.post", "pk": 113, "fields": {"title": "SumSwap Hits 1-Day Volume of $65,241.00 (SUM)", "body": "SumSwap (SUM) traded down 0.3% against the dollar during the 1-day period ending at 11:00 AM E.T. on October 5th. One SumSwap coin can currently be purchased for approximately $0.0202 or 0.00000101 BTC on major exchanges. SumSwap has a market capitalization of $1.62 million and approximately $65,241.00 worth of SumSwap was traded on exchanges in […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/05/sumswap-hits-1-day-volume-of-65241-00-sum.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-05T16:00:54.149Z", "last_update": "2022-10-05T16:00:54.149Z"}}, {"model": "press.post", "pk": 114, "fields": {"title": "OPEC Drops The Bombshell", "body": "OPEC Drops The Bombshell", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4544824-opec-drops-bombshell-production-cut?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-05T16:00:54.228Z", "last_update": "2022-10-05T16:00:54.228Z"}}, {"model": "press.post", "pk": 115, "fields": {"title": "Barça-Messi, el culebrón que viene", "body": "Imagen principal: El futuro de Leo Messi, que tiene contrato con el Paris Saint Germain hasta el 30 de junio de 2023, vuelve a estar en el centro de la diana y la posibilidad de que pueda volver al Barcelona para cerrar el círculo es una opción que resuena en el entorno azulgrana, pese a la prudencia con la que se trata este asunto desde la directiva de Joan Laporta.", "image_link": null, "word_cloud_link": null, "source_link": "http://cubasi.cu/en/node/257920", "source_label": "CubaSi.cu", "status": "PUBLISHED", "author": 54, "category": 2, "creation_date": "2022-10-05T16:00:55.988Z", "last_update": "2022-10-05T16:00:55.988Z"}}, {"model": "press.post", "pk": 116, "fields": {"title": "News24.com | Court thwarts bail request of six alleged illegal mining kingpins", "body": "A defence lawyer representing six alleged kingpins behind an illegal mining syndicate was dealt a heavy blow in court when his request to have his clients released on bail fell on deaf ears.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/SouthAfrica/News/court-thwarts-bail-request-of-six-alleged-illegal-mining-kingpins-20221005", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-05T16:00:56.033Z", "last_update": "2022-10-05T16:00:56.033Z"}}, {"model": "press.post", "pk": 117, "fields": {"title": "News24.com | Cop testifying in Pete Mihalik murder case accused of suffocating an accused", "body": "The policeman testifying in the trial of the three men accused of assassinating lawyer Pete Mihalik was accused of suffocating one of them during questioning.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/SouthAfrica/News/cop-testifying-in-pete-mihalik-murder-case-accused-of-suffocating-an-accused-20221005", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-05T16:00:56.085Z", "last_update": "2022-10-05T16:00:56.085Z"}}, {"model": "press.post", "pk": 118, "fields": {"title": "News24.com | Man, 21, allegedly rapes woman, 84 - and then falls asleep naked at crime scene", "body": "A 21-year-old KwaZulu-Natal man was arrested after he fell asleep soon after allegedly raping an 84-year-old woman.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/SouthAfrica/News/man-21-allegedly-rapes-woman-84-and-then-falls-asleep-naked-at-crime-scene-20221005", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-05T16:00:56.144Z", "last_update": "2022-10-05T16:00:56.144Z"}}, {"model": "press.post", "pk": 119, "fields": {"title": "Vallejo Police officer who killed Sean Monterrosa fired for policy violations", "body": "Vallejo Police Chief issued Jarrett Tonn a “Notice of Discipline” after a neutral, independent third-party investigation showed that Tonn “violated several department policies, including, but not exhaustive of use of deadly force.\"", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/10/MONTERROSA1.jpeg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/10/05/vallejo-police-department-fires-jarrett-tonn-for-policy-violations/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 55, "category": 2, "creation_date": "2022-10-05T16:00:57.844Z", "last_update": "2022-10-05T16:00:57.844Z"}}, {"model": "press.post", "pk": 120, "fields": {"title": "OPEC ignores Biden, announces cut in oil production", "body": "WND is now on Trump's Truth Social! Follow us @WNDNews By Jack McEvoy Daily Caller News Foundation OPEC+, which includes the 15 OPEC members and the consortium’s Russian-led allies, voted Wednesday to cut oil production by 2 million barrels per day even though the White House urged the group to pump more oil, according to…The post OPEC ignores Biden, announces cut in oil production appeared first on WND.", "image_link": "http://www.wnd.com/wp-content/uploads/2012/09/barrels_of_oil.jpg", "word_cloud_link": null, "source_link": "https://www.wnd.com/2022/10/opec-ignores-biden-announces-cut-oil-production/", "source_label": "wnd", "status": "PUBLISHED", "author": 56, "category": 2, "creation_date": "2022-10-05T16:00:59.552Z", "last_update": "2022-10-05T16:00:59.552Z"}}, {"model": "press.post", "pk": 121, "fields": {"title": "How to Watch All The ‘Hellraiser’ Movies in Order Before the 2022 Film", "body": "You just can't keep Pinhead down.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/hellraiser-movies-in-order-to-watch.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/05/hellraiser-movies-in-order-to-watch/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-05T16:01:01.151Z", "last_update": "2022-10-05T16:01:01.151Z"}}, {"model": "press.post", "pk": 122, "fields": {"title": "Editorial: Antioch Mayor Lamar Thorpe’s intolerable misogynistic behavior", "body": "He must resign. Newly released report detailing sexual harassment, including groping, of subordinates is the final straw.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/08/EBT-L-TOPJOBS-0822-05.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/10/06/editorial-antioch-mayor-lamar-thorpes-intolerable-misogynistic-behavior/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 58, "category": 2, "creation_date": "2022-10-06T16:02:12.630Z", "last_update": "2022-10-06T16:02:12.630Z"}}, {"model": "press.post", "pk": 123, "fields": {"title": "Colorado baker who sparked SCOTUS case fights ruling on cake celebrating gender transition", "body": "In 2012, Colorado-based baker Jack Phillips was praised by far-right Christian fundamentalists after refusing to bake a wedding cake for a gay couple. And a decade later, the Christian Right is still rallying to Phillips’ defense — only this time, his legal battle involves a transgender woman who filed a discrimination lawsuit against him.According to Associated Press reporter Colleen Slevin, “The Colorado baker who won a partial Supreme Court victory after refusing on religious grounds to make a gay couple’s wedding cake a decade ago is challenging a separate ruling he violated the...", "image_link": "https://www.alternet.org/media-library/image.jpg?id=31874336&width=980", "word_cloud_link": null, "source_link": "https://www.alternet.org/2022/10/transgender/", "source_label": "alternet", "status": "PUBLISHED", "author": 59, "category": 2, "creation_date": "2022-10-06T16:02:14.610Z", "last_update": "2022-10-06T16:02:14.610Z"}}, {"model": "press.post", "pk": 124, "fields": {"title": "Charity Commission probes mosque where father of extremist fighters called for 'jihad by the sword'", "body": "Abubaker Deghayes was jailed for four years in April for inciting terrorism to a room full of 50 worshippers - including children - at Brighton Mosque and Muslim Community Centre.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/06/16/52794161-0-image-m-212_1665068656730.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11287807/Charity-Commission-probes-mosque-father-extremist-fighters-called-jihad-sword.html?ns_mchannel=rss&ito=1490&ns_campaign=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:02:14.728Z", "last_update": "2022-10-06T16:02:14.728Z"}}, {"model": "press.post", "pk": 125, "fields": {"title": "Messi: «El Mundial de Catar seguramente sea el último de mi carrera»", "body": "Imagen principal: El astro del fútbol, Lionel Messi, declaró este jueves que el Mundial de Catar 2022 será \"seguramente\" su última Copa del Mundo.", "image_link": null, "word_cloud_link": null, "source_link": "http://cubasi.cu/en/node/258163", "source_label": "CubaSi.cu", "status": "PUBLISHED", "author": 60, "category": 2, "creation_date": "2022-10-06T16:03:05.486Z", "last_update": "2022-10-06T16:03:05.486Z"}}, {"model": "press.post", "pk": 126, "fields": {"title": "Aaron Judge And The Psychology Of Betting On Oneself", "body": "The self-confidence that allowed the record-breaking slugger to turn down a huge pre-season contract offer provides an exceptional leadership lesson on the payoff that can come from recognition of, and reliance on, personal talent.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/633edcd2172e4ef3d4048d1d/0x0.jpg?width=960", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/michaelperegrine/2022/10/06/aaron-judge-and-the-psychology-of-betting-on-oneself/", "source_label": "Leadership", "status": "PUBLISHED", "author": 61, "category": 2, "creation_date": "2022-10-06T16:03:10.465Z", "last_update": "2022-10-06T16:03:10.465Z"}}, {"model": "press.post", "pk": 127, "fields": {"title": "Are Solar Stocks A Good Long-Term Investment? Yes, But Not For All", "body": "Are Solar Stocks A Good Long-Term Investment? Yes, But Not For All", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4545038-are-solar-stocks-good-long-term-investment?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:10.617Z", "last_update": "2022-10-06T16:03:10.617Z"}}, {"model": "press.post", "pk": 128, "fields": {"title": "Black History Month: Crucial Conversations", "body": "PETERSON SPACE FORCE BASE, Colo. – Hugo Escobar, Peterson-Schriever Garrison Diversity and Inclusion coordinator, and Dr. Wynona James, P-S GAR senior equal opportunity practitioner, host a Crucial Conversations event during Black History Month at Peterson Space Force Base, Colorado, Feb. 16, 2021. Crucial Conversations is an opportunity to engage in controversial topics in a safe and informative environment. The purpose of these conversations is to evoke empathy, understanding and awareness of different people’s experiences. Topics discussed included: leadership, diversity, inclusion...", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7453076/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7453076/black-history-month-crucial-conversations", "source_label": "dvidshub", "status": "PUBLISHED", "author": 62, "category": 2, "creation_date": "2022-10-06T16:03:13.094Z", "last_update": "2022-10-06T16:03:13.094Z"}}, {"model": "press.post", "pk": 129, "fields": {"title": "Zuckerberg's Distance From Reality Is Crushing Facebook/Meta Shareholders", "body": "Zuckerberg's Distance From Reality Is Crushing Facebook/Meta Shareholders", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4545037-zuckerbergs-distance-from-reality-is-crushing-facebookmeta-shareholders?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:13.259Z", "last_update": "2022-10-06T16:03:13.259Z"}}, {"model": "press.post", "pk": 130, "fields": {"title": "FALLING OUT: Fall Creator Series with Chaselyn Wade Vance, director and star of ‘Dr. Kim Hunter and the Apparition’", "body": "This week, as Falling Out LGBTQ begins our new creator/artist series, highlighting creators in our community, we welcome Chaselyn Wade Vance to talk about directing her first full-length feature film, Dr. Kim Hunter and the Apparition, premiering Oct. 13 Tickets instagram: @fallingoutlgbtqpod twitter: @fallinglgbtq Falling Out website Show Contributors: Brian Kennedy Chaselyn Wade VanceThe post FALLING OUT: Fall Creator Series with Chaselyn Wade Vance, director and star of ‘Dr. Kim Hunter and the Apparition’ appeared first on Dallas Voice.FALLING OUT: Fall Creator Series with...", "image_link": null, "word_cloud_link": null, "source_link": "https://dallasvoice.com/falling-out-fall-creator-series-with-chaselyn-wade-vance-director-and-star-of-dr-kim-hunter-and-the-apparition/", "source_label": "dallasvoice", "status": "PUBLISHED", "author": 63, "category": 2, "creation_date": "2022-10-06T16:03:16.123Z", "last_update": "2022-10-06T16:03:16.123Z"}}, {"model": "press.post", "pk": 131, "fields": {"title": "£42,000 worth of dodgy cigarettes and fake vapes seized in Smethwick", "body": "Sandwell Council and HMRC swooped on a Smethwick shop confiscating 3,400 packets of illicit tobacco worth £40,000 and 228 illegal vapes on sale for £2,000.", "image_link": "https://www.expressandstar.com/resizer/qWz20RrgL_HXoOsXHKU0OqWvfC4=/cloudfront-us-east-1.images.arcpublishing.com/mna/OUQMN5NZRBET7M3TWEZYSODVTI.jpg", "word_cloud_link": null, "source_link": "https://www.expressandstar.com/news/local-hubs/sandwell/2022/10/06/42000-worth-of-dodgy-cigarettes-and-fake-vapes-seized-in-smethwick/", "source_label": "Express & Star", "status": "PUBLISHED", "author": 64, "category": 2, "creation_date": "2022-10-06T16:03:19.169Z", "last_update": "2022-10-06T16:03:19.169Z"}}, {"model": "press.post", "pk": 132, "fields": {"title": "Antares Vision S p A : PUBLICATION OF UPDATED BYLAWS", "body": "(marketscreener.com) PRESS RELEASE PUBLICATION OF UPDATED BYLAWS Travagliato , 6 October 2022 - Further to what was communicated on 4 October 2022 - the conversion of 30,000 Warrant in 1.611 ordinary shares, notice is hereby given that the updated bylaws, also showing the amendment made on the article 5...https://www.marketscreener.com/quote/stock/ANTARES-VISION-S-P-A-57419889/news/Antares-Vision-S-p-A-PUBLICATION-OF-UPDATED-BYLAWS-41943878/?utm_medium=RSS&utm_content=20221006", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ANTARES-VISION-S-P-A-57419889/news/Antares-Vision-S-p-A-PUBLICATION-OF-UPDATED-BYLAWS-41943878/?utm_medium=RSS&utm_content=20221006", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:19.312Z", "last_update": "2022-10-06T16:03:19.321Z"}}, {"model": "press.post", "pk": 133, "fields": {"title": "ARDOVA : Q3 CLOSED PERIOD NOTIFICATION", "body": "(marketscreener.com) ARDOVA PLC LAGOS, 6 OCTOBER 2022 NOTIFICATION OF CLOSED PERIOD FOR Q3 2022 UNAUDITED FINANCIAL STATEMENTS In compliance with the provisions of the amended rule 17.18 of the listing rules of Nigerian Exchange Limited , please be informed that the closed period for...https://www.marketscreener.com/quote/stock/ARDOVA-PLC-9062283/news/ARDOVA-Q3-CLOSED-PERIOD-NOTIFICATION-41943877/?utm_medium=RSS&utm_content=20221006", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ARDOVA-PLC-9062283/news/ARDOVA-Q3-CLOSED-PERIOD-NOTIFICATION-41943877/?utm_medium=RSS&utm_content=20221006", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:19.587Z", "last_update": "2022-10-06T16:03:19.587Z"}}, {"model": "press.post", "pk": 134, "fields": {"title": "ETERNA : NOTICE OF CLOSED PERIOD", "body": "(marketscreener.com) Lagos, Nigeria, 6 October 2022 NOTICE OF CLOSED PERIOD In accordance with the relevant provisions of the Rule Book of Nigerian Exchange Limited , the Closed Period for trading in the shares of Eterna PLC commenced on 1 October 2022 in respect of the period ended 30 September 2022 and...https://www.marketscreener.com/quote/stock/ETERNA-PLC-20127581/news/ETERNA-NOTICE-OF-CLOSED-PERIOD-41943876/?utm_medium=RSS&utm_content=20221006", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ETERNA-PLC-20127581/news/ETERNA-NOTICE-OF-CLOSED-PERIOD-41943876/?utm_medium=RSS&utm_content=20221006", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:19.797Z", "last_update": "2022-10-06T16:03:19.797Z"}}, {"model": "press.post", "pk": 135, "fields": {"title": "Next Re SIIQ S p A : Condensed Half-Year Financial Report 2022", "body": "(marketscreener.com) Condensed Half- Year Financial Report CONTENTS 1. COMPANY PROFILE .............................................................................................................. ...https://www.marketscreener.com/quote/stock/NEXT-RE-SIIQ-S-P-A-43257876/news/Next-Re-SIIQ-S-p-A-Condensed-Half-Year-Financial-Report-2022-41943875/?utm_medium=RSS&utm_content=20221006", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/NEXT-RE-SIIQ-S-P-A-43257876/news/Next-Re-SIIQ-S-p-A-Condensed-Half-Year-Financial-Report-2022-41943875/?utm_medium=RSS&utm_content=20221006", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:20.051Z", "last_update": "2022-10-06T16:03:20.051Z"}}, {"model": "press.post", "pk": 136, "fields": {"title": "Sasol : and the University of Twente join forces to develop technologies for the removal of atmospheric carbon dioxide", "body": "(marketscreener.com) The Netherlands-based Centre for Energy Innovation of the University of Twente in Enschede, , and South Africa's Sasol Research and Technology have expressed the intent to join forces in the development of technologies for the removal of atmospheric carbon dioxide. Sasol R&T also has a regional office in Enschede. ...https://www.marketscreener.com/quote/stock/SASOL-LIMITED-1413409/news/Sasol-and-the-University-of-Twente-join-forces-to-develop-technologies-for-the-removal-of-atmosphe-41943882/?utm_medium=RSS&utm_content=20221006", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/SASOL-LIMITED-1413409/news/Sasol-and-the-University-of-Twente-join-forces-to-develop-technologies-for-the-removal-of-atmosphe-41943882/?utm_medium=RSS&utm_content=20221006", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:20.227Z", "last_update": "2022-10-06T16:03:20.227Z"}}, {"model": "press.post", "pk": 137, "fields": {"title": "Ålandsbanken Abp: Acquisitions of own shares 06.10.2022", "body": "(marketscreener.com) Ålandsbanken Abp   Changes in company’s own shares06.10.2022 at 18:30 EET Ålandsbanken Abp: Acquisitions of own shares 06.10.2022 Date 06.10.2022   ExchangeBourse trade   Nasdaq Helsinki Oy Buy   Share class ALBBV   ...https://www.marketscreener.com/quote/stock/LANDSBANKEN-ABP-1412425/news/landsbanken-Abp-Acquisitions-of-own-shares-06-10-2022-41943869/?utm_medium=RSS&utm_content=20221006", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/LANDSBANKEN-ABP-1412425/news/landsbanken-Abp-Acquisitions-of-own-shares-06-10-2022-41943869/?utm_medium=RSS&utm_content=20221006", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:20.421Z", "last_update": "2022-10-06T16:03:20.421Z"}}, {"model": "press.post", "pk": 138, "fields": {"title": "Lashana Lynch Gets Vibrant in Colorful Sequin Asish Dress for ‘Matilda the Musical’ Premiere at BFI London Film Festival", "body": "The actress attended the premiere in a multicolored slipdress accented with sequin and bead embellishments.", "image_link": null, "word_cloud_link": null, "source_link": "https://wwd.com/fashion-news/fashion-scoops/lashana-lynch-matilda-ashish-dress-bfi-london-film-festival-1235380759/", "source_label": "wwd", "status": "PUBLISHED", "author": 65, "category": 2, "creation_date": "2022-10-06T16:03:22.753Z", "last_update": "2022-10-06T16:03:22.753Z"}}, {"model": "press.post", "pk": 139, "fields": {"title": "Biden says he is evaluating alternatives after disappointing OPEC+ decision", "body": "(marketscreener.com) U.S. President Joe Biden expressed disappointment on Thursday over announced plans by OPEC+ nations to cut oil output and said the United States was looking at its alternatives.https://www.marketscreener.com/news/latest/Biden-says-he-is-evaluating-alternatives-after-disappointing-OPEC-decision--41943889/?utm_medium=RSS&utm_content=20221006", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/Biden-says-he-is-evaluating-alternatives-after-disappointing-OPEC-decision--41943889/?utm_medium=RSS&utm_content=20221006", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:22.885Z", "last_update": "2022-10-06T16:03:22.885Z"}}, {"model": "press.post", "pk": 140, "fields": {"title": "A$AP Rocky stars in cel-shaded ‘Need for Speed Unbound’ reveal trailer", "body": "The trailer shows off a brand new cel-shaded style for the seriesThe post A$AP Rocky stars in cel-shaded ‘Need for Speed Unbound’ reveal trailer appeared first on NME.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.nme.com/news/gaming-news/aap-rocky-stars-in-cel-shaded-need-for-speed-unbound-reveal-trailer-3324060?utm_source=rss&utm_medium=rss&utm_campaign=aap-rocky-stars-in-cel-shaded-need-for-speed-unbound-reveal-trailer", "source_label": "nme", "status": "PUBLISHED", "author": 66, "category": 2, "creation_date": "2022-10-06T16:03:25.496Z", "last_update": "2022-10-06T16:03:25.496Z"}}, {"model": "press.post", "pk": 141, "fields": {"title": "Erik Santos with star-studded birthday treat this Sunday on ‘ASAP Natin ‘To’", "body": "It’s a shining, shimmering weekend as your favorite Kapamilya artists come together to bring another all-star concert experience, featuring a grand birthday spectacle from Erik, jamming sessions from sought-after OPM artists, and a fierce dance-off from AC and Sheena this Sunday (Oct. 9) on “ASAP Natin ‘To” on Kapamilya Channel, A2Z, and TV5.Celebrate the birthday of the country’s King of Pinoy Teleserye Theme Songs, Erik Santos, as he belts out a heartfelt duet with his sister Hadiyah, plus special acts from Gary Valenciano, Martin Nievera, Zsa Zsa Padilla, Ogie...", "image_link": null, "word_cloud_link": null, "source_link": "https://mb.com.ph/2022/10/06/erik-santos-with-star-studded-birthday-treat-this-sunday-on-asap-natin-to/?utm_source=rss&utm_medium=rss&utm_campaign=erik-santos-with-star-studded-birthday-treat-this-sunday-on-asap-natin-to", "source_label": "Manila Bulletin", "status": "PUBLISHED", "author": 67, "category": 2, "creation_date": "2022-10-06T16:03:29.060Z", "last_update": "2022-10-06T16:03:29.060Z"}}, {"model": "press.post", "pk": 142, "fields": {"title": "Culbert's Bakery: ‘The Home of Tasty Pastry’", "body": "Culbert’s Bakery in Goderich has won widespread acclaim as “the Home of Tasty Pastry.” For over 150 years, the West Street bakery has been serving up the finest in confectioneries, baked goods and, of course, their deliciously wicked cream doughnuts. But more than a store, Culbert’s Bakery is a Goderich tradition where generations of warm […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.clintonnewsrecord.com/opinion/columnists/culberts-bakery-the-home-of-tasty-pastry", "source_label": "clintonnewsrecord", "status": "PUBLISHED", "author": 68, "category": 2, "creation_date": "2022-10-06T16:03:30.956Z", "last_update": "2022-10-06T16:03:30.956Z"}}, {"model": "press.post", "pk": 143, "fields": {"title": "Inmate crew stops stabbing on Solano County bike trail", "body": "Police said they arrested an 18-year-old man on suspicion of attempted homicide.", "image_link": "https://www.ukiahdailyjournal.com/wp-content/uploads/2022/10/crime-scene-tape-generic-1-1-2-1-1-1-4.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.ukiahdailyjournal.com/2022/10/06/inmate-crew-stops-stabbing-on-solano-county-bike-trail/", "source_label": "ukiahdailyjournal", "status": "PUBLISHED", "author": 69, "category": 2, "creation_date": "2022-10-06T16:03:32.799Z", "last_update": "2022-10-06T16:03:32.799Z"}}, {"model": "press.post", "pk": 144, "fields": {"title": "Volkan Demirel: \"Kazanmaktan başka şansımız yok\"", "body": "Spor Toto Süper Lig ekiplerinden Atakaş Hatayspor da teknik direktör Volkan Demirel, ligin 9. haftasında Corendon Alanyaspor maçını kazanmak istediklerini söyledi. Hatayspor", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sporx.com/futbol/superlig/hatayspor/volkan-demirel-kazanmaktan-baska-sansimiz-yok-SXHBQ990846SXQ?utm_source=icerikPaylas", "source_label": "sporx", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-06T16:03:33.024Z", "last_update": "2022-10-06T16:03:33.025Z"}}, {"model": "press.post", "pk": 145, "fields": {"title": "Llegaron las sardinas para completar el módulo gratuito que se distribuye en Sancti Spíritus", "body": "A partir de la llegada a la provincia del primer contenedor con latas de sardinas, la Empresa Mayorista pudo completar una primera ronda de donaciones que se repartirá en el municipio de La Sierpe", "image_link": null, "word_cloud_link": null, "source_link": "http://www.escambray.cu/2022/llegaron-las-sardinas-para-completar-el-modulo-gratuito-que-se-distribuye-en-sancti-spiritus/", "source_label": "escambray", "status": "PUBLISHED", "author": 70, "category": 2, "creation_date": "2022-10-07T16:00:50.386Z", "last_update": "2022-10-07T16:00:50.386Z"}}, {"model": "press.post", "pk": 146, "fields": {"title": "Broncos stock report: Pass-rush group steps up, but Russell Wilson throws game away", "body": "Beat reporter Parker Gabriel assesses who's up and who's down after the Broncos' 12-9 loss to Indianapolis on Thursday Night Football.", "image_link": "https://www.denverpost.com/wp-content/uploads/2022/10/TDP-L-Broncos-Colts-RJS-12183.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.denverpost.com/2022/10/07/broncos-stock-report-colts-week-5-loss/", "source_label": "The Denver Post", "status": "PUBLISHED", "author": 71, "category": 2, "creation_date": "2022-10-07T16:00:52.155Z", "last_update": "2022-10-07T16:00:52.155Z"}}, {"model": "press.post", "pk": 147, "fields": {"title": "The Right Chemistry: Radioactive quackery did not go well", "body": "Among the destructive items touted: patent medicine said to be “a cure for the living dead” and radium tablets that would “give Super-man Power.”", "image_link": null, "word_cloud_link": null, "source_link": "https://montrealgazette.com/opinion/columnists/the-right-chemistry-radioactive-quackery-did-not-go-well", "source_label": "montrealgazette", "status": "PUBLISHED", "author": 72, "category": 2, "creation_date": "2022-10-07T16:00:54.151Z", "last_update": "2022-10-07T16:00:54.151Z"}}, {"model": "press.post", "pk": 148, "fields": {"title": "Meet an anti-abortion rights Senate candidate: Ron Johnson", "body": "Republican incumbent Sen. Ron Johnson of Wisconsin has a long record of opposition to abortion rights. Republican Sen. Ron Johnson of Wisconsin, a longtime opponent of abortion rights, is in a close reelection race against the state's Democratic Lt. Gov. Mandela Barnes, who supports the right to abortion care. Endorsed by NARAL Pro-choice America, Barnes […]The post Meet an anti-abortion rights Senate candidate: Ron Johnson appeared first on The American Independent.", "image_link": null, "word_cloud_link": null, "source_link": "https://americanindependent.com/anti-abortion-rights-senate-candidate-ron-johnson-wisconsin-republican-2022-election/", "source_label": "americanindependent", "status": "PUBLISHED", "author": 73, "category": 2, "creation_date": "2022-10-07T16:00:55.873Z", "last_update": "2022-10-07T16:00:55.873Z"}}, {"model": "press.post", "pk": 149, "fields": {"title": "‘The Great British Baking Show’ “Mexican Week” is a Disaster on So Many Levels", "body": "Mary Berry would never have let this happen.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/gbbs-mexican-week.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/07/the-great-british-baking-show-mexican-week-disaster/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-07T16:00:55.927Z", "last_update": "2022-10-07T16:00:55.927Z"}}, {"model": "press.post", "pk": 150, "fields": {"title": "Thiên Ân bị gãy vương miện", "body": "Thiên Ân đội chiếc vương miện bị gãy trong buổi họp báo chào mừng thí sinh Miss Grand International 2022. Đây là lần đầu cô đội vương miện kể từ khi sang Indonesia.", "image_link": null, "word_cloud_link": null, "source_link": "https://kenh14.vn/thien-an-bi-gay-vuong-mien-20221007175937547.chn", "source_label": "Kenh 14", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-07T16:00:56.029Z", "last_update": "2022-10-07T16:00:56.029Z"}}, {"model": "press.post", "pk": 151, "fields": {"title": "Food inflation sending more individuals to community centres this Thanksgiving", "body": "Community centres are preparing for higher volumes of guests as inflation alters Thanksgiving plans.", "image_link": "https://globalnews.ca/wp-content/uploads/2021/10/friend-pic-BR.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9181452/food-inflation-community-centres-thanksgiving/", "source_label": "chbcnews", "status": "PUBLISHED", "author": 74, "category": 2, "creation_date": "2022-10-07T16:00:57.788Z", "last_update": "2022-10-07T16:00:57.788Z"}}, {"model": "press.post", "pk": 152, "fields": {"title": "New UWI students must now learn foreign language", "body": "New students at The University of the West Indies (UWI) will have to take up a foreign language and become “conversation competent” by the time they complete their degrees. The UWI said on Thursday that it has “finally evolved as a multilingual institution” with a Foreign Language Policy that will require incoming undergraduates at its […]The post New UWI students must now learn foreign language appeared first on Barbados Today.", "image_link": "https://barbadostoday.bb/wp-content/uploads/2021/03/The-Bryan-report-confronts-understanding-of-the-internal-technology-of-the-UWI.-It-begs-answers-to-the-question-what-are-the-current-needs-not-the-glory-of-yesterdays-dead-labour-.png", "word_cloud_link": null, "source_link": "https://barbadostoday.bb/2022/10/07/new-uwi-students-must-now-learn-foreign-language/", "source_label": "barbados Today", "status": "PUBLISHED", "author": 75, "category": 2, "creation_date": "2022-10-07T16:00:59.637Z", "last_update": "2022-10-07T16:00:59.637Z"}}, {"model": "press.post", "pk": 153, "fields": {"title": "News24.com | Police investigating murder, attempted murder cases after shooting at tavern in Eastern Cape", "body": "Eastern Cape police launched an investigation after three men were shot and killed at a tavern in the Mqhekezweni Administrative area in Bityi on Thursday night.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/SouthAfrica/News/police-investigating-murder-attempted-murder-cases-after-shooting-at-tavern-in-eastern-cape-20221007", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-07T16:00:59.711Z", "last_update": "2022-10-07T16:00:59.711Z"}}, {"model": "press.post", "pk": 154, "fields": {"title": "Public input ends Sunday on I-10 upgrades from Loop 202 to SR 387", "body": "The final day to provide public comments on Arizona Department of Transportation’s study recommendations for improving a 26-mile stretch of Interstate 10 from Phoenix to Casa Grande – known as […]This post Public input ends Sunday on I-10 upgrades from Loop 202 to SR 387 appeared first on InMaricopa.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.inmaricopa.com/public-input-ends-sunday-on-i-10-upgrades-from-loop-202-to-sr-387/", "source_label": "inmaricopa", "status": "PUBLISHED", "author": 76, "category": 2, "creation_date": "2022-10-07T16:01:01.446Z", "last_update": "2022-10-07T16:01:01.446Z"}}, {"model": "press.post", "pk": 155, "fields": {"title": "Impact Wrestling Bound For Glory lineup (live coverage tonight): The card for Impact’s biggest event of the year", "body": "By Jason Powell, ProWrestling.net Editor...The post Impact Wrestling Bound For Glory lineup (live coverage tonight): The card for Impact’s biggest event of the year appeared first on Pro Wrestling Dot Net.", "image_link": null, "word_cloud_link": null, "source_link": "https://prowrestling.net/site/2022/10/07/impact-wrestling-bound-for-glory-lineup-live-coverage-tonight-the-card-for-impacts-biggest-event-of-the-year/", "source_label": "prowrestling", "status": "PUBLISHED", "author": 77, "category": 2, "creation_date": "2022-10-07T16:01:03.725Z", "last_update": "2022-10-07T16:01:03.725Z"}}, {"model": "press.post", "pk": 156, "fields": {"title": "B.C. drought: More than 20 temperature records broken ahead of long weekend", "body": "A drought and unseasonably warm weather persisting across B.C. led to more temperature records breaking in the province Thursday.", "image_link": "https://www.ctvnews.ca/polopoly_fs/1.6100511.1665156373!/httpImage/image.png_gen/derivatives/landscape_300/image.png", "word_cloud_link": null, "source_link": "https://bc.ctvnews.ca/b-c-drought-more-than-20-temperature-records-broken-ahead-of-long-weekend-1.6100501", "source_label": "ctvbc", "status": "PUBLISHED", "author": 78, "category": 2, "creation_date": "2022-10-07T16:01:06.367Z", "last_update": "2022-10-07T16:01:06.367Z"}}, {"model": "press.post", "pk": 157, "fields": {"title": "Conflict resolution more successful using a native language, research shows", "body": "The choice of language in a negotiation is often considered a technical issue, not something that could influence the outcome. But new research published in the Journal of Conflict Resolution finds peace-building proposals presented in lingua franca elicit higher levels of hatred and lower levels of sympathy, compared with proposals offered in one's native tongue.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/conflict-resolution-mo.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-10-conflict-resolution-successful-native-language.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-07T16:01:06.513Z", "last_update": "2022-10-07T16:01:06.513Z"}}, {"model": "press.post", "pk": 158, "fields": {"title": "What Is THC-JD: Benefits, Uses, and Legality", "body": "Here we are again with another new cannabinoid to join the ranks. This time, we’re talking about THC-JD, which was just recently discovered in 2020. Although there isn’t much information about this novel cannabinoid, we did some research and want to share with you what we’ve learned so far. What Is THC-JD? The jury is […]The post What Is THC-JD: Benefits, Uses, and Legality appeared first on The Weed Blog.", "image_link": null, "word_cloud_link": null, "source_link": "https://theweedblog.com/guides/what-is-thc-jd", "source_label": "theweedblog", "status": "PUBLISHED", "author": 79, "category": 2, "creation_date": "2022-10-07T16:01:08.787Z", "last_update": "2022-10-07T16:01:08.787Z"}}, {"model": "press.post", "pk": 159, "fields": {"title": "Mawlid procession takes place in Halifax this weekend", "body": "Two Halifax mosques are inviting people to take part in a Mawlid procession on Sunday.", "image_link": "https://www.halifaxcourier.co.uk/webimg/b25lY21zOjViZDdhZDM2LWEyNzctNDEyMC1iMTc2LWE0YjlkNjBkNzk3MjoyODZlYjRkYy1kMDVjLTRjNjEtYTgzZi02YjFhNmM1MzY0ZDA=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.halifaxcourier.co.uk/news/people/mawlid-procession-takes-place-in-halifax-this-weekend-3871399", "source_label": "hebdenbridgetimes", "status": "PUBLISHED", "author": 26, "category": 2, "creation_date": "2022-10-07T16:01:08.919Z", "last_update": "2022-10-07T16:01:08.919Z"}}, {"model": "press.post", "pk": 160, "fields": {"title": "Governor Kristi Noem: Breaking Tourism Records", "body": "The record-breaking pace continues for South Dakota?s tourism industry ? even with high inflation raising gas prices for visitors to our state. We recently rounded up Custer State Park?s famous buffalo herd (although I didn?t get to", "image_link": null, "word_cloud_link": null, "source_link": "http://www.kotaradio.com/2022/10/07/governor-kristi-noem-breaking-tourism-records/", "source_label": "kotaradio", "status": "PUBLISHED", "author": 80, "category": 2, "creation_date": "2022-10-07T16:01:11.689Z", "last_update": "2022-10-07T16:01:11.689Z"}}, {"model": "press.post", "pk": 161, "fields": {"title": "Valve’s Steam Deck can now be bought without a reservation", "body": "There's no more lengthy queues for those wanting to check out the high-end gaming handheldThe post Valve’s Steam Deck can now be bought without a reservation appeared first on NME.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.nme.com/news/gaming-news/valves-steam-deck-can-now-be-bought-without-a-reservation-3324911?utm_source=rss&utm_medium=rss&utm_campaign=valves-steam-deck-can-now-be-bought-without-a-reservation", "source_label": "nme", "status": "PUBLISHED", "author": 66, "category": 2, "creation_date": "2022-10-07T16:01:11.800Z", "last_update": "2022-10-07T16:01:11.800Z"}}, {"model": "press.post", "pk": 162, "fields": {"title": "ShinyShiny snippets: Dancers help power Glasgow music venue", "body": "Glasgow arts venue SWG3 has switched on a system that creates renewable energy from the body heat on its dancefloor. Dancers’ heat is piped via a carrier fluid to 200m […]The post ShinyShiny snippets: Dancers help power Glasgow music venue appeared first on ShinyShiny.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.shinyshiny.tv/2022/10/shinyshiny-snippets-dancers-help-power-glasgow-music-venue.html", "source_label": "shinyshiny", "status": "PUBLISHED", "author": 81, "category": 2, "creation_date": "2022-10-07T16:01:13.937Z", "last_update": "2022-10-07T16:01:13.937Z"}}, {"model": "press.post", "pk": 163, "fields": {"title": "2 Arkansas Deputies Filmed in Violent Arrest Fired from Jobs", "body": "LITTLE ROCK, AR (AP) — Two Arkansas deputies who were caught on video violently arresting a suspect outside a convenience store have been fired. Crawford County Sheriff Jimmy Damante told Fort Smith TV station KHBS that deputies Levi White and Zachary King were fired. He didn’t elaborate on the decision and didn’t immediately return messages …The post 2 Arkansas Deputies Filmed in Violent Arrest Fired from Jobs appeared first on La Prensa Latina Media.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laprensalatina.com/2-arkansas-deputies-filmed-in-violent-arrest-fired-from-jobs/", "source_label": "Prensa latina", "status": "PUBLISHED", "author": 82, "category": 2, "creation_date": "2022-10-07T16:01:16.437Z", "last_update": "2022-10-07T16:01:16.437Z"}}, {"model": "press.post", "pk": 164, "fields": {"title": "López Obrador nombra a Raquel Buenrostro como nueva ministra de Economía", "body": "El presidente de México, Andrés Manuel López Obrador, nombró este viernes a Raquel Buenrostro como nueva secretaria de economía, tras la renuncia el jueves de Tatiana Clouthier como titular de la dependencia.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sandiegouniontribune.com/en-espanol/noticias/mexico/articulo/2022-10-07/lopez-obrador-nombra-a-raquel-buenrostro-como-nueva-ministra-de-economia", "source_label": "signonsandiego", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-07T16:01:16.533Z", "last_update": "2022-10-07T16:01:16.533Z"}}, {"model": "press.post", "pk": 165, "fields": {"title": "COLUMN: I think the clock tower is haunted", "body": "By now, even if you’re new to EIU, you’ve probably noticed that we have a clock tower right outside the south exit of Booth Library. If you haven’t noticed it,...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.dailyeasternnews.com/2022/10/07/column-i-think-the-clock-tower-is-haunted/", "source_label": "dennews", "status": "PUBLISHED", "author": 83, "category": 2, "creation_date": "2022-10-07T16:01:18.776Z", "last_update": "2022-10-07T16:01:18.776Z"}}, {"model": "press.post", "pk": 166, "fields": {"title": "AMF Tjanstepension AB Invests $9.24 Million in Nucor Co. (NYSE:NUE)", "body": "AMF Tjanstepension AB Invests $9.24 Million in Nucor Co. (NYSE:NUE)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/07/amf-tjanstepension-ab-invests-9-24-million-in-nucor-co-nysenue.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-07T16:01:18.913Z", "last_update": "2022-10-07T16:01:18.913Z"}}, {"model": "press.post", "pk": 167, "fields": {"title": "CSUMB distance ace Irvine wins Pepperdine Invitational", "body": "Lisa Irvine became the first CSUMB cross-country runner to win an event since 2015 when the sophomore won the Pepperdine Invitational", "image_link": null, "word_cloud_link": null, "source_link": "https://www.montereyherald.com/2022/10/07/csumb-distance-ace-irving-wins-pepperdine-invitational/", "source_label": "montereyherald", "status": "PUBLISHED", "author": 84, "category": 2, "creation_date": "2022-10-07T16:01:21.384Z", "last_update": "2022-10-07T16:01:21.384Z"}}, {"model": "press.post", "pk": 168, "fields": {"title": "Norwegian Cruise Line: Investor Day Highlights And A Path To Recovery", "body": "Norwegian Cruise Line: Investor Day Highlights And A Path To Recovery", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4545264-norwegian-cruise-line-investor-day-highlights-path-recovery?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-07T16:01:21.546Z", "last_update": "2022-10-07T16:01:21.546Z"}}, {"model": "press.post", "pk": 169, "fields": {"title": "CSUF alum: Work hard, dream big, don’t take health lightly", "body": "Grammy-winner Cindy Shea, founder of the all-female group Mariachi Divas, gives advice on finding fulfillment.", "image_link": "https://www.ocregister.com/wp-content/uploads/2022/10/CSF-L-SHEA-1006-1.jpeg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.ocregister.com/2022/10/07/csuf-alum-work-hard-dream-big-dont-take-health-lightly/", "source_label": "ocregister", "status": "PUBLISHED", "author": 85, "category": 2, "creation_date": "2022-10-07T16:01:23.369Z", "last_update": "2022-10-07T16:01:23.369Z"}}, {"model": "press.post", "pk": 170, "fields": {"title": "What Is the VIX Volatility Index? Why Is It Important?", "body": "What Is the VIX and How Does It Measure Volatility?In finance, the term VIX is short for the Chicago Board of Exchange’s Volatility Index. This index measures S&P 500 index options and is used as an overall benchmark for volatility in the stock market. The higher the index level, the choppier ...", "image_link": "http://www.thestreet.com/.image/c_limit%2Ccs_srgb%2Ch_1200%2Cq_auto:good%2Cw_1200/MTg5NTY2NTgxNzc1Mjc5NzAw/vix.png", "word_cloud_link": null, "source_link": "https://www.thestreet.com/dictionary/v/vix", "source_label": "mainstreet", "status": "PUBLISHED", "author": 86, "category": 2, "creation_date": "2022-10-07T16:01:25.201Z", "last_update": "2022-10-07T16:01:25.201Z"}}, {"model": "press.post", "pk": 171, "fields": {"title": "23 million Californians will get gas tax refunds beginning today: What you need to know", "body": "One-time payments ranging from $400 to $1,050 will arrive starting Friday. The state will spend $9.5 billion as part of the tax refund program.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sandiegouniontribune.com/news/california/story/2022-10-07/california-tax-refunds-gas-inflation-rising-costs", "source_label": "signonsandiego", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-07T16:01:25.245Z", "last_update": "2022-10-07T16:01:25.245Z"}}, {"model": "press.post", "pk": 172, "fields": {"title": "US Agency Moves to Tackle Deadly Coral Disease in Caribbean", "body": "The budget of the new plan aimed at tackling the coral affliction is estimated at $125 million.", "image_link": "https://cdnn1.img.sputniknews.com/img/107841/89/1078418972_0:99:1920:1179_600x0_80_0_0_8286068b726ef6a409f64b15d7b4a8ff.jpg", "word_cloud_link": null, "source_link": "https://sputniknews.com/20221007/us-agency-moves-to-tackle-deadly-coral-disease-in-caribbean-1101614650.html", "source_label": "en", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-07T16:01:25.296Z", "last_update": "2022-10-07T16:01:25.296Z"}}, {"model": "press.post", "pk": 173, "fields": {"title": "This 58-inch 4K TV is so cheap at Walmart it could be a mistake", "body": "The 58-inch Hisense R6 Series 4K TV is an already affordable option, but it's even cheaper from Walmart as the retailer has lowered its price to just $298.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2021/10/hisense-a6g-4k-tv-lifestyle.png?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/dtdeals/hisense-58-inch-r6-series-4k-tv-deal-walmart-october-2022/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 87, "category": 2, "creation_date": "2022-10-07T16:01:27.142Z", "last_update": "2022-10-07T16:01:27.142Z"}}, {"model": "press.post", "pk": 174, "fields": {"title": "BFG Token 1-Day Trading Volume Tops $282,830.00 (BFG)", "body": "BFG Token 1-Day Trading Volume Tops $282,830.00 (BFG)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/bfg-token-1-day-trading-volume-tops-282830-00-bfg.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.101Z", "last_update": "2022-10-08T16:00:48.102Z"}}, {"model": "press.post", "pk": 175, "fields": {"title": "Mines of Dalarnia Price Down 9% Over Last Week (DAR)", "body": "Mines of Dalarnia Price Down 9% Over Last Week (DAR)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/mines-of-dalarnia-price-down-9-over-last-week-dar.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.186Z", "last_update": "2022-10-08T16:00:48.186Z"}}, {"model": "press.post", "pk": 176, "fields": {"title": "S.S. Lazio Fan Token (LAZIO) Reaches Self Reported Market Capitalization of $52.40 Million", "body": "S.S. Lazio Fan Token (LAZIO) Reaches Self Reported Market Capitalization of $52.40 Million", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/s-s-lazio-fan-token-lazio-reaches-self-reported-market-capitalization-of-52-40-million.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.234Z", "last_update": "2022-10-08T16:00:48.234Z"}}, {"model": "press.post", "pk": 177, "fields": {"title": "Gaming Stars (GAMES) Price Reaches $2.05 on Top Exchanges", "body": "Gaming Stars (GAMES) Price Reaches $2.05 on Top Exchanges", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/gaming-stars-games-price-reaches-2-05-on-top-exchanges.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.295Z", "last_update": "2022-10-08T16:00:48.296Z"}}, {"model": "press.post", "pk": 178, "fields": {"title": "CV SHOTS (CVSHOT) Tops One Day Volume of $9,891.00", "body": "CV SHOTS (CVSHOT) Tops One Day Volume of $9,891.00", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/cv-shots-cvshot-tops-one-day-volume-of-9891-00.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.362Z", "last_update": "2022-10-08T16:00:48.362Z"}}, {"model": "press.post", "pk": 179, "fields": {"title": "QUASA Self Reported Market Capitalization Reaches $96.74 Million (QUA)", "body": "QUASA Self Reported Market Capitalization Reaches $96.74 Million (QUA)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/quasa-self-reported-market-capitalization-reaches-96-74-million-qua.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.415Z", "last_update": "2022-10-08T16:00:48.415Z"}}, {"model": "press.post", "pk": 180, "fields": {"title": "XIDO FINANCE (XIDO) 24-Hour Volume Hits $384,902.00", "body": "XIDO FINANCE (XIDO) 24-Hour Volume Hits $384,902.00", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/xido-finance-xido-24-hour-volume-hits-384902-00.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.526Z", "last_update": "2022-10-08T16:00:48.526Z"}}, {"model": "press.post", "pk": 181, "fields": {"title": "Metacraft Trading Down 32.3% This Week (MCT)", "body": "Metacraft Trading Down 32.3% This Week (MCT)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/metacraft-trading-down-32-3-this-week-mct.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.645Z", "last_update": "2022-10-08T16:00:48.645Z"}}, {"model": "press.post", "pk": 182, "fields": {"title": "Global Trading Xenocurrency (GTX) One Day Trading Volume Tops $14,260.00", "body": "Global Trading Xenocurrency (GTX) One Day Trading Volume Tops $14,260.00", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/global-trading-xenocurrency-gtx-one-day-trading-volume-tops-14260-00.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.702Z", "last_update": "2022-10-08T16:00:48.703Z"}}, {"model": "press.post", "pk": 183, "fields": {"title": "TiraVerse (TVRS) Trading Down 56.7% Over Last Week", "body": "TiraVerse (TVRS) Trading Down 56.7% Over Last Week", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/tiraverse-tvrs-trading-down-56-7-over-last-week.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.763Z", "last_update": "2022-10-08T16:00:48.763Z"}}, {"model": "press.post", "pk": 184, "fields": {"title": "ThetaDrop Self Reported Market Capitalization Achieves $53.70 Million (TDROP)", "body": "ThetaDrop Self Reported Market Capitalization Achieves $53.70 Million (TDROP)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/thetadrop-self-reported-market-capitalization-achieves-53-70-million-tdrop.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:48.891Z", "last_update": "2022-10-08T16:00:48.891Z"}}, {"model": "press.post", "pk": 185, "fields": {"title": "AddMeFast Self Reported Market Capitalization Tops $44.55 Million (AMF)", "body": "AddMeFast Self Reported Market Capitalization Tops $44.55 Million (AMF)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/addmefast-self-reported-market-capitalization-tops-44-55-million-amf.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.001Z", "last_update": "2022-10-08T16:00:49.001Z"}}, {"model": "press.post", "pk": 186, "fields": {"title": "Qredo (QRDO) Market Cap Tops $46.09 Million", "body": "Qredo (QRDO) Market Cap Tops $46.09 Million", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/qredo-qrdo-market-cap-tops-46-09-million.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.121Z", "last_update": "2022-10-08T16:00:49.121Z"}}, {"model": "press.post", "pk": 187, "fields": {"title": "C2X Reaches 1-Day Trading Volume of $211,919.00 (CTX)", "body": "C2X Reaches 1-Day Trading Volume of $211,919.00 (CTX)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/c2x-reaches-1-day-trading-volume-of-211919-00-ctx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.229Z", "last_update": "2022-10-08T16:00:49.229Z"}}, {"model": "press.post", "pk": 188, "fields": {"title": "Ethernity (ERN) Price Down 5.5% Over Last Week", "body": "Ethernity (ERN) Price Down 5.5% Over Last Week", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/ethernity-ern-price-down-5-5-over-last-week.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.325Z", "last_update": "2022-10-08T16:00:49.325Z"}}, {"model": "press.post", "pk": 189, "fields": {"title": "DOLA (DOLA) Price Reaches $0.99 on Top Exchanges", "body": "DOLA (DOLA) Price Reaches $0.99 on Top Exchanges", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/dola-dola-price-reaches-0-99-on-top-exchanges.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.433Z", "last_update": "2022-10-08T16:00:49.433Z"}}, {"model": "press.post", "pk": 190, "fields": {"title": "Crypto Gaming United (CGU) One Day Volume Hits $1.58 Million", "body": "Crypto Gaming United (CGU) One Day Volume Hits $1.58 Million", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/crypto-gaming-united-cgu-one-day-volume-hits-1-58-million.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.543Z", "last_update": "2022-10-08T16:00:49.543Z"}}, {"model": "press.post", "pk": 191, "fields": {"title": "Mango Price Down 1.1% This Week (MNGO)", "body": "Mango Price Down 1.1% This Week (MNGO)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/mango-price-down-1-1-this-week-mngo.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.657Z", "last_update": "2022-10-08T16:00:49.657Z"}}, {"model": "press.post", "pk": 192, "fields": {"title": "Alpha Venture DAO Market Capitalization Achieves $52.76 Million (ALPHA)", "body": "Alpha Venture DAO Market Capitalization Achieves $52.76 Million (ALPHA)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/alpha-venture-dao-market-capitalization-achieves-52-76-million-alpha.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.799Z", "last_update": "2022-10-08T16:00:49.799Z"}}, {"model": "press.post", "pk": 193, "fields": {"title": "Ferro Price Tops $0.0612 on Major Exchanges (FER)", "body": "Ferro Price Tops $0.0612 on Major Exchanges (FER)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/ferro-price-tops-0-0612-on-major-exchanges-fer.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:49.889Z", "last_update": "2022-10-08T16:00:49.889Z"}}, {"model": "press.post", "pk": 194, "fields": {"title": "UFO Gaming Trading 11.5% Lower Over Last 7 Days (UFO)", "body": "UFO Gaming Trading 11.5% Lower Over Last 7 Days (UFO)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/ufo-gaming-trading-11-5-lower-over-last-7-days-ufo.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:50.009Z", "last_update": "2022-10-08T16:00:50.009Z"}}, {"model": "press.post", "pk": 195, "fields": {"title": "Square Token Trading Up 19.1% This Week (SQUA)", "body": "Square Token Trading Up 19.1% This Week (SQUA)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/square-token-trading-up-19-1-this-week-squa.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:50.133Z", "last_update": "2022-10-08T16:00:50.133Z"}}, {"model": "press.post", "pk": 196, "fields": {"title": "YES WORLD Price Hits $0.0123 on Major Exchanges (YES)", "body": "YES WORLD Price Hits $0.0123 on Major Exchanges (YES)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/yes-world-price-hits-0-0123-on-major-exchanges-yes.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:50.265Z", "last_update": "2022-10-08T16:00:50.265Z"}}, {"model": "press.post", "pk": 197, "fields": {"title": "QUASA (QUA) Price Reaches $0.0013 on Top Exchanges", "body": "QUASA (QUA) Price Reaches $0.0013 on Top Exchanges", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/08/quasa-qua-price-reaches-0-0013-on-top-exchanges.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-08T16:00:50.384Z", "last_update": "2022-10-08T16:00:50.384Z"}}, {"model": "press.post", "pk": 198, "fields": {"title": "Beograd sve bliži još jednom klubu u Superligi: IMT počeo opasno da beži ostalima, novi kiks Grafičara", "body": "Fudbaleri IMT-a polako postaju najozbiljniji kandidati za plasman u Superligu na kraju tekuće takmičarske godine. Traktoristi su neverovatnim preokretom u završnih deset minuta utakmice tokom kojih su postigli tri gola za trijumf protiv Vršca, koji je bio nadomak velikog iznenađenja - 4:2 (1:2).", "image_link": "https://xdn.tf.rs/2022/04/07/fk-imt.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/sport/fudbal/3567576-beograd-sve-blizi-jos-jednom-klubu-u-superligi-imt-poceo-opasno-da-bezi-ostalima-novi-kiks-graficara", "source_label": "Telegraf", "status": "PUBLISHED", "author": 88, "category": 2, "creation_date": "2022-10-08T16:00:52.446Z", "last_update": "2022-10-08T16:00:52.446Z"}}, {"model": "press.post", "pk": 199, "fields": {"title": "San Bernardino moves Spring Trails project forward", "body": "The city has agreed to complete annexation proceedings for the land. The developer will reduce the number of houses to 264.", "image_link": "https://www.pressenterprise.com/wp-content/uploads/2022/10/SBS-L-SPRINGTRAILS-0819-07TP.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.pressenterprise.com/2022/10/08/san-bernardino-moves-spring-trails-project-forward/", "source_label": "pe", "status": "PUBLISHED", "author": 89, "category": 2, "creation_date": "2022-10-08T16:00:54.411Z", "last_update": "2022-10-08T16:00:54.411Z"}}, {"model": "press.post", "pk": 200, "fields": {"title": "Borenstein leads resurgent Rebels to 2-0 victory over Toms River South", "body": "There has been a lot of success on the pitch to start the 2022 season for the Howell High School girls soccer team. The team’s only blemishes were consecutive losses to Middletown South High School and to Freehold Township High School heading into a match against Toms River South High School on Oct. 7 in […]The post Borenstein leads resurgent Rebels to 2-0 victory over Toms River South appeared first on centraljersey.com.", "image_link": "https://cdn.centraljersey.com/wp-content/uploads/sites/26/2022/10/TT-HGSOCC-A.SMITH_-300x235.jpeg", "word_cloud_link": null, "source_link": "https://centraljersey.com/2022/10/08/rebels-rebound-against-toms-river-south-ready-to-make-run-in-sct/?utm_source=rss&utm_medium=rss&utm_campaign=rebels-rebound-against-toms-river-south-ready-to-make-run-in-sct", "source_label": "centraljersey", "status": "PUBLISHED", "author": 90, "category": 2, "creation_date": "2022-10-08T16:00:56.491Z", "last_update": "2022-10-08T16:00:56.492Z"}}, {"model": "press.post", "pk": 201, "fields": {"title": "Swanson: Mater Dei-St. John Bosco deserved the hype", "body": "Friday night’s nationally televised game between the top-ranked teams in the country was a riveting Trinity League tug-of-war that featured elite talent, punishing defense and plenty of pageantry.", "image_link": "https://www.dailybulletin.com/wp-content/uploads/2022/10/OCR-L-HSFB-BOSCO-MDE-16x9-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.dailybulletin.com/2022/10/08/swanson-mater-dei-st-john-bosco-deserved-the-hype/", "source_label": "dailybulletin", "status": "PUBLISHED", "author": 91, "category": 2, "creation_date": "2022-10-08T16:00:58.318Z", "last_update": "2022-10-08T16:00:58.318Z"}}, {"model": "press.post", "pk": 202, "fields": {"title": "OpenStream World (OSW) Hits Self Reported Market Cap of $32,779.81", "body": "OpenStream World (OSW) Hits Self Reported Market Cap of $32,779.81", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/openstream-world-osw-hits-self-reported-market-cap-of-32779-81.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.368Z", "last_update": "2022-10-09T16:00:50.369Z"}}, {"model": "press.post", "pk": 203, "fields": {"title": "Gami Studio Trading Down 4.9% This Week (GAMI)", "body": "Gami Studio Trading Down 4.9% This Week (GAMI)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/gami-studio-trading-down-4-9-this-week-gami.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.482Z", "last_update": "2022-10-09T16:00:50.482Z"}}, {"model": "press.post", "pk": 204, "fields": {"title": "Hero Arena One Day Trading Volume Hits $12,207.00 (HERA)", "body": "Hero Arena One Day Trading Volume Hits $12,207.00 (HERA)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/hero-arena-one-day-trading-volume-hits-12207-00-hera.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.564Z", "last_update": "2022-10-09T16:00:50.564Z"}}, {"model": "press.post", "pk": 205, "fields": {"title": "ICHELLO Music & Technology Price Reaches $0.0003 on Exchanges (ELLO)", "body": "ICHELLO Music & Technology Price Reaches $0.0003 on Exchanges (ELLO)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/ichello-music-technology-price-reaches-0-0003-on-exchanges-ello.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.647Z", "last_update": "2022-10-09T16:00:50.647Z"}}, {"model": "press.post", "pk": 206, "fields": {"title": "Stretch To Earn Hits Self Reported Market Cap of $37,347.22 (STE)", "body": "Stretch To Earn Hits Self Reported Market Cap of $37,347.22 (STE)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/stretch-to-earn-hits-self-reported-market-cap-of-37347-22-ste.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.699Z", "last_update": "2022-10-09T16:00:50.699Z"}}, {"model": "press.post", "pk": 207, "fields": {"title": "SONIC INU Price Tops $0.0000 (SONIC)", "body": "SONIC INU Price Tops $0.0000 (SONIC)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/sonic-inu-price-tops-0-0000-sonic.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.791Z", "last_update": "2022-10-09T16:00:50.791Z"}}, {"model": "press.post", "pk": 208, "fields": {"title": "Lots Gaming (LTSG) Trading 13.7% Lower Over Last Week", "body": "Lots Gaming (LTSG) Trading 13.7% Lower Over Last Week", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/lots-gaming-ltsg-trading-13-7-lower-over-last-week.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.852Z", "last_update": "2022-10-09T16:00:50.852Z"}}, {"model": "press.post", "pk": 209, "fields": {"title": "Movn Trading Down 35.6% Over Last 7 Days (MOV)", "body": "Movn Trading Down 35.6% Over Last 7 Days (MOV)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/movn-trading-down-35-6-over-last-7-days-mov.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:50.905Z", "last_update": "2022-10-09T16:00:50.905Z"}}, {"model": "press.post", "pk": 210, "fields": {"title": "MetaNFT (MNFT) Price Down 21.2% This Week", "body": "MetaNFT (MNFT) Price Down 21.2% This Week", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/metanft-mnft-price-down-21-2-this-week.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.003Z", "last_update": "2022-10-09T16:00:51.003Z"}}, {"model": "press.post", "pk": 211, "fields": {"title": "Karmaverse Zombie Reaches Self Reported Market Cap of $32,067.57 (SERUM)", "body": "Karmaverse Zombie Reaches Self Reported Market Cap of $32,067.57 (SERUM)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/karmaverse-zombie-reaches-self-reported-market-cap-of-32067-57-serum.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.060Z", "last_update": "2022-10-09T16:00:51.060Z"}}, {"model": "press.post", "pk": 212, "fields": {"title": "Octafarm Hits 1-Day Volume of $10,196.00 (OCTF)", "body": "Octafarm Hits 1-Day Volume of $10,196.00 (OCTF)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/octafarm-hits-1-day-volume-of-10196-00-octf.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.115Z", "last_update": "2022-10-09T16:00:51.115Z"}}, {"model": "press.post", "pk": 213, "fields": {"title": "Envoy Trading 45.9% Lower This Week (ENV)", "body": "Envoy Trading 45.9% Lower This Week (ENV)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/envoy-trading-45-9-lower-this-week-env.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.186Z", "last_update": "2022-10-09T16:00:51.186Z"}}, {"model": "press.post", "pk": 214, "fields": {"title": "TokenBot Price Reaches $0.0010 on Exchanges (TKB)", "body": "TokenBot Price Reaches $0.0010 on Exchanges (TKB)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/tokenbot-price-reaches-0-0010-on-exchanges-tkb.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.243Z", "last_update": "2022-10-09T16:00:51.243Z"}}, {"model": "press.post", "pk": 215, "fields": {"title": "Asuna Hentai Price Tops $0.0000 on Major Exchanges (ASUNA)", "body": "Asuna Hentai Price Tops $0.0000 on Major Exchanges (ASUNA)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/asuna-hentai-price-tops-0-0000-on-major-exchanges-asuna.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.297Z", "last_update": "2022-10-09T16:00:51.297Z"}}, {"model": "press.post", "pk": 216, "fields": {"title": "YodeSwap (YODE) 1-Day Volume Tops $15,147.00", "body": "YodeSwap (YODE) 1-Day Volume Tops $15,147.00", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/yodeswap-yode-1-day-volume-tops-15147-00.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.354Z", "last_update": "2022-10-09T16:00:51.354Z"}}, {"model": "press.post", "pk": 217, "fields": {"title": "Rise Of Empire (ROEMP) Achieves Self Reported Market Capitalization of $34,364.26", "body": "Rise Of Empire (ROEMP) Achieves Self Reported Market Capitalization of $34,364.26", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/rise-of-empire-roemp-achieves-self-reported-market-capitalization-of-34364-26.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.395Z", "last_update": "2022-10-09T16:00:51.395Z"}}, {"model": "press.post", "pk": 218, "fields": {"title": "PeeCoin Charts Self Reported Market Cap Tops $32,971.64 (PEECOIN)", "body": "PeeCoin Charts Self Reported Market Cap Tops $32,971.64 (PEECOIN)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/peecoin-charts-self-reported-market-cap-tops-32971-64-peecoin.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.479Z", "last_update": "2022-10-09T16:00:51.479Z"}}, {"model": "press.post", "pk": 219, "fields": {"title": "SOS Amazonia (SOSAMZ) Self Reported Market Capitalization Hits $32,013.53", "body": "SOS Amazonia (SOSAMZ) Self Reported Market Capitalization Hits $32,013.53", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/sos-amazonia-sosamz-self-reported-market-capitalization-hits-32013-53.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.605Z", "last_update": "2022-10-09T16:00:51.605Z"}}, {"model": "press.post", "pk": 220, "fields": {"title": "SafeWages (SAFEW) Self Reported Market Capitalization Reaches $12,496.36", "body": "SafeWages (SAFEW) Self Reported Market Capitalization Reaches $12,496.36", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/safewages-safew-self-reported-market-capitalization-reaches-12496-36.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.655Z", "last_update": "2022-10-09T16:00:51.655Z"}}, {"model": "press.post", "pk": 221, "fields": {"title": "xPERPS (XPERPS) Price Hits $0.0419", "body": "xPERPS (XPERPS) Price Hits $0.0419", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/xperps-xperps-price-hits-0-0419.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.723Z", "last_update": "2022-10-09T16:00:51.723Z"}}, {"model": "press.post", "pk": 222, "fields": {"title": "Zuki Moba (ZUKI) Market Capitalization Achieves $35,639.65", "body": "Zuki Moba (ZUKI) Market Capitalization Achieves $35,639.65", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/zuki-moba-zuki-market-capitalization-achieves-35639-65.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.790Z", "last_update": "2022-10-09T16:00:51.790Z"}}, {"model": "press.post", "pk": 223, "fields": {"title": "DePocket Hits Self Reported Market Capitalization of $34,398.54 (DEPO)", "body": "DePocket Hits Self Reported Market Capitalization of $34,398.54 (DEPO)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/depocket-hits-self-reported-market-capitalization-of-34398-54-depo.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.849Z", "last_update": "2022-10-09T16:00:51.849Z"}}, {"model": "press.post", "pk": 224, "fields": {"title": "Meta Shark (MTS) One Day Trading Volume Hits $31,906.00", "body": "Meta Shark (MTS) One Day Trading Volume Hits $31,906.00", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/meta-shark-mts-one-day-trading-volume-hits-31906-00.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.912Z", "last_update": "2022-10-09T16:00:51.913Z"}}, {"model": "press.post", "pk": 225, "fields": {"title": "MeowSwap Price Tops $0.0135 on Top Exchanges (MEOW)", "body": "MeowSwap Price Tops $0.0135 on Top Exchanges (MEOW)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/meowswap-price-tops-0-0135-on-top-exchanges-meow.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:51.988Z", "last_update": "2022-10-09T16:00:51.988Z"}}, {"model": "press.post", "pk": 226, "fields": {"title": "Midas Miner (MMI) Price Down 61.1% Over Last Week", "body": "Midas Miner (MMI) Price Down 61.1% Over Last Week", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/midas-miner-mmi-price-down-61-1-over-last-week.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:52.046Z", "last_update": "2022-10-09T16:00:52.046Z"}}, {"model": "press.post", "pk": 227, "fields": {"title": "SO CAL Token (SCT) Price Tops $0.0000 on Top Exchanges", "body": "SO CAL Token (SCT) Price Tops $0.0000 on Top Exchanges", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/so-cal-token-sct-price-tops-0-0000-on-top-exchanges.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:52.094Z", "last_update": "2022-10-09T16:00:52.094Z"}}, {"model": "press.post", "pk": 228, "fields": {"title": "InsuranceFi Hits Self Reported Market Capitalization of $35,650.48 (IF)", "body": "InsuranceFi Hits Self Reported Market Capitalization of $35,650.48 (IF)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/insurancefi-hits-self-reported-market-capitalization-of-35650-48-if.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:52.143Z", "last_update": "2022-10-09T16:00:52.143Z"}}, {"model": "press.post", "pk": 229, "fields": {"title": "H2O Price Down 15.4% Over Last Week (PSDN)", "body": "H2O Price Down 15.4% Over Last Week (PSDN)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/h2o-price-down-15-4-over-last-week-psdn.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:52.219Z", "last_update": "2022-10-09T16:00:52.219Z"}}, {"model": "press.post", "pk": 230, "fields": {"title": "Story Price Down 15.6% Over Last Week (STORY)", "body": "Story Price Down 15.6% Over Last Week (STORY)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/story-price-down-15-6-over-last-week-story.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:52.268Z", "last_update": "2022-10-09T16:00:52.268Z"}}, {"model": "press.post", "pk": 231, "fields": {"title": "Solabrador Price Down 12.1% Over Last Week (SOLAB)", "body": "Solabrador Price Down 12.1% Over Last Week (SOLAB)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/09/solabrador-price-down-12-1-over-last-week-solab.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-09T16:00:52.363Z", "last_update": "2022-10-09T16:00:52.363Z"}}, {"model": "press.post", "pk": 232, "fields": {"title": "La Unión Eléctrica prevé una afectación de 1 298 MW en el horario pico de este lunes", "body": "Se estima una afectación máxima de 1000 MW por déficit de capacidad de generación en el horario diurno", "image_link": null, "word_cloud_link": null, "source_link": "http://www.escambray.cu/2022/la-union-electrica-preve-una-afectacion-de-1-298-mw-en-el-horario-pico-de-este-lunes/", "source_label": "escambray", "status": "PUBLISHED", "author": 92, "category": 2, "creation_date": "2022-10-10T16:00:49.775Z", "last_update": "2022-10-10T16:00:49.775Z"}}, {"model": "press.post", "pk": 233, "fields": {"title": "This Motorola Android phone is only $49 in Walmart’s Rollback Sale", "body": "The Moto G Pure is a smartphone alternative to the budget feature phones, and you can pick one up for less than $50 in the Walmart Rollback Sale.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2021/10/moto-g-pure-pro-shot-cooking.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/home/motorola-moto-g-pure-deal-walmart-october-2022/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 93, "category": 2, "creation_date": "2022-10-10T16:00:51.641Z", "last_update": "2022-10-10T16:00:51.641Z"}}, {"model": "press.post", "pk": 234, "fields": {"title": "We Are Not Working Togetther Men : Nominated Post", "body": "*Originally posted on 10/09/2022:* ---Quote (Originally by jjgold)--- Its always been a thing here rooting for guys to lose That is more of a gambling thing ---End Quote--- There is a difference in rooting for...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sportsbookreview.com/forum/nominated-posts/3711073-we-not-working-togetther-men-nominated-post.html", "source_label": "sbrforum", "status": "PUBLISHED", "author": 94, "category": 2, "creation_date": "2022-10-10T16:00:53.406Z", "last_update": "2022-10-10T16:00:53.406Z"}}, {"model": "press.post", "pk": 235, "fields": {"title": "Why the ICA matters – DNW Podcast #408", "body": "The role the ICA plays and how you can get involved. What is the Internet Commerce Association (ICA) and why is it important? On today’s show, I speak with ICA executive director Kamila Sekiewicz and general counsel Zak Muscovitch about what the group is doing and how it advocates for the domain industry. We also […]Post link: Why the ICA matters – DNW Podcast #408© DomainNameWire.com 2022. This is copyrighted content. Domain Name Wire full-text RSS feeds are made available for personal use only, and may not be published on any site without permission. If you see this message on a...", "image_link": "https://traffic.libsyn.com/domainnamewire/DNW408.mp3", "word_cloud_link": null, "source_link": "https://domainnamewire.com/2022/10/10/why-the-ica-matters-dnw-podcast-408/", "source_label": "domainnamewire", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-10T16:00:53.469Z", "last_update": "2022-10-10T16:00:53.469Z"}}, {"model": "press.post", "pk": 236, "fields": {"title": "WWE Raw preview: The lineup for tonight’s “season premiere”", "body": "By Jason Powell, ProWrestling.net Editor...The post WWE Raw preview: The lineup for tonight’s “season premiere” appeared first on Pro Wrestling Dot Net.", "image_link": null, "word_cloud_link": null, "source_link": "https://prowrestling.net/site/2022/10/10/wwe-raw-preview-the-lineup-for-tonights-season-premiere/", "source_label": "prowrestling", "status": "PUBLISHED", "author": 77, "category": 2, "creation_date": "2022-10-10T16:00:53.525Z", "last_update": "2022-10-10T16:00:53.525Z"}}, {"model": "press.post", "pk": 237, "fields": {"title": "Orange County football schedule for the Week 8 games, Oct. 13-15", "body": "See where and when the Orange County teams are playing this week. The Week 8 games are Thursday-Saturday, Oct. 13-15.", "image_link": "https://www.ocregister.com/wp-content/uploads/2022/10/ocvarsity-football11-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.ocregister.com/2022/10/10/orange-county-football-schedule-for-the-week-8-games-oct-13-15/", "source_label": "ocregister", "status": "PUBLISHED", "author": 95, "category": 2, "creation_date": "2022-10-10T16:00:55.317Z", "last_update": "2022-10-10T16:00:55.317Z"}}, {"model": "press.post", "pk": 238, "fields": {"title": "Girls Aloud announce Sound of the Underground anniversary vinyl raising money for Sarah Harding Breast Cancer Appeal", "body": "Girls Aloud announce Sound of the Underground anniversary vinyl raising money for Sarah Harding Breast Cancer Appeal", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/10/girls-aloud-announce-sound-of-the-underground-vinyl-for-sarah-harding-charity-17536905/", "source_label": "Metro", "status": "PUBLISHED", "author": 96, "category": 2, "creation_date": "2022-10-10T16:00:57.096Z", "last_update": "2022-10-10T16:00:57.096Z"}}, {"model": "press.post", "pk": 239, "fields": {"title": "Alexander: In Dodgers’ run of success, it’s easy to forget what came before", "body": "A decade ago, when the current owners took over from Frank McCourt, who guessed it would be this good?", "image_link": "https://www.presstelegram.com/wp-content/uploads/2022/10/AP120502116722.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.presstelegram.com/2022/10/10/alexander-in-dodgers-run-of-success-its-easy-to-forget-what-came-before/", "source_label": "presstelegram", "status": "PUBLISHED", "author": 97, "category": 2, "creation_date": "2022-10-10T16:00:58.905Z", "last_update": "2022-10-10T16:00:58.905Z"}}, {"model": "press.post", "pk": 240, "fields": {"title": "COVID-19 virus-human protein network provides new tools and strategies for screening host-targeting therapies", "body": "A Cleveland Clinic-led research team used artificial intelligence to map out hundreds of ways that the virus that causes COVID-19 interacts with infected cells. Through this analysis, they identified potential COVID-19 medicines within thousands of drugs already approved by the FDA for other treatments.The research focused on host-targeting therapies, which operate differently from other antivirals by disrupting the mechanisms viruses use to multiply and survive, rather than just blocking specific proteins within the cell. The research, published in Nature Biotechnology, presents a network...", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/779741/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 98, "category": 2, "creation_date": "2022-10-10T16:01:03.403Z", "last_update": "2022-10-10T16:01:03.403Z"}}, {"model": "press.post", "pk": 241, "fields": {"title": "Researchers Find Tumor Microbiome Interactions May Identify New Approaches for Pancreatic Cancer Treatment", "body": "Investigators from Rutgers Cancer Institute of New Jersey examined the microbiome of pancreatic tumors and identified particular microorganisms at single-cell resolution that are associated with inflammation and with poor survival. According to the researchers, these microorganisms may be new targets for earlier diagnosis or treatment of pancreatic cancer.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/779656/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 99, "category": 2, "creation_date": "2022-10-10T16:01:05.779Z", "last_update": "2022-10-10T16:01:05.779Z"}}, {"model": "press.post", "pk": 242, "fields": {"title": "Common Approach to Demystify Black Box AI Not Ready for Prime Time, Study Finds", "body": "Clinical AI tools hold the promise to transform the practice of medicine, but lack of transparency in some tools is an ongoing challenge.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/779715/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 100, "category": 2, "creation_date": "2022-10-10T16:01:08.479Z", "last_update": "2022-10-10T16:01:08.479Z"}}, {"model": "press.post", "pk": 243, "fields": {"title": "Survey Finds More Than 40% of Americans Misled Others About Having COVID-19 and Use of Precautions", "body": "Four of 10 Americans surveyed report that they were often less than truthful about whether they had COVID-19 and/or didn't comply with many of the disease's preventive measures during the height of the pandemic, according to a new nationwide study.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/779806/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 101, "category": 2, "creation_date": "2022-10-10T16:01:10.933Z", "last_update": "2022-10-10T16:01:10.933Z"}}, {"model": "press.post", "pk": 244, "fields": {"title": "6,000-year-old skull found in cave in Taiwan possibly confirms legend of Indigenous tribe", "body": "A team of researchers with members from Australia, Japan, Taiwan and Vietnam found a 6,000-year-old skull and femur bones in a cave in a mountainous part of Taiwan that might prove the existence of an ancient Indigenous tribe. In their paper published in the journal World Archaeology, the group describes the skull, where it was found and what it might represent.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/6000-year-old-skull-fo.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-10-year-old-skull-cave-taiwan-possibly.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-10T16:01:11.093Z", "last_update": "2022-10-10T16:01:11.093Z"}}, {"model": "press.post", "pk": 245, "fields": {"title": "At least 13 missing in Nepal after landslide", "body": "Kathmandu, Oct 10 (EFE).- At least 13 people were swept away by a landslide during a funeral ceremony in Nepal and remain missing, officials said on Monday, while at least four people were killed and dozens of families were displaced elsewhere in separate rain-related incidents. “A powerful landslide occurred and it swept away 13 people …The post At least 13 missing in Nepal after landslide appeared first on La Prensa Latina Media.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laprensalatina.com/at-least-13-missing-in-nepal-after-landslide/", "source_label": "Prensa latina", "status": "PUBLISHED", "author": 102, "category": 2, "creation_date": "2022-10-10T16:01:14.093Z", "last_update": "2022-10-10T16:01:14.093Z"}}, {"model": "press.post", "pk": 246, "fields": {"title": "FIA Confirms Red Bull Overspent Its 2021 Cost Cap Budget", "body": "Formula 1's governing body, the FIA, has finally released its much-anticipated conclusion regarding the overspending of $145 million cost-cap budgets in 2021. It confirms that the Red Bull Racing team did in fact significantly overspend its budget — but so far, no penalties have been announced.Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://jalopnik.com/fia-confirms-red-bull-overspent-its-2021-cost-cap-budge-1849638032", "source_label": "jalopnik", "status": "PUBLISHED", "author": 103, "category": 2, "creation_date": "2022-10-10T16:01:16.601Z", "last_update": "2022-10-10T16:01:16.601Z"}}, {"model": "press.post", "pk": 247, "fields": {"title": "What do Lula and Bolsonaro propose for Brazil fiscal policy?", "body": "BRASILIA — Both of Brazil’s presidential candidates, President Jair Bolsonaro and former President Luiz Inacio Lula da Silva, have proposed changes to the constitutional spending limit that defined fiscal policy in Latin America’s biggest economy for the past six years. The following are some of their policy proposal differences. WHAT IS CURRENT POLICY? Brazil amended […]", "image_link": null, "word_cloud_link": null, "source_link": "https://financialpost.com/pmn/business-pmn/what-do-lula-and-bolsonaro-propose-for-brazil-fiscal-policy-2", "source_label": "business", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-10T16:01:18.799Z", "last_update": "2022-10-10T16:01:18.799Z"}}, {"model": "press.post", "pk": 248, "fields": {"title": "State’s in-service medical quota cut by 192 seats this year", "body": "In 2021-22, the State had 398 PG medical in-service quota seats; this year it is 206", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/national/karnataka/states-in-service-medical-quota-cut-by-192-seats-this-year/article65993233.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 105, "category": 2, "creation_date": "2022-10-10T16:01:20.993Z", "last_update": "2022-10-10T16:01:20.993Z"}}, {"model": "press.post", "pk": 249, "fields": {"title": "Housing Migrants in NYC", "body": "Housing Migrants in NYC", "image_link": null, "word_cloud_link": null, "source_link": "http://www.wnyc.org/story/housing-migrants-nyc/", "source_label": "wnyc", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-10T16:01:21.155Z", "last_update": "2022-10-10T16:01:21.155Z"}}, {"model": "press.post", "pk": 250, "fields": {"title": "10 Most Unsettling Body Horror Movies", "body": "The grosser the better.", "image_link": null, "word_cloud_link": null, "source_link": "https://filmschoolrejects.com/best-body-horror-movies/#utm_source=rss&utm_medium=rss&utm_campaign=best-body-horror-movies", "source_label": "filmschoolrejects", "status": "PUBLISHED", "author": 106, "category": 2, "creation_date": "2022-10-10T16:01:23.214Z", "last_update": "2022-10-10T16:01:23.214Z"}}, {"model": "press.post", "pk": 251, "fields": {"title": "NFL week 05- Contrarian Angles : Nominated Post", "body": "*Originally posted on 10/10/2022:* ---Quote (Originally by pologq)--- I like the Packers as well. The Giants might be the worst 3-1 team right now. Not a contrarian pick for me though. I like the Panthers +6.5...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sportsbookreview.com/forum/nominated-posts/3711072-nfl-week-05-contrarian-angles-nominated-post.html", "source_label": "sbrforum", "status": "PUBLISHED", "author": 107, "category": 2, "creation_date": "2022-10-10T16:01:25.271Z", "last_update": "2022-10-10T16:01:25.271Z"}}, {"model": "press.post", "pk": 252, "fields": {"title": "Damning probe shines light on Royal College of Nursing's toxic male-dominated culture", "body": "A toxic culture of bullying and sexual exploitation in Britain's nursing union was exposed today in damming 77-page independent review exploring cultural failings at the Royal College of Nursing.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/10/16/63305075-0-image-a-9_1665414084682.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/health/article-11299317/Damning-probe-shines-light-Royal-College-Nursings-toxic-male-dominated-culture.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-10T16:01:25.316Z", "last_update": "2022-10-10T16:01:25.316Z"}}, {"model": "press.post", "pk": 253, "fields": {"title": "More protests rise after another deadly Russian. attack, G7 leaders to gather in emergency meeting", "body": "Thousands of U.S. protesters took to the streets after Russia unleashed a barrage of missiles on several Ukrainian cities on Monday.The post More protests rise after another deadly Russian. attack, G7 leaders to gather in emergency meeting appeared first on KYMA.", "image_link": null, "word_cloud_link": null, "source_link": "https://kyma.com/news/top-stories/2022/10/11/more-protests-rise-after-another-deadly-russian-attack-g7-leaders-to-gather-in-emergency-meeting/", "source_label": "kyma", "status": "PUBLISHED", "author": 108, "category": 2, "creation_date": "2022-10-11T16:00:50.766Z", "last_update": "2022-10-11T16:00:50.766Z"}}, {"model": "press.post", "pk": 254, "fields": {"title": "From Hairdryer Popcorn to Condom Haggis, The Joys of Andy Buckley’s ‘Avenue 5’s Cooking Show", "body": "We need Frank's Kitchen merch, ASAP.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/andy-buckley-frank-avenue-5.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/11/avenue-5-season-2-premiere-recap-andy-buckley-franks-kitchen-cooking-show/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-11T16:00:50.811Z", "last_update": "2022-10-11T16:00:50.811Z"}}, {"model": "press.post", "pk": 255, "fields": {"title": "On treacherous Darien Gap trek, migrants risk it all for American dream", "body": "* Record numbers of migrants are crossing the Darien Gap * Fleeing poverty or war, thousands head for United States * Days-long jungle trek is fraught with dangers By Anastasia Moloney CAPURGANA, Colombia, Oct 11 (Thomson Reuters Foundation) – F ive-months pregnant and lugging a heavy backpack through a lawless stretch of Colombian rainforest, a […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/on-treacherous-darien-gap-trek-migrants-risk-it-all-for-american-dream", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-11T16:00:50.903Z", "last_update": "2022-10-11T16:00:50.903Z"}}, {"model": "press.post", "pk": 256, "fields": {"title": "Jamie Lee Curtis on going to head to head with Michael Myers for one final time in Halloween Ends", "body": "There aren’t many long-standing battles between two people across cinematic history as iconic as that between Laurie Strode and Michael Myers. But all great things must come to an end, and here the clue is in the title, as Halloween Ends is finally upon us. To mark this occasion, and to mark my birthday (just […]The post Jamie Lee Curtis on going to head to head with Michael Myers for one final time in Halloween Ends appeared first on HeyUGuys.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.heyuguys.com/halloween-ends-interview/", "source_label": "heyuguys", "status": "PUBLISHED", "author": 109, "category": 2, "creation_date": "2022-10-11T16:00:52.618Z", "last_update": "2022-10-11T16:00:52.618Z"}}, {"model": "press.post", "pk": 257, "fields": {"title": "Blink-182 to reunite for new album, world tour", "body": "Blink-182 members Tom DeLonge, Travis Barker and Mark Hoppus will reunite for a new album and tour.", "image_link": "https://cdnph.upi.com/ph/st/th/9401665500551/2022/upi/be01166d995c12ce8eac4305571c0c99/v1.5/Blink-182-to-reunite-for-new-album-world-tour.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Entertainment_News/Music/2022/10/11/Blink-182-reunite-album-tour/9401665500551/", "source_label": "upi", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:00:52.696Z", "last_update": "2022-10-11T16:00:52.696Z"}}, {"model": "press.post", "pk": 258, "fields": {"title": "Netflix’s ‘The Redeem Team’ focuses on the redemption narrative of Kobe Bryant", "body": "Netflix’s The Redeem Team documentary is supposed to be about the 2008 US men’s Olympic basketball team and how it restored the honor of American hoops by recapturing the gold medal. For the most part, it delivers in recounting the tale. But the focus of this documentary, executive produced by LeBron James and Dwyane Wade, Read more...The post Netflix’s ‘The Redeem Team’ focuses on the redemption narrative of Kobe Bryant appeared first on Awful Announcing.", "image_link": null, "word_cloud_link": null, "source_link": "https://awfulannouncing.com/netflix/netflixs-the-redeem-team-focuses-mainly-on-the-redemption-narrative-of-kobe-bryant.html", "source_label": "awfulannouncing", "status": "PUBLISHED", "author": 110, "category": 2, "creation_date": "2022-10-11T16:00:54.601Z", "last_update": "2022-10-11T16:00:54.601Z"}}, {"model": "press.post", "pk": 259, "fields": {"title": "What Is a Soft Landing? Definition, Explanation & Example", "body": "What Is a Soft Landing in Economics?Statistics tell us that when it comes to flying, the most dangerous part is landing. As an airplane makes its final descent, much skill is required by the pilot to battle the wind, line up with the right runway, roll out the landing gear, and let the wheels ...", "image_link": "http://www.thestreet.com/.image/c_limit%2Ccs_srgb%2Ch_1200%2Cq_auto:good%2Cw_1200/MTkxNjU1NDgwNDU4NzQ5NDI2/soft-landing.png", "word_cloud_link": null, "source_link": "https://www.thestreet.com/dictionary/s/soft-landing", "source_label": "mainstreet", "status": "PUBLISHED", "author": 86, "category": 2, "creation_date": "2022-10-11T16:00:54.689Z", "last_update": "2022-10-11T16:00:54.689Z"}}, {"model": "press.post", "pk": 260, "fields": {"title": "3 major challenges facing CTOs right now", "body": "BT Ireland’s chief technology officer Conor Patterson talks about what fellow CTOs need to think about and the skills they need to future-proof themselves.Read more: 3 major challenges facing CTOs right now", "image_link": "https://www.siliconrepublic.com/wp-content/uploads/2022/10/BT_ConorPatterson_Thumb-330x251.jpg", "word_cloud_link": null, "source_link": "https://www.siliconrepublic.com/enterprise/cto-challenges-bt-ireland-tech-trends", "source_label": "siliconrepublic", "status": "PUBLISHED", "author": 111, "category": 2, "creation_date": "2022-10-11T16:00:56.638Z", "last_update": "2022-10-11T16:00:56.638Z"}}, {"model": "press.post", "pk": 261, "fields": {"title": "G7 vows to support Ukraine for as long as it takes", "body": "The Group of Seven (G7) nations committed on Tuesday to support Ukraine for as long as it takes, adding in a statement after a leaders’ call that any use by Russia of nuclear weapons would be met with severe consequences. “We will continue to provide financial, humanitarian, military, diplomatic and legal support and will stand firmly...", "image_link": null, "word_cloud_link": null, "source_link": "https://cyprus-mail.com/2022/10/11/g7-vows-to-support-ukraine-for-as-long-as-it-takes/", "source_label": "cyprus-mail", "status": "PUBLISHED", "author": 112, "category": 2, "creation_date": "2022-10-11T16:00:58.483Z", "last_update": "2022-10-11T16:00:58.483Z"}}, {"model": "press.post", "pk": 262, "fields": {"title": "Hockey Canada's under-fire chief executive and entire Board resign", "body": "Hockey Canada chief executive and President Scott Smith has resigned with immediate effect, while...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.insidethegames.biz/articles/1129089/hockey-canada-resignations", "source_label": "insidethegames", "status": "PUBLISHED", "author": 113, "category": 2, "creation_date": "2022-10-11T16:01:00.415Z", "last_update": "2022-10-11T16:01:00.415Z"}}, {"model": "press.post", "pk": 263, "fields": {"title": "Rising Oil Prices and Demand Cause Gas Prices to Jump", "body": "After months of gas prices decreasing every single day, we are starting to see weeks of those lower prices being wiped out by a new upswing in cost. Across the country, the average price of a gallon of gas is now $3.92 per gallon, according to AAA. Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://jalopnik.com/rising-oil-prices-and-demand-cause-gas-prices-to-jump-1849642369", "source_label": "jalopnik", "status": "PUBLISHED", "author": 114, "category": 2, "creation_date": "2022-10-11T16:01:02.649Z", "last_update": "2022-10-11T16:01:02.649Z"}}, {"model": "press.post", "pk": 264, "fields": {"title": "Brittney Renner Is A “Side Chik” In New Krystal Campaign + 2 Chainz As Creative Director", "body": "Popular Instagram model Brittany Renner is taking her cultural exploits to new heights with her latest partnership with Krystal’s “Side Chik” campaign. American fast food chain Krystal, has appointed Instagram fitness influencer Brittney Renner as the new face for their new “Side Chik” chicken sandwich advertisement. In addition, rapper 2 Chainz, who is a community […]The post Brittney Renner Is A “Side Chik” In New Krystal Campaign + 2 Chainz As Creative Director appeared first on SOHH.com.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sohh.com/brittney-renner-side-chik-krystal-campaign-2-chainz/", "source_label": "sohh", "status": "PUBLISHED", "author": 115, "category": 2, "creation_date": "2022-10-11T16:01:05.229Z", "last_update": "2022-10-11T16:01:05.229Z"}}, {"model": "press.post", "pk": 265, "fields": {"title": "Don’t Take to the Seas (Spanish Translated) [Image 2 of 2]", "body": "This graphic gives a few deterrent messages for migrants taking to the sea, mariner responsibility message, and information on who family's should call regarding their family member interdicted by the Coast Guard. (U.S. Coast Guard graphic by Petty Officer 2nd Class Jose Hernandez)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7458114/250x141_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7458114/dont-take-seas-spanish-translated", "source_label": "dvidshub", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:01:05.509Z", "last_update": "2022-10-11T16:01:05.509Z"}}, {"model": "press.post", "pk": 266, "fields": {"title": "Don’t Take to the Seas [Image 1 of 2]", "body": "This graphic gives a few deterrent messages for migrants taking to the sea, mariner responsibility message, and information on who family's should call regarding their family member interdicted by the Coast Guard. (U.S. Coast Guard graphic by Petty Officer 2nd Class Jose Hernandez)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7458113/250x141_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7458113/dont-take-seas", "source_label": "dvidshub", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:01:05.702Z", "last_update": "2022-10-11T16:01:05.702Z"}}, {"model": "press.post", "pk": 267, "fields": {"title": "5 men charged after nearly 300 illicit Cannabis plants seized in Uxbridge, Ont: police", "body": "Police said on Saturday, a search warrant was executed on Regional Road 1 after \"receiving information that several hundred cannabis plants were being grown on the property.\" ", "image_link": "https://globalnews.ca/wp-content/uploads/2022/06/drps-durham-police-durham-regional-police-e1656008351781.png?w=720&h=403&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9190179/cannabis-seized-uxbridge/", "source_label": "globalwinnipeg", "status": "PUBLISHED", "author": 116, "category": 2, "creation_date": "2022-10-11T16:01:08.381Z", "last_update": "2022-10-11T16:01:08.381Z"}}, {"model": "press.post", "pk": 268, "fields": {"title": "UK top court will take 'months' to decide Scottish referendum case", "body": "(marketscreener.com) The United Kingdom SupremeCourt said on Tuesday it would take months to reach a decisionon whether the Scottish government can hold a second referendumon independence next year without approval from the Britishparliament. Scottish First Minister Nicola Sturgeon, leader of theScottish National Party , has said she wants to hold...https://www.marketscreener.com/news/latest/UK-top-court-will-take-months-to-decide-Scottish-referendum-case--41982111/?utm_medium=RSS&utm_content=20221011", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/UK-top-court-will-take-months-to-decide-Scottish-referendum-case--41982111/?utm_medium=RSS&utm_content=20221011", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:01:08.557Z", "last_update": "2022-10-11T16:01:08.557Z"}}, {"model": "press.post", "pk": 269, "fields": {"title": "Haiti - Diaspora Covid-19 : Daily Bulletin #934", "body": "World : High plateau phase - Haiti : Insecurity, the Ministry of Health in difficulty - USA : The Covid is receding - Dominican Republic : Positive rate down - Quebec : Risk of an 8th wave - France : 2nd most contaminated country in Europe...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.haitilibre.com/en/news-37861-haiti-diaspora-covid-19-daily-bulletin-934.html", "source_label": "Haiti Libre", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:01:08.714Z", "last_update": "2022-10-11T16:01:08.714Z"}}, {"model": "press.post", "pk": 270, "fields": {"title": "The Sony WH-1000XM5 headphones have seen their first major price drop", "body": "If you’re in need of a new pair of noise cancellers, now might just be the best time as the Sony WH-1000XM5 have just had their first big price drop.  The 2022 update to the incredibly popular headphone series has been given its first big discount in Amazon’s Prime Early Access sale. The usually £380 […]The post The Sony WH-1000XM5 headphones have seen their first major price drop appeared first on Trusted Reviews.", "image_link": "https://www.trustedreviews.com/wp-content/uploads/sites/54/2022/05/Sony-WH-1000XM5-on-side-1024x683.jpg", "word_cloud_link": null, "source_link": "https://www.trustedreviews.com/deals/the-sony-wh-1000xm5-headphones-have-seen-their-first-major-price-drop-4274003?utm_source=keystone&utm_medium=keystone_core_reviews_rss&utm_campaign=trusted+reviews", "source_label": "theinquirer", "status": "PUBLISHED", "author": 117, "category": 2, "creation_date": "2022-10-11T16:01:11.701Z", "last_update": "2022-10-11T16:01:11.701Z"}}, {"model": "press.post", "pk": 271, "fields": {"title": "UC Berkeley refuses to fire music instructor over post branding female violinist 'a beast'", "body": "Published more than ten years ago, the long-deleted post by decorated violinist Dan Flanagan, a veteran instructor at the school, was made in regard to Canadian musician Lara St. John.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/11/14/63341273-0-image-a-4_1665495059582.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11302961/UC-Berkeley-refuses-fire-music-instructor-post-branding-female-violinist-beast.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:01:11.959Z", "last_update": "2022-10-11T16:01:11.959Z"}}, {"model": "press.post", "pk": 272, "fields": {"title": "Oddly enthusiastic Fox News hosts describe opportunities to get high for free", "body": "Not quite sure what's going on at Fox News in this clip, but perhaps someone walked too close to the coffee shop. They are laughing while discussing the plight of their neighborhood. Weird! Does their argument seem to be that the overwhelming popularity of weed in New York means it shouldn't be legal elsewhere? — Read the rest", "image_link": null, "word_cloud_link": null, "source_link": "https://boingboing.net/2022/10/11/oddly-enthusiastic-fox-news-hosts-describe-opportunities-to-get-high-for-free.html", "source_label": "boingboing", "status": "PUBLISHED", "author": 118, "category": 2, "creation_date": "2022-10-11T16:01:15.138Z", "last_update": "2022-10-11T16:01:15.138Z"}}, {"model": "press.post", "pk": 273, "fields": {"title": "Teško povređen vozač na Zrenjaninskom putu: Zadobio povrede glave i prelom kuka, prevezen na reanimaciju", "body": "Muškarac star 44 godine, zadobio je teške telesne povrede u udesu na Zrenjaninskom putu, kod skretanja za naselje Kovilovo, koji se desio oko 16 sati.", "image_link": "https://xdn.tf.rs/2022/09/21/saobracajna-nesreca-udes-udesi-sudar01.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/vesti/beograd/3568970-tesko-povredjen-vozac-na-zrenjaninskom-putu-zadobio-povrede-glave-i-prelom-kuka-prevezen-na-reanimaciju", "source_label": "Telegraf", "status": "PUBLISHED", "author": 119, "category": 2, "creation_date": "2022-10-11T16:01:17.661Z", "last_update": "2022-10-11T16:01:17.661Z"}}, {"model": "press.post", "pk": 274, "fields": {"title": "What use would Putin puppet Lukashenko's army be against Ukraine?", "body": "Alexander Lukashenko has announced he is deploying units to the Ukraine border and carrying out 'combat readiness' checks, hinting he may join the fighting against Kyiv.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/11/16/63345913-0-image-m-33_1665501346786.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11302989/What-use-Putin-puppet-Lukashenkos-army-against-Ukraine.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:01:17.765Z", "last_update": "2022-10-11T16:01:17.765Z"}}, {"model": "press.post", "pk": 275, "fields": {"title": "WD-40 Company Declares Regular Quarterly Dividend", "body": "(marketscreener.com) WD-40 Company today announced that its board of directors declared on Tuesday, October 11, 2022 a quarterly dividend of $0.78 per share, payable October 31, 2022 to stockholders of record at the close of business on October 21, 2022.About WD-40 CompanyWD-40 Company is a global marketing organization dedicated to creating positive lasting...https://www.marketscreener.com/quote/stock/WD-40-COMPANY-11364/news/WD-40-Company-Declares-Regular-Quarterly-Dividend-41982097/?utm_medium=RSS&utm_content=20221011", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/WD-40-COMPANY-11364/news/WD-40-Company-Declares-Regular-Quarterly-Dividend-41982097/?utm_medium=RSS&utm_content=20221011", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-11T16:01:17.969Z", "last_update": "2022-10-11T16:01:17.969Z"}}, {"model": "press.post", "pk": 276, "fields": {"title": "Seedling Token Trading 33.7% Higher This Week (SDLN)", "body": "Seedling Token Trading 33.7% Higher This Week (SDLN)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/11/seedling-token-trading-33-7-higher-this-week-sdln.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-11T16:01:18.157Z", "last_update": "2022-10-11T16:01:18.157Z"}}, {"model": "press.post", "pk": 277, "fields": {"title": "DigiSwap (DIGIS) Price Reaches $0.0024 on Exchanges", "body": "DigiSwap (DIGIS) Price Reaches $0.0024 on Exchanges", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/11/digiswap-digis-price-reaches-0-0024-on-exchanges.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-11T16:01:18.321Z", "last_update": "2022-10-11T16:01:18.322Z"}}, {"model": "press.post", "pk": 278, "fields": {"title": "Omnisphere DAO Price Reaches $0.0000 (OSPD)", "body": "Omnisphere DAO Price Reaches $0.0000 (OSPD)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/11/omnisphere-dao-price-reaches-0-0000-ospd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-11T16:01:18.461Z", "last_update": "2022-10-11T16:01:18.461Z"}}, {"model": "press.post", "pk": 279, "fields": {"title": "Redlight Node District Price Reaches $0.0489 (PLAYMATES)", "body": "Redlight Node District Price Reaches $0.0489 (PLAYMATES)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/11/redlight-node-district-price-reaches-0-0489-playmates.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-11T16:01:18.605Z", "last_update": "2022-10-11T16:01:18.605Z"}}, {"model": "press.post", "pk": 280, "fields": {"title": "Morning news rewind: Tuesday, Oct. 11", "body": "Here's a look back on who was on 'Global News Morning Saskatoon' for Tuesday, Oct. 11.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/06/Chris-Chatnal-GNM-Feature-Web-Graphic-2022.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9190088/saskatchewan-realtors-association-saskatoon-tribal-council-chiropractors/", "source_label": "globalwinnipeg", "status": "PUBLISHED", "author": 120, "category": 2, "creation_date": "2022-10-11T16:01:21.000Z", "last_update": "2022-10-11T16:01:21.000Z"}}, {"model": "press.post", "pk": 281, "fields": {"title": "Netcoincapital Reaches 1-Day Trading Volume of $26,685.00 (NCC)", "body": "Netcoincapital Reaches 1-Day Trading Volume of $26,685.00 (NCC)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/11/netcoincapital-reaches-1-day-trading-volume-of-26685-00-ncc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-11T16:01:21.170Z", "last_update": "2022-10-11T16:01:21.173Z"}}, {"model": "press.post", "pk": 282, "fields": {"title": "The Wasted Lands Hits Self Reported Market Capitalization of $328,286.62 (WAL)", "body": "The Wasted Lands Hits Self Reported Market Capitalization of $328,286.62 (WAL)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/11/the-wasted-lands-hits-self-reported-market-capitalization-of-328286-62-wal.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-11T16:01:21.277Z", "last_update": "2022-10-11T16:01:21.277Z"}}, {"model": "press.post", "pk": 283, "fields": {"title": "Mission Wealth Management LP Has $324,000 Stock Position in Marriott International, Inc. (NASDAQ:MAR)", "body": "Mission Wealth Management LP trimmed its stake in shares of Marriott International, Inc. (NASDAQ:MAR – Get Rating) by 4.4% during the second quarter, Holdings Channel reports. The firm owned 2,384 shares of the company’s stock after selling 110 shares during the period. Mission Wealth Management LP’s holdings in Marriott International were worth $324,000 at the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/mission-wealth-management-lp-has-324000-stock-position-in-marriott-international-inc-nasdaqmar-2.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:51.512Z", "last_update": "2022-10-12T16:00:51.512Z"}}, {"model": "press.post", "pk": 284, "fields": {"title": "Mission Wealth Management LP Acquires 714 Shares of DuPont de Nemours, Inc. (NYSE:DD)", "body": "Mission Wealth Management LP boosted its holdings in shares of DuPont de Nemours, Inc. (NYSE:DD – Get Rating) by 13.1% in the second quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The firm owned 6,162 shares of the basic materials company’s stock after purchasing an […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/mission-wealth-management-lp-acquires-714-shares-of-dupont-de-nemours-inc-nysedd-2.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:51.574Z", "last_update": "2022-10-12T16:00:51.574Z"}}, {"model": "press.post", "pk": 285, "fields": {"title": "Mission Wealth Management LP Boosts Position in iShares Biotechnology ETF (NASDAQ:IBB)", "body": "Mission Wealth Management LP grew its holdings in shares of iShares Biotechnology ETF (NASDAQ:IBB – Get Rating) by 25.5% during the 2nd quarter, according to its most recent Form 13F filing with the SEC. The firm owned 3,016 shares of the financial services provider’s stock after buying an additional 613 shares during the period. Mission […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/mission-wealth-management-lp-boosts-position-in-ishares-biotechnology-etf-nasdaqibb-2.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:51.657Z", "last_update": "2022-10-12T16:00:51.657Z"}}, {"model": "press.post", "pk": 286, "fields": {"title": "Supercar enthusiast's collection worth £29.7million up for auction including Ferraris", "body": "The Gran Turismo Collection spans 50 years of automotive history and features coveted models such as Ferrari's iconic Big 5, a 2022 Bugatti Chiron Super Sport 300+ and a 1971 Lamborghini Miura SV", "image_link": "https://i2-prod.mirror.co.uk/incoming/article28222388.ece/ALTERNATES/s98/0_SWNS_SUPERCAR_AUCTION_02.jpg", "word_cloud_link": null, "source_link": "https://www.mirror.co.uk/news/uk-news/supercar-enthusiasts-collection-worth-297million-28221782", "source_label": "Mirror", "status": "PUBLISHED", "author": 121, "category": 2, "creation_date": "2022-10-12T16:00:53.502Z", "last_update": "2022-10-12T16:00:53.502Z"}}, {"model": "press.post", "pk": 287, "fields": {"title": "Mission Wealth Management LP Boosts Stake in iShares MSCI USA Min Vol Factor ETF (BATS:USMV)", "body": "Mission Wealth Management LP boosted its stake in shares of iShares MSCI USA Min Vol Factor ETF (BATS:USMV – Get Rating) by 33.6% in the second quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The firm owned 5,591 shares of the company’s stock after buying […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/mission-wealth-management-lp-boosts-stake-in-ishares-msci-usa-min-vol-factor-etf-batsusmv.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:53.547Z", "last_update": "2022-10-12T16:00:53.547Z"}}, {"model": "press.post", "pk": 288, "fields": {"title": "Fintechs have made people’s lives unnecessarily complicated", "body": "The proliferation of products creates confusion rather than clarity", "image_link": null, "word_cloud_link": null, "source_link": "https://www.ft.com/content/85b24b15-8002-42af-8ae8-aadd7b5a06f3", "source_label": "Financial Times", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-12T16:00:53.655Z", "last_update": "2022-10-12T16:00:53.655Z"}}, {"model": "press.post", "pk": 289, "fields": {"title": "Mission Wealth Management LP Purchases 2,844 Shares of Ford Motor (NYSE:F)", "body": "Mission Wealth Management LP grew its position in shares of Ford Motor (NYSE:F – Get Rating) by 8.9% during the 2nd quarter, Holdings Channel.com reports. The firm owned 34,796 shares of the auto manufacturer’s stock after acquiring an additional 2,844 shares during the period. Mission Wealth Management LP’s holdings in Ford Motor were worth $387,000 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/mission-wealth-management-lp-purchases-2844-shares-of-ford-motor-nysef.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:53.737Z", "last_update": "2022-10-12T16:00:53.737Z"}}, {"model": "press.post", "pk": 290, "fields": {"title": "Corning Incorporated (NYSE:GLW) Shares Purchased by Mission Wealth Management LP", "body": "Mission Wealth Management LP grew its stake in shares of Corning Incorporated (NYSE:GLW – Get Rating) by 2.9% during the 2nd quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The institutional investor owned 13,039 shares of the electronics maker’s stock after acquiring an additional 365 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/corning-incorporated-nyseglw-shares-purchased-by-mission-wealth-management-lp.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:53.787Z", "last_update": "2022-10-12T16:00:53.787Z"}}, {"model": "press.post", "pk": 291, "fields": {"title": "Ohio ‘incel’ pleads guilty to plot to kill thousands of women at Ohio State", "body": "Tres Genco, 22, said in writings that he planned to kill women out of “hatred, jealousy, and revenge”", "image_link": "https://static.independent.co.uk/2021/07/22/13/newFile-3.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/world/americas/crime/tres-genco-incel-ohio-state-plea-guilty-b2201340.html", "source_label": "Independent", "status": "PUBLISHED", "author": 122, "category": 2, "creation_date": "2022-10-12T16:00:55.577Z", "last_update": "2022-10-12T16:00:55.577Z"}}, {"model": "press.post", "pk": 292, "fields": {"title": "Lafayette Investments Inc. Sells 1,020 Shares of Chevron Co. (NYSE:CVX)", "body": "Lafayette Investments Inc. lessened its position in shares of Chevron Co. (NYSE:CVX – Get Rating) by 6.9% in the second quarter, according to the company in its most recent Form 13F filing with the SEC. The fund owned 13,837 shares of the oil and gas company’s stock after selling 1,020 shares during the quarter. Lafayette […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/lafayette-investments-inc-sells-1020-shares-of-chevron-co-nysecvx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:55.666Z", "last_update": "2022-10-12T16:00:55.666Z"}}, {"model": "press.post", "pk": 293, "fields": {"title": "Intuitive Surgical, Inc. (NASDAQ:ISRG) Shares Bought by Dynamic Advisor Solutions LLC", "body": "Dynamic Advisor Solutions LLC raised its stake in Intuitive Surgical, Inc. (NASDAQ:ISRG – Get Rating) by 33.5% in the second quarter, according to the company in its most recent disclosure with the Securities & Exchange Commission. The fund owned 2,540 shares of the medical equipment provider’s stock after acquiring an additional 638 shares during the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/intuitive-surgical-inc-nasdaqisrg-shares-bought-by-dynamic-advisor-solutions-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:55.823Z", "last_update": "2022-10-12T16:00:55.823Z"}}, {"model": "press.post", "pk": 294, "fields": {"title": "Mondelez International, Inc. (NASDAQ:MDLZ) Shares Bought by Csenge Advisory Group", "body": "Csenge Advisory Group lifted its stake in shares of Mondelez International, Inc. (NASDAQ:MDLZ – Get Rating) by 7.6% during the 2nd quarter, according to the company in its most recent filing with the Securities and Exchange Commission (SEC). The fund owned 6,965 shares of the company’s stock after purchasing an additional 492 shares during the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/mondelez-international-inc-nasdaqmdlz-shares-bought-by-csenge-advisory-group.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:55.882Z", "last_update": "2022-10-12T16:00:55.882Z"}}, {"model": "press.post", "pk": 295, "fields": {"title": "Cypress Wealth Services LLC Has $750,000 Stake in The Procter & Gamble Company (NYSE:PG)", "body": "Cypress Wealth Services LLC grew its holdings in The Procter & Gamble Company (NYSE:PG – Get Rating) by 16.2% in the second quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The fund owned 5,214 shares of the company’s stock after buying an additional 725 shares […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/cypress-wealth-services-llc-has-750000-stake-in-the-procter-gamble-company-nysepg.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:55.967Z", "last_update": "2022-10-12T16:00:55.967Z"}}, {"model": "press.post", "pk": 296, "fields": {"title": "QUALCOMM Incorporated (NASDAQ:QCOM) Shares Sold by Csenge Advisory Group", "body": "Csenge Advisory Group lowered its holdings in QUALCOMM Incorporated (NASDAQ:QCOM – Get Rating) by 3.2% during the second quarter, according to its most recent disclosure with the Securities and Exchange Commission (SEC). The firm owned 5,053 shares of the wireless technology company’s stock after selling 165 shares during the quarter. Csenge Advisory Group’s holdings in […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/qualcomm-incorporated-nasdaqqcom-shares-sold-by-csenge-advisory-group.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:56.028Z", "last_update": "2022-10-12T16:00:56.028Z"}}, {"model": "press.post", "pk": 297, "fields": {"title": "Dynamic Advisor Solutions LLC Lowers Holdings in iShares MSCI USA Min Vol Factor ETF (BATS:USMV)", "body": "Dynamic Advisor Solutions LLC decreased its holdings in iShares MSCI USA Min Vol Factor ETF (BATS:USMV – Get Rating) by 13.4% in the 2nd quarter, according to the company in its most recent Form 13F filing with the SEC. The firm owned 6,200 shares of the company’s stock after selling 963 shares during the quarter. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/dynamic-advisor-solutions-llc-lowers-holdings-in-ishares-msci-usa-min-vol-factor-etf-batsusmv.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:56.113Z", "last_update": "2022-10-12T16:00:56.113Z"}}, {"model": "press.post", "pk": 298, "fields": {"title": "Dynamic Advisor Solutions LLC Acquires 972 Shares of First Trust NASDAQ Cybersecurity ETF (NASDAQ:CIBR)", "body": "Dynamic Advisor Solutions LLC lifted its holdings in shares of First Trust NASDAQ Cybersecurity ETF (NASDAQ:CIBR – Get Rating) by 9.3% during the 2nd quarter, according to its most recent disclosure with the SEC. The fund owned 11,384 shares of the company’s stock after purchasing an additional 972 shares during the period. Dynamic Advisor Solutions […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/dynamic-advisor-solutions-llc-acquires-972-shares-of-first-trust-nasdaq-cybersecurity-etf-nasdaqcibr.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:56.194Z", "last_update": "2022-10-12T16:00:56.194Z"}}, {"model": "press.post", "pk": 299, "fields": {"title": "Csenge Advisory Group Acquires 951 Shares of Cadence Design Systems, Inc. (NASDAQ:CDNS)", "body": "Csenge Advisory Group lifted its position in Cadence Design Systems, Inc. (NASDAQ:CDNS – Get Rating) by 46.4% during the second quarter, according to the company in its most recent filing with the Securities and Exchange Commission (SEC). The fund owned 2,999 shares of the software maker’s stock after buying an additional 951 shares during the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/csenge-advisory-group-acquires-951-shares-of-cadence-design-systems-inc-nasdaqcdns.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:56.255Z", "last_update": "2022-10-12T16:00:56.258Z"}}, {"model": "press.post", "pk": 300, "fields": {"title": "The Procter & Gamble Company (NYSE:PG) Shares Purchased by Founders Financial Securities LLC", "body": "Founders Financial Securities LLC raised its position in The Procter & Gamble Company (NYSE:PG – Get Rating) by 3.6% in the 2nd quarter, according to the company in its most recent 13F filing with the Securities and Exchange Commission (SEC). The institutional investor owned 22,695 shares of the company’s stock after acquiring an additional 793 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/12/the-procter-gamble-company-nysepg-shares-purchased-by-founders-financial-securities-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-12T16:00:56.364Z", "last_update": "2022-10-12T16:00:56.364Z"}}, {"model": "press.post", "pk": 301, "fields": {"title": "Man guilty of sextortion of B.C. teen Amanda Todd could seek concurrent term: Crown", "body": "A Dutch national returns to British Columbia Supreme Court as his multi-day sentencing for child sexploitation resumes.", "image_link": "https://www.cp24.com/polopoly_fs/1.6105825.1665588616!/httpImage/image.jpg_gen/derivatives/landscape_300/image.jpg", "word_cloud_link": null, "source_link": "https://www.cp24.com/news/man-guilty-of-sextortion-of-b-c-teen-amanda-todd-could-seek-concurrent-term-crown-1.6105824", "source_label": "CP24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-12T16:00:56.513Z", "last_update": "2022-10-12T16:00:56.513Z"}}, {"model": "press.post", "pk": 302, "fields": {"title": "$4.4M going to improve healthcare in rural Kentucky", "body": "LEXINGTON, Ky. (WTVQ) — Kentucky will receive $4.4 million in American Rescue Plan Act funds to improve healthcare in rural areas across the state. Below are the organizations that will receive money: God’s Pantry Food Bank will use a $585,000 grant to expand the food bank’s Mobile Pantry Program to increase food distribution to a total of 16 rural counties...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.wtvq.com/4-4m-going-to-improve-healthcare-in-rural-kentucky/", "source_label": "wtvq", "status": "PUBLISHED", "author": 123, "category": 2, "creation_date": "2022-10-12T16:00:58.521Z", "last_update": "2022-10-12T16:00:58.521Z"}}, {"model": "press.post", "pk": 303, "fields": {"title": "Gabby Agbonlahor reignites row with ‘petulant child’ Jurgen Klopp", "body": "'He’s cracking under the pressure...'", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/12/gabby-agbonlahor-reignites-row-with-petulant-child-jurgen-klopp-17551915/", "source_label": "Metro", "status": "PUBLISHED", "author": 124, "category": 2, "creation_date": "2022-10-12T16:01:00.534Z", "last_update": "2022-10-12T16:01:00.535Z"}}, {"model": "press.post", "pk": 304, "fields": {"title": "FTC finalising proposed rates for energy storage", "body": "Proposed rates for renewable energy storage in Barbados should be ready by the start of 2023. Minister of Business Development and Senior Minister Coordinating the Productive Sector Kerrie Symmonds made that disclosure during debate on a Resolution to take note of the Barbados Economic Recovery and Transformation (BERT) Plan 2022 in the House of Assembly […]The post FTC finalising proposed rates for energy storage appeared first on Barbados Today.", "image_link": "https://barbadostoday.bb/wp-content/uploads/2022/05/Kerrie-2.png", "word_cloud_link": null, "source_link": "https://barbadostoday.bb/2022/10/12/ftc-finalising-proposed-rates-for-energy-storage/", "source_label": "barbados Today", "status": "PUBLISHED", "author": 75, "category": 2, "creation_date": "2022-10-12T16:01:00.625Z", "last_update": "2022-10-12T16:01:00.625Z"}}, {"model": "press.post", "pk": 305, "fields": {"title": "Cardinals signing Ty’Son Williams to practice squad with several backs injured", "body": "Corey Clement isn’t the only running back joining the Cardinals practice squad this week. According to multiple reports, the team is also signing former Raven Ty’Son Williams as they deal with a number of injuries to the running backs on their active roster. James Conner has been dealing with a rib injury that limited him [more]", "image_link": "https://profootballtalk.nbcsports.com/wp-content/uploads/sites/25/2022/10/GettyImages-1235410810-e1665588608981.jpg?w=660&h=371&crop=1", "word_cloud_link": null, "source_link": "https://profootballtalk.nbcsports.com/2022/10/12/cardinals-signing-tyson-williams-to-practice-squad-with-several-backs-injured/", "source_label": "profootballtalk", "status": "PUBLISHED", "author": 125, "category": 2, "creation_date": "2022-10-12T16:01:02.620Z", "last_update": "2022-10-12T16:01:02.620Z"}}, {"model": "press.post", "pk": 306, "fields": {"title": "News Transcript News Briefs, Oct. 12", "body": "The Manalapan Police Department reported the following incidents which recently occurred in the community: On Sept. 21 at 1:14 p.m., a Manalapan resident reported that at 12:15 p.m., an unknown individual stole a 2022 four-door Mercedes-Benz vehicle valued at approximately $139,000 from the parking lot of a business at 357 Route 9, Manalapan. The key […]The post News Transcript News Briefs, Oct. 12 appeared first on centraljersey.com.", "image_link": "https://cdn.centraljersey.com/wp-content/uploads/sites/26/2019/02/news-2-300x200.jpg", "word_cloud_link": null, "source_link": "https://centraljersey.com/2022/10/12/news-transcript-news-briefs-oct-12/?utm_source=rss&utm_medium=rss&utm_campaign=news-transcript-news-briefs-oct-12", "source_label": "centraljersey", "status": "PUBLISHED", "author": 126, "category": 2, "creation_date": "2022-10-12T16:01:05.178Z", "last_update": "2022-10-12T16:01:05.178Z"}}, {"model": "press.post", "pk": 307, "fields": {"title": "Transactions in connection with share buy-back programme", "body": "(marketscreener.com) On 3 March 2022, H+H International A/S initiated a share buy-back programme in compliance with Article 5 of Regulation No 596/2014 of the European Parliament and of the Council of 16 April 2014 on Market Abuse and Commission Delegated Regulation 1052/2016 of 8 March 2016 . The share buy-back programme is expected to be realised over a...https://www.marketscreener.com/quote/stock/H-H-INTERNATIONAL-A-S-1412931/news/Transactions-in-connection-with-share-buy-back-programme-41992053/?utm_medium=RSS&utm_content=20221012", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/H-H-INTERNATIONAL-A-S-1412931/news/Transactions-in-connection-with-share-buy-back-programme-41992053/?utm_medium=RSS&utm_content=20221012", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-12T16:01:05.216Z", "last_update": "2022-10-12T16:01:05.217Z"}}, {"model": "press.post", "pk": 308, "fields": {"title": "Goldfish found to have travel distance memory", "body": "A team of researchers at the University of Oxford has found via experimentation that goldfish use markings on the floor below them to measure how far they have traveled. The findings are published in Proceedings of the Royal Society B.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/goldfish-found-to-have.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-10-goldfish-distance-memory.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-12T16:01:05.324Z", "last_update": "2022-10-12T16:01:05.324Z"}}, {"model": "press.post", "pk": 309, "fields": {"title": "Fred Hutchinson Cancer Center receives ‘transformative’ $710.5M gift from the Bezos family", "body": "Fred Hutchinson Cancer Center on Wednesday announced an enormous philanthropic gift of $710.5 million from Jackie and Mike Bezos, the parents of Amazon founder Jeff Bezos, pledged on behalf of the Bezos family. “This is a transformative gift,” said Dr. Thomas Lynch, Fred Hutch president and director, in an interview with GeekWire. “It is going to allow us to accelerate the pace and scale of research in both cancer and infectious disease.” The pledged gift is the largest in the 47-year history of the Seattle research institution, surpassing the $78 million committed this September by...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.geekwire.com/2022/fred-hutchinson-cancer-center-receives-transformative-gift-of-710-5m-from-the-bezos-family/", "source_label": "geekwire", "status": "PUBLISHED", "author": 127, "category": 2, "creation_date": "2022-10-12T16:01:08.041Z", "last_update": "2022-10-12T16:01:08.041Z"}}, {"model": "press.post", "pk": 310, "fields": {"title": "Phillies vs. Braves Game 2 prediction: Roll with hot hand", "body": "The Phillies have a chance to put the Braves behind the eight-ball with a win tonight, but can Zack Wheeler be trusted?", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/phillieswheeler.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/12/phillies-vs-braves-game-2-prediction-roll-with-hot-hand/", "source_label": "Post", "status": "PUBLISHED", "author": 128, "category": 2, "creation_date": "2022-10-12T16:01:10.833Z", "last_update": "2022-10-12T16:01:10.833Z"}}, {"model": "press.post", "pk": 311, "fields": {"title": "RSPCA prosecutes squirrel-torturing Yorkshire pensioner for drowning creatures 'in a water butt'", "body": "A 71-year-old man has been prosecuted by the RSPCA for torturing squirrels by capturing and drowning them.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmE1N2Y2NDMzLWI2N2EtNGRjZi04ZTgzLTJiODM3OGQ2NzY3MDo4OWFlOTljOS05MmU1LTQyM2EtYmJmZi1lMDMxMzRhOGZiNjI=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/crime/rspca-prosecutes-squirrel-torturing-yorkshire-pensioner-for-drowning-creatures-in-a-water-butt-3877445", "source_label": "beestontoday", "status": "PUBLISHED", "author": 129, "category": 2, "creation_date": "2022-10-12T16:01:13.533Z", "last_update": "2022-10-12T16:01:13.533Z"}}, {"model": "press.post", "pk": 312, "fields": {"title": "Leeds council winter warm spaces website will be up and running 'shortly', despite 'early October' claims", "body": "A new website and interactive map showing “warm spaces” across Leeds, where people struggling with their heating bills can spend time during the day, is set to go online “shortly”, Leeds City Council has insisted.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmZjZTY2Yzc4LTg2YmEtNDNmZC1iZDcwLTk5Mjg2YWRiZTE5YzpkMzA3ZDdlNC02MGQ5LTQ1NDktYWQxNC0yYWQzYWQwYjJjNjE=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/politics/leeds-council-winter-warm-spaces-website-will-be-up-and-running-shortly-despite-early-october-claims-3877221", "source_label": "beestontoday", "status": "PUBLISHED", "author": 130, "category": 2, "creation_date": "2022-10-12T16:01:16.572Z", "last_update": "2022-10-12T16:01:16.572Z"}}, {"model": "press.post", "pk": 313, "fields": {"title": "Newcastle’s midfield conductor is making football for him and his teammates look easy", "body": "Bruno Guimaraes is rightly getting all the attention on Tyneside.", "image_link": "https://www.shieldsgazette.com/webimg/b25lY21zOjhhM2UyMDczLWIzMjAtNGVlYi1iNGU5LTQzYWE3N2VhMjM1ZTo5OTVmYWZjZC0yNjRiLTQ5ODktYjI3MC01NTFkNTc3NDJmMDc=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.shieldsgazette.com/sport/football/newcastle-united/newcastles-midfield-conductor-is-making-football-for-him-and-his-teammates-look-easy-3878955", "source_label": "shieldsgazette", "status": "PUBLISHED", "author": 131, "category": 2, "creation_date": "2022-10-13T16:00:52.960Z", "last_update": "2022-10-13T16:00:52.960Z"}}, {"model": "press.post", "pk": 314, "fields": {"title": "COVID-19 infections up, hospitalizations steady, shows Manitoba’s weekly update", "body": "For the second week in a row, public health is reporting a rise in new COVID-19 infections in Manitoba. For the week ending Oct. 8, there were 341 laboratory-confirmed COVID-19 cases reported in Manitoba, an increase from 305 in the previous week. To date, Manitoba has reported a total of 150,554 infections. Daily COVID-19 lab […]", "image_link": null, "word_cloud_link": null, "source_link": "https://winnipegsun.com/news/provincial/covid-19-infections-up-hospitalizations-steady-shows-manitobas-weekly-update", "source_label": "winnipegsun", "status": "PUBLISHED", "author": 132, "category": 2, "creation_date": "2022-10-13T16:00:54.618Z", "last_update": "2022-10-13T16:00:54.618Z"}}, {"model": "press.post", "pk": 315, "fields": {"title": "Utire se teren za Borču kao Sudžou: Utvrđen prostorni plan za Srpsko-kineski industrijski park", "body": "Vlada Srbije donela je Uredbu o utvrđivanju Prostornog plana područja posebne namene za realizaciju projekta \"Srpsko-kineski industrijski park Mihajlo Pupin\".", "image_link": "https://xdn.tf.rs/2021/03/11/borca-2.jpg", "word_cloud_link": null, "source_link": "https://biznis.telegraf.rs/info-biz/3570067-utire-se-teren-za-borcu-kao-sudzou-utvrdjen-prostorni-plan-za-srpsko-kineski-industrijski-park", "source_label": "Telegraf", "status": "PUBLISHED", "author": 133, "category": 2, "creation_date": "2022-10-13T16:00:56.662Z", "last_update": "2022-10-13T16:00:56.662Z"}}, {"model": "press.post", "pk": 316, "fields": {"title": "Judge in Whitmer kidnap trial thinks juror is flirting with terrorism defendant", "body": "The judge presiding over one of the Gretchen Whitmer kidnap trials said he is concerned that a juror is flirting with one of the three defendants, 22-year-old Paul Bellar. A prosecutor complained to Jackson County Circuit Judge Thomas Wilson that Bellar appears to be flirting back with the woman. — Read the rest", "image_link": null, "word_cloud_link": null, "source_link": "https://boingboing.net/2022/10/13/judge-in-whitmer-kidnap-trial-thinks-juror-is-flirting-with-terrorism-defendant.html", "source_label": "boingboing", "status": "PUBLISHED", "author": 134, "category": 2, "creation_date": "2022-10-13T16:00:58.444Z", "last_update": "2022-10-13T16:00:58.444Z"}}, {"model": "press.post", "pk": 317, "fields": {"title": "New details released on Markham crash that left 2 dead, 1 injured", "body": "New details have been released on a crash in Markham that left two people in their 20s dead and a third victim injured. ", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/MicrosoftTeams-image-136-1-e1665674419804.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9195800/new-details-fatal-markham-crash/", "source_label": "chbcnews", "status": "PUBLISHED", "author": 135, "category": 2, "creation_date": "2022-10-13T16:01:00.333Z", "last_update": "2022-10-13T16:01:00.333Z"}}, {"model": "press.post", "pk": 318, "fields": {"title": "Holocaust survivor opens Italy’s new parliament", "body": "Parliamentarians give Liliana Segre, 92, a standing ovation nearly 100 years after Mussolini came to power.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.aljazeera.com/news/2022/10/13/holocaust-survivor-opens-italys-new-parliament", "source_label": "Al Jazeera English", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-13T16:01:00.423Z", "last_update": "2022-10-13T16:01:00.423Z"}}, {"model": "press.post", "pk": 319, "fields": {"title": "Hunter Biden's lawyer sent threatening texts to right wing group Marco Polo", "body": "In texts exclusively obtained by DailyMail.com, Hollywood entertainment lawyer Morris sent the texts to a member of right wing group Marco Polo.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/10/18/63312955-0-image-a-72_1665421941381.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11292509/Hunter-Bidens-lawyer-sent-threatening-texts-right-wing-group-Marco-Polo.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "mailonsunday", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-13T16:01:00.537Z", "last_update": "2022-10-13T16:01:00.537Z"}}, {"model": "press.post", "pk": 320, "fields": {"title": "Martha Stewart is Blissfully Unaware of Kardashian Drama, Asks Khloé “Do You Have a Husband?” on ‘The Kardashians’", "body": "\"I don't read and watch all the stuff.\" - Martha Stewart", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/martha-stewart-kardashians.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/13/martha-stewart-the-kardashians-hulu-khloe-husband-season-2-episode-4-recap/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-13T16:01:00.703Z", "last_update": "2022-10-13T16:01:00.703Z"}}, {"model": "press.post", "pk": 321, "fields": {"title": "Jamie Lee Curtis and the Fractured Arc of Laurie Strode in ‘Halloween’", "body": "We’re diving into Curtis’ accomplished performances as one of the most famous final girls in horror film history across the ‘Halloween’ franchise.", "image_link": null, "word_cloud_link": null, "source_link": "https://filmschoolrejects.com/jamie-lee-curtis-halloween/#utm_source=rss&utm_medium=rss&utm_campaign=jamie-lee-curtis-halloween", "source_label": "filmschoolrejects", "status": "PUBLISHED", "author": 136, "category": 2, "creation_date": "2022-10-13T16:01:02.949Z", "last_update": "2022-10-13T16:01:02.950Z"}}, {"model": "press.post", "pk": 322, "fields": {"title": "Best Ninja Foodi deals for October 2022", "body": "With the right appliances, home cooks can gain the confidence to try new recipes and even create their own.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2019/04/ninja-op302-foodi-cooker4.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/home/best-ninja-foodi-deals/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 137, "category": 2, "creation_date": "2022-10-13T16:01:05.609Z", "last_update": "2022-10-13T16:01:05.609Z"}}, {"model": "press.post", "pk": 323, "fields": {"title": "APPLE INC : Credit Suisse gives a Buy rating", "body": "(marketscreener.com) Credit Suisse analyst Shannon Cross maintains his Buy rating on the stock. The target price is lowered from USD 201 to USD 190.https://www.marketscreener.com/quote/stock/APPLE-INC-4849/news/APPLE-INC-Credit-Suisse-gives-a-Buy-rating-42001867/?utm_medium=RSS&utm_content=20221013", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/APPLE-INC-4849/news/APPLE-INC-Credit-Suisse-gives-a-Buy-rating-42001867/?utm_medium=RSS&utm_content=20221013", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-13T16:01:05.837Z", "last_update": "2022-10-13T16:01:05.837Z"}}, {"model": "press.post", "pk": 324, "fields": {"title": "Government formally submits application for second emergency power station in Dublin", "body": "The proposed Huntstown facility is expected to provide approximately 50 megawatts to the Irish grid.", "image_link": "https://c3.thejournal.ie/media/2022/10/huntstown-702-1-230x150.jpg", "word_cloud_link": null, "source_link": "https://www.thejournal.ie/emergency-power-station-dublin-5892254-Oct2022/", "source_label": "thejournal", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-13T16:01:05.985Z", "last_update": "2022-10-13T16:01:05.985Z"}}, {"model": "press.post", "pk": 325, "fields": {"title": "Leeds Light Night 2022: live updates as light shows take over the city centre", "body": "Light Night 2022 is upon us, with visitors to Leeds city centre promised some jaw-dropping events and displays.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOjU2N2I0MDQ2LTE4ODktNGRkOS04ZGY4LWYwMGMyOWNkZTdjNToyNzkyZjQxYi00ZjkxLTQwMmItYjdiMi0yYzhlOGVlMzNmY2Y=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/whats-on/arts-and-entertainment/leeds-light-night-2022-live-updates-as-light-shows-take-over-the-city-centre-3878940", "source_label": "horsforthtoday", "status": "PUBLISHED", "author": 130, "category": 2, "creation_date": "2022-10-13T16:01:06.129Z", "last_update": "2022-10-13T16:01:06.129Z"}}, {"model": "press.post", "pk": 326, "fields": {"title": "Leeds estate agent Redrow launches partnership with charity Zarach to help 'give every head a bed'", "body": "Redrow has launched a partnership with Leeds-based charity, Zarach, to help give urgent support to families in need.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmM4MmI4NWIyLTI3MGQtNGZiZS05MjQyLWQ2NTVkOWNlZjdmNDpjNzhjYjg3Yy1mYTQ3LTQ4YWItOGFmMS00MTU4NTFjMWM2ODg=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/lifestyle/homes-and-gardens/leeds-estate-agent-redrow-launches-partnership-with-charity-zarach-to-help-give-every-head-a-bed-3875553", "source_label": "horsforthtoday", "status": "PUBLISHED", "author": 138, "category": 2, "creation_date": "2022-10-13T16:01:08.689Z", "last_update": "2022-10-13T16:01:08.689Z"}}, {"model": "press.post", "pk": 327, "fields": {"title": "Mariners vs. Astros prediction: Bet on Seattle rebound in Game 2 of ALDS", "body": "Lebron James’ son Bronny James has signed an endorsement deal with Nike. Not to be outdone President Biden’s son Hunter Biden has signed a deal with Theygotnuthinonme, a laptop security company. Congrats to both and to the proud dads. The Mariners let Game 1 get away. Seattle led 7-3 but a Yordan Alvarez walk-off three-run...", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/Luis-Castillo-1.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/13/mariners-vs-astros-prediction-bet-on-seattle-rebound/", "source_label": "Post", "status": "PUBLISHED", "author": 139, "category": 2, "creation_date": "2022-10-13T16:01:10.919Z", "last_update": "2022-10-13T16:01:10.919Z"}}, {"model": "press.post", "pk": 328, "fields": {"title": "Sister of Leeds prisoner who died 'scared, starving, sick, and alone' speaks out as prison death report is published", "body": "The sister of a man with suspected learning difficulties has claimed there has been “no justice” following the death of her brother, who died in HMP Leeds three years ago", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmZmMzA5MDgwLTkyYWQtNDc4OC05ODI3LTM2YWQ3NzlmOTBhNDoxOTc2NTM5Ni1mYzgzLTQ4N2ItYTVhZC1jZjg5YzQzYTdlZmM=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/crime/sister-of-leeds-prisoner-who-died-scared-starving-sick-and-alone-speaks-out-as-prison-death-report-is-published-3878775", "source_label": "horsforthtoday", "status": "PUBLISHED", "author": 130, "category": 2, "creation_date": "2022-10-13T16:01:11.092Z", "last_update": "2022-10-13T16:01:11.092Z"}}, {"model": "press.post", "pk": 329, "fields": {"title": "New street wardens to tackle antisocial behaviour in Worksop", "body": "Four wardens are being recruited in a tackle anti-social behaviour blighting Worksop town centre.", "image_link": "https://www.worksopguardian.co.uk/webimg/b25lY21zOjUzYWRmNTEyLTEzMjQtNDQ4ZC05N2NmLTkyZWVkOWFiZGZmMTo1ZmU2NGQzMi03ZDM3LTRiMzQtOWM3Ny0zMzMzNTdhODMzYjQ=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.worksopguardian.co.uk/news/crime/new-street-wardens-to-tackle-antisocial-behaviour-in-worksop-3876771", "source_label": "worksopguardian", "status": "PUBLISHED", "author": 140, "category": 2, "creation_date": "2022-10-13T16:01:13.193Z", "last_update": "2022-10-13T16:01:13.193Z"}}, {"model": "press.post", "pk": 330, "fields": {"title": "Starbucks Customers Can Now Earn Delta SkyMiles", "body": "Beginning Wednesday, the coffee chain is partnering with Delta Air Lines and awarding 1 mile for every $1 spent at Starbucks in an alliance between \"two of America's most highly regarded loyalty programs,\" the companies said in a press release.The post Starbucks Customers Can Now Earn Delta SkyMiles appeared first on The Seattle Medium.", "image_link": null, "word_cloud_link": null, "source_link": "https://seattlemedium.com/starbucks-customers-can-now-earn-delta-skymiles/", "source_label": "seattlemedium", "status": "PUBLISHED", "author": 141, "category": 2, "creation_date": "2022-10-13T16:01:15.791Z", "last_update": "2022-10-13T16:01:15.791Z"}}, {"model": "press.post", "pk": 331, "fields": {"title": "Kim progovorila pred milionima gledalaca o svojoj intimi: \"Uradili smo to mojoj baki u čast, ispred kamina\"", "body": "Scene iz rijalitija porodice Kardašijan ne prestaju da nas iznenađuju, posebno postupci i izjave pojedinih aktera. Tako je Kim sada priznala da je imala intimne odnose sa svojim bivšim partnerom Pitom Dejvidsonom, ispred kamina, ali u \"bakinu čast\", čime je sve zapanjila!", "image_link": "https://xdn.tf.rs/2022/09/17/kim-kardashian-kim-kardasijan-0723289312.jpg?ver=462551", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/jetset/holivud/3569918-kim-progovorila-pred-milionima-gledalaca-o-svojoj-intimi-uradili-smo-to-mojoj-baki-u-cast-ispred-kamina", "source_label": "Telegraf", "status": "PUBLISHED", "author": 142, "category": 2, "creation_date": "2022-10-13T16:01:18.515Z", "last_update": "2022-10-13T16:01:18.515Z"}}, {"model": "press.post", "pk": 332, "fields": {"title": "Leeds Bradford Airport ranks among highest for airport arrests, including paedophile travelling from Ireland", "body": "Leeds Bradford Airport had the second highest number of offenders detained at any airport outside of London, according to a new analysis.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmFhNjJhNmQxLTQ4MjEtNDczOS1hYTQ3LTRjZGZhYTljMDBhYTo3MmQxMzNiZS1lZTRiLTRlMzktODhkNy0zZDczOWQ1MGY4N2Q=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/transport/leeds-bradford-airport-ranks-among-highest-for-airport-arrests-including-paedophile-travelling-from-ireland-3878392", "source_label": "horsforthtoday", "status": "PUBLISHED", "author": 47, "category": 2, "creation_date": "2022-10-13T16:01:18.715Z", "last_update": "2022-10-13T16:01:18.715Z"}}, {"model": "press.post", "pk": 333, "fields": {"title": "Motorola edge 30 fusion: Neprikosnoven vođa u klasi, idealan balans dizajna i performansi", "body": "Telefon je elegantan, moderan i sposoban da “udara” mnogo iznad svoje kategorije", "image_link": "https://xdn.tf.rs/2022/10/12/motorola-edge-30-fusion-foto-nikola-andjic-7.jpg?ver=458018", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/hi-tech/mobilni/3569864-motorola-edge-30-fusion-neprikosnoven-vodja-u-klasi-idealan-balans-dizajna-i-performansi", "source_label": "Telegraf", "status": "PUBLISHED", "author": 143, "category": 2, "creation_date": "2022-10-13T16:01:21.083Z", "last_update": "2022-10-13T16:01:21.083Z"}}, {"model": "press.post", "pk": 334, "fields": {"title": "Retired taxi driver supplemented pension as cocaine courier, Leeds court hears", "body": "A retired taxi driver looking to supplement his pension has been jailed after police caught him with tens of thousands of pounds worth of cocaine.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmVlY2U4OTJjLTUwZjMtNDk3Mi04YmMxLWExODE2NjFjOWJiZToyYWExNzA5Ni1hOWM4LTRjNjgtOGQ4YS00YjUxNGViYTFhMjY=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/crime/retired-taxi-driver-supplemented-pension-as-cocaine-courier-leeds-court-hears-3878258", "source_label": "horsforthtoday", "status": "PUBLISHED", "author": 144, "category": 2, "creation_date": "2022-10-13T16:01:23.118Z", "last_update": "2022-10-13T16:01:23.118Z"}}, {"model": "press.post", "pk": 335, "fields": {"title": "My savage grandma has a ‘family ranking board’ — here’s why she put me in last place", "body": "Comedian Dan LaMorte revealed that his nana ranks her 10 grandchildren from most to least favorite on a display set up in her living room. ", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/grandma-ranking1.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/13/my-savage-grandma-has-a-family-ranking-board-heres-why-she-put-me-in-last-place/", "source_label": "Post", "status": "PUBLISHED", "author": 145, "category": 2, "creation_date": "2022-10-13T16:01:25.142Z", "last_update": "2022-10-13T16:01:25.142Z"}}, {"model": "press.post", "pk": 336, "fields": {"title": "Pivot Gang Announces Their Fifth Anniversary John Walt Day Concert", "body": "Getty Image The Chicago indie-rap super crew's founder was stabbed to death in 2017.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/music/pivot-gang-john-walt-day-2022/", "source_label": "hitfix", "status": "PUBLISHED", "author": 146, "category": 2, "creation_date": "2022-10-13T16:01:26.976Z", "last_update": "2022-10-13T16:01:26.976Z"}}, {"model": "press.post", "pk": 337, "fields": {"title": "UK PM Truss and finance minister working closely ahead of fiscal statement - spokeswoman", "body": "(marketscreener.com) British Prime Minister Liz Truss and Finance Minister Kwasi Kwarteng are working closely ahead of a fiscal statement at the end of the month on supporting growth, Truss's spokeswoman said on Thursday, repeating there had been no reversal in current tax plans.https://www.marketscreener.com/news/latest/UK-PM-Truss-and-finance-minister-working-closely-ahead-of-fiscal-statement-spokeswoman--42001864/?utm_medium=RSS&utm_content=20221013", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/UK-PM-Truss-and-finance-minister-working-closely-ahead-of-fiscal-statement-spokeswoman--42001864/?utm_medium=RSS&utm_content=20221013", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-13T16:01:27.052Z", "last_update": "2022-10-13T16:01:27.052Z"}}, {"model": "press.post", "pk": 338, "fields": {"title": "Le gaz de cuisson non convoité dans la ville de Bujumbura", "body": "Le gaz de cuisson suscite peu d’engouement chez les ménages urbains. Il est largement utilisé dans les hôtels et restaurants.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.iwacu-burundi.org/le-gaz-de-cuisson-non-convoite-dans-la-ville-de-bujumbura/", "source_label": "IWACU", "status": "PUBLISHED", "author": 147, "category": 2, "creation_date": "2022-10-13T16:01:28.905Z", "last_update": "2022-10-13T16:01:28.905Z"}}, {"model": "press.post", "pk": 339, "fields": {"title": "FC Edinburgh chairman Jim Brown admits club being top of League One is 'surreal'", "body": "FC Edinburgh chairman Jim Brown has had just more than a week to digest the club's rise to the summit of League One.", "image_link": "https://www.edinburghnews.scotsman.com/webimg/b25lY21zOjJjYWRkMzkxLWY2ZWYtNGU1Zi1iMzdjLWMwNDUyNDg0NDNmODo4YzFhODg3Ny1iNjY3LTQ5MmEtYjQ2Zi03ZTU0NDM2ZmJjMDY=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.edinburghnews.scotsman.com/sport/football/fc-edinburgh-chairman-jim-brown-admits-club-being-top-of-league-one-is-surreal-3878949", "source_label": "edinburghnews", "status": "PUBLISHED", "author": 148, "category": 2, "creation_date": "2022-10-13T16:01:30.747Z", "last_update": "2022-10-13T16:01:30.747Z"}}, {"model": "press.post", "pk": 340, "fields": {"title": "El Paso County Sheriff’s Office searching for missing 74-year-old woman", "body": "EL PASO COUNTY, Colo. (KRDO) -- The El Paso County Sheriff's Office is searching for an elderly woman last seen Wednesday. According to the EPCSO, 74-year-old Bernice was last seen around 9:30 p.m. at 1400 Chadwick Drive. The sheriff's office says Bernice suffers from symptoms related to cognitive decline. She was last seen wearing whiteThe post El Paso County Sheriff’s Office searching for missing 74-year-old woman appeared first on KRDO.", "image_link": null, "word_cloud_link": null, "source_link": "https://krdo.com/news/top-stories/2022/10/13/el-paso-county-sheriffs-office-searching-for-missing-74-year-old-woman/", "source_label": "krdo", "status": "PUBLISHED", "author": 149, "category": 2, "creation_date": "2022-10-13T16:01:32.546Z", "last_update": "2022-10-13T16:01:32.546Z"}}, {"model": "press.post", "pk": 341, "fields": {"title": "NIKE INC : Credit Suisse keeps its Buy rating", "body": "(marketscreener.com) Michael Binetti from Credit Suisse retains his positive opinion on the stock with a Buy rating. The target price is unchanged and still at USD 110.https://www.marketscreener.com/quote/stock/NIKE-INC-13739/news/NIKE-INC-Credit-Suisse-keeps-its-Buy-rating-42001854/?utm_medium=RSS&utm_content=20221013", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/NIKE-INC-13739/news/NIKE-INC-Credit-Suisse-keeps-its-Buy-rating-42001854/?utm_medium=RSS&utm_content=20221013", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-13T16:01:32.596Z", "last_update": "2022-10-13T16:01:32.596Z"}}, {"model": "press.post", "pk": 342, "fields": {"title": "Texas Democrat doctored photo of GOP rival for ad", "body": "A campaign ad from a Democratic congressional candidate in Texas has raised eyebrows – by doctoring a photo of his Republican challenger, according to a report.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/texas-running.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/13/texas-democrat-doctored-photo-of-gop-rival-for-ad/", "source_label": "Post", "status": "PUBLISHED", "author": 150, "category": 2, "creation_date": "2022-10-13T16:01:34.249Z", "last_update": "2022-10-13T16:01:34.249Z"}}, {"model": "press.post", "pk": 343, "fields": {"title": "Self-watering plant pots are here to help accidental house plant killers", "body": "POTR are here to save the lives of your chronically dehydrated house plants", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/14/self-watering-pots-are-here-to-help-accidental-house-plant-killers-17567510/", "source_label": "Metro", "status": "PUBLISHED", "author": 151, "category": 2, "creation_date": "2022-10-14T16:00:53.853Z", "last_update": "2022-10-14T16:00:53.853Z"}}, {"model": "press.post", "pk": 344, "fields": {"title": "The best games on PlayStation Plus, Extra, and Premium", "body": "To get the most bang for your buck, with no hidden gems that go under your radar, here are the best games to play on PS Plus Essential, Extra, and Premium.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2022/04/ps5-playstation-5-controller-lifestyle.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/gaming/best-games-on-playstation-plus-ps-extra-premium/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 152, "category": 2, "creation_date": "2022-10-14T16:00:55.603Z", "last_update": "2022-10-14T16:00:55.603Z"}}, {"model": "press.post", "pk": 345, "fields": {"title": "Russian submarine spotted off French coast end-September- BFM", "body": "PARIS — A Russian submarine was spotted sailing on the surface off the Brittany coast at the end of September and was escorted by the French navy, BFM TV reported. (Reporting by GV De Clercq; Editing by Alex Richardson)", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/russian-submarine-spotted-off-french-coast-end-september-bfm", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-14T16:00:55.684Z", "last_update": "2022-10-14T16:00:55.684Z"}}, {"model": "press.post", "pk": 346, "fields": {"title": "Bruno Mars renuncia a competir en los Grammy", "body": "Bruno Mars anunció este jueves que no competirá en la próxima edición de los Grammy con el disco An Evening With Silk Sonic, publicado junto a Anderson .Paak bajo el dúo Silk Sonic, ya que no lo ha presentado a la lista de trabajos a considerar por los votantes de la Academia de la Música.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sandiegouniontribune.com/en-espanol/espectaculos/gente/articulo/2022-10-14/bruno-mars-renuncia-a-competir-en-los-grammy", "source_label": "signonsandiego", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-14T16:00:55.759Z", "last_update": "2022-10-14T16:00:55.759Z"}}, {"model": "press.post", "pk": 347, "fields": {"title": "AvalonBay: Trading At 2015 Levels Despite Apartment Asset Boom", "body": "AvalonBay: Trading At 2015 Levels Despite Apartment Asset Boom", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4546595-avalonbay-trading-at-2015-levels-despite-apartment-asset-boom?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-14T16:00:55.917Z", "last_update": "2022-10-14T16:00:55.917Z"}}, {"model": "press.post", "pk": 348, "fields": {"title": "French dairy giant Lactalis to keep Russia business", "body": "(marketscreener.com) Lactalis, the world's largestdairy company, said on Friday it will maintain its activities inRussia to supply the local food market, after French peer Danoneannounced it would cede control of its dairy businessin the country. \"We have decided at this stage to remain in Russia,\" aspokesperson told Reuters. \"We consider that we...https://www.marketscreener.com/quote/stock/DANONE-4634/news/French-dairy-giant-Lactalis-to-keep-Russia-business-42010592/?utm_medium=RSS&utm_content=20221014", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/DANONE-4634/news/French-dairy-giant-Lactalis-to-keep-Russia-business-42010592/?utm_medium=RSS&utm_content=20221014", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-14T16:00:56.001Z", "last_update": "2022-10-14T16:00:56.001Z"}}, {"model": "press.post", "pk": 349, "fields": {"title": "HOA Homefront: Know your governing documents", "body": "These documents are literally the legal glue holding the association together.", "image_link": "https://www.pressenterprise.com/wp-content/uploads/2022/10/OCR-L-HOAHOMEFRONT-1016.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.pressenterprise.com/2022/10/14/hoa-homefront-know-your-governing-documents/", "source_label": "pe", "status": "PUBLISHED", "author": 153, "category": 2, "creation_date": "2022-10-14T16:00:57.821Z", "last_update": "2022-10-14T16:00:57.821Z"}}, {"model": "press.post", "pk": 350, "fields": {"title": "Lufthansa Technik Philippines int’l pitch finalists announced", "body": "Twelve finalists presented their innovative ideas in the field of aviation in a hybrid pitch competition event at Villamor Air Base.The post Lufthansa Technik Philippines int’l pitch finalists announced appeared first on Newsbytes.PH.", "image_link": null, "word_cloud_link": null, "source_link": "/2022/10/14/lufthansa-technik-philippines-intl-pitch-finalists-announced/?utm_source=rss&utm_medium=rss&utm_campaign=lufthansa-technik-philippines-intl-pitch-finalists-announced", "source_label": "newsbytes", "status": "PUBLISHED", "author": 154, "category": 2, "creation_date": "2022-10-14T16:00:59.741Z", "last_update": "2022-10-14T16:00:59.741Z"}}, {"model": "press.post", "pk": 351, "fields": {"title": "Cwm LLC Has $9.16 Million Holdings in Costco Wholesale Co. (NASDAQ:COST)", "body": "Cwm LLC Has $9.16 Million Holdings in Costco Wholesale Co. (NASDAQ:COST)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/14/cwm-llc-has-9-16-million-holdings-in-costco-wholesale-co-nasdaqcost.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-14T16:00:59.833Z", "last_update": "2022-10-14T16:00:59.833Z"}}, {"model": "press.post", "pk": 352, "fields": {"title": "2022 Municipal Election: Mayor Candidate Questions", "body": "Seaway News reached out to candidates running for Mayor and asked the following questions, here are the responses we received. *As of press time* QUESTION #1: What is your number…L’article 2022 Municipal Election: Mayor Candidate Questions est apparu en premier sur Cornwall Seaway News.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cornwallseawaynews.com/politics/2022-municipal-election-mayor-candidate-questions/", "source_label": "cornwallseawaynews", "status": "PUBLISHED", "author": 155, "category": 2, "creation_date": "2022-10-14T16:01:01.757Z", "last_update": "2022-10-14T16:01:01.757Z"}}, {"model": "press.post", "pk": 353, "fields": {"title": "My Heart Broke Watching Carole Struggle in ‘The Great British Baking Show’ “Dessert Week”", "body": "Major spoilers, but The Great British Baking Show “Dessert Week” was a welcome return to form for the Netflix show after the disaster that was “Mexican Week.” Forget tacos and tres leches cake. This week, the British bakers were asked to bake such British favorites as steamed puddings and lemon meringue pie. Judges Paul Hollywood...", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/carole-gbbs.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/14/the-great-british-baking-show-desserts-week-eliminated-baker-carole/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-14T16:01:01.885Z", "last_update": "2022-10-14T16:01:01.885Z"}}, {"model": "press.post", "pk": 354, "fields": {"title": "Stanford hopes Tremeyne’s resurgence can lead to upset of Notre Dame", "body": "“It doesn't matter if the ball’s behind me, in front of me, going into the DB’s back. I’m just doing whatever I can do to catch the ball,\" said Stanford's Brycen Tremayne.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/10/AP22282168163525.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/10/14/stanford-hopes-tremeynes-resurgence-can-lead-to-upset-of-notre-dame/", "source_label": "The Mercury News", "status": "PUBLISHED", "author": 156, "category": 2, "creation_date": "2022-10-14T16:01:04.243Z", "last_update": "2022-10-14T16:01:04.243Z"}}, {"model": "press.post", "pk": 355, "fields": {"title": "Važilo je za umanjenicu, a sada je samostalno ime: \"Ona koja sija i donosi svetlost\"", "body": "Dok su nekada bila popularna dugačka imena, sada su na vrhu liste ona kratka. Među najpopularnijih imenima od četiri slova nalazi se žensko ime Nora", "image_link": "https://xdn.tf.rs/2022/05/25/znacenje-imena-devojcica-ponedeljak-30.-maj-nela-01.jpg?ver=938705", "word_cloud_link": null, "source_link": "https://ona.telegraf.rs/porodica-deca/3570377-znacenje-imena-nora", "source_label": "Telegraf", "status": "PUBLISHED", "author": 157, "category": 2, "creation_date": "2022-10-14T16:01:06.794Z", "last_update": "2022-10-14T16:01:06.794Z"}}, {"model": "press.post", "pk": 356, "fields": {"title": "Odlučeno: Zvezde Granda prelaze na Pink, poznat i datum početka emitovanja", "body": "Nova sezona najpopularnijeg muzičkog takmičenja Zvezde Granda, od ove sezone će se emitovati na televiziji Pink.", "image_link": "https://xdn.tf.rs/2022/10/14/zvezde-granda-emisija-102.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/jetset/vesti-jetset/3570577-odluceno-zvezde-granda-prelaze-na-pink-poznat-i-datum-pocetka-emitovanja", "source_label": "Telegraf", "status": "PUBLISHED", "author": 158, "category": 2, "creation_date": "2022-10-14T16:01:09.366Z", "last_update": "2022-10-14T16:01:09.366Z"}}, {"model": "press.post", "pk": 357, "fields": {"title": "The She-Hulk Finale Could Have Introduced a Very Different Kevin", "body": "To say the season finale of She-Hulk broke the fourth wall is an understatement; instead, it would be more accurate to say it was Hulk-Smashed into a fine powder. Your appreciation for the unbelievably meta ending may vary, but it’s worth noting that the... entity pulling the strings of season one was originally…Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://gizmodo.com/she-hulk-finale-kevin-feige-marvel-disney-john-hamm-1849658404", "source_label": "gizmodo", "status": "PUBLISHED", "author": 159, "category": 2, "creation_date": "2022-10-14T16:01:12.171Z", "last_update": "2022-10-14T16:01:12.175Z"}}, {"model": "press.post", "pk": 358, "fields": {"title": "India Vows to Speed Up Diversification of Oil Sourcing Following OPEC+ Production Cut", "body": "Delhi’s refiners have increased Ural grade intakes since April as Moscow offered oil at discounted prices, resulting in over $4 billion in savings. India rejected the West's criticism and continued to buy Russian oil in accordance with its national interests.", "image_link": null, "word_cloud_link": null, "source_link": "https://sputniknews.com/20221014/india-vows-to-speed-up-diversification-of-oil-sourcing-following-opec-production-cut-1101852825.html", "source_label": "en", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-14T16:01:12.293Z", "last_update": "2022-10-14T16:01:12.293Z"}}, {"model": "press.post", "pk": 359, "fields": {"title": "10 Fayette middle school students celebrate REACH scholarship signing day", "body": "Ten Fayette County middle school students made their bright futures official as they celebrated winning a $10,000 REACH Georgia Scholarship with a signing ceremony on October 12. The 10 winners […]The post 10 Fayette middle school students celebrate REACH scholarship signing day appeared first on The Citizen.", "image_link": null, "word_cloud_link": null, "source_link": "https://thecitizen.com/2022/10/14/10-fayette-middle-school-students-celebrate-reach-scholarship-signing-day/", "source_label": "thecitizen", "status": "PUBLISHED", "author": 160, "category": 2, "creation_date": "2022-10-14T16:01:14.785Z", "last_update": "2022-10-14T16:01:14.785Z"}}, {"model": "press.post", "pk": 360, "fields": {"title": "Hermanos Gutiérrez Let Their Music Speak For Itself", "body": "Larry Nlhues This new era marks several firsts for the duo, including working with a producer outside of the group.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/indie/hermanos-gutierrez-interview-el-bueno-y-el-malo/", "source_label": "hitfix", "status": "PUBLISHED", "author": 161, "category": 2, "creation_date": "2022-10-14T16:01:17.853Z", "last_update": "2022-10-14T16:01:17.853Z"}}, {"model": "press.post", "pk": 361, "fields": {"title": "Afghan refugees camp out in Brazilian airport in search of new life", "body": "SAO PAULO — Blankets and luggage carts have become the makeshift homes to more than a hundred Afghan migrants in Sao Paulo’s international airport, serving as a temporary shelter for refugees after their year-long odyssey since the Taliban returned to power. Brazil has approved about 6,000 humanitarian visas for Afghan refugees since late last year. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/afghan-refugees-camp-out-in-brazilian-airport-in-search-of-new-life", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-14T16:01:17.993Z", "last_update": "2022-10-14T16:01:17.993Z"}}, {"model": "press.post", "pk": 362, "fields": {"title": "Kourtney Kardashian & Daughter Penelope, 9, Link Arms As They’re All Smiles On Night Out With Travis Barker", "body": "Dinner for three! Kourtney Kardashian and Travis Barker enjoyed a vegan dinner date in Calabasas, and Kourt's daughter, Penelope Disick, joined in.", "image_link": "https://hollywoodlife.com/wp-content/uploads/2022/10/kourtney-kardashian-and-travis-with-penelope-backgrid-ftr.jpg", "word_cloud_link": null, "source_link": "https://hollywoodlife.com/2022/10/14/kourtney-kardashian-penelope-disick-travis-barker-dinner-date-photos/", "source_label": "hollywoodlife", "status": "PUBLISHED", "author": 162, "category": 2, "creation_date": "2022-10-14T16:01:20.166Z", "last_update": "2022-10-14T16:01:20.166Z"}}, {"model": "press.post", "pk": 363, "fields": {"title": "The challenge of mass observability data -- how much is too much?", "body": "Digital transformation has become ubiquitous throughout every industry, as the world grows more reliant on software-driven services. As this trend continues, customers and end users have increasingly heightened expectations that organizations will deliver better-quality, more efficient, and secure digital services, at greater speed. Multicloud environments, which are built on an average of five different platforms, are at the heart of this transformation. They enhance organizations’ agility, so DevOps teams can accelerate innovation. However, these Multicloud environments have introduced new...", "image_link": null, "word_cloud_link": null, "source_link": "https://betanews.com/2022/10/14/mass-observability-data/", "source_label": "betanews", "status": "PUBLISHED", "author": 163, "category": 2, "creation_date": "2022-10-14T16:01:22.257Z", "last_update": "2022-10-14T16:01:22.257Z"}}, {"model": "press.post", "pk": 364, "fields": {"title": "Bruce Springsteen Shares His Rendition of the 1985 Commodores Classic “Nightshift”", "body": "Bruce Springsteen has released the second single and video from his new soul album, Only the Strong Survive, out Nov. 11, a rendition of the 1985 Commodores hit “Nightshift.” The song originally appeared as the title track of the Commodores’ 1985 album, the group’s final release with Motown Records, and was written as a tribute to Marvin […]The post Bruce Springsteen Shares His Rendition of the 1985 Commodores Classic “Nightshift” appeared first on American Songwriter.", "image_link": null, "word_cloud_link": null, "source_link": "https://americansongwriter.com/bruce-springsteen-shares-his-rendition-of-the-1985-commodores-classic-nightshift/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 164, "category": 2, "creation_date": "2022-10-14T16:01:24.448Z", "last_update": "2022-10-14T16:01:24.449Z"}}, {"model": "press.post", "pk": 365, "fields": {"title": "Gabon-Commonwealth:On parle investissements", "body": "Libreville, Jeudi 14 octobre 2022 (Infos Gabon) – Un accord a été conclu dans ce sens hier à Libreville avec le Conseil des entreprises de l’investissement de cette organisation. Le Gabon poursuit sa marche inexorable dans la diversification de ses partenaires. C’est dans cette perspective qu’un accord a été conclu hier à Libreville avec Jonathan […]Cet article Gabon-Commonwealth:On parle investissements est apparu en premier sur INFOS GABON.", "image_link": null, "word_cloud_link": null, "source_link": "https://fr.infosgabon.com/gabon-commonwealth-on-parle-investissements/", "source_label": "Infos Gabon", "status": "PUBLISHED", "author": 165, "category": 2, "creation_date": "2022-10-14T16:01:26.541Z", "last_update": "2022-10-14T16:01:26.541Z"}}, {"model": "press.post", "pk": 366, "fields": {"title": "Gwen Stefani stuns in her undies under an open winter coat", "body": "Singer Gwen Stefani stunned in black lingerie in a must-see photo. The 53-year-old singer continues to defy age with her youthful looks as she continues on The Voice in Season 22. Her husband Blake Shelton recently announced that he is stepping down from the show after Season 23. In the", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/celebrity/gwen-stefani-stuns-in-her-undies-under-an-open-winter-coat/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 166, "category": 2, "creation_date": "2022-10-14T16:01:28.417Z", "last_update": "2022-10-14T16:01:28.417Z"}}, {"model": "press.post", "pk": 367, "fields": {"title": "The Bold and the Beautiful spoilers for next week: Steffy and Hope battle, Brill, and more", "body": "The Bold and the Beautiful spoilers for next week’s episodes of the CBS soap tease more of the same with the Forrester and Logan rivalries. As Ridge (Thorsten Kaye) finally made his choice in Aspen, but Brooke (Katherine Kelly Lang) isn’t ready to take his choice to heart. Taylor (Krista", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/tv/soaps/the-bold-and-the-beautiful-spoilers-for-next-week-steffy-and-hope-battle-brill-and-more/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 167, "category": 2, "creation_date": "2022-10-14T16:01:30.333Z", "last_update": "2022-10-14T16:01:30.333Z"}}, {"model": "press.post", "pk": 368, "fields": {"title": "Dean Pees: Jimmy Garoppolo ate us alive last year", "body": "Last December, quarterback Jimmy Garoppolo and the 49ers drubbed the Falcons 31-13. The two teams will meet again on Sunday and Atlanta defensive coordinator Dean Pees hasn’t forgotten what happened in that last matchup. “He ate us alive last year, so why would I not think he isn’t playing great?” Pees said in his Thursday [more]", "image_link": "https://profootballtalk.nbcsports.com/wp-content/uploads/sites/25/2022/10/GettyImages-1360123632-e1665760110521.jpg?w=1024&h=576&crop=1", "word_cloud_link": null, "source_link": "https://profootballtalk.nbcsports.com/2022/10/14/dean-pees-jimmy-garoppolo-ate-us-alive-last-year/", "source_label": "profootballtalk", "status": "PUBLISHED", "author": 168, "category": 2, "creation_date": "2022-10-14T16:01:32.200Z", "last_update": "2022-10-14T16:01:32.200Z"}}, {"model": "press.post", "pk": 369, "fields": {"title": "Greenwood charged with attempted rape and assault", "body": "Man Utd footballer Mason Greenwood charged with attempted rape, engaging in controlling behaviour and assault, CPS says", "image_link": null, "word_cloud_link": null, "source_link": "https://www.bbc.co.uk/news/uk-england-63272019?at_medium=RSS&at_campaign=KARANGA", "source_label": "BBC", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-15T16:00:49.518Z", "last_update": "2022-10-15T16:00:49.518Z"}}, {"model": "press.post", "pk": 370, "fields": {"title": "Dolphins’ Tua Tagovailoa clears concussion protocol; set to start next week vs. Steelers", "body": "Tagovailoa, returning from a concussion suffered in the team’ s Sept. 29 loss to the Cincinnati Bengals, is still being held out of Sunday’ s game against the Minnesota Vikings as an extra precaution. Tagovailoa is on track to return to action for the Oct. 23 Sunday night home game against the Pittsburgh Steelers and ex- Dolphins coach Brian Flores, who is a senior...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.bostonherald.com/2022/10/15/dolphins-tua-tagovailoa-clears-concussion-protocol-set-to-start-next-week-vs-steelers/", "source_label": "bostonherald", "status": "PUBLISHED", "author": 169, "category": 2, "creation_date": "2022-10-15T16:00:51.463Z", "last_update": "2022-10-15T16:00:51.463Z"}}, {"model": "press.post", "pk": 371, "fields": {"title": "Conviction overturned in 2012 Antioch murder over stolen laundry", "body": "Boise Duggan, 33, had pleaded no contest to manslaughter in a plea deal but benefited from a change in state law.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/09/OP17REFERSpic1-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/10/15/conviction-overturned-in-2012-antioch-murder-over-stolen-laundry/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 170, "category": 2, "creation_date": "2022-10-15T16:00:53.382Z", "last_update": "2022-10-15T16:00:53.382Z"}}, {"model": "press.post", "pk": 372, "fields": {"title": "Avidian Wealth Solutions LLC Acquires 186 Shares of Waste Management, Inc. (NYSE:WM)", "body": "Avidian Wealth Solutions LLC raised its holdings in Waste Management, Inc. (NYSE:WM – Get Rating) by 4.2% during the 2nd quarter, according to its most recent filing with the Securities and Exchange Commission (SEC). The firm owned 4,649 shares of the business services provider’s stock after buying an additional 186 shares during the quarter. Avidian […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/15/avidian-wealth-solutions-llc-acquires-186-shares-of-waste-management-inc-nysewm.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-15T16:00:53.456Z", "last_update": "2022-10-15T16:00:53.456Z"}}, {"model": "press.post", "pk": 373, "fields": {"title": "CSX Co. (NASDAQ:CSX) Shares Sold by Avidian Wealth Solutions LLC", "body": "Avidian Wealth Solutions LLC lowered its holdings in shares of CSX Co. (NASDAQ:CSX – Get Rating) by 8.1% during the 2nd quarter, according to its most recent 13F filing with the Securities and Exchange Commission (SEC). The institutional investor owned 25,152 shares of the transportation company’s stock after selling 2,229 shares during the period. Avidian […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/15/csx-co-nasdaqcsx-shares-sold-by-avidian-wealth-solutions-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-15T16:00:53.550Z", "last_update": "2022-10-15T16:00:53.550Z"}}, {"model": "press.post", "pk": 374, "fields": {"title": "Parsons Capital Management Inc. RI Sells 817 Shares of Take-Two Interactive Software, Inc. (NASDAQ:TTWO)", "body": "Parsons Capital Management Inc. RI trimmed its stake in Take-Two Interactive Software, Inc. (NASDAQ:TTWO – Get Rating) by 21.3% in the 2nd quarter, according to its most recent filing with the Securities and Exchange Commission (SEC). The fund owned 3,013 shares of the company’s stock after selling 817 shares during the period. Parsons Capital Management […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/15/parsons-capital-management-inc-ri-sells-817-shares-of-take-two-interactive-software-inc-nasdaqttwo.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-15T16:00:53.628Z", "last_update": "2022-10-15T16:00:53.628Z"}}, {"model": "press.post", "pk": 375, "fields": {"title": "Parsons Capital Management Inc. RI Boosts Stock Position in Abrdn Asia-Pacific Income Fund Inc (NYSEAMERICAN:FAX)", "body": "Parsons Capital Management Inc. RI boosted its holdings in Abrdn Asia-Pacific Income Fund Inc (NYSEAMERICAN:FAX – Get Rating) by 5.5% during the 2nd quarter, according to its most recent disclosure with the Securities and Exchange Commission (SEC). The fund owned 108,200 shares of the investment management company’s stock after buying an additional 5,600 shares during […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/15/parsons-capital-management-inc-ri-boosts-stock-position-in-abrdn-asia-pacific-income-fund-inc-nyseamericanfax.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-15T16:00:53.717Z", "last_update": "2022-10-15T16:00:53.717Z"}}, {"model": "press.post", "pk": 376, "fields": {"title": "V.F. (NYSE:VFC) Sets New 52-Week Low After Analyst Downgrade", "body": "V.F. Co. (NYSE:VFC – Get Rating) shares hit a new 52-week low during mid-day trading on Thursday after The Goldman Sachs Group lowered their price target on the stock from $35.00 to $30.00. The Goldman Sachs Group currently has a sell rating on the stock. V.F. traded as low as $27.92 and last traded at […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/15/v-f-nysevfc-sets-new-52-week-low-after-analyst-downgrade.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-15T16:00:53.863Z", "last_update": "2022-10-15T16:00:53.863Z"}}, {"model": "press.post", "pk": 377, "fields": {"title": "American Homes 4 Rent (NYSE:AMH) Reaches New 52-Week Low Following Analyst Downgrade", "body": "Shares of American Homes 4 Rent (NYSE:AMH – Get Rating) reached a new 52-week low during trading on Thursday after Evercore ISI lowered their price target on the stock to $36.00. The company traded as low as $30.22 and last traded at $30.38, with a volume of 8509 shares. The stock had previously closed at […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/15/american-homes-4-rent-nyseamh-reaches-new-52-week-low-following-analyst-downgrade.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-15T16:00:53.947Z", "last_update": "2022-10-15T16:00:53.947Z"}}, {"model": "press.post", "pk": 378, "fields": {"title": "Parsons Capital Management Inc. RI Sells 24 Shares of TransDigm Group Incorporated (NYSE:TDG)", "body": "Parsons Capital Management Inc. RI lowered its holdings in shares of TransDigm Group Incorporated (NYSE:TDG – Get Rating) by 5.1% in the second quarter, according to the company in its most recent 13F filing with the Securities & Exchange Commission. The firm owned 450 shares of the aerospace company’s stock after selling 24 shares during […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/15/parsons-capital-management-inc-ri-sells-24-shares-of-transdigm-group-incorporated-nysetdg.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-15T16:00:54.034Z", "last_update": "2022-10-15T16:00:54.034Z"}}, {"model": "press.post", "pk": 379, "fields": {"title": "Which NHL player has the most to prove this season?", "body": "The NHL season is fully underway. All 32 teams have played at least one game. But when we’re looking at big-picture discussions, we still pretty much have an entire season’s worth of runway to consider.", "image_link": "http://www.yardbarker.com/media/a/9/a96621be4fd8650218fdd8185b26f7744cb4ac3e/thumb_16x9/nhl-player-prove-season.jpg", "word_cloud_link": null, "source_link": "https://www.yardbarker.com/nhl/articles/which_nhl_player_has_the_most_to_prove_this_season/s1_16958_37997779", "source_label": "Yardbarker.com", "status": "PUBLISHED", "author": 171, "category": 2, "creation_date": "2022-10-15T16:00:55.971Z", "last_update": "2022-10-15T16:00:55.971Z"}}, {"model": "press.post", "pk": 380, "fields": {"title": "Stanford-Notre Dame preview: What to know before kickoff in South Bend", "body": "Notre Dame has won three straight and leads the all-time series 22-13.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2021/11/BNG-L-STANFORD.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/10/15/stanford-notre-dame-preview-what-to-know-before-kickoff-in-south-bend/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 156, "category": 2, "creation_date": "2022-10-15T16:00:56.032Z", "last_update": "2022-10-15T16:00:56.032Z"}}, {"model": "press.post", "pk": 381, "fields": {"title": "Berlusconi calls Meloni names as Italy’s right-wing coalition spars", "body": "The Forza Italia leader calls Brothers of Italy leader Giorgia Melon 'patronizing' and 'bossy' in a note.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.politico.eu/article/berlusconi-calls-meloni-names-as-italys-right-wing-coalition-spars/?utm_source=RSS_Feed&utm_medium=RSS&utm_campaign=RSS_Syndication", "source_label": "europeanvoice", "status": "PUBLISHED", "author": 172, "category": 2, "creation_date": "2022-10-15T16:00:57.886Z", "last_update": "2022-10-15T16:00:57.886Z"}}, {"model": "press.post", "pk": 382, "fields": {"title": "Rolling Hills Estates gives mall operators until Monday to remove parking barriers", "body": "Lawyers for the Promenade on the Peninsula mall did not respond to requests for comment.", "image_link": "https://www.dailybreeze.com/wp-content/uploads/2022/10/TBD-L-NORRIS-1013-8.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.dailybreeze.com/2022/10/15/rolling-hills-estates-gives-mall-operators-until-monday-to-remove-parking-barriers/", "source_label": "dailybreeze", "status": "PUBLISHED", "author": 173, "category": 2, "creation_date": "2022-10-15T16:00:59.774Z", "last_update": "2022-10-15T16:00:59.774Z"}}, {"model": "press.post", "pk": 383, "fields": {"title": "As Halloween nears, Redlands library offers some scary reading options", "body": "Tis the season for goosebumps and scares, these books are available at A.K. Smiley Public Library.", "image_link": "https://www.redlandsdailyfacts.com/wp-content/uploads/2022/10/RDF-L-SMILEYNEW-1016-01.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.redlandsdailyfacts.com/2022/10/15/as-halloween-nears-redlands-library-offers-some-scary-reading-options/", "source_label": "redlandsdailyfacts", "status": "PUBLISHED", "author": 174, "category": 2, "creation_date": "2022-10-15T16:01:01.663Z", "last_update": "2022-10-15T16:01:01.663Z"}}, {"model": "press.post", "pk": 384, "fields": {"title": "Bill Nieder, 1960 Olympic shot put champion and pioneer synthetic track salesman, dies aged 89", "body": "Bill Nieder, who won shot put gold for the United States at the 1960 Rome Olympics, has died at h...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.insidethegames.biz/articles/1129234/bill-nieder-dies-rome-1960-shot-put-gold", "source_label": "insidethegames", "status": "PUBLISHED", "author": 175, "category": 2, "creation_date": "2022-10-15T16:01:03.980Z", "last_update": "2022-10-15T16:01:03.980Z"}}, {"model": "press.post", "pk": 385, "fields": {"title": "As U.K.’s Truss fights for job, new finance minister says she made mistakes", "body": "LONDON — Britain’s new finance minister Jeremy Hunt said on Saturday some taxes would go up and tough spending decisions were needed, saying Prime Minister Liz Truss had made mistakes as she battles to keep her job just over a month into her term. In an attempt to appease financial markets that have been in […]", "image_link": null, "word_cloud_link": null, "source_link": "https://torontosun.com/news/world/as-u-k-s-truss-fights-for-job-new-finance-minister-says-she-made-mistakes", "source_label": "torontosun", "status": "PUBLISHED", "author": 176, "category": 2, "creation_date": "2022-10-15T16:01:06.747Z", "last_update": "2022-10-15T16:01:06.747Z"}}, {"model": "press.post", "pk": 386, "fields": {"title": "Haiti - Politic : The USA ready to participate in a multinational rapid action force", "body": "The United States says it is ready to support the dispatch of a « multinational rapid action force » to Haiti, according to a draft resolution drafted by the Americans for the United Nations Security Council...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.haitilibre.com/en/news-37891-haiti-politic-the-usa-ready-to-participate-in-a-multinational-rapid-action-force.html", "source_label": "Haiti Libre", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-15T16:01:06.835Z", "last_update": "2022-10-15T16:01:06.835Z"}}, {"model": "press.post", "pk": 387, "fields": {"title": "Stalemate over ‘deal’ drawing MQM-P to quit ruling coalition", "body": "KARACHI: The Muttahida Qaumi Movement Pakistan (MQM-P) has once again started consideration for quitting the ruling coalition following no progress on “agreement” with Pakistan People’s Party (PPP) and on amendments to the local body’s bill, sources said on Saturday. According to details, MQM-P has expressed concern over “zero progress” on the implementation of an agreement […]The post Stalemate over ‘deal’ drawing MQM-P to quit ruling coalition appeared first on Pakistan Today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pakistantoday.com.pk/2022/10/15/stalemate-over-deal-drawing-mqm-p-to-quit-ruling-coalition/", "source_label": "Pakistan Today", "status": "PUBLISHED", "author": 177, "category": 2, "creation_date": "2022-10-15T16:01:09.296Z", "last_update": "2022-10-15T16:01:09.296Z"}}, {"model": "press.post", "pk": 388, "fields": {"title": "LG election: Osun records low turnout as Oyetola casts vote, describes exercise rancour-free", "body": "Tribune OnlineLG election: Osun records low turnout as Oyetola casts vote, describes exercise rancour-freeLow turnout of voters was recorded in the Osun state local government election held across the state on Saturday. The conduct of the exercise was delayed in many local governments as the state Independent Electoral Commission (OSIEC) officials came to some polling units behind the scheduled time. Also, some voters who signified intentions to participate […]LG election: Osun records low turnout as Oyetola casts vote, describes exercise rancour-freeTribune Online", "image_link": null, "word_cloud_link": null, "source_link": "https://tribuneonlineng.com/lg-election-osun-records-low-turnout-as-oyetola-casts-vote-describes-exercise-rancour-free/", "source_label": "tribune", "status": "PUBLISHED", "author": 178, "category": 2, "creation_date": "2022-10-15T16:01:11.780Z", "last_update": "2022-10-15T16:01:11.780Z"}}, {"model": "press.post", "pk": 389, "fields": {"title": "U srpskom fudbalu je apsolutno sve moguće: Vladimir Gaćinović više nije trener Novog Pazara!", "body": "Iz kategorije - bizarno. Ekipa Novog Pazara od danas ponovo nema trenera, uprkos fantastičnim rezultatima koje su u poslednjih nekoliko nedelja imali sa Vladimirom Gaćinovićem na klupi. Ipak, klupski operativci su sa njim potpisali raskid saradnje.", "image_link": "https://xdn.tf.rs/2022/07/28/20220708npgacinovicv4.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/sport/fudbal/3570975-u-srpskom-fudbalu-je-apsolutno-sve-moguce-vladimir-gacinovic-vise-nije-trener-novog-pazara", "source_label": "Telegraf", "status": "PUBLISHED", "author": 88, "category": 2, "creation_date": "2022-10-15T16:01:12.281Z", "last_update": "2022-10-15T16:01:12.281Z"}}, {"model": "press.post", "pk": 390, "fields": {"title": "Pakistan summons US ambassador after Biden says it is one of the most dangerous nations in the world", "body": "A barely-noticed comment by President Joe Biden at a fundraising event describing Pakistan as one of the most dangerous countries in the world triggered a diplomatic spat on Saturday.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/15/16/63505031-0-image-a-13_1665847606498.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11318907/Pakistan-summons-ambassador-Biden-says-one-dangerous-nations-world.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-15T16:01:12.437Z", "last_update": "2022-10-15T16:01:12.437Z"}}, {"model": "press.post", "pk": 391, "fields": {"title": "Haiti - FLASH : Sexual Violence a weapon used by gangs to instill fear (Report)", "body": "BINUH and the Office of the United Nations High Commissioner for Human Rights, released a report titled « Sexual violence in Port-au-Prince:A weapon used by gangs to instill fear » which meticulously documents...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.haitilibre.com/en/news-37890-haiti-flash-sexual-violence-a-weapon-used-by-gangs-to-instill-fear-report.html", "source_label": "Haiti Libre", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-15T16:01:12.589Z", "last_update": "2022-10-15T16:01:12.589Z"}}, {"model": "press.post", "pk": 392, "fields": {"title": "Former NASCAR Cup Series Champion Kurt Busch Tearfully Steps Away From Sport Due To Concussion", "body": "As the saying goes, where there’s smoke, there’s fire. And there’s been a lot of smoke surrounding the career of NASCAR Cup Series star Kurt Busch in recent weeks. The former series champion made huge news earlier in the season when he won his first race for Michael Jordan’s 23XI race team. That win locked […]The post Former NASCAR Cup Series Champion Kurt Busch Tearfully Steps Away From Sport Due To Concussion appeared first on BroBible.", "image_link": null, "word_cloud_link": null, "source_link": "https://brobible.com/sports/article/kurt-busch-tearful-nascar-retirement-announcement/", "source_label": "guyism", "status": "PUBLISHED", "author": 179, "category": 2, "creation_date": "2022-10-15T16:01:15.097Z", "last_update": "2022-10-15T16:01:15.097Z"}}, {"model": "press.post", "pk": 393, "fields": {"title": "Police ID 2nd officer who opened fire on suspected killer", "body": "Las Vegas police identified the second officer who opened fire after Officer Truong Thai was fatally shot.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.reviewjournal.com/crime/homicides/police-id-2nd-officer-who-opened-fire-on-suspected-killer-2658344/", "source_label": "lvrj", "status": "PUBLISHED", "author": 180, "category": 2, "creation_date": "2022-10-15T16:01:17.501Z", "last_update": "2022-10-15T16:01:17.501Z"}}, {"model": "press.post", "pk": 394, "fields": {"title": "China expected to grant Xi Jinping another 5-year term with no major changes", "body": "The congress comes as China's economy faces major headwinds amid a near-collapse in the real estate sector and the toll on retail and manufacturing imposed by COVID restrictions.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/2022101403108-63490b7c821cf083b817cba3jpeg.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9201492/china-to-grant-xi-jinping-5-year-term/", "source_label": "globalmontreal", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-15T16:01:17.668Z", "last_update": "2022-10-15T16:01:17.668Z"}}, {"model": "press.post", "pk": 395, "fields": {"title": "Former FBI agent Timothy Thibault refuses to cooperate with House GOP", "body": "Thibault also said that he would not comply with Republican committee members demanding he preserve documents from his days with the FBI.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/timothy-thibault-comp.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/15/ex-fbi-agent-timothy-thibault-wont-cooperate-with-house-gop/", "source_label": "Post", "status": "PUBLISHED", "author": 181, "category": 2, "creation_date": "2022-10-15T16:01:19.985Z", "last_update": "2022-10-15T16:01:19.985Z"}}, {"model": "press.post", "pk": 396, "fields": {"title": "Tove Lo: 'Do people still want to hear my thoughts and my feelings?'", "body": "Tove Lo joins Zane Lowe live in studio on Apple Music 1 to discuss her forthcoming album ‘Dirt Femme’. She tells Apple Music", "image_link": "https://www.music-news.com/images/news/Tove-Lo.jpg", "word_cloud_link": null, "source_link": "https://www.music-news.com/news/UK/152734/Tove-Lo-Do-people-still-want-to-hear-my-thoughts-and-my-feelings", "source_label": "music-news", "status": "PUBLISHED", "author": 182, "category": 2, "creation_date": "2022-10-15T16:01:22.017Z", "last_update": "2022-10-15T16:01:22.017Z"}}, {"model": "press.post", "pk": 397, "fields": {"title": "Vegan extremists trash Harrods, Fortnum & Mason and Waitrose by dumping milk in protest", "body": "The group co-ordinated the actions across multiple stores throughout the country, including London, Norwich, Edinburgh as horrified Saturday shoppers watched on.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/15/16/63504639-0-image-a-18_1665846524326.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11318913/Vegan-extremists-trash-Harrods-Fortnum-Mason-Waitrose-dumping-milk-protest.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-15T16:01:22.097Z", "last_update": "2022-10-15T16:01:22.097Z"}}, {"model": "press.post", "pk": 398, "fields": {"title": "Kashmir: A Hungry Tiger Fights Fierce", "body": " According to the Kashmir Media Service, the government of India is not only creating hurdles for the trucks carrying Kashmiri apples via highways but on the bypass routes also.by Ali SukhanverIt is a centuries old truth that ‘an apple a day keeps the doctor away’ but in the Indian Occupied Kashmir, the administrative authorities are trying their utmost to keep the apples away from the people.  For the last many months, the people of the Indian Occupied Kashmir are protesting that the Indian authorities are stopping their apple-laden trucks on the highways to India. In the...", "image_link": null, "word_cloud_link": null, "source_link": "http://www.srilankaguardian.org/2022/10/kashmir-hungry-tiger-fights-fierce.html", "source_label": "srilankaguardian", "status": "PUBLISHED", "author": 183, "category": 2, "creation_date": "2022-10-16T16:00:54.720Z", "last_update": "2022-10-16T16:00:54.720Z"}}, {"model": "press.post", "pk": 399, "fields": {"title": "Letter to the Editor: Vote to Upgrade Montclair Public Schools Should Be Easy Decision", "body": "I’m a 12-year resident of Montclair, New Jersey writing to you about a referendum item that will be on town ballots on Election Day. Montclair’s citizens will decide whether the town will proceed with extensive plans to invest $188 million in Montclair’s schools. The money would be spent to upgrade and improve all of the […]The post Letter to the Editor: Vote to Upgrade Montclair Public Schools Should Be Easy Decision appeared first on Baristanet.", "image_link": null, "word_cloud_link": null, "source_link": "https://baristanet.com/2022/10/letter-to-the-editor-upgraded-montclair-public-schools-should-be-easy-decision/", "source_label": "baristanet", "status": "PUBLISHED", "author": 184, "category": 2, "creation_date": "2022-10-16T16:00:56.681Z", "last_update": "2022-10-16T16:00:56.682Z"}}, {"model": "press.post", "pk": 400, "fields": {"title": "'Our hearts ache': Tributes left to 23-year-old after fatal Rowley Regis crash", "body": "Moving tributes have been left at the scene of a horror crash in Rowley Regis which left a 23-year-old man and four others in hospital", "image_link": "https://www.expressandstar.com/resizer/IgP0fniLGRBepHykDpM-wRjDDOg=/cloudfront-us-east-1.images.arcpublishing.com/mna/F6XBPJSRQZAGZJCKC42BBKXJAY.jpg", "word_cloud_link": null, "source_link": "https://www.expressandstar.com/news/local-hubs/sandwell/rowley-regis/2022/10/16/our-hearts-ache-tributes-left-to-23-year-old-after-fatal-rowley-regis-crash/", "source_label": "Express & Star", "status": "PUBLISHED", "author": 185, "category": 2, "creation_date": "2022-10-16T16:00:58.549Z", "last_update": "2022-10-16T16:00:58.549Z"}}, {"model": "press.post", "pk": 401, "fields": {"title": "Gary Neville defends decision to work for Qatari state-run broadcaster beIN SPORTS at World Cup", "body": "Gary Neville insists money from a Qatari state-run sports broadcaster to cover the World Cup 'makes no difference to him' - and reckons he will challenge the country's abhorrent human rights.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/16/16/63524347-0-image-m-12_1665932579943.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11320899/Gary-Neville-defends-decision-work-Qatari-state-run-broadcaster-beIN-SPORTS-World-Cup.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-16T16:00:58.604Z", "last_update": "2022-10-16T16:00:58.604Z"}}, {"model": "press.post", "pk": 402, "fields": {"title": "Letters to Barack Obama", "body": "The Short Letter Dear President Barack Obama, You entered office with a call “for a new start to relations between the Muslim world and the West based on common interests and mutual understanding and respect.” We assumed your statement and dedication to social justice would orient your administration policies into halting Israel’s oppression of the […]The post Letters to Barack Obama first appeared on Dissident Voice.", "image_link": null, "word_cloud_link": null, "source_link": "https://dissidentvoice.org/2022/10/letters-to-barack-obama/", "source_label": "dissidentvoice", "status": "PUBLISHED", "author": 186, "category": 2, "creation_date": "2022-10-16T16:01:00.353Z", "last_update": "2022-10-16T16:01:00.353Z"}}, {"model": "press.post", "pk": 403, "fields": {"title": "#BTColumn – When law becomes politics", "body": "Disclaimer: The views and opinions expressed by the author(s) do not represent the official position of Barbados TODAY. By Daniella Andrews Over the last few days, two major occurrences emerged from the educational space that explicitly highlighted the unequal application of law in Barbados. The public is now well aware of the illegal survey administered […]The post #BTColumn – When law becomes politics appeared first on Barbados Today.", "image_link": "https://barbadostoday.bb/wp-content/uploads/2022/10/Minister-of-Education-Kay-McConney-1.jpg", "word_cloud_link": null, "source_link": "https://barbadostoday.bb/2022/10/16/btcolumn-when-law-becomes-politics/", "source_label": "barbados Today", "status": "PUBLISHED", "author": 75, "category": 2, "creation_date": "2022-10-16T16:01:00.419Z", "last_update": "2022-10-16T16:01:00.419Z"}}, {"model": "press.post", "pk": 404, "fields": {"title": "Updated VDOT road construction, maintenance schedule for Western Virginia", "body": "(© Condor 36 – stock.adobe.com)VDOT has updated its list of highway work that may affect traffic in the Staunton District during the coming weeks.The Staunton District consists of 11 counties from the Alleghany Highlands to the northern Shenandoah Valley: Alleghany, Bath, Rockbridge, Highland, Augusta, Rockingham, Page, Shenandoah, Frederick, Clarke and Warren.Scheduled work is subject to change due to inclement weather and material supplies. Motorists are advised to watch for slow-moving tractors during mowing operations. When traveling through a work zone, be alert to periodic changes in...", "image_link": null, "word_cloud_link": null, "source_link": "https://augustafreepress.com/updated-vdot-road-construction-maintenance-schedule-for-western-virginia/", "source_label": "augustafreepress", "status": "PUBLISHED", "author": 187, "category": 2, "creation_date": "2022-10-16T16:01:02.536Z", "last_update": "2022-10-16T16:01:02.536Z"}}, {"model": "press.post", "pk": 405, "fields": {"title": "Caesars Sportsbook Promo Code: Grab a Massive Bonus For NFL Week 6", "body": "Get your hands on a massive sports bonus with the Caesars Sportsbook Promo code NPBONUSFULL for NFL Week 6.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/Tom-Brady-1-copy.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/16/caesars-sportsbook-promo-code-npbonusfull-nfl-week-six-bonus/", "source_label": "Post", "status": "PUBLISHED", "author": 128, "category": 2, "creation_date": "2022-10-16T16:01:02.607Z", "last_update": "2022-10-16T16:01:02.607Z"}}, {"model": "press.post", "pk": 406, "fields": {"title": "With far-right leaders, Italy remembers WWII roundup of Jews", "body": "ROME (AP) — Italy’s far-right political leadership marked the 79th anniversary of the World War II roundup of Rome’s Jews on Sunday with calls for such horror to never occur again, messages that took on greater significance following a national election won by a party with neo-fascist roots. Giorgia Meloni, who is expected to head […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/with-far-right-leaders-italy-remembers-wwii-roundup-of-jews", "source_label": "nationalpost", "status": "PUBLISHED", "author": 188, "category": 2, "creation_date": "2022-10-16T16:01:04.861Z", "last_update": "2022-10-16T16:01:04.861Z"}}, {"model": "press.post", "pk": 407, "fields": {"title": "Virginia Tech students bring joy to campus with remote-controlled Volkswagen bus", "body": "Photo courtesy Virginia TechToby, a remote-controlled Volkswagen bus, is warming the hearts of Virginia Tech students, staff and community members wherever it goes.With the help of a Christiansburg hobby shop, sophomores Brendan Smith, an English and creative writing major, and Sophia Spraker, a biological sciences major, built Toby in January. They have since been driving Toby around campus.“We love that it makes people happy, and we think that’s pretty neat,” said Spraker. “Sometimes the people you don’t expect to smile have the cutest reaction.”The inspiration behind Toby...", "image_link": null, "word_cloud_link": null, "source_link": "https://augustafreepress.com/virginia-tech-students-bring-joy-to-campus-with-remote-controlled-volkswagen-bus/", "source_label": "augustafreepress", "status": "PUBLISHED", "author": 187, "category": 2, "creation_date": "2022-10-16T16:01:04.996Z", "last_update": "2022-10-16T16:01:04.996Z"}}, {"model": "press.post", "pk": 408, "fields": {"title": "Inmate Stole $11 Million in Gold Coin Scheme While in Prison, Officials Say", "body": "A Georgia inmate used a contraband phone to impersonate a billionaire, secured more than 6,000 gold coins and then arranged to buy a multimillion-dollar house, according to court records.", "image_link": "https://static01.nyt.com/images/2022/10/13/multimedia/13xp-scheme-01/13xp-scheme-01-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2022/10/16/us/georgia-inmate-scam-billionaire.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 189, "category": 2, "creation_date": "2022-10-16T16:01:07.429Z", "last_update": "2022-10-16T16:01:07.429Z"}}, {"model": "press.post", "pk": 409, "fields": {"title": "Fernando approved as replacement for Madushanka in SL squad", "body": "ISLAMABAD: The Event Technical Committee of the ICC Men’s T20 World Cup 2022 has approved Binura Fernando as a replacement for left-arm fast bowler Dilshan Madushanka in the Sri Lanka squad. Fernando who has played nine T20Is, was named as a replacement after Madushanka was ruled out due to a torn quad muscle. Fernando would […]The post Fernando approved as replacement for Madushanka in SL squad appeared first on Pakistan Today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pakistantoday.com.pk/2022/10/16/fernando-approved-as-replacement-for-madushanka-in-sl-squad/", "source_label": "Pakistan Today", "status": "PUBLISHED", "author": 177, "category": 2, "creation_date": "2022-10-16T16:01:07.603Z", "last_update": "2022-10-16T16:01:07.603Z"}}, {"model": "press.post", "pk": 410, "fields": {"title": "Leaf Peeping, Sky Bars And Teddy Bear Brunches: The Latest Hotel News For Fall 2022", "body": "Whether you’re traveling close to home or venturing across continents, hotels around the world are spiffing up for the season. Renovations, upgrades, new amenities and even charity events are putting them on the radar screen for travelers. Here's what to expect this fall.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/634c21f41a5b9a5011b5c039/0x0.jpg?width=960&precrop=822%2C463%2Cx3%2Cy0", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/ramseyqubein/2022/10/16/leaf-peeping-sky-bars-and-teddy-bear-brunches-the-latest-hotel-news-for-fall-2022/", "source_label": "Forbes", "status": "PUBLISHED", "author": 190, "category": 2, "creation_date": "2022-10-16T16:01:10.141Z", "last_update": "2022-10-16T16:01:10.141Z"}}, {"model": "press.post", "pk": 411, "fields": {"title": "Trump claims that National Archives ‘lost’ nuclear secrets but they ‘don’t care’", "body": "Amid worsening legal perils, former president posts 2012 story concerning ‘more than 1,500 boxes of classified documents’ going missing at records centre", "image_link": "https://static.independent.co.uk/2022/10/16/15/newFile.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/world/americas/us-politics/donald-trump-archives-nuclear-secrets-b2203841.html", "source_label": "Independent", "status": "PUBLISHED", "author": 191, "category": 2, "creation_date": "2022-10-16T16:01:12.782Z", "last_update": "2022-10-16T16:01:12.782Z"}}, {"model": "press.post", "pk": 412, "fields": {"title": "6 homes hit by structure fire in Fort Saskatchewan", "body": "Officials received the call for a structure fire around 4:30 a.m. Sunday. Six houses were impacted and crews are still on scene putting out the fire.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/oct.-16-fort-sask-fire.png?w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9202903/structure-fire-fort-saskatchewan-october-16/", "source_label": "globalmontreal", "status": "PUBLISHED", "author": 192, "category": 2, "creation_date": "2022-10-16T16:01:15.397Z", "last_update": "2022-10-16T16:01:15.397Z"}}, {"model": "press.post", "pk": 413, "fields": {"title": "Memorial Service held in honor of Sgt. Cody Surprise", "body": "U.S. Army Sgt. Cody Surprise’s unit, along with family and friends, honored his life and service through a memorial service in the Ethan Allen Firing Range Chapel today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.dvidshub.net/news/431415/memorial-service-held-honor-sgt-cody-surprise", "source_label": "dvidshub", "status": "PUBLISHED", "author": 193, "category": 2, "creation_date": "2022-10-16T16:01:18.122Z", "last_update": "2022-10-16T16:01:18.122Z"}}, {"model": "press.post", "pk": 414, "fields": {"title": "Australia weather: More rain forecast for NSW, Victoria, Queensland with ADF to help amid floods", "body": "Meteorologists at Weatherzone warned 'what seems to be a never-ending conveyor belt' of bad weather is expected to 'wreak havoc' across Australia's east coast in the coming days.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/16/15/63524351-0-image-m-8_1665930962144.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11320917/Australia-weather-rain-forecast-NSW-Victoria-Queensland-ADF-help-amid-floods.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-16T16:01:18.269Z", "last_update": "2022-10-16T16:01:18.269Z"}}, {"model": "press.post", "pk": 415, "fields": {"title": "MASLOC CEO assures youth of institutional support for their startups", "body": "Chief Executive Officer (CEO) for MASLOC, Hajia Abibata Shanni Mahama Zakariah, has assured young entrepreneurs of the institution’s firm commitment in providing micro credit and small loans to start-ups and small businesses in the country. She made this commitment in her interactions with young entrepreneurs during this year’s edition of the Ekosiisen National dialogue series […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.ghanamma.com/2022/10/16/masloc-ceo-assures-youth-of-institutional-support-for-their-startups/", "source_label": "Ghana MMA", "status": "PUBLISHED", "author": 194, "category": 2, "creation_date": "2022-10-16T16:01:20.559Z", "last_update": "2022-10-16T16:01:20.559Z"}}, {"model": "press.post", "pk": 416, "fields": {"title": "EEUU: Abandonan pedido de dar pena de muerte por asesinatos", "body": "La fiscalía abandona planes de pedir la pena de muerte para un hombre que mató a tiros a un hombre e hirió a una mujer en una sala de cine de Pensilvania hace casi tres años", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sandiegouniontribune.com/en-espanol/noticias/story/2022-10-16/eeuu-abandonan-pedido-de-dar-pena-de-muerte-por-asesinatos", "source_label": "signonsandiego", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-16T16:01:20.683Z", "last_update": "2022-10-16T16:01:20.683Z"}}, {"model": "press.post", "pk": 417, "fields": {"title": "Brockville Braves split home-and-home with Ottawa Jr. Senators", "body": "They made a statement one night and then received a response the next. After the Braves edged the Jr. Senators on home ice Friday, Brockville lost 5-2 in Ottawa on Saturday. The loss dropped the Jr. A Braves to 3-6 four weeks into the CCHL regular season. Ottawa’s Nicolas Papineau opened the scoring at 17:54 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.recorder.ca/sports/hockey/brockville-braves-split-home-and-home-with-ottawa-jr-senators", "source_label": "recorder", "status": "PUBLISHED", "author": 195, "category": 2, "creation_date": "2022-10-16T16:01:22.626Z", "last_update": "2022-10-16T16:01:22.626Z"}}, {"model": "press.post", "pk": 418, "fields": {"title": "With far-right leaders, Italy remembers WWII roundup of Jews", "body": "Italy’s new right-wing political leadership has marked the 79th anniversary of the World War II roundup of Rome’s Jews with calls for such a horror to never occur again", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketbeat.com/articles/with-far-right-leaders-italy-remembers-wwii-roundup-of-jews-2022-10-16/", "source_label": "lulegacy", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-16T16:01:22.739Z", "last_update": "2022-10-16T16:01:22.739Z"}}, {"model": "press.post", "pk": 419, "fields": {"title": "Early-morning fire spreads to six homes in Fort Saskatchewan: Alberta RCMP", "body": "FORT SASKATCHEWAN, Alta. — Alberta RCMP say no injuries have been reported after an early morning fire in Fort Saskatchewan spread to six homes. Cpl. Deanna Fontaine says emergency crews responded to a residential structure fire around 4:30 a.m. on Sunday in the Woodsmere Close area. She says the fire has since spread to six […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/canada-news-pmn/early-morning-fire-spreads-to-six-homes-in-fort-saskatchewan-alberta-rcmp", "source_label": "nationalpost", "status": "PUBLISHED", "author": 32, "category": 2, "creation_date": "2022-10-16T16:01:23.067Z", "last_update": "2022-10-16T16:01:23.067Z"}}, {"model": "press.post", "pk": 420, "fields": {"title": "Alaska's snow crab season canceled for the first time ever, officials perplexed by mysterious disappearance of 1 billion crabs", "body": "A mysterious disappearance of an estimated 1 billion snow crabs has forced Alaska to cancel the winter snow crab season – the first time in state history.On Monday, the Alaska Department of Fish and Game (ADF&G) canceled the entire 2022-2023 snow crab season.", "image_link": null, "word_cloud_link": null, "source_link": "https://canadafreepress.com/article/138165", "source_label": "canadafreepress", "status": "PUBLISHED", "author": 196, "category": 2, "creation_date": "2022-10-16T16:01:25.439Z", "last_update": "2022-10-16T16:01:25.439Z"}}, {"model": "press.post", "pk": 421, "fields": {"title": "Top 10 boys’ cross country rankings", "body": "The Monterey Herald's Top 10 boys cross country rankings", "image_link": null, "word_cloud_link": null, "source_link": "https://www.montereyherald.com/2022/10/16/top-10-boys-cross-country-rankings-18/", "source_label": "montereyherald", "status": "PUBLISHED", "author": 84, "category": 2, "creation_date": "2022-10-16T16:01:25.551Z", "last_update": "2022-10-16T16:01:25.551Z"}}, {"model": "press.post", "pk": 422, "fields": {"title": "The 40 Best Kendrick Lamar Quotes", "body": "The Pulitzer Prize Award-winning rapper Kendrick Lamar is a genius. For as much as he is a musician and a lyricist and an emcee, Lamar is also a playwright, a novelist, a short story author. He’s literary within the art form of music. With seminal albums like Damn and Mr. Morale & the Big Steppers, […]The post The 40 Best Kendrick Lamar Quotes appeared first on American Songwriter.", "image_link": null, "word_cloud_link": null, "source_link": "https://americansongwriter.com/the-40-best-kendrick-lamar-quotes/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 40, "category": 2, "creation_date": "2022-10-16T16:01:25.630Z", "last_update": "2022-10-16T16:01:25.630Z"}}, {"model": "press.post", "pk": 423, "fields": {"title": "New York Yankees vs. Cleveland Guardians Spread, Line, Odds, Predictions, Picks, and Betting Preview", "body": "After a ninth-inning walk-off comeback Saturday, the Guardians can put away the Yankees and move on to the ALCS on Sunday night.The post New York Yankees vs. Cleveland Guardians Spread, Line, Odds, Predictions, Picks, and Betting Preview first appeared on SportsGrid.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sportsgrid.com/real-sports/mlb/new-york-yankees-vs-cleveland-guardians-spread-line-odds-predictions-picks-and-betting-preview-2/", "source_label": "sportsgrid", "status": "PUBLISHED", "author": 197, "category": 2, "creation_date": "2022-10-16T16:01:27.455Z", "last_update": "2022-10-16T16:01:27.455Z"}}, {"model": "press.post", "pk": 424, "fields": {"title": "Park Avenue Securities LLC Raises Stake in Fortinet, Inc. (NASDAQ:FTNT)", "body": "Park Avenue Securities LLC Raises Stake in Fortinet, Inc. (NASDAQ:FTNT)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/16/park-avenue-securities-llc-raises-stake-in-fortinet-inc-nasdaqftnt.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-16T16:01:27.595Z", "last_update": "2022-10-16T16:01:27.595Z"}}, {"model": "press.post", "pk": 425, "fields": {"title": "Whittier Trust Co. of Nevada Inc. Cuts Position in Alibaba Group Holding Limited (NYSE:BABA)", "body": "Whittier Trust Co. of Nevada Inc. Cuts Position in Alibaba Group Holding Limited (NYSE:BABA)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/16/whittier-trust-co-of-nevada-inc-cuts-position-in-alibaba-group-holding-limited-nysebaba-2.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-16T16:01:27.665Z", "last_update": "2022-10-16T16:01:27.665Z"}}, {"model": "press.post", "pk": 426, "fields": {"title": "Sumitomo Mitsui Trust Holdings Inc. Boosts Stock Position in Alibaba Group Holding Limited (NYSE:BABA)", "body": "Sumitomo Mitsui Trust Holdings Inc. grew its position in Alibaba Group Holding Limited (NYSE:BABA – Get Rating) by 11.4% in the second quarter, according to its most recent 13F filing with the Securities and Exchange Commission. The fund owned 84,671 shares of the specialty retailer’s stock after acquiring an additional 8,683 shares during the quarter. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.etfdailynews.com/2022/10/16/sumitomo-mitsui-trust-holdings-inc-boosts-stock-position-in-alibaba-group-holding-limited-nysebaba/", "source_label": "etfdailynews", "status": "PUBLISHED", "author": 28, "category": 2, "creation_date": "2022-10-16T16:01:27.738Z", "last_update": "2022-10-16T16:01:27.738Z"}}, {"model": "press.post", "pk": 427, "fields": {"title": "Russian anti-war protest journalist Marina Ovsyannikova flees to Europe", "body": "Former propagandist is now 'under the protection of a European state,' lawyer says.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.politico.eu/article/russia-anti-war-protest-journalist-marina-ovsyannikova-europe/?utm_source=RSS_Feed&utm_medium=RSS&utm_campaign=RSS_Syndication", "source_label": "europeanvoice", "status": "PUBLISHED", "author": 198, "category": 2, "creation_date": "2022-10-17T16:00:47.580Z", "last_update": "2022-10-17T16:00:47.580Z"}}, {"model": "press.post", "pk": 428, "fields": {"title": "Berlusconi lawyer: No evidence of bribery in ‘bunga bunga’ trial", "body": "MILAN — There is no evidence that Silvio Berlusconi bribed witnesses in the infamous ‘bunga bunga’ sex trial, one of his defense lawyers said on Monday, calling for the former Italian prime minister to be acquitted in a new trial linked to the case. An appeal court cleared Berlusconi in 2014 of soliciting sex from […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/crime-pmn/berlusconi-lawyer-no-evidence-of-bribery-in-bunga-bunga-trial", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-17T16:00:47.624Z", "last_update": "2022-10-17T16:00:47.624Z"}}, {"model": "press.post", "pk": 429, "fields": {"title": "156th Wing Change of Command Ceremony [Image 4 of 4]", "body": "U.S. Air Force Col. Patrick Ramirez, the 156th Medical Group commander, and Airmen with the 156th Wing render U.S. Air Force Col. Pete Boone, the 156th Wing commander, his final salute as wing commander during the 156th Wing change of command ceremony at Muñiz Air National Guard Base, Carolina, Puerto Rico, Oct. 15, 2022. The change of command ceremony took place during the October regularly scheduled drill. (U.S. Air National Guard photo by Staff Sgt. Eliezer Soto)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7466751/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7466751/156th-wing-change-command-ceremony", "source_label": "dvidshub", "status": "PUBLISHED", "author": 199, "category": 2, "creation_date": "2022-10-17T16:00:49.198Z", "last_update": "2022-10-17T16:00:49.198Z"}}, {"model": "press.post", "pk": 430, "fields": {"title": "Signify: A 5.5% Dividend And A 15% Free Cash Flow Yield", "body": "Signify: A 5.5% Dividend And A 15% Free Cash Flow Yield", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4546961-signify-dividend-and-free-cash-flow-yield?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:00:49.246Z", "last_update": "2022-10-17T16:00:49.246Z"}}, {"model": "press.post", "pk": 431, "fields": {"title": "156th Wing Change of Command Ceremony [Image 3 of 4]", "body": "U.S. Airmen with the 156th Wing Honor Guard, present the colors during the 156th Wing change of command ceremony at Muñiz Air National Guard Base, Carolina, Puerto Rico, Oct. 15, 2022. The change of command ceremony took place during the October regularly scheduled drill. (U.S. Air National Guard photo by Staff Sgt. Eliezer Soto)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7466750/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7466750/156th-wing-change-command-ceremony", "source_label": "dvidshub", "status": "PUBLISHED", "author": 199, "category": 2, "creation_date": "2022-10-17T16:00:49.284Z", "last_update": "2022-10-17T16:00:49.284Z"}}, {"model": "press.post", "pk": 432, "fields": {"title": "156th Wing Change of Command Ceremony [Image 2 of 4]", "body": "From left, U.S. Air Force, Brig. Gen. Paul Loiselle, the assistant adjutant general-air, Puerto Rico Air National Guard, U.S. Air Force Col. Pete Boone, the outgoing 156th Wing commander and U.S. Air Force Col. Humberto Pabon Jr., the incoming 156th wing commander, stand at attention during a change of command ceremony at Muniz Air National Guard Base, Carolina, Puerto Rico, Oct. 15, 2022. The change of command ceremony took place during the October regularly scheduled drill. (U.S. Air National Guard photo by Staff Sergeant Eliezer Soto)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7466749/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7466749/156th-wing-change-command-ceremony", "source_label": "dvidshub", "status": "PUBLISHED", "author": 199, "category": 2, "creation_date": "2022-10-17T16:00:49.324Z", "last_update": "2022-10-17T16:00:49.324Z"}}, {"model": "press.post", "pk": 433, "fields": {"title": "Encouraging interoperability to help learners in the digital credential marketplace", "body": "The growing use of digital credentials is enabling graduates and job seekers to make their credentials more accessible and portable in a fast-changing labor market. Governments and educational institutions should be moving to support interoperable versions of these digital credentials to give learners more control, which will ultimately lead to platforms and services that are…", "image_link": "https://www.brookings.edu/wp-content/uploads/2022/05/Digital-credentials_cover-image_reduced-size.jpg?w=271", "word_cloud_link": null, "source_link": "https://www.brookings.edu/blog/techtank/2022/10/17/encouraging-interoperability-to-help-learners-in-the-digital-credential-marketplace/", "source_label": "brookings", "status": "PUBLISHED", "author": 200, "category": 2, "creation_date": "2022-10-17T16:00:50.932Z", "last_update": "2022-10-17T16:00:50.932Z"}}, {"model": "press.post", "pk": 434, "fields": {"title": "Whois info and blockchain impact – DNW Podcast #409", "body": "Will a new Whois disclosure system satisfy anyone? On this week’s show, I speak with Marc Trachtenberg, a shareholder with Greenberg Traurig, LLP. Marc represents both brand holders looking to protect their assets online as well as registries and registrars that are sometimes leaned on to help brands. This gives him a unique perspective on […]Post link: Whois info and blockchain impact – DNW Podcast #409© DomainNameWire.com 2022. This is copyrighted content. Domain Name Wire full-text RSS feeds are made available for personal use only, and may not be published on any site without...", "image_link": "https://traffic.libsyn.com/domainnamewire/DNW409.mp3", "word_cloud_link": null, "source_link": "https://domainnamewire.com/2022/10/17/whois-info-and-blockchain-impact-dnw-podcast-409/", "source_label": "domainnamewire", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:00:50.984Z", "last_update": "2022-10-17T16:00:50.984Z"}}, {"model": "press.post", "pk": 435, "fields": {"title": "156th Wing Change of Command Ceremony [Image 1 of 4]", "body": "U.S. Air Force Col. Evaristo M. Orengo, III., the 156th Wing Air Commander and Airmen with the Puerto Rico Air National Guard attend the 156th Wing change of command ceremony at Muñiz Air National Guard Base, Carolina, Puerto Rico, Oct. 15, 2022. The change of command ceremony took place during the October regularly scheduled drill. (U.S. Air National Guard photo by Staff Sergeant Eliezer Soto)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7466748/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7466748/156th-wing-change-command-ceremony", "source_label": "dvidshub", "status": "PUBLISHED", "author": 199, "category": 2, "creation_date": "2022-10-17T16:00:51.041Z", "last_update": "2022-10-17T16:00:51.041Z"}}, {"model": "press.post", "pk": 436, "fields": {"title": "Most Canadian businesses plan to hire in next year despite recession fears: BoC survey", "body": "A majority of businesses say they will continue to hire in the next year even as most feel a recession is on the horizon, according to a new Bank of Canada survey.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/now-hiring-sign.jpeg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9204192/canada-business-survey-recession-hiring-plans/", "source_label": "chbcnews", "status": "PUBLISHED", "author": 201, "category": 2, "creation_date": "2022-10-17T16:00:52.634Z", "last_update": "2022-10-17T16:00:52.634Z"}}, {"model": "press.post", "pk": 437, "fields": {"title": "NSW Institute of Sport partner with clothing brand Valour to boost Paris 2024 success", "body": "The New South Wales Institute of Sport (NSWIS) has partnered with Sydney-based clothing manufactu...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.insidethegames.biz/articles/1129305/nsw-partner-valour-paris-2024", "source_label": "insidethegames", "status": "PUBLISHED", "author": 202, "category": 2, "creation_date": "2022-10-17T16:00:54.263Z", "last_update": "2022-10-17T16:00:54.263Z"}}, {"model": "press.post", "pk": 438, "fields": {"title": "Save on a pair of first-generation AirPods Pro today only at Target", "body": "Save on a pair of first-generation AirPods Pro today only at Target", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cnn.com/2022/10/17/cnn-underscored/deals/best-online-sales-right-now?iid=CNNUnderscoredHPcontainer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:00:54.298Z", "last_update": "2022-10-17T16:00:54.298Z"}}, {"model": "press.post", "pk": 439, "fields": {"title": "9 ideas for a winter vacation to start planning now", "body": "9 ideas for a winter vacation to start planning now", "image_link": "https://cdn.cnn.com/cnnnext/dam/assets/211108105144-underscored-vail-colorado-super-169.jpg", "word_cloud_link": null, "source_link": "https://www.cnn.com/cnn-underscored/travel/best-winter-vacation-ideas?iid=CNNUnderscoredHPcontainer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:00:54.334Z", "last_update": "2022-10-17T16:00:54.334Z"}}, {"model": "press.post", "pk": 440, "fields": {"title": "These are new 'RHONY' cast member Jenna Lyons' 10 fashion and beauty essentials", "body": "These are new 'RHONY' cast member Jenna Lyons' 10 fashion and beauty essentials", "image_link": "https://cdn.cnn.com/cnnnext/dam/assets/220916171019-jenna-lyons-super-169.jpg", "word_cloud_link": null, "source_link": "https://www.cnn.com/cnn-underscored/fashion/jenna-lyons-fashion-beauty-essentials?iid=CNNUnderscoredHPcontainer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:00:54.368Z", "last_update": "2022-10-17T16:00:54.368Z"}}, {"model": "press.post", "pk": 441, "fields": {"title": "No Sigh Of Relief After Win For Connor Heyward: ‘We Knew We Were A Good Team’", "body": "The Pittsburgh Steelers dragged a battered team into Acrisure Stadium yesterday and still managed to come out with a win. Perhaps a big reason for that is because those in the locker room never doubted themselves—especially the guys who were called upon to fill in. Guys like rookie tight end Connor Heyward, who played a […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/10/no-sigh-of-relief-after-win-for-connor-heyward-we-knew-we-were-a-good-team/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 203, "category": 2, "creation_date": "2022-10-17T16:00:55.928Z", "last_update": "2022-10-17T16:00:55.928Z"}}, {"model": "press.post", "pk": 442, "fields": {"title": "As Vladimir Putin weakens, so does the integrity of the Russian Federation", "body": "Who knew? A “woke” army, one in which people understand the differences that make all of us unique, and build unit cohesion by respecting those differences, is a good thing. Over the weekend, three Muslim Russians opened fire at a mobilization site, killing at least 30 soldiers of Sen. Ted Cruz’s favorite anti-woke Russian army. They responded after being bullied about their religion.The following is a translated interview of a Russian service member who witnessed the attack:It all started when some of our soldiers - a Dagestani, an Azerbaijani and an Adyghe - said that 'this is not our...", "image_link": "https://www.alternet.org/media-library/image.png?id=29733576&width=980", "word_cloud_link": null, "source_link": "https://www.alternet.org/2022/10/vladimir-putin-weakens-russian-federation/", "source_label": "alternet", "status": "PUBLISHED", "author": 204, "category": 2, "creation_date": "2022-10-17T16:00:57.609Z", "last_update": "2022-10-17T16:00:57.610Z"}}, {"model": "press.post", "pk": 443, "fields": {"title": "Youth And Women’s T20 Leagues At The Heart Of Pakistan Cricket’s Bold Vision", "body": "Charismatic boss Ramiz Raja is putting his stamp on Pakistan cricket by launching youth and women's T20 leagues.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/632292436f5f66e924b00cbb/0x0.jpg?width=960", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/tristanlavalette/2022/10/17/youth-and-womens-t20-leagues-at-the-heart-of-pakistan-crickets-bold-vision/", "source_label": "Forbes", "status": "PUBLISHED", "author": 205, "category": 2, "creation_date": "2022-10-17T16:00:59.152Z", "last_update": "2022-10-17T16:00:59.152Z"}}, {"model": "press.post", "pk": 444, "fields": {"title": "Virginians: Watch your windows to catch glimpse of migrating golden eagle, snowy owl", "body": "(© emranashraf – stock.adobe.com)Each fall, millions of birds pass through the Commonwealth during their fall migrations south, offering Virginians opportunities to see hawks, songbirds and more.“Virginia is in the East Coast flyway, in the path of birds headed south for the winter. Right now, you can see lots of birds at any place at any time,” said Robyn Puffenbarger, a Virginia Cooperative Extension Master Gardener volunteer who is passionate about birdwatching.“This is a big time for warblers, vireos and shore birds,” said Puffenbarger, who suggests simply watching the birds...", "image_link": null, "word_cloud_link": null, "source_link": "https://augustafreepress.com/virginians-watch-your-windows-to-catch-glimpse-of-migrating-golden-eagle-snowy-owl/", "source_label": "augustafreepress", "status": "PUBLISHED", "author": 187, "category": 2, "creation_date": "2022-10-17T16:00:59.188Z", "last_update": "2022-10-17T16:00:59.188Z"}}, {"model": "press.post", "pk": 445, "fields": {"title": "Shopping malls see growth despite inflation", "body": "Cyprus malls have escaped unscathed from the effects of hiking inflation rates, with their turnover setting new records. Stakeholders report that an influx of tourists compared to two years of coronavirus has boosted their revenues, making up for the cost increase. In comments to Stockwatch, the head of the Cyprus Retailers Association (PASYLE), Marios Antoniou, said that tourist flows have breathed new life into the retail sector, especially in Paphos and Limassol. Antoniou said that Limassol’s retail market was bolstered by the weekly arrival of 6,000 tourists on cruise ships who...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.financialmirror.com/2022/10/17/shopping-malls-see-growth-despite-inflation/", "source_label": "financialmirror", "status": "PUBLISHED", "author": 206, "category": 2, "creation_date": "2022-10-17T16:01:00.721Z", "last_update": "2022-10-17T16:01:00.721Z"}}, {"model": "press.post", "pk": 446, "fields": {"title": "Meet GS’s 2022 Homecoming King and Queen", "body": "Kenneth Edouazin and Emily Grace McWhorter were announced Homecoming King and Queen of GS last month. What’s new: Edouazin and McWhorter share what their crowns mean to them. Edouazin is a first generation American and college student, and chapter president of Alpha Phi Alpha Fraternity, Inc. He has been involved in the American Society of...", "image_link": null, "word_cloud_link": null, "source_link": "https://thegeorgeanne.com/39007/news/meet-gss-2022-homecoming-king-and-queen/", "source_label": "gadaily", "status": "PUBLISHED", "author": 207, "category": 2, "creation_date": "2022-10-17T16:01:02.404Z", "last_update": "2022-10-17T16:01:02.404Z"}}, {"model": "press.post", "pk": 447, "fields": {"title": "The Young and the Restless spoilers: Will Sally choose Nick or Adam?", "body": "The Young and the Restless spoilers tease a love triangle is heating up on the hit CBS soap opera. With November sweeps just a couple of weeks away, Y&R is setting the stage for another epic Newman brother battle. Adam (Mark Grossman) and Nick (Joshua Morrow) are no strangers to", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/tv/soaps/the-young-and-the-restless-spoilers-will-sally-choose-nick-or-adam/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 208, "category": 2, "creation_date": "2022-10-17T16:01:04.203Z", "last_update": "2022-10-17T16:01:04.203Z"}}, {"model": "press.post", "pk": 448, "fields": {"title": "The 20 Best Thom Yorke Quotes", "body": "You’d be hard-pressed to find music fans who don’t think that Radiohead frontman Thom Yorke is a genius. The songwriter is known for his intricate songs with heady lyrics and highfalutin concepts. His songs are dense, at times meandering, but always thoughtful and unique. How else should a genius be defined? But what does the […]The post The 20 Best Thom Yorke Quotes appeared first on American Songwriter.", "image_link": null, "word_cloud_link": null, "source_link": "https://americansongwriter.com/the-20-best-thom-yorke-quotes/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 40, "category": 2, "creation_date": "2022-10-17T16:01:04.306Z", "last_update": "2022-10-17T16:01:04.306Z"}}, {"model": "press.post", "pk": 449, "fields": {"title": "Eddie Howe drops Newcastle United selection hint ahead of Everton game", "body": "Injury-hit Eddie Howe's keen to freshen up his Newcastle United team for Everton’s visit to St James’s Park.", "image_link": "https://www.shieldsgazette.com/webimg/b25lY21zOjVhMmM2MDgxLTU3ZWUtNDZmNS05Yjg3LWY2ZDA0YTQ0MDY0ZDpjZTU2MTliNy1mMGNkLTQyMDctYWZjYi1lMzYzYjBhYmU1Njg=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.shieldsgazette.com/sport/football/newcastle-united/eddie-howe-drops-newcastle-united-selection-hint-ahead-of-everton-game-3882690", "source_label": "shieldsgazette", "status": "PUBLISHED", "author": 209, "category": 2, "creation_date": "2022-10-17T16:01:06.477Z", "last_update": "2022-10-17T16:01:06.477Z"}}, {"model": "press.post", "pk": 450, "fields": {"title": "Bank of America CEO says latest spending and savings data show that the U.S. consumer is healthy", "body": "Consumers are financially resilient, despite high inflation and concerns the U.S. is nearing a recession, according to Bank of America CEO Brian Moynihan.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cnbc.com/2022/10/17/bank-of-america-ceo-brian-moynihan-says-the-us-consumer-is-healthy.html", "source_label": "CNBC", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:01:06.689Z", "last_update": "2022-10-17T16:01:06.689Z"}}, {"model": "press.post", "pk": 451, "fields": {"title": "Lufthansa raises full-year earnings forecast amid strong demand for air travel", "body": "(marketscreener.com) Lufthansa raised its forecast for full-year adjusted earnings to over one billion euros on Monday as strong demand for air travel in the third quarter put it on track to achieve a record results in 2022.https://www.marketscreener.com/quote/stock/DEUTSCHE-LUFTHANSA-AG-436827/news/Lufthansa-raises-full-year-earnings-forecast-amid-strong-demand-for-air-travel-42020479/?utm_medium=RSS&utm_content=20221017", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/DEUTSCHE-LUFTHANSA-AG-436827/news/Lufthansa-raises-full-year-earnings-forecast-amid-strong-demand-for-air-travel-42020479/?utm_medium=RSS&utm_content=20221017", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:01:06.809Z", "last_update": "2022-10-17T16:01:06.809Z"}}, {"model": "press.post", "pk": 452, "fields": {"title": "Strictly Come Dancing’s Ellie and Johannes dancing to Casualty theme tune this week and we cannot wait", "body": "We have no choice but to stan.", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/17/strictly-ellie-and-johannes-dancing-to-casualty-theme-tune-this-week-17580002/", "source_label": "Metro", "status": "PUBLISHED", "author": 210, "category": 2, "creation_date": "2022-10-17T16:01:09.551Z", "last_update": "2022-10-17T16:01:09.551Z"}}, {"model": "press.post", "pk": 453, "fields": {"title": "A Conversation with MacArthur Fellow Jennifer Carlson", "body": "The MacArthur Foundation just announced its newest class of fellows for 2022. Colloquially known as the MacArthur ‘Geniuses’, each class is meant to include some of the brightest minds across multiple disciplines. This year, the cohort is made up of authors, filmmakers, digital archivists, scientists, and scholars among others. Jennifer Carlson is a sociologist and author \"Policing the Second Amendment: Guns, Law Enforcement, and the Politics of Race.\" She joined The Takeaway to discuss her work studying gun culture and gun violence, and what it was like to win the 2022 MacArthur Genius...", "image_link": null, "word_cloud_link": null, "source_link": "http://www.wnycstudios.org/story/conversation-macarthur-fellow-jennifer-carlson/", "source_label": "thetakeaway", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:01:09.672Z", "last_update": "2022-10-17T16:01:09.672Z"}}, {"model": "press.post", "pk": 454, "fields": {"title": "'Serious matters' preventing UK PM Truss from coming to parliament, Mordaunt says", "body": "(marketscreener.com) The leader of Britain's House of Commons, Penny Mordaunt, said on Monday that were \"very serious matters as well as economic matters\" in Prime Minister Liz Truss's in-tray that have prevented her from appearing for a question in parliament.https://www.marketscreener.com/news/latest/Serious-matters-preventing-UK-PM-Truss-from-coming-to-parliament-Mordaunt-says--42020493/?utm_medium=RSS&utm_content=20221017", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/Serious-matters-preventing-UK-PM-Truss-from-coming-to-parliament-Mordaunt-says--42020493/?utm_medium=RSS&utm_content=20221017", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:01:09.857Z", "last_update": "2022-10-17T16:01:09.857Z"}}, {"model": "press.post", "pk": 455, "fields": {"title": "Government says Steve Bannon should get 6-month sentence", "body": "The Justice Department is arguing that Steve Bannon should serve six months in prison and pay a $200,000 fine for defying a congressional subpoena from the House committee investigating the Jan. 6 insurrection at the U.S. Capitol", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sandiegouniontribune.com/news/nation-world/story/2022-10-17/government-says-steve-bannon-should-get-6-month-sentence", "source_label": "signonsandiego", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:01:09.993Z", "last_update": "2022-10-17T16:01:09.993Z"}}, {"model": "press.post", "pk": 456, "fields": {"title": "ALL of Britain is declared a bird flu 'prevention zone'", "body": "From today all bird keepers in Britain must follow strict measures by law to protect flocks from bird flu, including keeping free range birds in fenced areas and biosecurity rules for staff on farms.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/17/16/63556423-0-image-a-22_1666019534289.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/health/article-11324217/ALL-Britain-declared-bird-flu-prevention-zone.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-17T16:01:10.149Z", "last_update": "2022-10-17T16:01:10.149Z"}}, {"model": "press.post", "pk": 457, "fields": {"title": "NXT TV preview: Kevin Owens added to tonight’s show that airs head-to-head with AEW Dynamite", "body": "By Jason Powell, ProWrestling.net Editor...The post NXT TV preview: Kevin Owens added to tonight’s show that airs head-to-head with AEW Dynamite appeared first on Pro Wrestling Dot Net.", "image_link": null, "word_cloud_link": null, "source_link": "https://prowrestling.net/site/2022/10/18/nxt-tv-preview-kevin-owens-added-to-tonights-show-that-airs-head-to-head-with-aew-dynamite/", "source_label": "prowrestling", "status": "PUBLISHED", "author": 77, "category": 2, "creation_date": "2022-10-18T16:00:46.364Z", "last_update": "2022-10-18T16:00:46.364Z"}}, {"model": "press.post", "pk": 458, "fields": {"title": "Transport truck driver had alcohol in system, say Essex County OPP", "body": "A recent enforcement blitz focused on commercial vehicles in Essex County resulted in officers penalizing one driver for having alcohol in their system. Members of Essex County OPP, the Ontario Ministry of Transportation, and West Region OPP’s traffic incident management and enforcement team conducted the local blitz on Oct. 14. Commercial vehicle operators were specifically […]", "image_link": null, "word_cloud_link": null, "source_link": "https://windsorstar.com/news/local-news/transport-truck-driver-had-alcohol-in-system-say-essex-county-opp", "source_label": "windsorstar", "status": "PUBLISHED", "author": 211, "category": 2, "creation_date": "2022-10-18T16:00:48.113Z", "last_update": "2022-10-18T16:00:48.113Z"}}, {"model": "press.post", "pk": 459, "fields": {"title": "7 Strategies To Help You Earn A Promotion By Year-End", "body": "Are you looking to get ahead and earn more money? Here are seven strategies to help you become a prime candidate for your desired position.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/634ec61cdf3677fdd2c9a291/0x0.jpg?width=960", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/robertamatuson/2022/10/18/7-strategies-to-help-you-earn-a-promotion-by-year-end/", "source_label": "Leadership", "status": "PUBLISHED", "author": 212, "category": 2, "creation_date": "2022-10-18T16:00:49.677Z", "last_update": "2022-10-18T16:00:49.677Z"}}, {"model": "press.post", "pk": 460, "fields": {"title": "Landmark trial over Arkansas' ban on gender-affirming care for transgender youths begins", "body": "A suit is attempting to formally stop a ban on providing gender-affirming treatment to transgender youths. The case could have broad consequences.", "image_link": null, "word_cloud_link": null, "source_link": "https://ca.sports.yahoo.com/news/landmark-trial-over-arkansas-ban-152450117.html?src=rss", "source_label": "sports", "status": "PUBLISHED", "author": 213, "category": 2, "creation_date": "2022-10-18T16:00:51.322Z", "last_update": "2022-10-18T16:00:51.322Z"}}, {"model": "press.post", "pk": 461, "fields": {"title": "Crude oil falls on reports the U.S. will sell oil from emergency reserves", "body": "Yahoo Finance's Jared Blikre breaks down the moves in commodities as OPEC+ members back output cut and reports circulate that the White House will announce another emergency reserve release.", "image_link": null, "word_cloud_link": null, "source_link": "https://finance.yahoo.com/video/crude-oil-falls-reports-u-153042414.html?src=rss", "source_label": "sports", "status": "PUBLISHED", "author": 214, "category": 2, "creation_date": "2022-10-18T16:00:53.020Z", "last_update": "2022-10-18T16:00:53.020Z"}}, {"model": "press.post", "pk": 462, "fields": {"title": "US Chipmakers Will Reap Rewards From Chips Act", "body": "The amount of chips used in devices and automobiles will increase exponentially over the next several years.", "image_link": "http://www.thestreet.com/.image/c_limit%2Ccs_srgb%2Cfl_progressive%2Ch_1200%2Cq_auto:good%2Cw_1200/MTkxMDc5NTExMzg1NzExOTgy/semicondictor-stocks.jpg", "word_cloud_link": null, "source_link": "https://www.thestreet.com/investing/us-chipmakers-will-reap-rewards-from-chips-act", "source_label": "mainstreet", "status": "PUBLISHED", "author": 215, "category": 2, "creation_date": "2022-10-18T16:00:54.627Z", "last_update": "2022-10-18T16:00:54.627Z"}}, {"model": "press.post", "pk": 463, "fields": {"title": "Mike Francesa says Bob Costas ‘will not shut up’ during ALDS broadcasts", "body": "\"Everything’s a history lesson. We don’t need a history lesson every two seconds.\"", "image_link": null, "word_cloud_link": null, "source_link": "https://torontosun.com/sports/baseball/mlb/mike-francesa-says-bob-costas-will-not-shut-up-during-alds-broadcasts", "source_label": "m", "status": "PUBLISHED", "author": 216, "category": 2, "creation_date": "2022-10-18T16:00:56.241Z", "last_update": "2022-10-18T16:00:56.241Z"}}, {"model": "press.post", "pk": 464, "fields": {"title": "Dimensions Dance Theater celebrates 50 years of presenting African dance", "body": "Dimensions Dance Theater, the oldest Black dance troupe on the West Coast, celebrates its 50th anniversary with performances Oct. 22-23 in Oakland.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/10/SJM-L-DIMENSIONS-1020-01.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/10/18/dimensions-dance-theater-celebrates-50-years-of-presenting-african-dance/", "source_label": "Mercury News", "status": "PUBLISHED", "author": 217, "category": 2, "creation_date": "2022-10-18T16:00:57.834Z", "last_update": "2022-10-18T16:00:57.834Z"}}, {"model": "press.post", "pk": 465, "fields": {"title": "Big Bay Area mobile home park with hundreds of units is bought", "body": "A big Bay Area mobile home park with hundreds of spaces has been bought in a deal that tops $40 million.", "image_link": "https://www.siliconvalley.com/wp-content/uploads/2022/10/SJM-L-SJMHOMEBUY-x-01.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.siliconvalley.com/2022/10/18/san-jose-bay-area-mobile-home-park-315-unit-buy-sell-real-estate/", "source_label": "siliconvalley", "status": "PUBLISHED", "author": 218, "category": 2, "creation_date": "2022-10-18T16:00:59.520Z", "last_update": "2022-10-18T16:00:59.520Z"}}, {"model": "press.post", "pk": 466, "fields": {"title": "ASUS Introduces New ProArt Creative Solutions at Adobe MAX", "body": "Showing new ProArt solutions for post-production, graphic design, and photography, the company introduces new products", "image_link": null, "word_cloud_link": null, "source_link": "http://digitalmedianet.com/asus-introduces-new-proart-creative-solutions-at-adobe-max/", "source_label": "nab", "status": "PUBLISHED", "author": 219, "category": 2, "creation_date": "2022-10-18T16:01:01.153Z", "last_update": "2022-10-18T16:01:01.153Z"}}, {"model": "press.post", "pk": 467, "fields": {"title": "The Katie Couric breast-cancer diagnosis: How often should you screen?", "body": "It's your body and you are the ultimate expert in it.", "image_link": "https://www.dailybreeze.com/wp-content/uploads/2022/10/OCR-L-BREASTCANCER-1011-JG-01.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.dailybreeze.com/2022/10/18/the-katie-couric-breast-cancer-diagnosis-how-often-should-you-screen/", "source_label": "dailybreeze", "status": "PUBLISHED", "author": 220, "category": 2, "creation_date": "2022-10-18T16:01:03.153Z", "last_update": "2022-10-18T16:01:03.154Z"}}, {"model": "press.post", "pk": 468, "fields": {"title": "Keyport municipal officials authorize new crosswalk on Broad Street", "body": "KEYPORT — Municipal officials in Keyport have authorized a new pedestrian crosswalk in the borough. During a meeting on Oct. 4, Borough Council members adopted an ordinance that amends the traffic and traffic schedules chapters of Keyport’s ordinances to add a new mid-block crosswalk on Broad Street (Monmouth County Route 4). According to the ordinance, […]The post Keyport municipal officials authorize new crosswalk on Broad Street appeared first on centraljersey.com.", "image_link": "https://cdn.centraljersey.com/wp-content/uploads/sites/26/2019/02/news-2-300x200.jpg", "word_cloud_link": null, "source_link": "https://centraljersey.com/2022/10/18/keyport-new-crosswalk/?utm_source=rss&utm_medium=rss&utm_campaign=keyport-new-crosswalk", "source_label": "centraljersey", "status": "PUBLISHED", "author": 221, "category": 2, "creation_date": "2022-10-18T16:01:05.555Z", "last_update": "2022-10-18T16:01:05.555Z"}}, {"model": "press.post", "pk": 469, "fields": {"title": "Team Blake’s Bodie and Jaeden Luke Have ‘Voice’ Battle with Early Justin Bieber Hit", "body": "Blake Shelton team members Bodie and Jaeden Luke battled it out during the second night of the Battles Round on The Voice with a duet of Justin Bieber’s 2012 hit “As Long As You Love Me.” “Wowza. Guys, that was good,” said coach Camila Cabello. “I was hot and flustered for a second there. That […]The post Team Blake’s Bodie and Jaeden Luke Have ‘Voice’ Battle with Early Justin Bieber Hit appeared first on American Songwriter.", "image_link": null, "word_cloud_link": null, "source_link": "https://americansongwriter.com/team-blakes-bodie-and-jaeden-luke-have-voice-battle-with-early-justin-bieber-hit/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 164, "category": 2, "creation_date": "2022-10-18T16:01:05.664Z", "last_update": "2022-10-18T16:01:05.664Z"}}, {"model": "press.post", "pk": 470, "fields": {"title": "Asian NOCs to benefit from Doha 2030 Asian Games' Project Legacy", "body": "The Qatar Olympic Committee (QOC) is aiming to help all other Asian National Olympic Committees (...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.insidethegames.biz/articles/1129353/qoc-doha-2030-asian-games-project-legacy", "source_label": "insidethegames", "status": "PUBLISHED", "author": 222, "category": 2, "creation_date": "2022-10-18T16:01:08.151Z", "last_update": "2022-10-18T16:01:08.151Z"}}, {"model": "press.post", "pk": 471, "fields": {"title": "Ukrainian regions annexed by Russia under nuclear protection, Moscow says", "body": "Russia said on Tuesday that four Ukrainian regions whose annexation it proclaimed last month are under the protection of its nuclear arsenal.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/2022100621104-633f7bc4821cf083b815b82djpeg-1.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9206904/ukraine-regions-nuclear-protection-russia-annexation/", "source_label": "chbcnews", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-18T16:01:08.352Z", "last_update": "2022-10-18T16:01:08.352Z"}}, {"model": "press.post", "pk": 472, "fields": {"title": "John Law talks Doggie Diner dog heads, urban exploration, Cacophony Society, and more in podcast", "body": "Manny, Moe, and Jack, three giant Doggie Diner dog heads, have been on display in San Francisco's Golden Gate Park as part of Illuminate's The Golden Mile Project. This prompted an interview of living legend John Law, the steward of the dog heads for many years, on the Total SF podcast. — Read the rest", "image_link": null, "word_cloud_link": null, "source_link": "https://boingboing.net/2022/10/18/john-law-talks-doggie-diner-dog-heads-urban-exploration-cacophony-society-and-more-in-podcast.html", "source_label": "boingboing", "status": "PUBLISHED", "author": 223, "category": 2, "creation_date": "2022-10-18T16:01:10.826Z", "last_update": "2022-10-18T16:01:10.826Z"}}, {"model": "press.post", "pk": 473, "fields": {"title": "Lockheed Martin On Pace for Largest Percent Increase Since March -- Data Talk", "body": "(marketscreener.com) Lockheed Martin Corporation is currently at $415.63, up $18.32 or 4.61% --Would be highest close since Sept. 22, 2022, when it closed at $422.08 --On pace for largest percent increase since March 1, 2022, when it rose 5.26% --Currently up three of the past four days --Currently up two consecutive days; up 6.73%...https://www.marketscreener.com/quote/stock/LOCKHEED-MARTIN-CORPORATI-13406/news/Lockheed-Martin-On-Pace-for-Largest-Percent-Increase-Since-March-Data-Talk-42029811/?utm_medium=RSS&utm_content=20221018", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/LOCKHEED-MARTIN-CORPORATI-13406/news/Lockheed-Martin-On-Pace-for-Largest-Percent-Increase-Since-March-Data-Talk-42029811/?utm_medium=RSS&utm_content=20221018", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-18T16:01:10.966Z", "last_update": "2022-10-18T16:01:10.966Z"}}, {"model": "press.post", "pk": 474, "fields": {"title": "'I would face the death penalty in my country': Predatory paedophile's admission at Leeds Crown Court", "body": "A paedophile who tried to rape a 12-year-old girl admitted: “I would face the death penalty in my country.”", "image_link": "https://www.wakefieldexpress.co.uk/webimg/b25lY21zOjE4NDEzZDE3LWFjNzYtNDYxZC1hOWJhLTIyY2NlNjBjODZhNzphYjdhYTBiYi03NDAwLTRlMTctYjJhYy0xY2YxNjIwZjhlNzI=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.wakefieldexpress.co.uk/news/crime/i-would-face-the-death-penalty-in-my-country-predatory-paedophiles-admission-at-leeds-crown-court-3883955", "source_label": "pontefractandcastlefordexpress", "status": "PUBLISHED", "author": 144, "category": 2, "creation_date": "2022-10-18T16:01:11.090Z", "last_update": "2022-10-18T16:01:11.090Z"}}, {"model": "press.post", "pk": 475, "fields": {"title": "India legend Sachin Tendulkar names the four favourites to win the T20 World Cup", "body": "'I expect those four to be in the semi-finals.'", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/19/cricket-t20-world-cup-india-legend-sachin-tendulkar-names-four-favourites-17596097/", "source_label": "Metro", "status": "PUBLISHED", "author": 224, "category": 2, "creation_date": "2022-10-19T16:00:53.727Z", "last_update": "2022-10-19T16:00:53.727Z"}}, {"model": "press.post", "pk": 476, "fields": {"title": "Woman painting her nails on flight divides the internet", "body": "The woman was outed for painting her nails while seated on her flight by a fellow passenger.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/nails-plane-78.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/19/woman-painting-her-nails-on-flight-divides-the-internet/", "source_label": "Post", "status": "PUBLISHED", "author": 225, "category": 2, "creation_date": "2022-10-19T16:00:55.346Z", "last_update": "2022-10-19T16:00:55.346Z"}}, {"model": "press.post", "pk": 477, "fields": {"title": "The GSA struggles to keep a real estate sale program on track", "body": "The General Services Administration has completed two rounds of a three round plan to sell off unneeded federal buildings. It hasn't gone all that well.", "image_link": "https://federalnewsnetwork.com/wp-content/uploads/2021/12/Jill-Naaname.jpg", "word_cloud_link": null, "source_link": "https://federalnewsnetwork.com/facilities-construction/2022/10/the-gsa-struggles-to-keep-a-real-estate-sale-program-on-track/", "source_label": "federalnewsradio", "status": "PUBLISHED", "author": 226, "category": 2, "creation_date": "2022-10-19T16:00:56.990Z", "last_update": "2022-10-19T16:00:56.990Z"}}, {"model": "press.post", "pk": 478, "fields": {"title": "Scorned woman buries ‘cheating liar’ ex’s house in glitter", "body": "Revenge is best served sparkly.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/ex-girlfriend-glitter-revenge-comp.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/19/scorned-woman-buries-cheating-liar-exs-house-in-glitter/", "source_label": "Post", "status": "PUBLISHED", "author": 227, "category": 2, "creation_date": "2022-10-19T16:00:58.635Z", "last_update": "2022-10-19T16:00:58.650Z"}}, {"model": "press.post", "pk": 479, "fields": {"title": "‘Swift-footed lizard’ named Massachusetts state dinosaur", "body": "BOSTON (AP) — A “swift-footed lizard” that lived millions of years ago in what is now Massachusetts has been named the state’s official dinosaur under legislation signed into law Wednesday by Gov. Charlie Baker. Podokesaurus holyokensis received more than 60% of the roughly 35,000 votes cast in a social media campaign initiated early last year […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/swift-footed-lizard-named-massachusetts-state-dinosaur", "source_label": "nationalpost", "status": "PUBLISHED", "author": 188, "category": 2, "creation_date": "2022-10-19T16:00:58.701Z", "last_update": "2022-10-19T16:00:58.701Z"}}, {"model": "press.post", "pk": 480, "fields": {"title": "Disneyland announces details for Disney Festival of Holidays", "body": "The celebration, which acknowledges an array of holiday observances, will run from Nov. 11 through Jan. 8.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/10/OCR-L-DIS-HOLIDAYS-1028-FEATURED.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/10/19/disneyland-announces-details-for-disney-festival-of-holidays/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 228, "category": 2, "creation_date": "2022-10-19T16:01:00.398Z", "last_update": "2022-10-19T16:01:00.398Z"}}, {"model": "press.post", "pk": 481, "fields": {"title": "Biden boasts it's 'win for taxpayers' to refill Petroleum Reserve at 3 times Trump's price", "body": "WND is now on Trump's Truth Social! Follow us @WNDNews By Jack McEvoy Daily Caller News Foundation President Joe Biden will buy oil to refill the Strategic Petroleum Reserve (SPR) at a price that is nearly three times higher than the price the Trump administration would have paid. Biden’s Energy Department (DOE) aims to buy…The post Biden boasts it's 'win for taxpayers' to refill Petroleum Reserve at 3 times Trump's price appeared first on WND.", "image_link": "http://www.wnd.com/wp-content/uploads/2022/09/joe-biden-pointing-podium-serious.jpg", "word_cloud_link": null, "source_link": "https://www.wnd.com/2022/10/biden-boasts-win-taxpayers-refill-petroleum-reserve-3-times-trumps-price/", "source_label": "wnd", "status": "PUBLISHED", "author": 56, "category": 2, "creation_date": "2022-10-19T16:01:00.508Z", "last_update": "2022-10-19T16:01:00.508Z"}}, {"model": "press.post", "pk": 482, "fields": {"title": "Randy Rogers Talks ‘Homecoming’ and 20 Years of Randy Rogers Band – “Our Youth is All Wrapped Up Into a Record”", "body": "“I don’t feel old yet,” Randy Rogers says when asked how he feels after 2 decades of making music with his band. “I feel like our band is really coming into its own.” He admits that might sound a touch cliche, but he means it, adding of the Randy Rogers Band, as a whole, “We’re […]The post Randy Rogers Talks ‘Homecoming’ and 20 Years of Randy Rogers Band – “Our Youth is All Wrapped Up Into a Record” appeared first on American Songwriter.", "image_link": null, "word_cloud_link": null, "source_link": "https://americansongwriter.com/randy-rogers-talks-homecoming-and-20-years-of-randy-rogers-band-our-youth-is-all-wrapped-up-into-a-record/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 229, "category": 2, "creation_date": "2022-10-19T16:01:02.826Z", "last_update": "2022-10-19T16:01:02.826Z"}}, {"model": "press.post", "pk": 483, "fields": {"title": "Another Day Of Record Low Temperatures", "body": "(KTTS News) — There were record breaking cold temperatures in the Ozarks for the second day in a row. The new record low Wednesday morning in Springfield and Joplin was 21 degrees. Vichy-Rolla set a new record", "image_link": "https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/1865/2022/05/05113932/National-Weather-Service-NWS-150x150.jpg", "word_cloud_link": null, "source_link": "https://www.ktts.com/2022/10/19/another-day-of-record-low-temperatures/", "source_label": "ktts", "status": "PUBLISHED", "author": 230, "category": 2, "creation_date": "2022-10-19T16:01:05.543Z", "last_update": "2022-10-19T16:01:05.543Z"}}, {"model": "press.post", "pk": 484, "fields": {"title": "Alfa Romeo Tonale review: Can this hybrid SUV compete with premium rivals?", "body": "Alfa’s first compact SUV is also its first hybrid but how does it stack up against established models from BMW, Audi, Mercedes and Volvo?", "image_link": "https://www.hartlepoolmail.co.uk/jpim-static/image/2022/10/06/18/tonale1-633beec9a27bb.jpeg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.hartlepoolmail.co.uk/lifestyle/cars/alfa-romeo-tonale-review-hybrid-suv-premium-rivals-price-spec-performance-3869171", "source_label": "hartlepoolmail", "status": "PUBLISHED", "author": 51, "category": 2, "creation_date": "2022-10-19T16:01:05.702Z", "last_update": "2022-10-19T16:01:05.702Z"}}, {"model": "press.post", "pk": 485, "fields": {"title": "‘The Goldbergs’ Exclusive Photos: Erica & Geoff Introduce Their Baby To The Family", "body": "There's a new member of the Goldberg family! Erica gives birth to her baby in the all-new episode of 'The Goldbergs.'", "image_link": "https://hollywoodlife.com/wp-content/uploads/2022/10/the-goldbergs-excl-ftr.jpg", "word_cloud_link": null, "source_link": "https://hollywoodlife.com/2022/10/19/the-goldbergs-erica-baby-geoff-exclusive-photos/", "source_label": "hollywoodlife", "status": "PUBLISHED", "author": 231, "category": 2, "creation_date": "2022-10-19T16:01:08.765Z", "last_update": "2022-10-19T16:01:08.765Z"}}, {"model": "press.post", "pk": 486, "fields": {"title": "Week 7 Stat Projections: Tight End Rankings", "body": "Gerald Everett climbs into the top-five of the Week 7 tight end projections and rankings.", "image_link": "http://www.si.com/.image/c_limit%2Ccs_srgb%2Cfl_progressive%2Ch_1200%2Cq_auto:good%2Cw_1200/MTkyNDkxMjA1NjY0Mzg0MzEz/los-angeles-chargers-gerald-everett.jpg", "word_cloud_link": null, "source_link": "https://www.si.com/fantasy/2022/10/19/week-7-tight-end-rankings-stat-projections-2022", "source_label": "si", "status": "PUBLISHED", "author": 232, "category": 2, "creation_date": "2022-10-19T16:01:11.278Z", "last_update": "2022-10-19T16:01:11.278Z"}}, {"model": "press.post", "pk": 487, "fields": {"title": "Perspective Of An Average Steelers Fan: Pittsburgh Comes Together", "body": "GAME PRELUDE Pittsburgh came together and surprised many pundits and fans this past Sunday. I spent the weekend in Montreal with a couple Burghers. Richard and I predicted a thrashing after learning of all the defensive backs declared out including Minkah Fitzpatrick. Steve predicted a 24-21 Steelers victory. What a game. Steelers looked good at […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/10/perspective-of-an-average-steelers-fan-pittsburgh-comes-together/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 44, "category": 2, "creation_date": "2022-10-19T16:01:11.433Z", "last_update": "2022-10-19T16:01:11.433Z"}}, {"model": "press.post", "pk": 488, "fields": {"title": "CSE Bulletin: Suspensions (AUSA, VEGA)", "body": "(marketscreener.com) Effective immediately, the following companies are suspended pursuant to CSE Policy 3. The suspensions are considered Regulatory Halts as defined in National Instrument 23-101 Trading Rules. Cease Trade Orders have been issued by one or more securities commissions. For more information about Cease Trade Orders, visit the Canadian...https://www.marketscreener.com/quote/stock/AUSTRALIS-CAPITAL-INC-46276384/news/CSE-Bulletin-Suspensions-AUSA-VEGA-42039932/?utm_medium=RSS&utm_content=20221019", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/AUSTRALIS-CAPITAL-INC-46276384/news/CSE-Bulletin-Suspensions-AUSA-VEGA-42039932/?utm_medium=RSS&utm_content=20221019", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-19T16:01:11.615Z", "last_update": "2022-10-19T16:01:11.615Z"}}, {"model": "press.post", "pk": 489, "fields": {"title": "Aldi announces major jobs push in Yorkshire ahead of festive season", "body": "Supermarket chain Aldi is set to create around 440 new jobs in Yorkshire ahead of the festive period as it gears up for its biggest-ever Christmas.", "image_link": "https://www.wakefieldexpress.co.uk/webimg/b25lY21zOjE0ZjcyN2Q0LTA0OTItNGQ0Ni05ZWM1LWU1YzEwODdiZTNiNTo2YTM2YTlkNS00Yjg5LTRjMGItOTRmOS04Y2UyZjM1ZDJhOTk=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.wakefieldexpress.co.uk/business/aldi-announces-major-jobs-push-in-yorkshire-ahead-of-festive-season-3885852", "source_label": "pontefractandcastlefordexpress", "status": "PUBLISHED", "author": 233, "category": 2, "creation_date": "2022-10-19T16:01:14.106Z", "last_update": "2022-10-19T16:01:14.106Z"}}, {"model": "press.post", "pk": 490, "fields": {"title": "Amazon Workers Vote Against Forming Union In Upstate New York, Dealing Setback To Grassroots Labor Group", "body": "Amazon workers in upstate New York have voted against forming a union, dealing another blow to a grassroots labor group attempting to organize several of the tech giant's US warehouses.The post Amazon Workers Vote Against Forming Union In Upstate New York, Dealing Setback To Grassroots Labor Group appeared first on The Seattle Medium.", "image_link": null, "word_cloud_link": null, "source_link": "https://seattlemedium.com/amazon-workers-vote-against-forming-union-in-upstate-new-york-dealing-setback-to-grassroots-labor-group/", "source_label": "seattlemedium", "status": "PUBLISHED", "author": 141, "category": 2, "creation_date": "2022-10-19T16:01:14.235Z", "last_update": "2022-10-19T16:01:14.235Z"}}, {"model": "press.post", "pk": 491, "fields": {"title": "Ralph Macchio on the ‘Karate Kid’/‘Cobra Kai’ Miyagiverse", "body": "Franchise star becomes its unofficial historian in new book ‘Waxing On’", "image_link": null, "word_cloud_link": null, "source_link": "https://www.goodtimes.sc/ralph-macchio-on-the-karate-kid-cobra-kai-miyagiverse/?utm_source=rss&utm_medium=rss&utm_campaign=ralph-macchio-on-the-karate-kid-cobra-kai-miyagiverse", "source_label": "gtweekly", "status": "PUBLISHED", "author": 234, "category": 2, "creation_date": "2022-10-19T16:01:16.829Z", "last_update": "2022-10-19T16:01:16.829Z"}}, {"model": "press.post", "pk": 492, "fields": {"title": "Brick by brick: Meet West Yorkshire's only heritage mason fixing Wakefield's historic buildings", "body": "After experiencing homelessness as a teenager and receiving disability benefits, Lee Gillard has become West Yorkshire’s only heritage-trained mason, setting up his own business repairing Wakefield’s historic buildings.", "image_link": "https://www.wakefieldexpress.co.uk/webimg/b25lY21zOjkxMmQ1YzUwLTgzYzItNDc4YS1iYTgxLTIyYzUwMTUxMzEyZTpiZTc1ZjQyYS0wODMyLTQ1YTktYTBmMC1lODg0ZDcxNDdiNTI=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.wakefieldexpress.co.uk/news/people/brick-by-brick-meet-west-yorkshires-only-heritage-mason-fixing-wakefields-historic-buildings-3884979", "source_label": "pontefractandcastlefordexpress", "status": "PUBLISHED", "author": 235, "category": 2, "creation_date": "2022-10-19T16:01:19.349Z", "last_update": "2022-10-19T16:01:19.349Z"}}, {"model": "press.post", "pk": 493, "fields": {"title": "Batteries for future BMW EVs will be made in South Carolina", "body": "BMW has taken a step toward localizing battery production for future EVs. The automaker on Wednesday announced a partnership with Envision AESC for a dedicated battery plant in South Carolina. The plant will have 30 gigawatt-hours of annual production capacity and will be powered by powered by 100% net-zero carbon energy, the two companies said in...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.greencarreports.com/news/1137536_batteries-for-future-bmw-evs-will-be-made-in-south-carolina", "source_label": "greencarreports", "status": "PUBLISHED", "author": 236, "category": 2, "creation_date": "2022-10-19T16:01:21.727Z", "last_update": "2022-10-19T16:01:21.727Z"}}, {"model": "press.post", "pk": 494, "fields": {"title": "Charlize Theron Does Dior From Head to Toe in Sheer Top, Taffeta Skirt and Lace Boots for ‘The School for Good and Evil’ Premiere", "body": "The actress stars in the Netflix fantasy alongside Sofia Wylie, Sophia Anne Caruso, Kerry Washington and Michelle Yeoh.", "image_link": null, "word_cloud_link": null, "source_link": "https://wwd.com/fashion-news/fashion-scoops/charlize-theron-dior-school-for-good-and-evil-premiere-1235394046/", "source_label": "wwd", "status": "PUBLISHED", "author": 237, "category": 2, "creation_date": "2022-10-19T16:01:23.916Z", "last_update": "2022-10-19T16:01:23.916Z"}}, {"model": "press.post", "pk": 495, "fields": {"title": "Avance Gas Offers A 13% Yield While Providing Exposure To Surging VLGC Rates", "body": "Avance Gas Offers A 13% Yield While Providing Exposure To Surging VLGC Rates", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4547068-avance-gas-offers-a-13-percent-yield-while-providing-exposure-to-surging-vlgc-rates?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-19T16:01:24.008Z", "last_update": "2022-10-19T16:01:24.008Z"}}, {"model": "press.post", "pk": 496, "fields": {"title": "People are honey trapping partners online to test their loyalty – but is it a good idea?", "body": "People are honey trapping partners online to test their loyalty – but is it a good idea?", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/19/people-are-honey-trapping-partners-to-test-loyalty-but-is-it-a-good-idea-17589157/", "source_label": "Metro", "status": "PUBLISHED", "author": 238, "category": 2, "creation_date": "2022-10-19T16:01:25.800Z", "last_update": "2022-10-19T16:01:25.800Z"}}, {"model": "press.post", "pk": 497, "fields": {"title": "Cronos Price Prediction – CRO bounces back from drop but these 5 crypto will give 10x gains!", "body": "2021 was a very promising year for Cronos, but during this year, CRO experienced a significant drop in value. Unfortunately, it is predicted that the value of CRO will drop by -8.37% in October, which does not make it the best investment choice. But, even if you invested in CRO, you don’t have to worry about Cronos Price Prediction – CRO bounces back from drop but these 5 crypto will give 10x gains!So, if you invest in one of these five cryptocurrencies, you can very quickly compensate for your losses caused by the previous investment in CRO.Here are five coins that can help you...", "image_link": null, "word_cloud_link": null, "source_link": "https://augustafreepress.com/cronos-price-prediction-cro-bounces-back-from-drop-but-these-5-crypto-will-give-10x-gains/", "source_label": "augustafreepress", "status": "PUBLISHED", "author": 239, "category": 2, "creation_date": "2022-10-19T16:01:27.460Z", "last_update": "2022-10-19T16:01:27.460Z"}}, {"model": "press.post", "pk": 498, "fields": {"title": "Isaac Powell: 5 Things To Know About Broadway Star Playing Theo In ‘AHS: NYC’", "body": "'American Horror Story' is back with frightening new characters. Get to know Isaac Powell, the actor who plays Theo Graves in season 11.", "image_link": "https://hollywoodlife.com/wp-content/uploads/2022/10/isaac-powell-5-things-to-know-ss-ftr.jpg", "word_cloud_link": null, "source_link": "https://hollywoodlife.com/feature/who-is-isaac-powell-4873508/", "source_label": "hollywoodlife", "status": "PUBLISHED", "author": 240, "category": 2, "creation_date": "2022-10-19T16:01:29.176Z", "last_update": "2022-10-19T16:01:29.177Z"}}, {"model": "press.post", "pk": 499, "fields": {"title": "PCB appoints talent scouts for six cricket associations", "body": "PCB appoints talent scouts for six cricket associations LAHORE: With an objective to identify hidden talent across the country and to bring them into the national framework, the Pakistan Cricket Board (PCB) Wednesday announced the appointment of Talent Scouts in each of the six cricket associations. The appointments were made following a robust recruitment process, […]", "image_link": null, "word_cloud_link": null, "source_link": "https://dailytimes.com.pk/1014881/pcb-appoints-talent-scouts-for-six-cricket-associations/", "source_label": "Daily Times", "status": "PUBLISHED", "author": 241, "category": 2, "creation_date": "2022-10-19T16:01:30.886Z", "last_update": "2022-10-19T16:01:30.886Z"}}, {"model": "press.post", "pk": 500, "fields": {"title": "Customers battle to regain billions in bitcoin the DOJ recovered in its largest seizure of stolen crypto", "body": "When the feds seized billions in stolen crypto earlier this year, it seemed like great news for victims of a 2016 hack, but they were soon disappointed. Read Full StoryThe post Customers battle to regain billions in bitcoin the DOJ recovered in its largest seizure of stolen crypto appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/bitcoin-news/customers-battle-to-regain-billions-in-bitcoin-the-doj-recovered-in-its-largest-seizure-of-stolen-crypto/", "source_label": "forextv", "status": "PUBLISHED", "author": 242, "category": 2, "creation_date": "2022-10-20T16:01:47.018Z", "last_update": "2022-10-20T16:01:47.018Z"}}, {"model": "press.post", "pk": 501, "fields": {"title": "Did Elon Musk’s Tesla Alter Its Bitcoin Holdings In Q3?", "body": "Tesla Inc. (NASDAQ: TSLA) did not sell any of its Bitcoin (CRYPTO: BTC) holdings this quarter, the company said in its latest earnings report. The EV maker holds about 10,500 BTC. What Happened: … Read Full StoryThe post Did Elon Musk’s Tesla Alter Its Bitcoin Holdings In Q3? appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/bitcoin-news/did-elon-musks-tesla-alter-its-bitcoin-holdings-in-q3/", "source_label": "forextv", "status": "PUBLISHED", "author": 242, "category": 2, "creation_date": "2022-10-20T16:01:47.144Z", "last_update": "2022-10-20T16:01:47.144Z"}}, {"model": "press.post", "pk": 502, "fields": {"title": "AUD/USD and NZD/USD Fundamental Daily Forecast – Aussie Employment Miss Signals Slower RBA Rate Hikes", "body": "As far as today’s Australian labor market data is concerned, I feel that there were signs that unemployment has reached its low point and will start rising. Read Full Story at source (may require registration)The post AUD/USD and NZD/USD Fundamental Daily Forecast – Aussie Employment Miss Signals Slower RBA Rate Hikes appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/aud-australian-dollar/aud-usd-and-nzd-usd-fundamental-daily-forecast-aussie-employment-miss-signals-slower-rba-rate-hikes/", "source_label": "forextv", "status": "PUBLISHED", "author": 243, "category": 2, "creation_date": "2022-10-20T16:01:50.024Z", "last_update": "2022-10-20T16:01:50.024Z"}}, {"model": "press.post", "pk": 503, "fields": {"title": "What Liz Truss said about Leeds United legend Don Revie as PM equals Brian Clough", "body": "Liz Truss made a comment about Leeds United great Don Revie before she became Prime Minister and has now resigned after 44 days.", "image_link": "https://www.yorkshireeveningpost.co.uk/jpim-static/image/2022/10/20/16/GettyImages-1199892350.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/sport/football/leeds-united/what-liz-truss-said-about-leeds-united-legend-don-revie-as-pm-equals-brian-clough-3887934", "source_label": "armleytoday", "status": "PUBLISHED", "author": 244, "category": 2, "creation_date": "2022-10-20T16:01:52.375Z", "last_update": "2022-10-20T16:01:52.376Z"}}, {"model": "press.post", "pk": 504, "fields": {"title": "USD/JPY Fundamental Daily Forecast – Japan’s Intervention Goal: Take Out Excessive Speculators", "body": "Japan’s policymakers haven’t been criticizing the Fed’s hawkish policy but a lot of the warnings this week have centered on speculators. Read Full Story at source (may require registration)The post USD/JPY Fundamental Daily Forecast – Japan’s Intervention Goal: Take Out Excessive Speculators appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/jpy-japanese-yen/usd-jpy-fundamental-daily-forecast-japans-intervention-goal-take-out-excessive-speculators/", "source_label": "forextv", "status": "PUBLISHED", "author": 245, "category": 2, "creation_date": "2022-10-20T16:01:54.449Z", "last_update": "2022-10-20T16:01:54.449Z"}}, {"model": "press.post", "pk": 505, "fields": {"title": "GBP/USD: Retest of 1.0550/1.0520 could follow failure to hold 1.0920 – SocGen", "body": "Failure can lead to continuation in downtrend.” “In case recent pivot low at 1.0920 gets violated, there could be a risk of next leg of downtrend towards 1.0550/1.0520 and September levels of 1.0350.” …The post GBP/USD: Retest of 1.0550/1.0520 could follow failure to hold 1.0920 – SocGen appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/gbp-british-pound/gbp-usd-retest-of-1-0550-1-0520-could-follow-failure-to-hold-1-0920-socgen/", "source_label": "forextv", "status": "PUBLISHED", "author": 246, "category": 2, "creation_date": "2022-10-20T16:01:56.587Z", "last_update": "2022-10-20T16:01:56.587Z"}}, {"model": "press.post", "pk": 506, "fields": {"title": "Pound US Dollar Exchange Rate News: GBP/USD Climbed as Liz Truss’ Steps Down", "body": "The Pound (GBP) failed to muster much support on Thursday in the wake of a turbulent day in Westminster on Wednesday. Home Secretary Suella Braverman followed Kwasi Kwarteng in leaving Liz Truss’ …The post Pound US Dollar Exchange Rate News: GBP/USD Climbed as Liz Truss’ Steps Down appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/gbp-british-pound/pound-us-dollar-exchange-rate-news-gbp-usd-climbed-as-liz-truss-steps-down/", "source_label": "forextv", "status": "PUBLISHED", "author": 246, "category": 2, "creation_date": "2022-10-20T16:01:56.734Z", "last_update": "2022-10-20T16:01:56.734Z"}}, {"model": "press.post", "pk": 507, "fields": {"title": "Bachelor in Paradise ladies show off dance moves ", "body": "Brittany Galvin and three of her Bachelor in Paradise Season 8 costars showed off their beauty and moves in a recent video.  Brittany was joined by costars Sierra Jackson, Jill Chin, and Hunter Haag, who recently celebrated her birthday. Jill and Brittany are still appearing on Bachelor in Paradise; however, Hunter and Sierra’s journey has", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/tv/reality-tv/bachelor-in-paradise-ladies-show-off-dance-moves/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 247, "category": 2, "creation_date": "2022-10-20T16:01:59.076Z", "last_update": "2022-10-20T16:01:59.076Z"}}, {"model": "press.post", "pk": 508, "fields": {"title": "Telangana records 83 fresh COVID cases", "body": "", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/national/telangana/telangana-records-83-fresh-covid-cases/article66036593.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 248, "category": 2, "creation_date": "2022-10-20T16:02:01.072Z", "last_update": "2022-10-20T16:02:01.072Z"}}, {"model": "press.post", "pk": 509, "fields": {"title": "UK’s Liz Truss quits after turmoil obliterated her authority", "body": "British Prime Minister Liz Truss has resigned — bowing to the inevitable after a tumultuous six-week term in which her policies triggered turmoil in financial markets and a rebellion in her party obliterated her authority.", "image_link": "https://wtop.com/wp-content/uploads/2022/10/Britain_Politics_27652-1024x576.jpg", "word_cloud_link": null, "source_link": "https://wtop.com/europe/2022/10/truss-faces-clamor-to-quit-amid-uk-government-chaos/", "source_label": "wtop", "status": "PUBLISHED", "author": 249, "category": 2, "creation_date": "2022-10-20T16:02:03.992Z", "last_update": "2022-10-20T16:02:03.999Z"}}, {"model": "press.post", "pk": 510, "fields": {"title": "John Fernandez, P.R. Muraleedharan re-elected to lead CITU in Ernakulam", "body": "The district meet elects a 330-member Ernakulam district council and a 100-member district committee", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/cities/Kochi/john-fernandez-pr-muraleedharan-re-elected-to-lead-citu-in-ernakulam/article66036032.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 250, "category": 2, "creation_date": "2022-10-20T16:02:07.156Z", "last_update": "2022-10-20T16:02:07.156Z"}}, {"model": "press.post", "pk": 511, "fields": {"title": "‘That’s A Fools Choice’: Clyburn Says Voters Aren’t Stupid Enough To Choose Gas Prices Over ‘Voting Rights’", "body": "'Why ask people to make that choice?'", "image_link": null, "word_cloud_link": null, "source_link": "https://dailycaller.com/2022/10/20/james-clyburn-voters-gas-prices/", "source_label": "dailycaller", "status": "PUBLISHED", "author": 251, "category": 2, "creation_date": "2022-10-20T16:02:09.655Z", "last_update": "2022-10-20T16:02:09.655Z"}}, {"model": "press.post", "pk": 512, "fields": {"title": "IBM Beats Expectations On Strong Hybrid Cloud Results", "body": "WebProNewsIBM Beats Expectations On Strong Hybrid Cloud ResultsIBM turned in its third-quarter results, beating expectation on strong hybrid cloud results.IBM Beats Expectations On Strong Hybrid Cloud ResultsMatt Milano", "image_link": null, "word_cloud_link": null, "source_link": "https://www.webpronews.com/ibm-beats-expectations-on-strong-hybrid-cloud-results/", "source_label": "webpronews", "status": "PUBLISHED", "author": 252, "category": 2, "creation_date": "2022-10-20T16:02:12.174Z", "last_update": "2022-10-20T16:02:12.174Z"}}, {"model": "press.post", "pk": 513, "fields": {"title": "Keenan Allen: If sitting through Week 8 bye is the best thing, that’s what it will be", "body": "Chargers wide receiver Keenan Allen has been out with a hamstring injury since the first week of the regular season, but a return to practice last week and another session on Wednesday have led to thoughts that he may be able to get back in the lineup against the Seahawks this weekend. The Chargers could [more]", "image_link": "https://profootballtalk.nbcsports.com/wp-content/uploads/sites/25/2022/10/GettyImages-1423412758-e1666279856717.jpg?w=1024&h=576&crop=1", "word_cloud_link": null, "source_link": "https://profootballtalk.nbcsports.com/2022/10/20/keenan-allen-if-sitting-through-week-8-bye-is-the-best-thing-thats-what-it-will-be/", "source_label": "profootballtalk", "status": "PUBLISHED", "author": 125, "category": 2, "creation_date": "2022-10-20T16:02:12.356Z", "last_update": "2022-10-20T16:02:12.356Z"}}, {"model": "press.post", "pk": 514, "fields": {"title": "Raiders hiring director of diversity, equity and inclusion", "body": "The Raiders are searching for a director of diversity, equity and inclusion, the latest front office move since team president Sandra Douglass Morgan took helm of the team this summer.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.reviewjournal.com/sports/raiders/raiders-hiring-director-of-diversity-equity-and-inclusion-2660987/", "source_label": "lvrj", "status": "PUBLISHED", "author": 253, "category": 2, "creation_date": "2022-10-20T16:02:15.285Z", "last_update": "2022-10-20T16:02:15.285Z"}}, {"model": "press.post", "pk": 515, "fields": {"title": "‘Exhausted’ Ottawa police struggled to create a plan when Freedom Convoy became ‘occupation’", "body": "'I would describe us as being on our knees and having run a marathon,' acting deputy tells the Public Order Emergency Commission", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/news/exhausted-ottawa-police-struggled-to-create-a-plan-when-freedom-convoy-became-occupation", "source_label": "nationalpost", "status": "PUBLISHED", "author": 254, "category": 2, "creation_date": "2022-10-20T16:02:17.831Z", "last_update": "2022-10-20T16:02:17.831Z"}}, {"model": "press.post", "pk": 516, "fields": {"title": "Move over, Jen Psaki — President Biden just schooled Peter Doocy", "body": "President Biden channeled former Press Secretary Jen Psaki when he schooled Fox's Peter Doocy, who after all these years still has not mastered the \"gotcha question.\"\"Top domestic issue, inflation or abortion?\" the faux reporter asked, thinking that either answer would dunk the president and finally earn Doocy a point. — Read the rest", "image_link": null, "word_cloud_link": null, "source_link": "https://boingboing.net/2022/10/20/move-over-jen-psaki-president-biden-just-schooled-peter-doocy.html", "source_label": "boingboing", "status": "PUBLISHED", "author": 255, "category": 2, "creation_date": "2022-10-20T16:02:20.771Z", "last_update": "2022-10-20T16:02:20.771Z"}}, {"model": "press.post", "pk": 517, "fields": {"title": "Defence minister vows to plough on with trials of Britain's disastrous new £5.5bn Ajax tanks", "body": "Speculation the costly tank project was on the event horizon of being scrapped had intensified this week, amid the political chaos in Westminster. But minister Alec Shelbrooke said Ajax trails were now resuming.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/20/16/62610989-0-image-m-37_1666279573623.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11335939/Defence-minister-vows-plough-trials-Britains-disastrous-new-5-5bn-Ajax-tanks.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-20T16:02:20.978Z", "last_update": "2022-10-20T16:02:20.979Z"}}, {"model": "press.post", "pk": 518, "fields": {"title": "Paddy procurement to pick up from today", "body": "Govt. thrashes out settlement with millers", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/national/kerala/paddy-procurement-to-pick-up-from-today/article66036804.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 250, "category": 2, "creation_date": "2022-10-20T16:02:21.113Z", "last_update": "2022-10-20T16:02:21.113Z"}}, {"model": "press.post", "pk": 519, "fields": {"title": "What’s New on DVD/Blu-ray in October: ‘Nope,’ ‘Bodies Bodies Bodies,’ ‘Dr. Jekyll’ Uncensored and More Halloween Fare", "body": "Alonso Duralde highlights the month's major physical-media releases -- because HBO Max will disappear your favorite movie without warning", "image_link": "https://www.youtube.com/embed/cTzGKsZjBOY", "word_cloud_link": null, "source_link": "https://www.thewrap.com/whats-new-on-dvd-blu-ray-in-october-nope-bodies-bodies-bodies-dr-jekyll-uncensored-and-more-halloween-fare/", "source_label": "thewrap", "status": "PUBLISHED", "author": 256, "category": 2, "creation_date": "2022-10-20T16:02:23.420Z", "last_update": "2022-10-20T16:02:23.420Z"}}, {"model": "press.post", "pk": 520, "fields": {"title": "Lagos govt reaffirms ban on Okada operations in 10 LG areas", "body": "Tribune OnlineLagos govt reaffirms ban on Okada operations in 10 LG areasLagos State government has reaffirmed that the ban on motorcycle operations in 10 Local Governments (LGs) and 15 Local Council Development Areas (LCDAs) of the state remains effective. The State Commissioner for Transportation, Dr Frederic Oladeinde, reaffirmed this position on Thursday in a statement made available to newsmen, saying that there had been peace and […]Lagos govt reaffirms ban on Okada operations in 10 LG areasTribune Online", "image_link": null, "word_cloud_link": null, "source_link": "https://tribuneonlineng.com/lagos-govt-reaffirms-ban-on-okada-operations-in-10-lg-areas/", "source_label": "tribune", "status": "PUBLISHED", "author": 257, "category": 2, "creation_date": "2022-10-20T16:02:25.617Z", "last_update": "2022-10-20T16:02:25.617Z"}}, {"model": "press.post", "pk": 521, "fields": {"title": "ArcBest Partners with Integrate to Advance Neurodiversity in its Workforce", "body": "(marketscreener.com) Supply chain leader is organization's first full-scale hiring program partner in the logistics industryFORT SMITH, Ark., Oct. 20, 2022 /PRNewswire/ -- ArcBest® , a leader in supply chain logistics, today announced a new partnership with Integrate Autism Employment Advisors — a non-profit organization that collaborates with...https://www.marketscreener.com/quote/stock/ARCBEST-CORPORATION-16383793/news/ArcBest-Partners-with-Integrate-to-Advance-Neurodiversity-in-its-Workforce-42051295/?utm_medium=RSS&utm_content=20221020", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ARCBEST-CORPORATION-16383793/news/ArcBest-Partners-with-Integrate-to-Advance-Neurodiversity-in-its-Workforce-42051295/?utm_medium=RSS&utm_content=20221020", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-20T16:02:25.753Z", "last_update": "2022-10-20T16:02:25.753Z"}}, {"model": "press.post", "pk": 522, "fields": {"title": "ManpowerGroup Inc. (MAN) Q3 2022 Earnings Call Transcript", "body": "ManpowerGroup Inc. (MAN) Q3 2022 Earnings Call Transcript", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4547806-manpowergroup-inc-man-q3-2022-earnings-call-transcript?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-20T16:02:25.840Z", "last_update": "2022-10-20T16:02:25.840Z"}}, {"model": "press.post", "pk": 523, "fields": {"title": "Innofactor Plc: Share Repurchase 20.10.2022", "body": "(marketscreener.com) Innofactor Plc Announcement 20.10.2022      Innofactor Plc: Share Repurchase 20.10.2022    In the Helsinki Stock Exchange     Trade date 20.10.2022 Bourse trade Buy Share IFA1V Amount 12,000SharesAverage price/ share 0.8778EURTotal cost...https://www.marketscreener.com/quote/stock/INNOFACTOR-OYJ-1412558/news/Innofactor-Plc-Share-Repurchase-20-10-2022-42051292/?utm_medium=RSS&utm_content=20221020", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/INNOFACTOR-OYJ-1412558/news/Innofactor-Plc-Share-Repurchase-20-10-2022-42051292/?utm_medium=RSS&utm_content=20221020", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-20T16:02:25.927Z", "last_update": "2022-10-20T16:02:25.927Z"}}, {"model": "press.post", "pk": 524, "fields": {"title": "Ålandsbanken Abp: Acquisitions of own shares 20.10.2022", "body": "(marketscreener.com) Ålandsbanken Abp   Changes in company’s own shares20.10.2022 at 18:30 EET Ålandsbanken Abp: Acquisitions of own shares 20.10.2022 Date 20.10.2022   ExchangeBourse trade   Nasdaq Helsinki Oy Buy   Share class ALBBV   ...https://www.marketscreener.com/quote/stock/LANDSBANKEN-ABP-1412425/news/landsbanken-Abp-Acquisitions-of-own-shares-20-10-2022-42051291/?utm_medium=RSS&utm_content=20221020", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/LANDSBANKEN-ABP-1412425/news/landsbanken-Abp-Acquisitions-of-own-shares-20-10-2022-42051291/?utm_medium=RSS&utm_content=20221020", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-20T16:02:26.023Z", "last_update": "2022-10-20T16:02:26.023Z"}}, {"model": "press.post", "pk": 525, "fields": {"title": "Big Tech’s vision for the metaverse is weak. Here’s what it needs", "body": "Big Tech's vision for the metaverse is falling flat, so in the spirit of constructive criticism, we put our heads together and came up with some suggestions", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2022/10/Meta-Connect-2022-screenshot-of-Mark-Zuckerberg-avatar.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/computing/what-the-metaverse-is-missing/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 258, "category": 2, "creation_date": "2022-10-20T16:02:28.649Z", "last_update": "2022-10-20T16:02:28.649Z"}}, {"model": "press.post", "pk": 526, "fields": {"title": "Grains mixed, Livestock mixed", "body": "CHICAGO (AP) — Grain futures were mixed Thursday in early trading on the Chicago Board of Trade. Wheat for Dec.…", "image_link": null, "word_cloud_link": null, "source_link": "https://wtop.com/news/2022/10/grains-mostly-higher-livestock-mixed-24/", "source_label": "wtop", "status": "PUBLISHED", "author": 249, "category": 2, "creation_date": "2022-10-20T16:02:28.715Z", "last_update": "2022-10-20T16:02:28.715Z"}}, {"model": "press.post", "pk": 527, "fields": {"title": "Empirical Finance LLC Purchases 825 Shares of PPL Co. (NYSE:PPL)", "body": "Empirical Finance LLC lifted its stake in shares of PPL Co. (NYSE:PPL – Get Rating) by 5.6% during the second quarter, according to the company in its most recent filing with the Securities & Exchange Commission. The institutional investor owned 15,514 shares of the utilities provider’s stock after purchasing an additional 825 shares during the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/20/empirical-finance-llc-purchases-825-shares-of-ppl-co-nyseppl.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-20T16:02:28.833Z", "last_update": "2022-10-20T16:02:28.833Z"}}, {"model": "press.post", "pk": 528, "fields": {"title": "Essex Financial Services Inc. Has $15.20 Million Stock Position in Chevron Co. (NYSE:CVX)", "body": "Essex Financial Services Inc. decreased its holdings in shares of Chevron Co. (NYSE:CVX – Get Rating) by 3.1% in the second quarter, according to its most recent 13F filing with the Securities and Exchange Commission (SEC). The fund owned 104,986 shares of the oil and gas company’s stock after selling 3,414 shares during the period. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/20/essex-financial-services-inc-has-15-20-million-stock-position-in-chevron-co-nysecvx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-20T16:02:28.976Z", "last_update": "2022-10-20T16:02:28.976Z"}}, {"model": "press.post", "pk": 529, "fields": {"title": "Ellis Investment Partners LLC Buys 67 Shares of Chevron Co. (NYSE:CVX)", "body": "Ellis Investment Partners LLC boosted its stake in shares of Chevron Co. (NYSE:CVX – Get Rating) by 1.4% in the second quarter, according to the company in its most recent 13F filing with the Securities & Exchange Commission. The institutional investor owned 4,722 shares of the oil and gas company’s stock after buying an additional […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/20/ellis-investment-partners-llc-buys-67-shares-of-chevron-co-nysecvx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-20T16:02:29.087Z", "last_update": "2022-10-20T16:02:29.087Z"}}, {"model": "press.post", "pk": 530, "fields": {"title": "Trump ex-adviser Bannon sentenced to four months for contempt of Congress", "body": "WASHINGTON — Steve Bannon, a one-time adviser to former President Donald Trump, was sentenced by a judge on Friday to four months in prison for refusing to cooperate with lawmakers investigating last year’s U.S. Capitol attack. In imposing the sentence, U.S. District Judge Carl Nichols also ordered Bannon to pay a fine of $6,500. The […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/crime-pmn/trump-ex-adviser-bannon-sentenced-to-four-months-for-contempt-of-congress-2", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-21T16:00:57.237Z", "last_update": "2022-10-21T16:00:57.238Z"}}, {"model": "press.post", "pk": 531, "fields": {"title": "Brown Advisory Securities LLC Sells 1,550 Shares of Pfizer Inc. (NYSE:PFE)", "body": "Brown Advisory Securities LLC Sells 1,550 Shares of Pfizer Inc. (NYSE:PFE)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-securities-llc-sells-1550-shares-of-pfizer-inc-nysepfe.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.326Z", "last_update": "2022-10-21T16:00:57.326Z"}}, {"model": "press.post", "pk": 532, "fields": {"title": "Brown Advisory Inc. Purchases 517 Shares of W.W. Grainger, Inc. (NYSE:GWW)", "body": "Brown Advisory Inc. Purchases 517 Shares of W.W. Grainger, Inc. (NYSE:GWW)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-purchases-517-shares-of-w-w-grainger-inc-nysegww.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.375Z", "last_update": "2022-10-21T16:00:57.375Z"}}, {"model": "press.post", "pk": 533, "fields": {"title": "Brown Advisory Inc. Cuts Position in First Bancorp (NASDAQ:FBNC)", "body": "Brown Advisory Inc. Cuts Position in First Bancorp (NASDAQ:FBNC)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-cuts-position-in-first-bancorp-nasdaqfbnc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.416Z", "last_update": "2022-10-21T16:00:57.416Z"}}, {"model": "press.post", "pk": 534, "fields": {"title": "Peapack-Gladstone Financial Co. (NASDAQ:PGC) Shares Sold by Brown Advisory Inc.", "body": "Peapack-Gladstone Financial Co. (NASDAQ:PGC) Shares Sold by Brown Advisory Inc.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/peapack-gladstone-financial-co-nasdaqpgc-shares-sold-by-brown-advisory-inc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.463Z", "last_update": "2022-10-21T16:00:57.463Z"}}, {"model": "press.post", "pk": 535, "fields": {"title": "Brown Advisory Inc. Has $19.36 Million Stock Position in The Bancorp, Inc. (NASDAQ:TBBK)", "body": "Brown Advisory Inc. Has $19.36 Million Stock Position in The Bancorp, Inc. (NASDAQ:TBBK)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-has-19-36-million-stock-position-in-the-bancorp-inc-nasdaqtbbk.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.503Z", "last_update": "2022-10-21T16:00:57.503Z"}}, {"model": "press.post", "pk": 536, "fields": {"title": "Brown Advisory Inc. Has $17.29 Million Stake in Vanguard Mid-Cap ETF (NYSEARCA:VO)", "body": "Brown Advisory Inc. Has $17.29 Million Stake in Vanguard Mid-Cap ETF (NYSEARCA:VO)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-has-17-29-million-stake-in-vanguard-mid-cap-etf-nysearcavo.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.544Z", "last_update": "2022-10-21T16:00:57.544Z"}}, {"model": "press.post", "pk": 537, "fields": {"title": "Brown Advisory Inc. Has $18.62 Million Position in The Progressive Co. (NYSE:PGR)", "body": "Brown Advisory Inc. Has $18.62 Million Position in The Progressive Co. (NYSE:PGR)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-has-18-62-million-position-in-the-progressive-co-nysepgr.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.594Z", "last_update": "2022-10-21T16:00:57.594Z"}}, {"model": "press.post", "pk": 538, "fields": {"title": "Brown Advisory Inc. Makes New $18.88 Million Investment in Casella Waste Systems, Inc. (NASDAQ:CWST)", "body": "Brown Advisory Inc. Makes New $18.88 Million Investment in Casella Waste Systems, Inc. (NASDAQ:CWST)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-makes-new-18-88-million-investment-in-casella-waste-systems-inc-nasdaqcwst.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.635Z", "last_update": "2022-10-21T16:00:57.635Z"}}, {"model": "press.post", "pk": 539, "fields": {"title": "Brown Advisory Inc. Grows Stock Holdings in Becton, Dickinson and Company (NYSE:BDX)", "body": "Brown Advisory Inc. Grows Stock Holdings in Becton, Dickinson and Company (NYSE:BDX)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-grows-stock-holdings-in-becton-dickinson-and-company-nysebdx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.679Z", "last_update": "2022-10-21T16:00:57.679Z"}}, {"model": "press.post", "pk": 540, "fields": {"title": "Brown Advisory Inc. Grows Stake in Corteva, Inc. (NYSE:CTVA)", "body": "Brown Advisory Inc. Grows Stake in Corteva, Inc. (NYSE:CTVA)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-grows-stake-in-corteva-inc-nysectva.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.729Z", "last_update": "2022-10-21T16:00:57.729Z"}}, {"model": "press.post", "pk": 541, "fields": {"title": "iShares Russell Mid-Cap Value ETF (NYSEARCA:IWS) Shares Acquired by Brown Advisory Inc.", "body": "iShares Russell Mid-Cap Value ETF (NYSEARCA:IWS) Shares Acquired by Brown Advisory Inc.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/ishares-russell-mid-cap-value-etf-nysearcaiws-shares-acquired-by-brown-advisory-inc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.777Z", "last_update": "2022-10-21T16:00:57.778Z"}}, {"model": "press.post", "pk": 542, "fields": {"title": "CoStar Group, Inc. (NASDAQ:CSGP) Shares Sold by Brown Advisory Inc.", "body": "CoStar Group, Inc. (NASDAQ:CSGP) Shares Sold by Brown Advisory Inc.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/costar-group-inc-nasdaqcsgp-shares-sold-by-brown-advisory-inc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.818Z", "last_update": "2022-10-21T16:00:57.818Z"}}, {"model": "press.post", "pk": 543, "fields": {"title": "Brown Advisory Inc. Lowers Stake in Monarch Casino & Resort, Inc. (NASDAQ:MCRI)", "body": "Brown Advisory Inc. Lowers Stake in Monarch Casino & Resort, Inc. (NASDAQ:MCRI)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-lowers-stake-in-monarch-casino-resort-inc-nasdaqmcri.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.866Z", "last_update": "2022-10-21T16:00:57.866Z"}}, {"model": "press.post", "pk": 544, "fields": {"title": "Brown Advisory Inc. Sells 76,638 Shares of Vanguard Extended Market ETF (NYSEARCA:VXF)", "body": "Brown Advisory Inc. Sells 76,638 Shares of Vanguard Extended Market ETF (NYSEARCA:VXF)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-sells-76638-shares-of-vanguard-extended-market-etf-nysearcavxf.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.916Z", "last_update": "2022-10-21T16:00:57.916Z"}}, {"model": "press.post", "pk": 545, "fields": {"title": "Brown Advisory Inc. Increases Position in Marqeta, Inc. (NASDAQ:MQ)", "body": "Brown Advisory Inc. Increases Position in Marqeta, Inc. (NASDAQ:MQ)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-increases-position-in-marqeta-inc-nasdaqmq.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:57.973Z", "last_update": "2022-10-21T16:00:57.973Z"}}, {"model": "press.post", "pk": 546, "fields": {"title": "Sacramento hosts conference foe Los Angeles", "body": "Sacramento plays Los Angeles in a matchup of Western Conference teams", "image_link": null, "word_cloud_link": null, "source_link": "https://www.mymotherlode.com/news/state/2800275/sacramento-hosts-conference-foe-los-angeles.html", "source_label": "mymotherlode", "status": "PUBLISHED", "author": 259, "category": 2, "creation_date": "2022-10-21T16:00:59.755Z", "last_update": "2022-10-21T16:00:59.755Z"}}, {"model": "press.post", "pk": 547, "fields": {"title": "Brown Advisory Inc. Has $22.20 Million Stock Position in DuPont de Nemours, Inc. (NYSE:DD)", "body": "Brown Advisory Inc. Has $22.20 Million Stock Position in DuPont de Nemours, Inc. (NYSE:DD)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-has-22-20-million-stock-position-in-dupont-de-nemours-inc-nysedd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:59.835Z", "last_update": "2022-10-21T16:00:59.835Z"}}, {"model": "press.post", "pk": 548, "fields": {"title": "Brown Advisory Inc. Has $23.54 Million Holdings in Walker & Dunlop, Inc. (NYSE:WD)", "body": "Brown Advisory Inc. Has $23.54 Million Holdings in Walker & Dunlop, Inc. (NYSE:WD)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-has-23-54-million-holdings-in-walker-dunlop-inc-nysewd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:59.887Z", "last_update": "2022-10-21T16:00:59.887Z"}}, {"model": "press.post", "pk": 549, "fields": {"title": "Brown Advisory Inc. Purchases 10,101 Shares of Unilever PLC (NYSE:UL)", "body": "Brown Advisory Inc. Purchases 10,101 Shares of Unilever PLC (NYSE:UL)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-purchases-10101-shares-of-unilever-plc-nyseul.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:59.944Z", "last_update": "2022-10-21T16:00:59.944Z"}}, {"model": "press.post", "pk": 550, "fields": {"title": "Brown Advisory Inc. Purchases 526,097 Shares of Dime Community Bancshares, Inc. (NASDAQ:DCOM)", "body": "Brown Advisory Inc. Purchases 526,097 Shares of Dime Community Bancshares, Inc. (NASDAQ:DCOM)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-purchases-526097-shares-of-dime-community-bancshares-inc-nasdaqdcom.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:00:59.993Z", "last_update": "2022-10-21T16:00:59.993Z"}}, {"model": "press.post", "pk": 551, "fields": {"title": "Brown Advisory Inc. Purchases 2,096 Shares of Nevro Corp. (NYSE:NVRO)", "body": "Brown Advisory Inc. Purchases 2,096 Shares of Nevro Corp. (NYSE:NVRO)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-purchases-2096-shares-of-nevro-corp-nysenvro.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:01:00.039Z", "last_update": "2022-10-21T16:01:00.040Z"}}, {"model": "press.post", "pk": 552, "fields": {"title": "Truss and Braverman’s ‘incoherent’ 20% crime cut policy paused as police demand engagement", "body": "Suella Braverman had not held her first National Policing Board meeting or met key bodies before her resignation", "image_link": "https://static.independent.co.uk/2022/09/08/15/newFile-5.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/uk/politics/truss-braverman-resign-police-crime-cut-b2207763.html", "source_label": "independent", "status": "PUBLISHED", "author": 260, "category": 2, "creation_date": "2022-10-21T16:01:01.961Z", "last_update": "2022-10-21T16:01:01.961Z"}}, {"model": "press.post", "pk": 553, "fields": {"title": "Brown Advisory Inc. Cuts Stake in Getty Realty Corp. (NYSE:GTY)", "body": "Brown Advisory Inc. Cuts Stake in Getty Realty Corp. (NYSE:GTY)", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/21/brown-advisory-inc-cuts-stake-in-getty-realty-corp-nysegty.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-21T16:01:03.846Z", "last_update": "2022-10-21T16:01:03.846Z"}}, {"model": "press.post", "pk": 554, "fields": {"title": "Review: Carly Rae Jepsen’s latest album is pop perfection", "body": "Dating in the 21st century might be a lonely time, but Carly Rae Jepsen has found a way to make an album around those experiences that’s as bright and hopeful as it is grounded, writes Associated Press reviewer Ragan Clark", "image_link": null, "word_cloud_link": null, "source_link": "https://www.mymotherlode.com/entertainment/music-news/2800272/review-carly-rae-jepsens-latest-album-is-pop-perfection.html", "source_label": "mymotherlode", "status": "PUBLISHED", "author": 259, "category": 2, "creation_date": "2022-10-21T16:01:04.220Z", "last_update": "2022-10-21T16:01:04.220Z"}}, {"model": "press.post", "pk": 555, "fields": {"title": "JD Vance’s firm invested in food company now facing lawsuits", "body": "A high-tech sustainable food company in Appalachia that was promoted by JD Vance and financed with help from his venture capital firm is facing five lawsuits alleging it misled investors", "image_link": null, "word_cloud_link": null, "source_link": "https://www.mymotherlode.com/news/national/general-election/2800266/jd-vances-firm-invested-in-food-company-now-facing-lawsuits.html", "source_label": "mymotherlode", "status": "PUBLISHED", "author": 259, "category": 2, "creation_date": "2022-10-21T16:01:04.443Z", "last_update": "2022-10-21T16:01:04.443Z"}}, {"model": "press.post", "pk": 556, "fields": {"title": "Paul Hollywood Ruins S’Mores on ‘The Great British Baking Show’ “Halloween Week”", "body": "First he came for tacos. And I did nothing but blog about it. Now he's ruining s'mores.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/paul-hollywood-smores.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/21/the-great-british-baking-show-halloween-week-smores-disaster/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-21T16:01:04.637Z", "last_update": "2022-10-21T16:01:04.637Z"}}, {"model": "press.post", "pk": 557, "fields": {"title": "Taylor Swift references Irish county in new album \"Midnight\"", "body": "Released on Friday, the album features a reference to County Wicklow in the love song \"Sweet Nothing\". ", "image_link": "http://www.irishcentral.com/uploads/article-v2/2022/10/154898/cropped_MI_Taylor_Swift_-_Getty.jpg?t=1666366212", "word_cloud_link": null, "source_link": "https://www.irishcentral.com/culture/entertainment/taylor-swift-irish-album-midnight", "source_label": "IrishCentral", "status": "PUBLISHED", "author": 261, "category": 2, "creation_date": "2022-10-21T16:01:07.280Z", "last_update": "2022-10-21T16:01:07.280Z"}}, {"model": "press.post", "pk": 558, "fields": {"title": "Google Pixel 7 Review: When The Numbers Just Work", "body": "On paper, Google's Pixel 7 could be the smartphone bargain of 2022. Does this unexpectedly affordable Android live up to the hype? We put it to the test.", "image_link": "https://www.slashgear.com/img/gallery/google-pixel-7-review-a-smaller-peak/l-intro-1666365937.jpg", "word_cloud_link": null, "source_link": "https://www.slashgear.com/1065066/google-pixel-7-review-when-the-numbers-just-work/", "source_label": "slashgear", "status": "PUBLISHED", "author": 262, "category": 2, "creation_date": "2022-10-21T16:01:09.640Z", "last_update": "2022-10-21T16:01:09.640Z"}}, {"model": "press.post", "pk": 559, "fields": {"title": "SB Financial : Declares Quarterly Cash Dividend on Common Stock of $0.125 Cents - Form 8-K", "body": "(marketscreener.com) SB Financial Group Declares Quarterly Cash Dividend on Common Stock of $0.125 Cents Defiance, OH, October 21, 2022 - SB Financial Group, Inc. announced that its board of directors passed a resolution declaring a quarterly cash dividend of $0.125 per common share, payable on November 25, 2022, to...https://www.marketscreener.com/quote/stock/SB-FINANCIAL-GROUP-INC-13074768/news/SB-Financial-Declares-Quarterly-Cash-Dividend-on-Common-Stock-of-0-125-Cents-Form-8-K-42061665/?utm_medium=RSS&utm_content=20221021", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/SB-FINANCIAL-GROUP-INC-13074768/news/SB-Financial-Declares-Quarterly-Cash-Dividend-on-Common-Stock-of-0-125-Cents-Form-8-K-42061665/?utm_medium=RSS&utm_content=20221021", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-21T16:01:09.714Z", "last_update": "2022-10-21T16:01:09.714Z"}}, {"model": "press.post", "pk": 560, "fields": {"title": "\"Bội thực\" văn nghệ đám cưới: Hát một chút thì vui, hát 3 ngày hết vui", "body": "Hát hò là phần không thể thiếu để góp vui trong đám cưới, nhưng cái gì nhiều quá cũng không tốt.", "image_link": null, "word_cloud_link": null, "source_link": "https://kenh14.vn/boi-thuc-van-nghe-dam-cuoi-hat-mot-chut-thi-vui-hat-3-ngay-het-vui-20221022201000431.chn", "source_label": "Kenh 14", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-22T16:01:00.310Z", "last_update": "2022-10-22T16:01:00.310Z"}}, {"model": "press.post", "pk": 561, "fields": {"title": "Borussia M'gladbach vs Eintracht Frankfurt LIVE: Bundesliga team news, line-ups and more", "body": "Follow all the action from Stadion im BORUSSIA-PARK", "image_link": "https://static.independent.co.uk/2022/03/09/17/newFile-18.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/sport/football/borussia-m-gladbach-eintracht-frankfurt-live-stream-bundesliga-2022-b2208447.html", "source_label": "Independent", "status": "PUBLISHED", "author": 263, "category": 2, "creation_date": "2022-10-22T16:01:02.334Z", "last_update": "2022-10-22T16:01:02.334Z"}}, {"model": "press.post", "pk": 562, "fields": {"title": "Backers of San Bernardino County term-limits measure violated copyright, taxpayer advocates say", "body": "If approved Nov. 8, Measure D would override Measure K, the 2020 initiative voters approved by a 2-to-1 margin.", "image_link": "https://www.dailybulletin.com/wp-content/uploads/2022/10/SBS-L-MEASURED-1005-01-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.dailybulletin.com/2022/10/22/backers-of-san-bernardino-county-term-limits-measure-violated-copyright-taxpayer-advocates-say/", "source_label": "dailybulletin", "status": "PUBLISHED", "author": 89, "category": 2, "creation_date": "2022-10-22T16:01:02.480Z", "last_update": "2022-10-22T16:01:02.480Z"}}, {"model": "press.post", "pk": 563, "fields": {"title": "Major Hurricane Roslyn heads for hit on Mexico’s coast", "body": "Hurricane Roslyn has grown to Category 4 force as it heads for a collision with Mexico’s Pacific coast, likely north of the resort of Puerto Vallarta", "image_link": null, "word_cloud_link": null, "source_link": "https://www.mymotherlode.com/news/latin/2801705/major-hurricane-roslyn-heads-for-hit-on-mexicos-coast.html", "source_label": "mymotherlode", "status": "PUBLISHED", "author": 259, "category": 2, "creation_date": "2022-10-22T16:01:02.748Z", "last_update": "2022-10-22T16:01:02.748Z"}}, {"model": "press.post", "pk": 564, "fields": {"title": "Janet Jackson Shows ‘LUV’ To Taylor Swift After She Shouts Her Out On ‘Snow On The Beach’", "body": "Swift is known for giving flowers to the women performers who came before her.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/pop/janet-jackson-taylor-swift-snow-on-the-beach/", "source_label": "hitfix", "status": "PUBLISHED", "author": 161, "category": 2, "creation_date": "2022-10-22T16:01:02.885Z", "last_update": "2022-10-22T16:01:02.885Z"}}, {"model": "press.post", "pk": 565, "fields": {"title": "Nearly 300 rescued migrants reach southern Italian port", "body": "Nearly 300 migrants disembarked have disembarked in the southern Italian port of Taranto after being rescued at sea in five different operations by a ship operated by the humanitarian group Doctors Without Borders", "image_link": null, "word_cloud_link": null, "source_link": "https://www.mymotherlode.com/news/europe/2801697/nearly-300-rescued-migrants-reach-southern-italian-port.html", "source_label": "mymotherlode", "status": "PUBLISHED", "author": 259, "category": 2, "creation_date": "2022-10-22T16:01:03.040Z", "last_update": "2022-10-22T16:01:03.040Z"}}, {"model": "press.post", "pk": 566, "fields": {"title": "Skeleskare: Leeds Halloween experience promises to be a scream", "body": "It promises to a frightful Halloween experience for those families searching a bit more of a thrill and scare.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOjQ3ZjczYmY2LTg4YTgtNDE1YS04NTZlLWFlN2UxYWNjM2M0NjpmMjU1MjEyMC1lNDRhLTRkMTUtYjIwNC1jNWJiZDFhZTBhNzM=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/whats-on/things-to-do/skeleskare-leeds-halloween-experience-promises-to-be-a-scream-3890045", "source_label": "crossgatestoday", "status": "PUBLISHED", "author": 264, "category": 2, "creation_date": "2022-10-22T16:01:05.649Z", "last_update": "2022-10-22T16:01:05.649Z"}}, {"model": "press.post", "pk": 567, "fields": {"title": "\"To je tihi neprijatelj\": Kako gljive stvaraju moćne toksine koji mogu kontaminirati hranu?", "body": "Procenjuje se da gljive i organizmi slični gljivama poznati kao vodeni plesni svake godine uništavaju trećinu svetskih useva hrane", "image_link": "https://xdn.tf.rs/2022/05/22/pancevo-bara-hagla-gljive-gljivar-pecurke005.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/zanimljivosti/svastara/3574551-to-je-tihi-neprijatelj-kako-gljive-stvaraju-mocne-toksine-koji-mogu-kontaminirati-hranu", "source_label": "Telegraf", "status": "PUBLISHED", "author": 265, "category": 2, "creation_date": "2022-10-22T16:01:08.299Z", "last_update": "2022-10-22T16:01:08.299Z"}}, {"model": "press.post", "pk": 568, "fields": {"title": "Yorkshire Water issues urgent warning following incidents of walkers getting stuck in deep mud in reservoirs", "body": "Yorkshire Water has issued an urgent warning about the danger of deep mud at reservoirs.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOjczOWM5ZjJmLTNiZWUtNGQ0ZS1iOGFlLWMxN2YyYWFmYjY0Yzo2OTM5MDRhNy04NzhmLTQxYzEtYjU0OS03N2YxOGQwMDIxNGI=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/people/yorkshire-water-issues-urgent-warning-following-incidents-of-walkers-getting-stuck-in-deep-mud-in-reservoirs-3890076", "source_label": "crossgatestoday", "status": "PUBLISHED", "author": 48, "category": 2, "creation_date": "2022-10-22T16:01:08.860Z", "last_update": "2022-10-22T16:01:08.860Z"}}, {"model": "press.post", "pk": 569, "fields": {"title": "Burglar jailed for ransacking Leeds home as terrified resident was beaten unconscious", "body": "A Leeds burglar is starting a six-year jail term after taking part in a revenge attack in which a man was strangled and kicked unconscious.", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOjQyMTNhN2E4LWRhNzktNDI5Ny05YWU1LWQwNjcxZGIyMmRmYjpkNWM4NGViZi05OWJmLTQ4YWMtODdmYy0wNjVlMTM5OTVhZGE=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/crime/burglar-jailed-for-ransacking-leeds-home-as-terrified-resident-was-beaten-unconscious-3889347", "source_label": "crossgatestoday", "status": "PUBLISHED", "author": 144, "category": 2, "creation_date": "2022-10-22T16:01:09.081Z", "last_update": "2022-10-22T16:01:09.081Z"}}, {"model": "press.post", "pk": 570, "fields": {"title": "Leeds' most haunted venue? Staff at City Varieties share spooky happenings ahead of Halloween", "body": "Is this Leeds’ most haunted venue?", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOmNiNDU4YTMwLTk3ODYtNDM5MC04ZWUwLTYwMGVkYmQ5YjIzNDo4NWZkZGQ3Zi01YmQ5LTQ5YjItYWM2MC03ZWY0ZTUzNzBjMGM=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/news/people/leeds-most-haunted-venue-staff-at-city-varieties-share-spooky-happenings-ahead-of-halloween-3888947", "source_label": "crossgatestoday", "status": "PUBLISHED", "author": 266, "category": 2, "creation_date": "2022-10-22T16:01:11.787Z", "last_update": "2022-10-22T16:01:11.787Z"}}, {"model": "press.post", "pk": 571, "fields": {"title": "Charlottesville: Free mulch available now from local trees", "body": "In honor of America Recycles Day, celebrated on Nov. 15, the Rivanna Solid Waste Authority is offering free mulch to customers.Free freshly ground mulch is available now from local trees and vegetation with no dyes.The mulch is available at the Ivy Material Utilization Center located at 4576 Dick Woods Road in Charlottesville.The mulch giveaway will run while supplies last.No purchase is necessary.Mulching in the fall will help you prepare your landscaping to be ready for springtime, said the City of Charlottesville in a news release.For more information on the programs offered at the Ivy MUC...", "image_link": null, "word_cloud_link": null, "source_link": "https://augustafreepress.com/charlottesville-free-mulch-available-now-from-local-trees/", "source_label": "augustafreepress", "status": "PUBLISHED", "author": 267, "category": 2, "creation_date": "2022-10-22T16:01:14.800Z", "last_update": "2022-10-22T16:01:14.800Z"}}, {"model": "press.post", "pk": 572, "fields": {"title": "Madam Boss Involved In Serious Accident", "body": "By Showbiz Reporter | Presenter Auntie Jenny reports on Sat afternoon the ZANU PF sociallite, Madam Boss, Tyra Chikocho has … Continue reading \"Madam Boss Involved In Serious Accident\"", "image_link": null, "word_cloud_link": null, "source_link": "https://www.zimeye.net/2022/10/22/madam-boss-involved-in-serious-accident/", "source_label": "ZimEye", "status": "PUBLISHED", "author": 268, "category": 2, "creation_date": "2022-10-22T16:01:17.703Z", "last_update": "2022-10-22T16:01:17.703Z"}}, {"model": "press.post", "pk": 573, "fields": {"title": "Jackson County woman tags an unexpectedly big deer", "body": "The mass of the buck's antlers were jaw dropping for Jackson County. The post Jackson County woman tags an unexpectedly big deer appeared first on WV MetroNews.", "image_link": null, "word_cloud_link": null, "source_link": "https://wvmetronews.com/2022/10/22/jackson-county-woman-tags-an-unexpectedly-big-deer/", "source_label": "wvmetronews", "status": "PUBLISHED", "author": 20, "category": 2, "creation_date": "2022-10-22T16:01:18.088Z", "last_update": "2022-10-22T16:01:18.088Z"}}, {"model": "press.post", "pk": 574, "fields": {"title": "There's a lonely town in Ohio called Center of the World", "body": "There's a lonely town in Ohio called Center of the World. The name of this town was meant to spark its popularity, but this tactic did not work out as planned.  Only a few houses and shops are to be found in the town. — Read the rest", "image_link": null, "word_cloud_link": null, "source_link": "https://boingboing.net/2022/10/22/theres-a-lonely-town-in-ohio-called-center-of-the-world.html", "source_label": "boingboing", "status": "PUBLISHED", "author": 269, "category": 2, "creation_date": "2022-10-22T16:01:20.926Z", "last_update": "2022-10-22T16:01:20.926Z"}}, {"model": "press.post", "pk": 575, "fields": {"title": "Addison Rae looks fit in vintage Scream shirt", "body": "Addison Rae is one of the most talked about girls of the moment. After gaining many followers, millions to be exact, thanks to TikTok, Rae positions herself as one of the most influential people, especially for the younger generation. And with several eyes on her, it’s obvious that she gets", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/celebrity/addison-rae-looks-fit-in-vintage-scream-shirt/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 270, "category": 2, "creation_date": "2022-10-22T16:01:23.441Z", "last_update": "2022-10-22T16:01:23.441Z"}}, {"model": "press.post", "pk": 576, "fields": {"title": "Jason’s Ex Just Seemingly Shaded Olivia After Claims She’s ‘Feeding Off’ of Harry’s ‘Fame’", "body": "Adding on to the salad drama.", "image_link": "https://stylecaster.com/wp-content/uploads/2022/10/jason-sudeikis-olivia-wilde-harry-styles-1.jpg", "word_cloud_link": null, "source_link": "https://stylecaster.com/jason-sudeikis-keeley-hazell-olivia-wilde/", "source_label": "stylecaster", "status": "PUBLISHED", "author": 271, "category": 2, "creation_date": "2022-10-22T16:01:25.837Z", "last_update": "2022-10-22T16:01:25.838Z"}}, {"model": "press.post", "pk": 577, "fields": {"title": "Equifax (NYSE:EFX) Given New $190.00 Price Target at Needham & Company LLC", "body": "Equifax (NYSE:EFX) Given New $190.00 Price Target at Needham & Company LLC", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/22/equifax-nyseefx-given-new-190-00-price-target-at-needham-company-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-22T16:01:25.991Z", "last_update": "2022-10-22T16:01:25.991Z"}}, {"model": "press.post", "pk": 578, "fields": {"title": "Third time lucky as MacCumhaill’s win Donegal Senior C Final", "body": "It was a case of third time lucky for Sean MacCumhaill’s as they won the Donegal Senior C Football Championship Final in Glenswilly. After defeats in 2019 and last year, this time they came out on top as they defeated Naomh Conaill by 0-7 to 0-6 with Darren O’Leary getting the match-winning score. Naomh Conaill … Third time lucky as MacCumhaill’s win Donegal Senior C Final Read More »The post Third time lucky as MacCumhaill’s win Donegal Senior C Final appeared first on Highland Radio - Latest Donegal News and Sport.", "image_link": null, "word_cloud_link": null, "source_link": "https://highlandradio.com/2022/10/22/third-time-lucky-as-maccumhaills-win-donegal-senior-c-final/", "source_label": "Highland Radio", "status": "PUBLISHED", "author": 272, "category": 2, "creation_date": "2022-10-22T16:01:28.222Z", "last_update": "2022-10-22T16:01:28.222Z"}}, {"model": "press.post", "pk": 579, "fields": {"title": "‘Halloween Laugh-Fest’ is a hoot at Ellen Eccles Theatre", "body": "LOGAN — A new Halloween tradition premiered at the Ellen Eccles Theatre on Oct. 21 and it’s a welcome addition to the holiday season. The event was a Halloween Laugh-Fest, presented under the aegis of “Pickleville on Tour” by TJ Davis of Pickleville Playhouse fame. As promised, the show was “something completely different,” a blend […]", "image_link": "https://www.cachevalleydaily.com/wp-content/uploads/2022/10/FEST1.PIX_-1-300x194.jpg", "word_cloud_link": null, "source_link": "https://www.cachevalleydaily.com/news/archive/2022/10/22/halloween-laugh-fest-is-a-hoot-at-ellen-eccles-theatre/", "source_label": "cachevalleydaily", "status": "PUBLISHED", "author": 273, "category": 2, "creation_date": "2022-10-22T16:01:30.485Z", "last_update": "2022-10-22T16:01:30.485Z"}}, {"model": "press.post", "pk": 580, "fields": {"title": "Tim Burton Says His Original ‘Batman’ Is A ‘Lighthearted Romp’ Compared To Today’s Even Darker Versions", "body": "Warner Bros. At the time, the director's 1989 take on the Caped Crusader was criticized for being too dark. Then came the Christopher Nolan trilogy.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/movies/tim-burton-batman-1989-lighthearted-romp/", "source_label": "hitfix", "status": "PUBLISHED", "author": 274, "category": 2, "creation_date": "2022-10-22T16:01:32.547Z", "last_update": "2022-10-22T16:01:32.547Z"}}, {"model": "press.post", "pk": 581, "fields": {"title": "BUCHAN And FAULKENDER: An Inflation Nation — The New Norm", "body": "An unviable strategy", "image_link": null, "word_cloud_link": null, "source_link": "https://dailycaller.com/2022/10/22/opinion-an-inflation-nation-the-new-norm-buchan-and-faulkender/", "source_label": "dailycaller", "status": "PUBLISHED", "author": 275, "category": 2, "creation_date": "2022-10-22T16:01:34.202Z", "last_update": "2022-10-22T16:01:34.202Z"}}, {"model": "press.post", "pk": 582, "fields": {"title": "Haiti - Diaspora Covid-19 : Daily Bulletin #945", "body": "World : Active cases on the rise - Haiti : Insecurity, fuel, impossible screening - USA : Active cases down - Dominican Republic : All indicators down - Quebec : Upward trend - France : 8th wave sustained increase...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.haitilibre.com/en/news-37950-haiti-diaspora-covid-19-daily-bulletin-945.html", "source_label": "Haiti Libre", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-22T16:01:34.244Z", "last_update": "2022-10-22T16:01:34.244Z"}}, {"model": "press.post", "pk": 583, "fields": {"title": "Taylor Swift’s “Midnights” Tracks Claim Top 17 Spots On US Spotify Streaming Chart, Top 13 Globally", "body": "Given that it broke the record for most single-day streams by an album, it should come as no surprise that Taylor Swift’s “Midnights” claims dominance on the October 21 Global and US Spotify streaming charts. Tracks from the instant-smash album claim the Top 13 spots on the Global chart, while forming the entire Top 17 […]The post Taylor Swift’s “Midnights” Tracks Claim Top 17 Spots On US Spotify Streaming Chart, Top 13 Globally appeared first on Headline Planet.", "image_link": null, "word_cloud_link": null, "source_link": "https://headlineplanet.com/home/2022/10/22/taylor-swifts-midnights-tracks-claim-top-17-spots-on-us-spotify-streaming-chart-top-13-globally/", "source_label": "headlineplanet", "status": "PUBLISHED", "author": 276, "category": 2, "creation_date": "2022-10-22T16:01:35.896Z", "last_update": "2022-10-22T16:01:35.896Z"}}, {"model": "press.post", "pk": 584, "fields": {"title": "Man arrested after phone camera appears under Portsmouth Wetherspoons toilet door shocking woman", "body": "A MAN has been arrested after a phone camera appeared under a door of a pub toilet cubicle – shocking a woman.", "image_link": "https://www.portsmouth.co.uk/webimg/b25lY21zOmE1YzY4Yzg0LWY5OGQtNDk1NC05N2MzLWYwYjFhY2YyYmMxNTo0MDgxMzk5ZS01MGI2LTQwNzYtOGFiMS1iMDI1MDdmNzhlMzY=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.portsmouth.co.uk/news/crime/man-arrested-after-phone-camera-appears-under-portsmouth-wetherspoons-toilet-door-shocking-woman-3888289", "source_label": "portsmouth", "status": "PUBLISHED", "author": 277, "category": 2, "creation_date": "2022-10-22T16:01:37.688Z", "last_update": "2022-10-22T16:01:37.688Z"}}, {"model": "press.post", "pk": 585, "fields": {"title": "Berisha yetmedi; Leipzig 3-0'dan döndü!", "body": "Almanya Bundesliga'da Leipzig, deplasmanda 3-0 geriye düştüğü maçta Augsburg ile 3-3 berabere kaldı. Augsburg'ta Mergim Berisha karşılaşmayı bir gol ve iki asistle tamamladı. Augsburg", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sporx.com/futbol/dunya/almanya/augsburg/berisha-yetmedi-leipzig-3-0-dan-dondu-SXHBQ993089SXQ?utm_source=icerikPaylas", "source_label": "sporx", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-22T16:01:37.732Z", "last_update": "2022-10-22T16:01:37.733Z"}}, {"model": "press.post", "pk": 586, "fields": {"title": "Raiders' Darren Waller is Out Sunday vs. Texans", "body": "Darren Waller won't play Sunday for the Las Vegas Raiders when they host the Houston Texans.The post Raiders' Darren Waller is Out Sunday vs. Texans appeared first on NESN.com.", "image_link": "https://nesn.com/wp-content/uploads/sites/5/2022/10/USATSI_19115422-scaled-e1666447886857.jpg", "word_cloud_link": null, "source_link": "https://nesn.com/bets/2022/10/raiders-darren-waller-is-out-sunday-vs-texans/", "source_label": "nesn", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-22T16:01:37.791Z", "last_update": "2022-10-22T16:01:37.791Z"}}, {"model": "press.post", "pk": 587, "fields": {"title": "Broncos scouting report: How Denver matches up against Jets and predictions", "body": "The Broncos are 21-16-1 in 38 regular-season games dating back to 1960; the Broncos won 26-0 in the last meeting, on Sept. 26, 2021, in Denver.", "image_link": "https://www.denverpost.com/wp-content/uploads/2022/10/202210191656TMS_____MNGTRPUB_SPORTS-PLAYOFF-TALK-CAN-START-FOR-JETS-1-NY5-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.denverpost.com/2022/10/22/broncos-scouting-report-vs-jets-week-7-predictions/", "source_label": "photos", "status": "PUBLISHED", "author": 278, "category": 2, "creation_date": "2022-10-22T16:01:39.372Z", "last_update": "2022-10-22T16:01:39.372Z"}}, {"model": "press.post", "pk": 588, "fields": {"title": "Tyler Lockett Questionable Sunday for Seahawks vs. Chargers", "body": "Tyler Lockett will be a game-time decision Sunday for the Seattle Seahawks.The post Tyler Lockett Questionable Sunday for Seahawks vs. Chargers appeared first on NESN.com.", "image_link": "https://nesn.com/wp-content/uploads/sites/5/2022/10/USATSI_19136190-scaled-e1666448407470.jpg", "word_cloud_link": null, "source_link": "https://nesn.com/bets/2022/10/tyler-lockett-questionable-sunday-for-seahawks-vs-chargers/", "source_label": "nesn", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-22T16:01:39.426Z", "last_update": "2022-10-22T16:01:39.426Z"}}, {"model": "press.post", "pk": 589, "fields": {"title": "Russia tells people in occupied Kherson to 'save your lives' and leave", "body": "(marketscreener.com) Russia told people in the occupied Ukrainian city of Kherson to flee for their lives on Sunday as more residents joined an exodus to escape an anticipated Ukrainian counter-offensive.https://www.marketscreener.com/quote/currency/US-DOLLAR-RUSSIAN-ROUBL-2370597/news/Russia-tells-people-in-occupied-Kherson-to-save-your-lives-and-leave-42065992/?utm_medium=RSS&utm_content=20221023", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/currency/US-DOLLAR-RUSSIAN-ROUBL-2370597/news/Russia-tells-people-in-occupied-Kherson-to-save-your-lives-and-leave-42065992/?utm_medium=RSS&utm_content=20221023", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-23T16:00:54.358Z", "last_update": "2022-10-23T16:00:54.358Z"}}, {"model": "press.post", "pk": 590, "fields": {"title": "Hurricane Roslyn makes landfall in Mexico, avoids resorts", "body": "Hurricane Roslyn slammed into a sparsely populated stretch of Mexico's Pacific coast between the resorts of Puerto Vallarta and Mazatlan, and quickly moved inland. By Sunday morning, Roslyn had winds of 90 mph, down from its peak of 130 mph. The U.S. National Hurricane Center said Roslyn was about 95 miles (150 kms) east-southeast of the resort of Mazatlan. The hurricane is expected to lose force as it moves further inland. While it missed a direct hit, Roslyn brought heavy rain and high waves to Puerto Vallarta. In Tepic, the Nayarit state capital, Roslyn blew down trees and flooded some...", "image_link": "https://www.marinij.com/wp-content/uploads/2022/10/Mexico_Tropical_Weather_12632-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.marinij.com/2022/10/23/hurricane-roslyn-makes-landfall-in-mexico-avoids-resorts/", "source_label": "marinij", "status": "PUBLISHED", "author": 176, "category": 2, "creation_date": "2022-10-23T16:00:54.436Z", "last_update": "2022-10-23T16:00:54.436Z"}}, {"model": "press.post", "pk": 591, "fields": {"title": "Leeds United 2 Fulham 3 - Graham Smyth's player ratings and gallery as seven get 5s and one 8", "body": "Leeds United fell into the Premier League’s relegation zone through Sunday’s 3-2 defeat at home to Fulham – but how did we rate the performances?", "image_link": "https://www.yorkshireeveningpost.co.uk/webimg/b25lY21zOjgyNGQ5NDcxLTYwOGQtNDRhMi1hZTU3LTQ1NmQ0Njk1M2MzNDowMmRlNTZjMS0zMzQ1LTQ0ZTktOTZiYi00NDYwYzRiODhjOWQ=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.yorkshireeveningpost.co.uk/sport/football/leeds-united/leeds-united-2-fulham-3-graham-smyths-player-ratings-and-gallery-as-seven-get-5s-and-one-8-3890670", "source_label": "beestontoday", "status": "PUBLISHED", "author": 279, "category": 2, "creation_date": "2022-10-23T16:00:56.165Z", "last_update": "2022-10-23T16:00:56.165Z"}}, {"model": "press.post", "pk": 592, "fields": {"title": "Mike Lindell, Like Herschel Walker Before Him, Is Bragging About A Tiny Honorary Badge He Says Makes Him ‘Semi-Official’", "body": "Getty Image Much like Herschel Walker, the MAGA figure is showing off a fake police badge for some reason.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/viral/mike-lindell-tiny-honorary-badge-semi-official/", "source_label": "hitfix", "status": "PUBLISHED", "author": 274, "category": 2, "creation_date": "2022-10-23T16:00:56.269Z", "last_update": "2022-10-23T16:00:56.269Z"}}, {"model": "press.post", "pk": 593, "fields": {"title": "California ‘prime target’ for home price declines in 2023, economist says", "body": "Shocked by rising mortgage rates, homebuyers and sellers are backing away from the market, economists say.", "image_link": "https://www.ocregister.com/wp-content/uploads/2022/10/OCR-L-SUNDAYBIZ-COL-1115-2.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.ocregister.com/2022/10/23/california-prime-target-for-home-price-declines-in-2023-economist-says/", "source_label": "ocregister", "status": "PUBLISHED", "author": 280, "category": 2, "creation_date": "2022-10-23T16:00:57.959Z", "last_update": "2022-10-23T16:00:57.959Z"}}, {"model": "press.post", "pk": 594, "fields": {"title": "TV listings in Sunday paper to be discontinued", "body": "Note to readers: Due to significant cost increases, the TV listings in the Sunday Sun will be discontinued. The last day they will be published is Sunday Oct. 30. We apologize for this inconvenience and for having to make this difficult decision. We do have some good news for our loyal readers as we will […]", "image_link": null, "word_cloud_link": null, "source_link": "https://winnipegsun.com/news/news-news/tv-listings-in-sunday-sun-to-be-discontinued", "source_label": "m", "status": "PUBLISHED", "author": 281, "category": 2, "creation_date": "2022-10-23T16:00:59.570Z", "last_update": "2022-10-23T16:00:59.570Z"}}, {"model": "press.post", "pk": 595, "fields": {"title": "Imran Khan should leave politics: Rana Tanveer", "body": "ISLAMABAD: Federal Education Minister Rana Tanveer Hussain Sunday advised Pakistan Tehreek-e-Insaf (PTI) Chairman Imran Khan to leave politics and become chairman of the Pakistan Cricket Board (PCB). “Imran Khan should leave politics and become the chairman of the PCB. He has put the entire nation in trouble by spreading lies, deception, and temptation,” he said […]The post Imran Khan should leave politics: Rana Tanveer appeared first on Pakistan Today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pakistantoday.com.pk/2022/10/23/imran-khan-should-leave-politics-rana-tanveer/", "source_label": "Pakistan Today", "status": "PUBLISHED", "author": 177, "category": 2, "creation_date": "2022-10-23T16:00:59.625Z", "last_update": "2022-10-23T16:00:59.625Z"}}, {"model": "press.post", "pk": 596, "fields": {"title": "Sve je moguće u Bundesligi: Poslednji tim pobedio lidera, Srbin upropastio šansu da sve bude drugačije", "body": "Srpski reprezentativac Erhan Mašović i njegov Bohum, poslednjeplasirani tim nemačkog šampionata, slavili su ovog popodneva kad se tome malo ko nadao.", "image_link": "https://xdn.tf.rs/2022/10/23/bohum.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/sport/fudbal/3574924-sve-je-moguce-u-bundesligi-poslednji-tim-pobedio-lidera-srbin-upropastio-sansu-da-sve-bude-drugacije", "source_label": "Telegraf", "status": "PUBLISHED", "author": 282, "category": 2, "creation_date": "2022-10-23T16:01:01.353Z", "last_update": "2022-10-23T16:01:01.353Z"}}, {"model": "press.post", "pk": 597, "fields": {"title": "Calderdale property: See inside one of Halifax's most expensive homes for sale on Rightmove", "body": "Take a look at this stunning detached five bedroom house in Warley, Halifax, on the market for £1,200,000 with Fine & Country.", "image_link": "https://www.halifaxcourier.co.uk/webimg/b25lY21zOjBhNTZmZDE4LWMzMjYtNDFhMi1hODM1LTNjNGQ2NWE4Yjg0NzoxNjYzNGNkMi02NTFjLTRhYTUtOWMyNC1hODBkYzJkY2IxMzM=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.halifaxcourier.co.uk/lifestyle/homes-and-gardens/calderdale-property-see-inside-one-of-halifaxs-most-expensive-homes-for-sale-on-rightmove-3889198", "source_label": "brighouseecho", "status": "PUBLISHED", "author": 283, "category": 2, "creation_date": "2022-10-23T16:01:03.417Z", "last_update": "2022-10-23T16:01:03.417Z"}}, {"model": "press.post", "pk": 598, "fields": {"title": "A hotel room, a Costco bill, a pizza party: B.C. man ordered to pay his share of team tournament expenses", "body": "A member of a B.C. underwater hockey has been ordered to pay his share of the expenses arising from a tournament in California – including one eighth of the bill for a pizza party.", "image_link": "https://www.ctvnews.ca/polopoly_fs/1.5867844.1650410448!/httpImage/image.jpg_gen/derivatives/landscape_300/image.jpg", "word_cloud_link": null, "source_link": "https://bc.ctvnews.ca/a-hotel-room-a-costco-bill-a-pizza-party-b-c-man-ordered-to-pay-his-share-of-team-tournament-expenses-1.6121095", "source_label": "ctvbc", "status": "PUBLISHED", "author": 284, "category": 2, "creation_date": "2022-10-23T16:01:06.182Z", "last_update": "2022-10-23T16:01:06.182Z"}}, {"model": "press.post", "pk": 599, "fields": {"title": "UT and other regional institutions still have Native American remains to repatriate", "body": "The University of Toledo and several other public institutions around the region still have significant collections of Native American remains and funerary objects that should be returned to tribes under federal law.", "image_link": "https://www.toledoblade.com/image/2022/10/21/600x_a4-3_cCM/remains25.jpg", "word_cloud_link": null, "source_link": "https://www.toledoblade.com/local/education/2022/10/23/ut-other-regional-organizations-still-have-native-american-remains-to-repatriate/stories/20221021132", "source_label": "toledoblade", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-23T16:01:06.329Z", "last_update": "2022-10-23T16:01:06.329Z"}}, {"model": "press.post", "pk": 600, "fields": {"title": "It was an emotional night at Halloween Havoc", "body": "This year’s Halloween Havoc, which went down just last night in Orlando, featured plenty of great wrestling. The North American championship ladder match tore the house down to kick off the night’s festivities and there was hardly any letup from there.But it was also an emotional night, at least for two of the stars of the show.First, Wes Lee was the man who emerged victorious in the aforementioned ladder match. He survived the wreckage — seriously, it was wild — to climb the ladder and complete his comeback story by winning his first singles championship.He shared a touching moment...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cagesideseats.com/wwe/2022/10/23/23418960/wwe-halloween-havoc-2022-emotional-mandy-rose-wes-lee", "source_label": "cagesideseats", "status": "PUBLISHED", "author": 285, "category": 2, "creation_date": "2022-10-23T16:01:09.141Z", "last_update": "2022-10-23T16:01:09.141Z"}}, {"model": "press.post", "pk": 601, "fields": {"title": "Several ‘anti trans’ school trustee candidates running in Canada, advocacy groups say", "body": "Some candidates singled out by the groups say they're concerned about how gender issues are being managed at schools, as well as the effects on the well-being of students.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/lgbtq-trustees.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9220267/school-trustee-trans-rhetoric-concerns/", "source_label": "globalmontreal", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-23T16:01:09.346Z", "last_update": "2022-10-23T16:01:09.346Z"}}, {"model": "press.post", "pk": 602, "fields": {"title": "Man found fatally shot in Bronzeville", "body": "Sun-Time file photo A man was found fatally shot early Sunday in Bronzeville.About 4:15 a.m., the 29-year-old man was found with a gunshot wound to the chest in the 4900 block of South King Drive, Chicago police said. He was pronounced dead at the scene, police said.No one was custody.", "image_link": null, "word_cloud_link": null, "source_link": "https://chicago.suntimes.com/2022/10/23/23418776/man-found-fatally-shot-bronzeville", "source_label": "suntimes", "status": "PUBLISHED", "author": 286, "category": 2, "creation_date": "2022-10-23T16:01:12.040Z", "last_update": "2022-10-23T16:01:12.040Z"}}, {"model": "press.post", "pk": 603, "fields": {"title": "LHC judge stresses end to acquisition of agri land for housing societies", "body": "LAHORE: Lahore High Court (LHC) Justice Shahid Karim Sunday stressed the need for a halt to the acquisition of agricultural land to build housing societies. He was addressing a session titled: “Climate Change and Floods in Pakistan” on the last day of the two-day Asma Jahangir Conference here at a hotel. He said that he […]The post LHC judge stresses end to acquisition of agri land for housing societies appeared first on Pakistan Today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pakistantoday.com.pk/2022/10/23/lhc-judge-stresses-end-to-acquisition-of-agri-land-for-housing-societies/", "source_label": "Pakistan Today", "status": "PUBLISHED", "author": 177, "category": 2, "creation_date": "2022-10-23T16:01:12.317Z", "last_update": "2022-10-23T16:01:12.317Z"}}, {"model": "press.post", "pk": 604, "fields": {"title": "Top 10 girls’ cross country rankings", "body": "The Monterey Herald's Top 10 girls cross country rankings", "image_link": null, "word_cloud_link": null, "source_link": "https://www.montereyherald.com/2022/10/23/top-10-girls-cross-country-rankings-19/", "source_label": "montereyherald", "status": "PUBLISHED", "author": 84, "category": 2, "creation_date": "2022-10-23T16:01:12.510Z", "last_update": "2022-10-23T16:01:12.510Z"}}, {"model": "press.post", "pk": 605, "fields": {"title": "Continúa en Argentina Feria del Libro y la Cultura Cubana", "body": "Imagen principal: La segunda edición de la Feria del Libro y la Cultura Cubana continúa hoy en Argentina con conciertos, clases de baile y presentaciones de textos sobre la actualidad regional y global.Como parte del programa previsto, la última jornada del evento reunirá en la Casa de la Amistad Argentino-Cubana de esta capital a artistas, escritores e intelectuales para resaltar los lazos entre ambas naciones, analizar la situación latinoamericana y conocer sobre las tradiciones de los dos pueblos.", "image_link": null, "word_cloud_link": null, "source_link": "http://cubasi.cu/en/node/261241", "source_label": "CubaSi.cu", "status": "PUBLISHED", "author": 287, "category": 2, "creation_date": "2022-10-23T16:01:15.615Z", "last_update": "2022-10-23T16:01:15.615Z"}}, {"model": "press.post", "pk": 606, "fields": {"title": "Reel Affirmations Review: ‘Being Thunder’", "body": "Reel Affirmations Review: ‘Being Thunder’", "image_link": null, "word_cloud_link": null, "source_link": "https://www.metroweekly.com/2022/10/reel-affirmations-review-being-thunder/?utm_source=rss&utm_medium=rss&utm_campaign=reel-affirmations-review-being-thunder", "source_label": "metroweekly", "status": "PUBLISHED", "author": 288, "category": 2, "creation_date": "2022-10-23T16:01:18.593Z", "last_update": "2022-10-23T16:01:18.593Z"}}, {"model": "press.post", "pk": 607, "fields": {"title": "1 youth dead, another charged with murder: Chatham-Kent, Ont. police", "body": "Officials say they were notified of a disturbance around 10:45 p.m. Friday. Police went to a home on Richmond Street where a male youth was found with serious injuries.", "image_link": "https://globalnews.ca/wp-content/uploads/2020/05/gettyimages-521989614-e1590165751376.jpg?quality=85&strip=all&w=640&h=427&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9220254/youth-murder-charge-chatham-kent-police/", "source_label": "globalmontreal", "status": "PUBLISHED", "author": 289, "category": 2, "creation_date": "2022-10-23T16:01:21.149Z", "last_update": "2022-10-23T16:01:21.150Z"}}, {"model": "press.post", "pk": 608, "fields": {"title": "Early Mountain Vineyards celebrates decade of brand with vintage wine release, founder’s flights", "body": "Early Mountain Vineyards has more to celebrate than Virginia Wine Month, it is also celebrating 10 years under the Early Mountain brand.The Madison-based vineyard, owned by Steve and Jean Case, has won a number of awards for their wine – but it is their tasting room that was voted number one in the nation by USA Today in its 10 Best Reader’s Choice contest.“We have come so far thanks to the amazing talent and hard work of many, and we are honored to continue this journey with our exceptional team and all of you,” said Case in a blog on their website.In celebration and appreciation of a...", "image_link": null, "word_cloud_link": null, "source_link": "https://augustafreepress.com/early-mountain-vineyards-celebrates-decade-of-brand-with-vintage-wine-release-founders-flights/", "source_label": "augustafreepress", "status": "PUBLISHED", "author": 267, "category": 2, "creation_date": "2022-10-23T16:01:21.733Z", "last_update": "2022-10-23T16:01:21.733Z"}}, {"model": "press.post", "pk": 609, "fields": {"title": "CPC 20th Congress further consolidated China’s modernization process: Pakistani scholar", "body": "ISLAMABAD, Oct 23 (INP): The 20th National Congress of the CPC just concluded in Beijing paved the way further consolidating and strengthening China’s national and global progress, says a report published by Gwadar Pro on Sunday. CPC has made a solemn commitment to achieve the second centenary goal of building China into a great modern […]The post CPC 20th Congress further consolidated China’s modernization process: Pakistani scholar appeared first on Pakistan Today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pakistantoday.com.pk/2022/10/23/cpc-20th-congress-further-consolidated-chinas-modernization-process-pakistani-scholar/", "source_label": "Pakistan Today", "status": "PUBLISHED", "author": 177, "category": 2, "creation_date": "2022-10-23T16:01:21.909Z", "last_update": "2022-10-23T16:01:21.909Z"}}, {"model": "press.post", "pk": 610, "fields": {"title": "This Designer Is Devoted To Making Accessible Clothing As Wearable Art", "body": "Meet Montreal-based design dynamo Katrin Leblond.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/6354d4f6240c971c83e382e3/0x0.jpg?width=960", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/jerylbrunner/2022/10/23/this-designer-is-devoted-to-making-accessible-clothing-as-wearable-art/", "source_label": "Leadership", "status": "PUBLISHED", "author": 290, "category": 2, "creation_date": "2022-10-23T16:01:24.234Z", "last_update": "2022-10-23T16:01:24.234Z"}}, {"model": "press.post", "pk": 611, "fields": {"title": "Doja Cat’s “Vegas” Celebrates 2nd Week As Pop Radio’s #1 Song", "body": "Doja Cat yet again claims the two biggest songs at pop radio, as her own “Vegas” stays at #1 while her Post Malone collaboration “I Like You (A Happier Song)” holds at #2. “Vegas,” which received ~16,701 spins during the October 16-22 tracking period (-358), is celebrating a second week at #1 on the Mediabase […]The post Doja Cat’s “Vegas” Celebrates 2nd Week As Pop Radio’s #1 Song appeared first on Headline Planet.", "image_link": null, "word_cloud_link": null, "source_link": "https://headlineplanet.com/home/2022/10/23/doja-cats-vegas-celebrates-2nd-week-as-pop-radios-1-song/", "source_label": "headlineplanet", "status": "PUBLISHED", "author": 276, "category": 2, "creation_date": "2022-10-23T16:01:24.369Z", "last_update": "2022-10-23T16:01:24.369Z"}}, {"model": "press.post", "pk": 612, "fields": {"title": "Is Your Country Training Ukrainian Soldiers?", "body": "Western nations began to train Ukrainian troops long before Russia launched a military operation in the neighbouring country. The US has been doing so for quite a while, with other countries, including Washington’s allies, following suit. Here is a closer look into the notorious list.", "image_link": null, "word_cloud_link": null, "source_link": "https://sputniknews.com/20221023/is-your-country-training-ukrainian-soldiers--1102500655.html", "source_label": "en", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-23T16:01:24.467Z", "last_update": "2022-10-23T16:01:24.467Z"}}, {"model": "press.post", "pk": 613, "fields": {"title": "Battling Saints hold league leaders Arsenal to 1-1 draw", "body": "Granit Xhaka scored a superb early goal but Premier League leaders Arsenal were held to a 1-1 draw by Southampton on Sunday as Stuart Armstrong netted a deserved second-half equaliser for the home side. The result moved Arsenal to 28 points from 11 games, two ahead of second-placed Manchester City,...", "image_link": null, "word_cloud_link": null, "source_link": "https://cyprus-mail.com/2022/10/23/battling-saints-hold-league-leaders-arsenal-to-1-1-draw/", "source_label": "cyprus-mail", "status": "PUBLISHED", "author": 112, "category": 2, "creation_date": "2022-10-23T16:01:24.609Z", "last_update": "2022-10-23T16:01:24.609Z"}}, {"model": "press.post", "pk": 614, "fields": {"title": "Donetsk People’s Republic leader Denis Pushilin poses with Semen Pegov aka ‘WarGonzo’", "body": "Semen Pegov aka ‘WarGonzo’ has shared a picture of himself posing with Donetsk People’s Republic leader Denis Pushilin on the frontline in Horlivka DPR which has led to thousands of comments online The image of Denis Pushilin, who last month was accused of resigning as head of the so-called Donetsk People’s Republic (DPR) and fleeing […]The post Donetsk People’s Republic leader Denis Pushilin poses with Semen Pegov aka ‘WarGonzo’ appeared first on Euro Weekly News.", "image_link": "https://euroweeklynews.com/wp-content/uploads/2022/10/pushili-pegov-gonzowar.jpg", "word_cloud_link": null, "source_link": "https://euroweeklynews.com/2022/10/23/pushilin-poses-with-semen-pegov-aka-wargonzo/", "source_label": "euroweeklynews", "status": "PUBLISHED", "author": 291, "category": 2, "creation_date": "2022-10-23T16:01:27.063Z", "last_update": "2022-10-23T16:01:27.063Z"}}, {"model": "press.post", "pk": 615, "fields": {"title": "Southampton 1-1 Arsenal: Stuart Armstrong denies visitors 10th league win of season", "body": "Arsenal drop points for only the second time this season as Stuart Armstrong's second-half equaliser earns Southampton a hard-earned point.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.bbc.co.uk/sport/football/63274131?at_medium=RSS&at_campaign=KARANGA", "source_label": "BBC", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-23T16:01:27.279Z", "last_update": "2022-10-23T16:01:27.279Z"}}, {"model": "press.post", "pk": 616, "fields": {"title": "Delhi government has begun anti-firecracker campaign – Diya Jalao, Patake Nahi to promote a pollution-free festival of Diwali", "body": "Delhi government has begun anti-firecracker campaign – Diya Jalao, Patake Nahi to promote a pollution-free festival of Diwali. The campaign has been launched with an objective to stop people from bursting firecrackers and encouraging them to celebrate Diwali with diyas. Due to bursting of firecrackers, the air pollution level goes up which can develop health […]", "image_link": null, "word_cloud_link": null, "source_link": "https://orissadiary.com/delhi-government-has-begun-anti-firecracker-campaign-diya-jalao-patake-nahi-to-promote-a-pollution-free-festival-of-diwali/", "source_label": "orissadiary", "status": "PUBLISHED", "author": 292, "category": 2, "creation_date": "2022-10-23T16:01:29.210Z", "last_update": "2022-10-23T16:01:29.210Z"}}, {"model": "press.post", "pk": 617, "fields": {"title": "\"Igramo protiv tima sa plejmejkerom kojem je trener dao sva prava\": Obradović ponovo o Raselu pred Mornar", "body": "Košarkaši Partizana gostuju u ponedeljak uveče od 21.00 čas u Baru, gde u okviru 4. kola ABA lige igraju protiv Mornara. Nakon trijumfa protiv Virtusa u Evroligi, nema sumnje da će crno-beli imati dodatan motiv da produže pobedničku seriju u regionalnom takmičenju.", "image_link": "https://xdn.tf.rs/2022/10/20/1666296613740-0met2772.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/sport/kosarka/3574922-igramo-protiv-tima-sa-plejmejkerom-kojem-je-trener-dao-sva-prava-obradovic-ponovo-o-raselu-pred-mornar", "source_label": "Telegraf", "status": "PUBLISHED", "author": 88, "category": 2, "creation_date": "2022-10-23T16:01:29.357Z", "last_update": "2022-10-23T16:01:29.357Z"}}, {"model": "press.post", "pk": 618, "fields": {"title": "Orange County high school football schedule for the Week 10 games, Oct. 27-28", "body": "See where and when the Orange County teams are playing their Week 10 games on Thursday-Friday, Oct. 27-28.", "image_link": "https://www.ocregister.com/wp-content/uploads/2022/10/ocvarsity-football11-2.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.ocregister.com/2022/10/24/orange-county-high-school-football-schedule-for-the-week-10-games-oct-27-28/", "source_label": "ocregister", "status": "PUBLISHED", "author": 95, "category": 2, "creation_date": "2022-10-24T16:00:59.381Z", "last_update": "2022-10-24T16:00:59.381Z"}}, {"model": "press.post", "pk": 619, "fields": {"title": "Pinar del Río tiene más del 92 por ciento de las comunicaciones recuperadas", "body": "Manuel Milián Villar, director territorial de Etecsa, agradeció, en acto de despedida, el quehacer de más de 80 linieros de Guantánamo, Granma, Holguín, Camagüey, Ciego de Ávila, Sancti Spíritus, Matanzas y Mayabeque , los cuales cumplieron la misión encomendada", "image_link": null, "word_cloud_link": null, "source_link": "http://www.escambray.cu/2022/pinar-del-rio-tiene-mas-del-92-por-ciento-de-las-comunicaciones-recuperadas/", "source_label": "escambray", "status": "PUBLISHED", "author": 293, "category": 2, "creation_date": "2022-10-24T16:01:01.128Z", "last_update": "2022-10-24T16:01:01.128Z"}}, {"model": "press.post", "pk": 620, "fields": {"title": "‘We Also Have To Deal With Crime’: Sharpton Says Democrats’ Refusal To Talk About Uncomfortable Topics Will Cost Them", "body": "'Don't do this, don't do that, rather than listening to the voters'", "image_link": null, "word_cloud_link": null, "source_link": "https://dailycaller.com/2022/10/24/we-also-have-to-deal-with-crime-sharpton-says-democrats-refusal-to-talk-about-uncomfortable-topics-will-cost-them/", "source_label": "dailycaller", "status": "PUBLISHED", "author": 251, "category": 2, "creation_date": "2022-10-24T16:01:01.175Z", "last_update": "2022-10-24T16:01:01.175Z"}}, {"model": "press.post", "pk": 621, "fields": {"title": "Able ARTS Work moving operations to North Long Beach", "body": "Able ARTS Work has found new partners at the Expo Arts Building.", "image_link": "https://www.presstelegram.com/wp-content/uploads/2022/10/LPT-L-ABLEARTS-1023.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.presstelegram.com/2022/10/24/able-arts-work-moving-operations-to-north-long-beach/", "source_label": "Press-Telegram", "status": "PUBLISHED", "author": 294, "category": 2, "creation_date": "2022-10-24T16:01:03.838Z", "last_update": "2022-10-24T16:01:03.838Z"}}, {"model": "press.post", "pk": 622, "fields": {"title": "‘House of the Dragon’ Season Finale Recap: “The Black Queen”", "body": "Time for some Vigilante S***, right Rhaenyra?", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/HOUSE-OF-THE-DRAGON-SEASON-1-FINALE-RECAP-2.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/24/house-of-the-dragon-season-finale-recap/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-24T16:01:03.978Z", "last_update": "2022-10-24T16:01:03.982Z"}}, {"model": "press.post", "pk": 623, "fields": {"title": "Jennison Associates LLC Has $1.65 Million Stake in Advanced Micro Devices, Inc. (NASDAQ:AMD)", "body": "Jennison Associates LLC raised its holdings in Advanced Micro Devices, Inc. (NASDAQ:AMD – Get Rating) by 135.4% in the second quarter, according to the company in its most recent Form 13F filing with the Securities and Exchange Commission. The firm owned 21,583 shares of the semiconductor manufacturer’s stock after acquiring an additional 12,416 shares during […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/jennison-associates-llc-has-1-65-million-stake-in-advanced-micro-devices-inc-nasdaqamd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:04.155Z", "last_update": "2022-10-24T16:01:04.158Z"}}, {"model": "press.post", "pk": 624, "fields": {"title": "Financial Counselors Inc. Acquires 263 Shares of Advanced Micro Devices, Inc. (NASDAQ:AMD)", "body": "Financial Counselors Inc. increased its holdings in shares of Advanced Micro Devices, Inc. (NASDAQ:AMD – Get Rating) by 8.6% during the 2nd quarter, according to its most recent Form 13F filing with the Securities and Exchange Commission (SEC). The institutional investor owned 3,316 shares of the semiconductor manufacturer’s stock after acquiring an additional 263 shares […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/financial-counselors-inc-acquires-263-shares-of-advanced-micro-devices-inc-nasdaqamd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:04.296Z", "last_update": "2022-10-24T16:01:04.296Z"}}, {"model": "press.post", "pk": 625, "fields": {"title": "Advisory Services Network LLC Trims Holdings in The Walt Disney Company (NYSE:DIS)", "body": "Advisory Services Network LLC lessened its stake in The Walt Disney Company (NYSE:DIS – Get Rating) by 13.1% during the 2nd quarter, according to its most recent 13F filing with the Securities & Exchange Commission. The firm owned 67,307 shares of the entertainment giant’s stock after selling 10,168 shares during the period. Advisory Services Network […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/advisory-services-network-llc-trims-holdings-in-the-walt-disney-company-nysedis.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:04.413Z", "last_update": "2022-10-24T16:01:04.413Z"}}, {"model": "press.post", "pk": 626, "fields": {"title": "Kovitz Investment Group Partners LLC Decreases Holdings in Vanguard Mid-Cap Value ETF (NYSEARCA:VOE)", "body": "Kovitz Investment Group Partners LLC trimmed its stake in shares of Vanguard Mid-Cap Value ETF (NYSEARCA:VOE – Get Rating) by 4.5% during the 2nd quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The institutional investor owned 2,000 shares of the company’s stock after selling 95 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/kovitz-investment-group-partners-llc-decreases-holdings-in-vanguard-mid-cap-value-etf-nysearcavoe.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:04.558Z", "last_update": "2022-10-24T16:01:04.558Z"}}, {"model": "press.post", "pk": 627, "fields": {"title": "Mount Yale Investment Advisors LLC Raises Stake in The Walt Disney Company (NYSE:DIS)", "body": "Mount Yale Investment Advisors LLC boosted its holdings in shares of The Walt Disney Company (NYSE:DIS – Get Rating) by 4.8% during the 2nd quarter, according to its most recent 13F filing with the SEC. The fund owned 39,475 shares of the entertainment giant’s stock after purchasing an additional 1,810 shares during the period. Mount […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/mount-yale-investment-advisors-llc-raises-stake-in-the-walt-disney-company-nysedis.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:04.653Z", "last_update": "2022-10-24T16:01:04.653Z"}}, {"model": "press.post", "pk": 628, "fields": {"title": "Nippon Life Global Investors Americas Inc. Sells 8,980 Shares of Chevron Co. (NYSE:CVX)", "body": "Nippon Life Global Investors Americas Inc. reduced its position in shares of Chevron Co. (NYSE:CVX – Get Rating) by 11.4% during the 2nd quarter, according to the company in its most recent Form 13F filing with the Securities and Exchange Commission. The fund owned 69,490 shares of the oil and gas company’s stock after selling […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/nippon-life-global-investors-americas-inc-sells-8980-shares-of-chevron-co-nysecvx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:04.900Z", "last_update": "2022-10-24T16:01:04.900Z"}}, {"model": "press.post", "pk": 629, "fields": {"title": "Advisory Services Network LLC Boosts Holdings in The Kraft Heinz Company (NASDAQ:KHC)", "body": "Advisory Services Network LLC grew its stake in shares of The Kraft Heinz Company (NASDAQ:KHC – Get Rating) by 42.2% in the second quarter, HoldingsChannel reports. The fund owned 68,381 shares of the company’s stock after buying an additional 20,301 shares during the quarter. Advisory Services Network LLC’s holdings in Kraft Heinz were worth $2,608,000 […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/advisory-services-network-llc-boosts-holdings-in-the-kraft-heinz-company-nasdaqkhc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:05.024Z", "last_update": "2022-10-24T16:01:05.024Z"}}, {"model": "press.post", "pk": 630, "fields": {"title": "The Kraft Heinz Company (NASDAQ:KHC) Shares Bought by Advisory Services Network LLC", "body": "Advisory Services Network LLC boosted its position in The Kraft Heinz Company (NASDAQ:KHC – Get Rating) by 42.2% during the second quarter, according to its most recent disclosure with the Securities and Exchange Commission. The fund owned 68,381 shares of the company’s stock after acquiring an additional 20,301 shares during the quarter. Advisory Services Network […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/the-kraft-heinz-company-nasdaqkhc-shares-bought-by-advisory-services-network-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:05.117Z", "last_update": "2022-10-24T16:01:05.117Z"}}, {"model": "press.post", "pk": 631, "fields": {"title": "The Walt Disney Company (NYSE:DIS) Holdings Lifted by Nippon Life Global Investors Americas Inc.", "body": "Nippon Life Global Investors Americas Inc. grew its position in The Walt Disney Company (NYSE:DIS – Get Rating) by 22.5% in the 2nd quarter, according to the company in its most recent filing with the Securities and Exchange Commission. The fund owned 81,250 shares of the entertainment giant’s stock after purchasing an additional 14,910 shares […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/the-walt-disney-company-nysedis-holdings-lifted-by-nippon-life-global-investors-americas-inc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:05.277Z", "last_update": "2022-10-24T16:01:05.277Z"}}, {"model": "press.post", "pk": 632, "fields": {"title": "Horizon Wealth Management LLC Acquires 1,363 Shares of Chevron Co. (NYSE:CVX)", "body": "Horizon Wealth Management LLC boosted its position in Chevron Co. (NYSE:CVX – Get Rating) by 6.3% during the 2nd quarter, according to its most recent Form 13F filing with the SEC. The fund owned 23,092 shares of the oil and gas company’s stock after purchasing an additional 1,363 shares during the period. Chevron comprises 1.4% […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/horizon-wealth-management-llc-acquires-1363-shares-of-chevron-co-nysecvx.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:05.425Z", "last_update": "2022-10-24T16:01:05.425Z"}}, {"model": "press.post", "pk": 633, "fields": {"title": "Chevron Co. (NYSE:CVX) Shares Acquired by Private Portfolio Partners LLC", "body": "Private Portfolio Partners LLC grew its stake in Chevron Co. (NYSE:CVX – Get Rating) by 0.7% during the second quarter, according to the company in its most recent 13F filing with the SEC. The institutional investor owned 17,243 shares of the oil and gas company’s stock after purchasing an additional 119 shares during the quarter. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/24/chevron-co-nysecvx-shares-acquired-by-private-portfolio-partners-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-24T16:01:05.614Z", "last_update": "2022-10-24T16:01:05.614Z"}}, {"model": "press.post", "pk": 634, "fields": {"title": "Six injured in mass shooting at St Louis high school", "body": "The violence took place at Central VPA High School in St Louis", "image_link": "https://static.independent.co.uk/2022/09/26/19/breaking%20news%20image.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/world/americas/crime/st-louis-shooting-central-high-school-b2209404.html", "source_label": "The Independent", "status": "PUBLISHED", "author": 295, "category": 2, "creation_date": "2022-10-24T16:01:08.914Z", "last_update": "2022-10-24T16:01:08.914Z"}}, {"model": "press.post", "pk": 635, "fields": {"title": "Man facing charges after disturbance at Hamilton Mountain restaurant", "body": "Investigators say three people were transported to hospital in connection with the incident that happened early Sunday morning.", "image_link": "https://globalnews.ca/wp-content/uploads/2020/09/hamilton-police-badge.jpg?quality=85&strip=all&w=720&h=417&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9221539/man-facing-charges-disturbance-hamilton-mountain/", "source_label": "chbcnews", "status": "PUBLISHED", "author": 296, "category": 2, "creation_date": "2022-10-24T16:01:11.514Z", "last_update": "2022-10-24T16:01:11.514Z"}}, {"model": "press.post", "pk": 636, "fields": {"title": "Alex Only on How to Beat Your Competition & Be An Industry Leader ", "body": "We are always in competition, if not with other businesses or peers, with ourselves. Pulling yourself ahead of the competition is not easy, especially in a fast-paced world. Alex Only explains that not only do you need to worry about existing competition; you also need to keep a watch on forthcoming contenders. Identifying your competition […]The post Alex Only on How to Beat Your Competition & Be An Industry Leader  appeared first on LA Weekly.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laweekly.com/alex-only-on-how-to-beat-your-competition-be-an-industry-leader/", "source_label": "laweekly", "status": "PUBLISHED", "author": 297, "category": 2, "creation_date": "2022-10-24T16:01:14.472Z", "last_update": "2022-10-24T16:01:14.472Z"}}, {"model": "press.post", "pk": 637, "fields": {"title": "WWE Raw preview: The early lineup for tonight’s show", "body": "By Jason Powell, ProWrestling.net Editor...The post WWE Raw preview: The early lineup for tonight’s show appeared first on Pro Wrestling Dot Net.", "image_link": null, "word_cloud_link": null, "source_link": "https://prowrestling.net/site/2022/10/24/wwe-raw-preview-the-early-lineup-for-tonights-show-7/", "source_label": "prowrestling", "status": "PUBLISHED", "author": 77, "category": 2, "creation_date": "2022-10-24T16:01:14.593Z", "last_update": "2022-10-24T16:01:14.593Z"}}, {"model": "press.post", "pk": 638, "fields": {"title": "Epik’s new CEO – DNW Podcast #410", "body": "Brian Royce explains his views and answers questions about what’s happening at the company. Many in the domain industry were surprised last month when Epik announced that Rob Monster was giving way to a new leader. What would this mean for Epik, a registrar that has made national headlines for its free speech views? What […]Post link: Epik’s new CEO – DNW Podcast #410© DomainNameWire.com 2022. This is copyrighted content. Domain Name Wire full-text RSS feeds are made available for personal use only, and may not be published on any site without permission. If you see this message on a...", "image_link": "https://traffic.libsyn.com/domainnamewire/DNW410.mp3", "word_cloud_link": null, "source_link": "https://domainnamewire.com/2022/10/24/epiks-new-ceo-dnw-podcast-410/", "source_label": "domainnamewire", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-24T16:01:14.705Z", "last_update": "2022-10-24T16:01:14.705Z"}}, {"model": "press.post", "pk": 639, "fields": {"title": "Shwashwi: SA’s aesthetics couple", "body": "Sunday WorldShwashwi: SA’s aesthetics coupleNow that it is the “BER” of months and the end of 2022, Shwa does not rest, receiving invites from all over. To be precise it seems no party or event is complete without moi. Last Friday, I was rubbing shoulders with the biggest names in business, politics and the medical fraternity. Shwa headed to […]The post Shwashwi: SA’s aesthetics couple appeared first on Sunday World.", "image_link": "https://sundayworld.co.za/wp-content/uploads/2022/10/P20-Dr.-Aunshka-ETCH-e1666602186314.jpg", "word_cloud_link": null, "source_link": "https://sundayworld.co.za/celebrity-news/hot-mgosi/shwashwi-sas-aesthetics-couple/?utm_source=rss&utm_medium=rss&utm_campaign=shwashwi-sas-aesthetics-couple", "source_label": "sundayworld", "status": "PUBLISHED", "author": 298, "category": 2, "creation_date": "2022-10-24T16:01:17.555Z", "last_update": "2022-10-24T16:01:17.555Z"}}, {"model": "press.post", "pk": 640, "fields": {"title": "Officer Pleads Guilty to Manslaughter in George Floyd’s Death", "body": "J. Alexander Kueng was a rookie Minneapolis police officer when he held Mr. Floyd down while a fellow officer fatally knelt on his neck.", "image_link": "https://static01.nyt.com/images/2022/10/24/world/24FLOYD1/24FLOYD1-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2022/10/24/us/george-floyd-officers-kueng-thao.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 299, "category": 2, "creation_date": "2022-10-24T16:01:20.927Z", "last_update": "2022-10-24T16:01:20.927Z"}}, {"model": "press.post", "pk": 641, "fields": {"title": "Security forces arrested and abused LGBT Qataris, human rights group claims", "body": "Security forces in Qatar arbitrarily arrested and abused LGBT Qataris as recently as last month, ...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.insidethegames.biz/articles/1129595/lgbt-qataris-abuse-human-rights-watch", "source_label": "insidethegames", "status": "PUBLISHED", "author": 175, "category": 2, "creation_date": "2022-10-24T16:01:21.113Z", "last_update": "2022-10-24T16:01:21.113Z"}}, {"model": "press.post", "pk": 642, "fields": {"title": "FINAL DEADLINE ALERT: The Schall Law Firm Encourages Investors in Dingdong (Cayman) Limited with Losses of $100,000 to Contact the Firm", "body": "(marketscreener.com) LOS ANGELES, Oct. 24, 2022 /PRNewswire/ -- The Schall Law Firm, a national shareholder rights litigation firm, announces the filing of a class action lawsuit against Dingdong Limited  for violations of the federal securities laws. ...https://www.marketscreener.com/quote/stock/DINGDONG-CAYMAN-LIMITED-124221586/news/FINAL-DEADLINE-ALERT-The-Schall-Law-Firm-Encourages-Investors-in-Dingdong-Cayman-Limited-with-Los-42072368/?utm_medium=RSS&utm_content=20221024", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/DINGDONG-CAYMAN-LIMITED-124221586/news/FINAL-DEADLINE-ALERT-The-Schall-Law-Firm-Encourages-Investors-in-Dingdong-Cayman-Limited-with-Los-42072368/?utm_medium=RSS&utm_content=20221024", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-24T16:01:21.313Z", "last_update": "2022-10-24T16:01:21.313Z"}}, {"model": "press.post", "pk": 643, "fields": {"title": "On House of the Dragon, Rhaenyra Gave Peace a Chance", "body": "“I wasn’t ready to be Queen of the Seven Kingdoms,” Rhaenyra tells her young son Jacaerys, speaking about when Viserys first named her his heir, all those years ago. “But… it was my duty. And in time, I came to understand I had to earn my inheritance.” What Rhaenyra doesn’t know much more she’ll need to do to earn…Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://gizmodo.com/house-of-the-dragon-finale-recap-black-queen-episode-10-1849692400", "source_label": "gizmodo", "status": "PUBLISHED", "author": 159, "category": 2, "creation_date": "2022-10-24T16:01:21.473Z", "last_update": "2022-10-24T16:01:21.473Z"}}, {"model": "press.post", "pk": 644, "fields": {"title": "Sweet and sour future for sugar power in eSwatini", "body": "Companies in the country are using dry sugarcane waste to generate electricityThe post Sweet and sour future for sugar power in eSwatini appeared first on The Mail & Guardian.", "image_link": null, "word_cloud_link": null, "source_link": "https://mg.co.za/environment/2022-10-24-sweet-and-sour-future-for-sugar-power-in-eswatini/", "source_label": "Mail & Guardian", "status": "PUBLISHED", "author": 300, "category": 2, "creation_date": "2022-10-24T16:01:24.055Z", "last_update": "2022-10-24T16:01:24.055Z"}}, {"model": "press.post", "pk": 645, "fields": {"title": "Russian media chief jokes about soldiers raping elderly Ukrainian women and demands drowning kids", "body": "Anton Krasovsky, an out gay reporter and chief of Russian state-controlled RT media, was recently suspended from RT after he advocated for the drowning of Ukrainian children and the raping of elderly Ukrainian women last week.Krasovsky’s comment about children occurred on the air amid a discussion of Ukrainian children who felt they lived better lives when Russia wasn’t occupying their country.“They should have been drowned in the Tysyna (River)… thrown straight into a river with a strong current,” he responded. “Just drown those children, drown them… [They] could be shoved into...", "image_link": "https://www.alternet.org/media-library/image.png?id=31995057&width=980", "word_cloud_link": null, "source_link": "https://www.alternet.org/2022/10/russian-media-chief-drowning-children/", "source_label": "alternet", "status": "PUBLISHED", "author": 301, "category": 2, "creation_date": "2022-10-24T16:01:26.475Z", "last_update": "2022-10-24T16:01:26.475Z"}}, {"model": "press.post", "pk": 646, "fields": {"title": "Rishi Sunak speech today: What the Prime Minister had to say during first address in new role", "body": "The new Prime Minister has addressed Conservative Party politicians for the first time", "image_link": "https://www.derbyshiretimes.co.uk/jpim-static/image/2022/10/24/14/GettyImages-1244174306.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.derbyshiretimes.co.uk/read-this/rishi-sunak-speech-today-what-the-prime-minister-had-to-say-during-first-address-in-new-role-3891693", "source_label": "matlockmercury", "status": "PUBLISHED", "author": 302, "category": 2, "creation_date": "2022-10-24T16:01:28.928Z", "last_update": "2022-10-24T16:01:28.928Z"}}, {"model": "press.post", "pk": 647, "fields": {"title": "Perspective Of An Average Steelers Fan: Pittsburgh Loses A Winnable Game", "body": "GAME PRELUDE I departed Jacksonville, Florida early enough to drive back home to Maryland and catch the Steelers game. Had to listen to the first few minutes on Steelers Nation Radio and it sounded like a Buffalo redux. But once I hurried in from the driveway, the Steelers had settled down and started holding the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/10/perspective-of-an-average-steelers-fan-pittsburgh-loses-a-winnable-game/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 44, "category": 2, "creation_date": "2022-10-25T16:00:55.202Z", "last_update": "2022-10-25T16:00:55.202Z"}}, {"model": "press.post", "pk": 648, "fields": {"title": "Hisense U8H vs. TCL 6-Series (R655): Is brighter better?", "body": "We compare two of the best and brightest budget TVs you can buy, the Hisense U8H and the TCL 6-Series, to see which comes out on top.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2022/10/Hisense-U8H-vs-TCL-6-Series-R655-7.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/home-theater/hisense-u8h-vs-tcl-6-series-r655/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 303, "category": 2, "creation_date": "2022-10-25T16:00:57.146Z", "last_update": "2022-10-25T16:00:57.146Z"}}, {"model": "press.post", "pk": 649, "fields": {"title": "Remote work still has problems. Can Webex fix them?", "body": "Virtual collaboration tools have come a long way since the pandemic started, but Cisco exec Jeetu Patel says we're still in the \"first inning\" of figuring out remote and hybrid work.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.zdnet.com/article/remote-work-still-has-problems-can-webex-fix-them/#ftag=RSSbaffb68", "source_label": "zdnet", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-25T16:00:57.249Z", "last_update": "2022-10-25T16:00:57.249Z"}}, {"model": "press.post", "pk": 650, "fields": {"title": "National Healthy Skin Month: Dermatologists Provide Tips on Caring for Your Skin, Hair, and Nails", "body": "In recognition of National Healthy Skin Month in November, board-certified dermatologists are providing their top tips for caring for your skin, hair, and nails.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/780980/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 304, "category": 2, "creation_date": "2022-10-25T16:00:58.975Z", "last_update": "2022-10-25T16:00:58.975Z"}}, {"model": "press.post", "pk": 651, "fields": {"title": "The best Xbox One controllers for 2022", "body": "Many controllers are available for the Xbox One, including gamepads from Microsoft and third-party controllers loaded with unique features. Here are the best.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2017/06/Xbox-One-Recon-Tech-Controller.06807.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/gaming/best-xbox-one-controllers/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 305, "category": 2, "creation_date": "2022-10-25T16:01:00.679Z", "last_update": "2022-10-25T16:01:00.679Z"}}, {"model": "press.post", "pk": 652, "fields": {"title": "Spitting Image is CANCELLED after just two seasons", "body": "Spitting Image, which was resurrected for BritBox after a 24-year hiatus, has not been renewed for a third series. The revived political satire was previously branded 'toothless' and 'too woke.'", "image_link": "https://i.dailymail.co.uk/1s/2022/10/25/16/63830285-0-image-m-29_1666711510294.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11352773/Spitting-Image-CANCELLED-just-two-seasons.html?ns_mchannel=rss&ito=1490&ns_campaign=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-25T16:01:00.755Z", "last_update": "2022-10-25T16:01:00.755Z"}}, {"model": "press.post", "pk": 653, "fields": {"title": "Gabrielle Union Debuts Capsule Collection with Banke Kuku for New York & Company", "body": "The unique collection is inspired by Gabrielle Union’s 50th birthday celebration.", "image_link": null, "word_cloud_link": null, "source_link": "https://wwd.com/shop/shop-fashion/gabrielle-union-new-york-and-company-banke-kuku-collection-1235400506/", "source_label": "wwd", "status": "PUBLISHED", "author": 306, "category": 2, "creation_date": "2022-10-25T16:01:02.865Z", "last_update": "2022-10-25T16:01:02.865Z"}}, {"model": "press.post", "pk": 654, "fields": {"title": "Stats all ya got? Denver Bronco stat review for week 7 of 2022", "body": "Isaiah J. Downing-USA TODAY Sports another set of historic lows for the Brncs - notice there is no “O”. I’m going to start with the few bits of good news and then dump the heavy stuff on y’all.The Denver Broncos came into Sunday’s game having converted on six of 52 third and long situations (11.5 percent). The Broncos converted on three of nine on Sunday (two on catches from Jerry Jeudy and one on a defensive holding play). We have now moved from dead last to 29th in conversion rate on 3rd and long. The Eagles (14.3 percent), Panthers (13.6) and Buccaneers (10.2) are worse. The Chiefs...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.milehighreport.com/2022/10/25/23422469/denver-broncos-stat-review-week-7", "source_label": "milehighreport", "status": "PUBLISHED", "author": 307, "category": 2, "creation_date": "2022-10-25T16:01:05.062Z", "last_update": "2022-10-25T16:01:05.062Z"}}, {"model": "press.post", "pk": 655, "fields": {"title": "Golfer Sues Ford Dealer, Country Club After Backing Out of F-150 Prize", "body": "A golfer who hit a hole-in-one at a charity event thought he won a brand new Ford F-150, but there was just one problem. The Arkansas-based dealership that was supposed to supply the $53,595 truck says it never agreed to the deal. Now, a lawsuit.Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://jalopnik.com/golfer-sues-ford-dealer-country-club-after-backing-out-1849698564", "source_label": "jalopnik", "status": "PUBLISHED", "author": 114, "category": 2, "creation_date": "2022-10-25T16:01:05.154Z", "last_update": "2022-10-25T16:01:05.154Z"}}, {"model": "press.post", "pk": 656, "fields": {"title": "Egypt Wants The Rosetta Stone Back From the British Museum", "body": "Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://gizmodo.com/egypt-wants-the-rosetta-stone-back-from-the-british-mus-1849698990", "source_label": "gizmodo", "status": "PUBLISHED", "author": 308, "category": 2, "creation_date": "2022-10-25T16:01:07.697Z", "last_update": "2022-10-25T16:01:07.697Z"}}, {"model": "press.post", "pk": 657, "fields": {"title": "Allick Repeats As B1G Freshman Of The Week", "body": "Nebraska middle blocker Bekka Allick was named Big Ten Freshman of the Week on Monday for the second straight week. Allick led the Huskers to", "image_link": null, "word_cloud_link": null, "source_link": "https://chadronradio.com/sports/allick-repeats-as-b1g-freshman-of-the-week/", "source_label": "chadrad", "status": "PUBLISHED", "author": 309, "category": 2, "creation_date": "2022-10-25T16:01:10.190Z", "last_update": "2022-10-25T16:01:10.190Z"}}, {"model": "press.post", "pk": 658, "fields": {"title": "Don’t cover your vehicle’s number plates with campaign stickers, police warn politicians", "body": "Tribune OnlineDon’t cover your vehicle’s number plates with campaign stickers, police warn politicians", "image_link": null, "word_cloud_link": null, "source_link": "https://tribuneonlineng.com/dont-cover-your-vehicles-number-plates-with-campaign-stickers-police-warn-politicians/", "source_label": "tribune", "status": "PUBLISHED", "author": 310, "category": 2, "creation_date": "2022-10-25T16:01:12.921Z", "last_update": "2022-10-25T16:01:12.921Z"}}, {"model": "press.post", "pk": 659, "fields": {"title": "The 10 best areas in Marbella to invest in your new home", "body": "Marbella, in Spain’s Costa del Sol, with its sun-drenched Moorish architecture and miles of stunning coastline, is incredibly popular amongst property investors. Whether you’re looking for a second home in the sun or want to invest in a property you can spruce up and rent out – making the most of Marbella’s voracious tourism industry […]The post The 10 best areas in Marbella to invest in your new home appeared first on Euro Weekly News.", "image_link": "https://euroweeklynews.com/wp-content/uploads/2022/10/shutterstock_208076113-2-scaled.jpg", "word_cloud_link": null, "source_link": "https://euroweeklynews.com/2022/10/25/the-10-best-areas-in-marbella-to-invest-in-your-new-home/", "source_label": "euroweeklynews", "status": "PUBLISHED", "author": 311, "category": 2, "creation_date": "2022-10-25T16:01:15.456Z", "last_update": "2022-10-25T16:01:15.456Z"}}, {"model": "press.post", "pk": 660, "fields": {"title": "15-year-old boy who collapsed and died at Liverpool ONE restaurant is named", "body": "The teenager was in town with his mum, dad and sister when he unexpectedly collapsed on Saturday afternoon.", "image_link": "https://www.liverpoolworld.uk/jpim-static/image/2022/10/25/16/newFile-6.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.liverpoolworld.uk/news/15-year-old-boy-collapses-and-dies-at-liverpool-one-restaurant-what-happened-what-merseyside-police-said-3892551", "source_label": "sthelensreporter", "status": "PUBLISHED", "author": 312, "category": 2, "creation_date": "2022-10-25T16:01:18.042Z", "last_update": "2022-10-25T16:01:18.042Z"}}, {"model": "press.post", "pk": 661, "fields": {"title": "Musical Instrument Museum to Display Iconic Prince Memorabilia", "body": "A new exhibition at the Musical Instrument Museum, or MIM, will feature some of the world’s rarest instruments. Some never-before-seen historic items, both ancient and ceremonial, will be put on display as a part of Rediscover Treasures: Legendary Musical Instruments at the Phoenix, Arizona institute. But among those pieces, nothing compares to the iconic Prince […]The post Musical Instrument Museum to Display Iconic Prince Memorabilia appeared first on American Songwriter.", "image_link": null, "word_cloud_link": null, "source_link": "https://americansongwriter.com/musical-instrument-museum-to-display-iconic-prince-memorabilia/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 229, "category": 2, "creation_date": "2022-10-25T16:01:18.232Z", "last_update": "2022-10-25T16:01:18.232Z"}}, {"model": "press.post", "pk": 662, "fields": {"title": "90 Day Fiance: Anny Francisco stylish in pink sweatsuit shows off her new dog", "body": "Anny Francisco and her husband, Robert Springs, are still mourning the loss of their infant son, Adriel, but they appear to be in a little bit better spirits months after the tragedy. The couple just took a trip to South Carolina, and they returned with a new member added to", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/tv/reality-tv/90-day-fiance-anny-francisco-stylish-in-pink-sweatsuit-shows-off-her-new-dog/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 313, "category": 2, "creation_date": "2022-10-25T16:01:22.314Z", "last_update": "2022-10-25T16:01:22.314Z"}}, {"model": "press.post", "pk": 663, "fields": {"title": "Kuwaiti opposition wins big in election, standoff with government to endure", "body": "KUWAIT — Opposition candidates, including Islamists, made considerable gains in Kuwait’s parliamentary election, raising pressure on the government which was hoping to ease tensions with the elected legislature and press on with economic reforms. Official results, published by state news agency KUNA on Friday, showed that most of the so-called “pro-government lawmakers” lost their districts […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/kuwaiti-opposition-wins-big-in-election-standoff-with-government-to-endure-2", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-25T16:01:22.473Z", "last_update": "2022-10-25T16:01:22.473Z"}}, {"model": "press.post", "pk": 664, "fields": {"title": "Tributes pour in for global entertainer Leslie Jordan", "body": "Sunday WorldTributes pour in for global entertainer Leslie JordanTributes continue to pour in for American actor and comedian Leslie Jordan, who especially kept people entertained on social media during the Covid-19 pandemic. This video, posted in March 2020, led Leslie Jordan to Instagram fame. pic.twitter.com/rw83ztsTWd — Yashar Ali 🐘 یاشار (@yashar) October 24, 2022 The comedian sadly passed away on Monday in a […]The post Tributes pour in for global entertainer Leslie Jordan appeared first on Sunday World.", "image_link": "https://sundayworld.co.za/wp-content/uploads/2022/10/Leslie-Jordan-.png", "word_cloud_link": null, "source_link": "https://sundayworld.co.za/celebrity-news/tributes-pour-in-for-global-entertainer-leslie-jordan/?utm_source=rss&utm_medium=rss&utm_campaign=tributes-pour-in-for-global-entertainer-leslie-jordan", "source_label": "sundayworld", "status": "PUBLISHED", "author": 314, "category": 2, "creation_date": "2022-10-25T16:01:24.741Z", "last_update": "2022-10-25T16:01:24.741Z"}}, {"model": "press.post", "pk": 665, "fields": {"title": "'The most caring people': backpack drive to help Winnipeg's most vulnerable", "body": "Families who lost their loved ones to drugs are turning their tragedies into an initiative to help Winnipeg’s most vulnerable population.", "image_link": "https://www.ctvnews.ca/polopoly_fs/1.6124015.1666711726!/httpImage/image.jpg_gen/derivatives/landscape_800/image.jpg", "word_cloud_link": null, "source_link": "https://winnipeg.ctvnews.ca/the-most-caring-people-backpack-drive-to-help-winnipeg-s-most-vulnerable-1.6124008", "source_label": "winnipeg", "status": "PUBLISHED", "author": 315, "category": 2, "creation_date": "2022-10-25T16:01:27.021Z", "last_update": "2022-10-25T16:01:27.021Z"}}, {"model": "press.post", "pk": 666, "fields": {"title": "Powerball jackpot rises to $700M, 8th largest lottery prize", "body": "DES MOINES, Iowa (AP) — The eighth-largest lottery jackpot will be up for grabs when numbers are drawn for an estimated $700 million Powerball grand prize. No one has matched all six numbers and won Powerball’s top prize since Aug. 3, allowing Wednesday night’s jackpot to slowly grow for a nearly three months. Of course, […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/powerball-jackpot-rises-to-700m-8th-largest-lottery-prize", "source_label": "nationalpost", "status": "PUBLISHED", "author": 188, "category": 2, "creation_date": "2022-10-25T16:01:27.184Z", "last_update": "2022-10-25T16:01:27.184Z"}}, {"model": "press.post", "pk": 667, "fields": {"title": "A woman claims she was able to feel like she was having an orgasm and 'climaxing' during labor", "body": "Hanna Faustino, 36, from Canada, claims she experienced an orgasm during labor and says she achieved it by just focusing on her breathing. Hanna credits her birthing coach Jannine Markou, 49.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/25/16/63832239-0-image-a-29_1666710411015.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/femail/article-11352895/A-woman-claims-able-feel-like-having-orgasm-climaxing-labor.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "mailonsunday", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-25T16:01:27.321Z", "last_update": "2022-10-25T16:01:27.321Z"}}, {"model": "press.post", "pk": 668, "fields": {"title": "Veronika Rajek stuns in a crochet bikini to promote podcast appearance", "body": "Veronika Rajek set pulses racing by posing in a skimpy string bikini as she alerted fans to an upcoming podcast appearance. The Slovenian beauty is a huge hit on social media with her mix of revealing pics and fun videos for fans. She regularly poses in daring outfits and glamorous", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/celebrity/veronika-rajek-stuns-in-a-crochet-bikini-to-promote-podcast-appearance/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 316, "category": 2, "creation_date": "2022-10-25T16:01:29.683Z", "last_update": "2022-10-25T16:01:29.683Z"}}, {"model": "press.post", "pk": 669, "fields": {"title": "Here Are The Best Halloween Costumes From Music Artists Of 2022", "body": "Getty Image/Derrick Rossignol/deckermeredith via Flickr From Megan Thee Stallion to Doja Cat, the spooky season looks are so good this year.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/pop/best-halloween-costumes-music-artists-2022/", "source_label": "hitfix", "status": "PUBLISHED", "author": 317, "category": 2, "creation_date": "2022-10-25T16:01:31.705Z", "last_update": "2022-10-25T16:01:31.706Z"}}, {"model": "press.post", "pk": 670, "fields": {"title": "Price of vegetable oil up by 68% as rising household food costs revealed", "body": "'The pledge our new Prime Minister made to uprate benefits with inflation must be honoured if low income households are to get through this winter.'", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/25/price-of-vegetable-oil-up-68-as-rising-household-food-costs-revealed-17630807/", "source_label": "Metro", "status": "PUBLISHED", "author": 318, "category": 2, "creation_date": "2022-10-25T16:01:33.677Z", "last_update": "2022-10-25T16:01:33.677Z"}}, {"model": "press.post", "pk": 671, "fields": {"title": "Simon Hart appointed UK chief whip - statement", "body": "(marketscreener.com) British lawmaker Simon Hart was appointed chief whip - the government role in charge of discipline within the Conservative Party - on Tuesday, Prime Minister Rishi Sunak's office said.https://www.marketscreener.com/news/latest/Simon-Hart-appointed-UK-chief-whip-statement--42083016/?utm_medium=RSS&utm_content=20221025", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/Simon-Hart-appointed-UK-chief-whip-statement--42083016/?utm_medium=RSS&utm_content=20221025", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-25T16:01:33.785Z", "last_update": "2022-10-25T16:01:33.789Z"}}, {"model": "press.post", "pk": 672, "fields": {"title": "College Athlete of the Week", "body": "The Monterey Herald's College Athlete of the Week", "image_link": null, "word_cloud_link": null, "source_link": "https://www.montereyherald.com/2022/10/25/college-athlete-of-the-week-73/", "source_label": "montereyherald", "status": "PUBLISHED", "author": 84, "category": 2, "creation_date": "2022-10-25T16:01:33.869Z", "last_update": "2022-10-25T16:01:33.869Z"}}, {"model": "press.post", "pk": 673, "fields": {"title": "Watch: Carpet python on the loose in Houston neighborhood", "body": "Residents of a Houston neighborhood said they are keeping watch for a large snake caught on camera wandering the area.", "image_link": "https://cdnph.upi.com/ph/st/th/6641666710448/2022/i/16667105704072/v1.5/Carpet-python-on-the-loose-in-Houston-neighborhood.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Odd_News/2022/10/25/carpet-python-loose-Houston-neighborhood/6641666710448/", "source_label": "upi", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-25T16:01:33.951Z", "last_update": "2022-10-25T16:01:33.951Z"}}, {"model": "press.post", "pk": 674, "fields": {"title": "Made.com shares plummet as takeover talks fail and mulls suspension", "body": "(marketscreener.com) Made.com Group PLC shares tumbled as it said talks with possible suitors fell through, with the sofa seller now edging precariously closer to collapse. Made said that discussions with a \"select number of parties\" yielded little success. \"Following further discussion, those parties have all now confirmed to the company that they are unable to...https://www.marketscreener.com/quote/stock/MADE-COM-GROUP-PLC-123820657/news/Made-com-shares-plummet-as-takeover-talks-fail-and-mulls-suspension-42083013/?utm_medium=RSS&utm_content=20221025", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/MADE-COM-GROUP-PLC-123820657/news/Made-com-shares-plummet-as-takeover-talks-fail-and-mulls-suspension-42083013/?utm_medium=RSS&utm_content=20221025", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-25T16:01:34.073Z", "last_update": "2022-10-25T16:01:34.073Z"}}, {"model": "press.post", "pk": 675, "fields": {"title": "Reader letter: Paying to park at Chichester railway station is now 'another hurdle for older generation'", "body": "Writes Maggie Gormley, of Howard Avenue, West Wittering", "image_link": "https://www.sussexexpress.co.uk/webimg/b25lY21zOjZlYTAyYTU1LTNlNzMtNGZhNC1iZjY2LTNlYjYwNTUyODQ0NTplOWRlZDZlZC03YmVkLTQ2NmMtYTA3OS1lMzZlYWE1YmM3ZmM=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.sussexexpress.co.uk/news/opinion/reader-letter-paying-to-park-at-chichester-railway-station-is-now-another-hurdle-for-older-generation-3894727", "source_label": "hastingsobserver", "status": "PUBLISHED", "author": 319, "category": 2, "creation_date": "2022-10-26T16:00:53.851Z", "last_update": "2022-10-26T16:00:53.851Z"}}, {"model": "press.post", "pk": 676, "fields": {"title": "RG James Daniels Commends Kenny Pickett’s Ability To ‘Get The Ball Out On Time’", "body": "Pittsburgh Steelers QB Kenny Pickett has made three starts thus far in his rookie season and the results have been a bit of a roller coaster to say the least. Before even recording his first start, Pickett came into the game in relief of mitch Trubisky who was benched at halftime in Week 4 against […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/10/rg-james-daniels-commends-kenny-picketts-ability-to-get-the-ball-out-on-time/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 320, "category": 2, "creation_date": "2022-10-26T16:00:55.504Z", "last_update": "2022-10-26T16:00:55.504Z"}}, {"model": "press.post", "pk": 677, "fields": {"title": "How to make Bella Hadid’s viral TikTok sandwich", "body": "TikTok went ham for the model's salami sub", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/26/how-to-make-bella-hadids-viral-tiktok-sandwich-17642535/", "source_label": "Metro", "status": "PUBLISHED", "author": 321, "category": 2, "creation_date": "2022-10-26T16:00:57.168Z", "last_update": "2022-10-26T16:00:57.168Z"}}, {"model": "press.post", "pk": 678, "fields": {"title": "Natasha Lyonne Decodes a Murder Mystery in First Teaser for Rian Johnson’s ‘Poker Face’ (Video)", "body": "The Peacock series, which marks the \"Knives Out\" director's first foray into TV, premieres in January", "image_link": "https://www.youtube.com/embed/UH5uGZ9SW7A", "word_cloud_link": null, "source_link": "https://www.thewrap.com/natasha-lyonne-rian-johnson-poker-face-teaser-video/", "source_label": "thewrap", "status": "PUBLISHED", "author": 322, "category": 2, "creation_date": "2022-10-26T16:00:58.791Z", "last_update": "2022-10-26T16:00:58.791Z"}}, {"model": "press.post", "pk": 679, "fields": {"title": "Global Collaboration is Key to Saving Billions for Solar Module Production", "body": "The world will need to deploy renewable energy at an unprecedented speed and scale to reduce carbon emissions that are drive climate change. The option of solar energy promises to play a crucial role especially if the price of production continues to decline. A study published in Nature supports this concept.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/780906/?sc=rssn", "source_label": "newswise", "status": "PUBLISHED", "author": 323, "category": 2, "creation_date": "2022-10-26T16:01:00.537Z", "last_update": "2022-10-26T16:01:00.537Z"}}, {"model": "press.post", "pk": 680, "fields": {"title": "College Football Picks: Week 9 Predictions for Every Game", "body": "College football teams across the nation have turned their focus to bowl eligibility, with only a handful of teams building the necessary resume to compete for...", "image_link": "https://media.bleacherreport.com/image/upload/v1666238703/af7xgmshjm2mknf73ayj.jpg", "word_cloud_link": null, "source_link": "https://bleacherreport.com/articles/10052957-college-football-picks-week-9-predictions-for-every-game", "source_label": "Bleacher Report", "status": "PUBLISHED", "author": 324, "category": 2, "creation_date": "2022-10-26T16:01:02.449Z", "last_update": "2022-10-26T16:01:02.449Z"}}, {"model": "press.post", "pk": 681, "fields": {"title": "The Fickle Influence Of Politics On Stock Prices", "body": "The Fickle Influence Of Politics On Stock Prices", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4549325-fickle-influence-of-politics-stock-prices?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-26T16:01:02.601Z", "last_update": "2022-10-26T16:01:02.601Z"}}, {"model": "press.post", "pk": 682, "fields": {"title": "A Mia Goth Halloween: Movies Other Than ‘X’ and ‘Pearl’", "body": "She's a f*cking star", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/miagoth.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/26/a-mia-goth-halloween/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-26T16:01:02.729Z", "last_update": "2022-10-26T16:01:02.729Z"}}, {"model": "press.post", "pk": 683, "fields": {"title": "Scarborough Says Fetterman Is ‘Obviously Impaired’ Following His Debate Performance", "body": "'The left want to pretend it doesn't exist'", "image_link": null, "word_cloud_link": null, "source_link": "https://dailycaller.com/2022/10/26/scarborough-fetterman-impaired-debate-performance/", "source_label": "dailycaller", "status": "PUBLISHED", "author": 325, "category": 2, "creation_date": "2022-10-26T16:01:05.163Z", "last_update": "2022-10-26T16:01:05.163Z"}}, {"model": "press.post", "pk": 684, "fields": {"title": "Kwankwaso picks Nov 1st  to unveil Presidential Blueprint", "body": "Tribune OnlineKwankwaso picks Nov 1st  to unveil Presidential BlueprintThe presidential candidate of the New Nigeria Peoples Party (NNPP) Dr. Rabiu Musa Kwankwaso(RMK) has picked November 1, 2022 as a date for the unveiling of his presidential blueprint. This is just as the party while reacting to security threat alerts raised by the US and UK, said the council had a competent and robust security committee tasked […]Kwankwaso picks Nov 1st  to unveil Presidential BlueprintTribune Online", "image_link": null, "word_cloud_link": null, "source_link": "https://tribuneonlineng.com/kwankwaso-picks-nov-1st-to-unveil-presidential-blueprint/", "source_label": "tribune", "status": "PUBLISHED", "author": 326, "category": 2, "creation_date": "2022-10-26T16:01:08.241Z", "last_update": "2022-10-26T16:01:08.241Z"}}, {"model": "press.post", "pk": 685, "fields": {"title": "New home sales plunge 11% in September amid rising mortgage rate", "body": "Sales plummeted 17.6% on a year-on-year basis in September. They peaked at a rate of 993,000 units in January 2021, which was the highest level since the end of 2006.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/home-sales-september.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/26/new-home-sales-plunge-11-in-september/", "source_label": "Post", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-26T16:01:08.407Z", "last_update": "2022-10-26T16:01:08.407Z"}}, {"model": "press.post", "pk": 686, "fields": {"title": "Tom Brady says he’s ‘never quit on anything’ amid Gisele Bündchen divorce rumors", "body": "Tom Brady says he's \"never quit on anything in [his] life\" amid rumors that he and his wife Gisele Bündchen are headed for a divorce.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/newspress-collage-24406027-1666793205958.jpg?quality=90&strip=all&1666779155", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/26/tom-brady-says-hes-never-quit-on-anything-amid-divorce-rumors/", "source_label": "Post", "status": "PUBLISHED", "author": 327, "category": 2, "creation_date": "2022-10-26T16:01:10.967Z", "last_update": "2022-10-26T16:01:10.967Z"}}, {"model": "press.post", "pk": 687, "fields": {"title": "‘Hard for me to say’ whether Emergencies Act was necessary: Ottawa officer", "body": "OTTAWA — A senior Ottawa police officer says the federal Emergencies Act was helpful to clear “Freedom Convoy” protesters, but he doesn’t know whether it was necessary. Supt. Robert Bernier, who oversaw the Ottawa police command centre for a portion of the demonstrations in February, is continuing his testimony today at a public inquiry into […]", "image_link": null, "word_cloud_link": null, "source_link": "https://torontosun.com/news/national/hard-for-me-to-say-whether-emergencies-act-was-necessary-ottawa-officer", "source_label": "torontosun", "status": "PUBLISHED", "author": 328, "category": 2, "creation_date": "2022-10-26T16:01:13.493Z", "last_update": "2022-10-26T16:01:13.493Z"}}, {"model": "press.post", "pk": 688, "fields": {"title": "Video shows moment 5.1 earthquake shook northern California", "body": "So far, nearly 19,000 Californians reported that they felt the ground move after a 5.1 earthquake, according to the U.S. Geological Survey.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/California.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/26/video-shows-when-5-1-earthquake-shook-northern-california/", "source_label": "Post", "status": "PUBLISHED", "author": 329, "category": 2, "creation_date": "2022-10-26T16:01:16.260Z", "last_update": "2022-10-26T16:01:16.260Z"}}, {"model": "press.post", "pk": 689, "fields": {"title": "I tried to keep a poker face on a rollercoaster to win husband’s bet", "body": "It was a couldn't-contain-her-joy ride. ", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/roller-coaster-2.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/26/wife-tries-to-maintain-poker-face-on-a-rollercoaster/", "source_label": "Post", "status": "PUBLISHED", "author": 33, "category": 2, "creation_date": "2022-10-26T16:01:16.371Z", "last_update": "2022-10-26T16:01:16.371Z"}}, {"model": "press.post", "pk": 690, "fields": {"title": "Neoadjuvant Immunotherapy with Relatlimab and Nivolumab Is Safe and Effective in Stage III Melanoma", "body": "Giving the combination of immune checkpoint inhibitors relatlimab and nivolumab to patients with stage III melanoma before surgery was safe and completely cleared all viable tumor in 57% of patients in a Phase II study, researchers from The University of Texas MD Anderson Cancer Center reported in Nature.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/780871/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 330, "category": 2, "creation_date": "2022-10-26T16:01:18.520Z", "last_update": "2022-10-26T16:01:18.520Z"}}, {"model": "press.post", "pk": 691, "fields": {"title": "Power of the Pocketbook: An Ethicist Weighs in on Ethical Consumption", "body": "Binghamton University Philosophy Professor Nicole Hassoun considers the global health responsibilities of pharmaceutical companies, and makes the case for a new kind of ethical investment in public health.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781066/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 331, "category": 2, "creation_date": "2022-10-26T16:01:20.503Z", "last_update": "2022-10-26T16:01:20.504Z"}}, {"model": "press.post", "pk": 692, "fields": {"title": "Nurse Residency Program at MedStar Washington Hospital Center Earns Prestigious Re-accreditation from CCNE", "body": "The Vizient/AACN(tm) Nurse Residency Program (NRP) at MedStar Washington Hospital Center has once again earned accreditation from the Commission on Collegiate Nursing Education (CCNE). It is the only CCNE-accredited NRP in the nation's capital.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781063/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 332, "category": 2, "creation_date": "2022-10-26T16:01:22.318Z", "last_update": "2022-10-26T16:01:22.318Z"}}, {"model": "press.post", "pk": 693, "fields": {"title": "Tlou Energy shuts in well at Lesedi project to save additional costs", "body": "(marketscreener.com) Tlou Energy Ltd on Wednesday said it has shut in one of its wells at Lesedi to reduce production costs while work continues elsewhere on the project.Tlou Energy is an Australia-based, Botswana focused energy solutions provider. Its flagship asset in Botswana is the Lesedi gas-to-power project, which consists of three prospecting licences and a...https://www.marketscreener.com/quote/stock/TLOU-ENERGY-LIMITED-12911097/news/Tlou-Energy-shuts-in-well-at-Lesedi-project-to-save-additional-costs-42095119/?utm_medium=RSS&utm_content=20221026", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/TLOU-ENERGY-LIMITED-12911097/news/Tlou-Energy-shuts-in-well-at-Lesedi-project-to-save-additional-costs-42095119/?utm_medium=RSS&utm_content=20221026", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-26T16:01:22.363Z", "last_update": "2022-10-26T16:01:22.363Z"}}, {"model": "press.post", "pk": 694, "fields": {"title": "Here's Why the New Doctors and Tom Baker Weren't in the Last Doctor Who Special", "body": "Jodie Whittaker’s final outing as the star of Doctor Who, “The Power of the Doctor,” was a total mess, but you have to say this about it—it sure starred a lot of previous Doctors.Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://gizmodo.com/doctor-who-jodie-whittaker-david-tennant-tom-baker-1849704331", "source_label": "gizmodo", "status": "PUBLISHED", "author": 159, "category": 2, "creation_date": "2022-10-26T16:01:22.415Z", "last_update": "2022-10-26T16:01:22.415Z"}}, {"model": "press.post", "pk": 695, "fields": {"title": "REVIEW | Huawei Nova 10 premium smartphone", "body": "In 2022, it is difficult to recommend a premium smartphone that does not have 5G connectivity, and the continued absence of Google Mobile Services may seem restrictive and inconvenient for the average user. While it is marketed by Huawei as an excellent selfie shooter, the front-facing cameras are mostly feature-rich, and it’s actually the rear cameras that redeem the device. As an all-rounder main driver, however, the Nova 10 packs a sterling combination of processing power, imaging performance, vivid display, and battery life. The post REVIEW | Huawei Nova 10 premium smartphone appeared...", "image_link": null, "word_cloud_link": null, "source_link": "/2022/10/26/review-huawei-nova-10-premium-smartphone/?utm_source=rss&utm_medium=rss&utm_campaign=review-huawei-nova-10-premium-smartphone", "source_label": "newsbytes", "status": "PUBLISHED", "author": 333, "category": 2, "creation_date": "2022-10-26T16:01:24.312Z", "last_update": "2022-10-26T16:01:24.312Z"}}, {"model": "press.post", "pk": 696, "fields": {"title": "‘Maritime Mysteries and Monsters’ is Freaky Fun Education", "body": "Sea monster myths, formaldehyde-filled jars and the rare, deep-sea tapertail ribbonfish highlight the Museum of Natural History’s new exhibit", "image_link": null, "word_cloud_link": null, "source_link": "https://www.goodtimes.sc/maritime-mysteries-and-monsters-is-freaky-fun-education/?utm_source=rss&utm_medium=rss&utm_campaign=maritime-mysteries-and-monsters-is-freaky-fun-education", "source_label": "gtweekly", "status": "PUBLISHED", "author": 334, "category": 2, "creation_date": "2022-10-26T16:01:26.356Z", "last_update": "2022-10-26T16:01:26.356Z"}}, {"model": "press.post", "pk": 697, "fields": {"title": "Amazon Canada opens robotics facility near Ottawa", "body": "Amazon Canada is celebrating the opening of its newest robotics facility, YOW3, in Barrhaven, Ontario. YOW3 is the only facility of its kind in Canada and is one of five globally.   It aims to create more than 2,500 jobs and offer an opportunity for employees to work alongside new technology. “This new state-of-the-art fulfillment centre", "image_link": "https://i.itworldcanada.com/wp-content/uploads/2022/10/20221020MZ019-1-696x465-1.jpeg", "word_cloud_link": null, "source_link": "https://www.itworldcanada.com/article/amazon-canada-opens-robotics-facility-near-ottawa/510008", "source_label": "itworldcanada", "status": "PUBLISHED", "author": 335, "category": 2, "creation_date": "2022-10-26T16:01:28.350Z", "last_update": "2022-10-26T16:01:28.350Z"}}, {"model": "press.post", "pk": 698, "fields": {"title": "Releasing Kanu won’t bring crisis but solution to rising tension in South-East, Igbo monarchs, clergy reply FG", "body": "Tribune OnlineReleasing Kanu won’t bring crisis but solution to rising tension in South-East, Igbo monarchs, clergy reply FGTraditional rulers and representatives of clergymen in Igbo land say, the release of the Leader of the Indigenous People of Biafra (IPOB), Mazi Nnamdi Kanu, would not instigate a crisis in the South East. This was in reaction to the federal government’s refusal to release the IPOB Leader despite the earlier judgement of the Court […]Releasing Kanu won’t bring crisis but solution to rising tension in South-East, Igbo monarchs, clergy reply FGTribune...", "image_link": null, "word_cloud_link": null, "source_link": "https://tribuneonlineng.com/releasing-kanu-wont-bring-crisis-but-solution-to-rising-tension-in-south-east-igbo-monarchs-clergy-reply-fg/", "source_label": "tribune", "status": "PUBLISHED", "author": 336, "category": 2, "creation_date": "2022-10-26T16:01:30.116Z", "last_update": "2022-10-26T16:01:30.116Z"}}, {"model": "press.post", "pk": 699, "fields": {"title": "Make crucial traffic data available digitally, European Parliament Transport Committee says", "body": "Data on speed limits, roadworks or accidents should be available in digital format, to ensure road users are safer and better informed, the European Parliament’s… Read More »", "image_link": "https://www.neweurope.eu/wp-content/uploads/2022/10/1666775634241_20221026_EP-138974A_PB9_046_MOBILE.jpeg", "word_cloud_link": null, "source_link": "https://www.neweurope.eu/article/make-crucial-traffic-data-available-digitally-european-parliament-transport-committee-says/", "source_label": "neurope", "status": "PUBLISHED", "author": 337, "category": 2, "creation_date": "2022-10-26T16:01:31.887Z", "last_update": "2022-10-26T16:01:31.888Z"}}, {"model": "press.post", "pk": 700, "fields": {"title": "Strike Fighter Squadron (VFA) 136 participates in Mare Aperto [Image 1 of 4]", "body": "221024-N-N0777-1003 IONIAN SEA (Oct. 24, 2022) An F-A-18E Super hornet, attached to Strike Fighter Squadron (VFA) 136, flies with an Italian F-35B above the Ionian Sea during Mare Aperto, Oct. 24, 2022. Mare Aperto 22-2 is an Italian Navy-led joint and combined high-end maritime exercise designed to test the combat readiness of participating forces through realistic multi-domain scenarios. The George H.W. Bush Carrier Strike Group is on a scheduled deployment in the U.S. Naval Forces Europe area of operations, employed by U.S. Sixth Fleet to defend U.S., allied, and partner interests. (U.S...", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7480733/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7480733/strike-fighter-squadron-vfa-136-participates-mare-aperto", "source_label": "dvidshub", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-26T16:01:32.036Z", "last_update": "2022-10-26T16:01:32.036Z"}}, {"model": "press.post", "pk": 701, "fields": {"title": "Strike Fighter Squadron (VFA) 136 participates in Mare Aperto [Image 2 of 4]", "body": "221024-N-N0777-1004 IONIAN SEA (Oct. 24, 2022) An F-A-18E Super hornet, attached to Strike Fighter Squadron (VFA) 136, flies with an Italian F-35B above the Ionian Sea during Mare Aperto, Oct. 24, 2022. Mare Aperto 22-2 is an Italian Navy-led joint and combined high-end maritime exercise designed to test the combat readiness of participating forces through realistic multi-domain scenarios. The George H.W. Bush Carrier Strike Group is on a scheduled deployment in the U.S. Naval Forces Europe area of operations, employed by U.S. Sixth Fleet to defend U.S., allied, and partner interests. (U.S...", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7480736/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7480736/strike-fighter-squadron-vfa-136-participates-mare-aperto", "source_label": "dvidshub", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-26T16:01:32.139Z", "last_update": "2022-10-26T16:01:32.139Z"}}, {"model": "press.post", "pk": 702, "fields": {"title": "Block (Code) Party: A Q&A with Siyona Gangidi and Richa Arora", "body": "The sourdough starter and the backyard shiitake logs you nursed during pandemic lockdown might be cool, but they’ll never be “Nine-year-old learns coding and builds a jam band app” cool. Sorry!The post Block (Code) Party: A Q&A with Siyona Gangidi and Richa Arora appeared first on Arkansas Times.", "image_link": null, "word_cloud_link": null, "source_link": "https://arktimes.com/arkansas-blog/2022/10/26/block-code-party-a-qa-with-siyona-gangidi-and-richa-arora", "source_label": "arktimes", "status": "PUBLISHED", "author": 338, "category": 2, "creation_date": "2022-10-26T16:01:33.977Z", "last_update": "2022-10-26T16:01:33.977Z"}}, {"model": "press.post", "pk": 703, "fields": {"title": "Strike Fighter Squadron (VFA) 136 participates in Mare Aperto [Image 3 of 4]", "body": "221024-N-N0777-1001 IONIAN SEA (Oct. 24, 2022) An F-A-18E Super hornet, attached to Strike Fighter Squadron (VFA) 136, flies in formation with an Italian F-35B and Italian AV-8B Harriers above the Ionian Sea during Mare Aperto, Oct. 24, 2022. Mare Aperto 22-2 is an Italian Navy-led joint and combined high-end maritime exercise designed to test the combat readiness of participating forces through realistic multi-domain scenarios. The George H.W. Bush Carrier Strike Group is on a scheduled deployment in the U.S. Naval Forces Europe area of operations, employed by U.S. Sixth Fleet to defend U.S...", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7480737/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7480737/strike-fighter-squadron-vfa-136-participates-mare-aperto", "source_label": "dvidshub", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-26T16:01:34.021Z", "last_update": "2022-10-26T16:01:34.021Z"}}, {"model": "press.post", "pk": 704, "fields": {"title": "Strike Fighter Squadron (VFA) 136 participates in Mare Aperto [Image 4 of 4]", "body": "221024-N-N0777-1002 IONIAN SEA (Oct. 24, 2022) An F-A-18E Super hornet, attached to Strike Fighter Squadron (VFA) 136, flies in formation with an Italian F-35B and Italian AV-8B Harriers above the Ionian Sea during Mare Aperto, Oct. 24, 2022. Mare Aperto 22-2 is an Italian Navy-led joint and combined high-end maritime exercise designed to test the combat readiness of participating forces through realistic multi-domain scenarios. The George H.W. Bush Carrier Strike Group is on a scheduled deployment in the U.S. Naval Forces Europe area of operations, employed by U.S. Sixth Fleet to defend U.S...", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7480738/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7480738/strike-fighter-squadron-vfa-136-participates-mare-aperto", "source_label": "dvidshub", "status": "PUBLISHED", "author": 339, "category": 2, "creation_date": "2022-10-26T16:01:35.909Z", "last_update": "2022-10-26T16:01:35.909Z"}}, {"model": "press.post", "pk": 705, "fields": {"title": "Gunfire in Chicago alley kills boy who was washing his hands", "body": "Chicago police say a 7-year-old boy was killed by a stray bullet while washing his hands in the bathroom of his family home", "image_link": null, "word_cloud_link": null, "source_link": "https://www.mymotherlode.com/news/national/2808417/gunfire-in-chicago-alley-kills-boy-who-was-washing-his-hands.html", "source_label": "mymotherlode", "status": "PUBLISHED", "author": 259, "category": 2, "creation_date": "2022-10-27T16:01:00.361Z", "last_update": "2022-10-27T16:01:00.361Z"}}, {"model": "press.post", "pk": 706, "fields": {"title": "En picada aprobación de la gestión de Biden", "body": "Estados Unidos se prepara para realizar, el próximo 8 de noviembre, las elecciones intermedias para renovar 435 escaños de la Cámara de Representantes y 34 del Senado", "image_link": null, "word_cloud_link": null, "source_link": "http://www.escambray.cu/2022/en-picada-aprobacion-de-la-gestion-de-biden/", "source_label": "escambray", "status": "PUBLISHED", "author": 92, "category": 2, "creation_date": "2022-10-27T16:01:00.424Z", "last_update": "2022-10-27T16:01:00.424Z"}}, {"model": "press.post", "pk": 707, "fields": {"title": "How to pre-order Dead Island 2: retailers, editions, and bonuses", "body": "Whether you've been waiting since 2014 or are just hearing about it, here are all the details on how to pre-order Dead Island 2 and what the editions come with.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2022/08/Dead-Island-2-2022-main-crop.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/gaming/how-to-pre-order-dead-island-2/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 152, "category": 2, "creation_date": "2022-10-27T16:01:00.490Z", "last_update": "2022-10-27T16:01:00.490Z"}}, {"model": "press.post", "pk": 708, "fields": {"title": "Brad Marchand Will Make Season Debut In Bruins-Red Wings", "body": "Jim Montgomery said he’d “love to see” Brad Marchand play Thursday, five weeks ahead of his timeline to return. Well, the Boston Bruins head coach will get his wish. Marchand participated fully in Wednesday’s practice, taking shifts with Patrice Bergeron and Jake DeBrusk. After practice, Montgomery said he was “begging doctors every day” to get […]The post Brad Marchand Will Make Season Debut In Bruins-Red Wings appeared first on NESN.com.", "image_link": "https://nesn.com/wp-content/uploads/sites/5/2022/02/brad_marchand-2.jpg", "word_cloud_link": null, "source_link": "https://nesn.com/2022/10/brad-marchand-will-make-season-debut-in-bruins-red-wings/", "source_label": "nesn", "status": "PUBLISHED", "author": 340, "category": 2, "creation_date": "2022-10-27T16:01:02.623Z", "last_update": "2022-10-27T16:01:02.623Z"}}, {"model": "press.post", "pk": 709, "fields": {"title": "AE Wealth Management LLC Has $7.83 Million Holdings in Edison International (NYSE:EIX)", "body": "AE Wealth Management LLC lifted its stake in Edison International (NYSE:EIX – Get Rating) by 52.9% in the second quarter, according to the company in its most recent filing with the Securities and Exchange Commission. The institutional investor owned 123,770 shares of the utilities provider’s stock after buying an additional 42,822 shares during the period. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/ae-wealth-management-llc-has-7-83-million-holdings-in-edison-international-nyseeix.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:02.722Z", "last_update": "2022-10-27T16:01:02.722Z"}}, {"model": "press.post", "pk": 710, "fields": {"title": "LGT Fund Management Co Ltd. Sells 958 Shares of The Home Depot, Inc. (NYSE:HD)", "body": "LGT Fund Management Co Ltd. reduced its stake in The Home Depot, Inc. (NYSE:HD – Get Rating) by 2.9% during the second quarter, according to the company in its most recent 13F filing with the SEC. The firm owned 31,844 shares of the home improvement retailer’s stock after selling 958 shares during the quarter. Home […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/lgt-fund-management-co-ltd-sells-958-shares-of-the-home-depot-inc-nysehd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:02.787Z", "last_update": "2022-10-27T16:01:02.787Z"}}, {"model": "press.post", "pk": 711, "fields": {"title": "Wolverine Asset Management LLC Has $2.04 Million Stock Holdings in First Horizon Co. (NYSE:FHN)", "body": "Wolverine Asset Management LLC increased its position in shares of First Horizon Co. (NYSE:FHN – Get Rating) by 45.1% during the 2nd quarter, HoldingsChannel.com reports. The fund owned 93,360 shares of the financial services provider’s stock after purchasing an additional 29,000 shares during the period. Wolverine Asset Management LLC’s holdings in First Horizon were worth […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/wolverine-asset-management-llc-has-2-04-million-stock-holdings-in-first-horizon-co-nysefhn.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:02.946Z", "last_update": "2022-10-27T16:01:02.946Z"}}, {"model": "press.post", "pk": 712, "fields": {"title": "Wolverine Asset Management LLC Purchases Shares of 12,000 Quanta Services, Inc. (NYSE:PWR)", "body": "Wolverine Asset Management LLC acquired a new position in Quanta Services, Inc. (NYSE:PWR – Get Rating) during the second quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The firm acquired 12,000 shares of the construction company’s stock, valued at approximately $1,504,000. Several other large investors […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/wolverine-asset-management-llc-purchases-shares-of-12000-quanta-services-inc-nysepwr.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:03.028Z", "last_update": "2022-10-27T16:01:03.028Z"}}, {"model": "press.post", "pk": 713, "fields": {"title": "Harvest Volatility Management LLC Increases Stake in The Home Depot, Inc. (NYSE:HD)", "body": "Harvest Volatility Management LLC increased its holdings in The Home Depot, Inc. (NYSE:HD – Get Rating) by 9.5% in the second quarter, according to its most recent 13F filing with the SEC. The institutional investor owned 7,419 shares of the home improvement retailer’s stock after purchasing an additional 643 shares during the period. Harvest Volatility […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/harvest-volatility-management-llc-increases-stake-in-the-home-depot-inc-nysehd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:03.105Z", "last_update": "2022-10-27T16:01:03.105Z"}}, {"model": "press.post", "pk": 714, "fields": {"title": "Assetmark Inc. Raises Holdings in Marriott International, Inc. (NASDAQ:MAR)", "body": "Assetmark Inc. boosted its holdings in shares of Marriott International, Inc. (NASDAQ:MAR – Get Rating) by 77.6% during the 2nd quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The firm owned 19,367 shares of the company’s stock after buying an additional 8,462 shares during the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/assetmark-inc-raises-holdings-in-marriott-international-inc-nasdaqmar.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:03.369Z", "last_update": "2022-10-27T16:01:03.369Z"}}, {"model": "press.post", "pk": 715, "fields": {"title": "AE Wealth Management LLC Sells 2,270 Shares of Old Dominion Freight Line, Inc. (NASDAQ:ODFL)", "body": "AE Wealth Management LLC reduced its holdings in shares of Old Dominion Freight Line, Inc. (NASDAQ:ODFL – Get Rating) by 5.7% in the second quarter, according to its most recent filing with the SEC. The fund owned 37,250 shares of the transportation company’s stock after selling 2,270 shares during the period. AE Wealth Management LLC’s […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/ae-wealth-management-llc-sells-2270-shares-of-old-dominion-freight-line-inc-nasdaqodfl.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:03.517Z", "last_update": "2022-10-27T16:01:03.517Z"}}, {"model": "press.post", "pk": 716, "fields": {"title": "10,000 Shares in Waste Management, Inc. (NYSE:WM) Bought by Wolverine Asset Management LLC", "body": "Wolverine Asset Management LLC bought a new position in Waste Management, Inc. (NYSE:WM – Get Rating) during the second quarter, according to the company in its most recent filing with the SEC. The firm bought 10,000 shares of the business services provider’s stock, valued at approximately $1,529,000. Other large investors have also added to or […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/10000-shares-in-waste-management-inc-nysewm-bought-by-wolverine-asset-management-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:03.713Z", "last_update": "2022-10-27T16:01:03.713Z"}}, {"model": "press.post", "pk": 717, "fields": {"title": "Wolverine Asset Management LLC Purchases Shares of 162,419 Denali Capital Acquisition Corp. (NASDAQ:DECAU)", "body": "Wolverine Asset Management LLC purchased a new stake in shares of Denali Capital Acquisition Corp. (NASDAQ:DECAU – Get Rating) in the second quarter, according to its most recent disclosure with the SEC. The firm purchased 162,419 shares of the company’s stock, valued at approximately $1,619,000. Other institutional investors and hedge funds have also recently added […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/wolverine-asset-management-llc-purchases-shares-of-162419-denali-capital-acquisition-corp-nasdaqdecau.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:03.873Z", "last_update": "2022-10-27T16:01:03.873Z"}}, {"model": "press.post", "pk": 718, "fields": {"title": "The Home Depot, Inc. (NYSE:HD) Stock Holdings Increased by AE Wealth Management LLC", "body": "AE Wealth Management LLC increased its position in The Home Depot, Inc. (NYSE:HD – Get Rating) by 6.3% during the second quarter, according to its most recent Form 13F filing with the SEC. The fund owned 163,192 shares of the home improvement retailer’s stock after buying an additional 9,606 shares during the period. AE Wealth […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/the-home-depot-inc-nysehd-stock-holdings-increased-by-ae-wealth-management-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:04.016Z", "last_update": "2022-10-27T16:01:04.016Z"}}, {"model": "press.post", "pk": 719, "fields": {"title": "Signet Investment Advisory Group Inc. Buys 88 Shares of The Home Depot, Inc. (NYSE:HD)", "body": "Signet Investment Advisory Group Inc. raised its holdings in shares of The Home Depot, Inc. (NYSE:HD – Get Rating) by 1.3% during the second quarter, according to the company in its most recent 13F filing with the Securities and Exchange Commission. The firm owned 7,006 shares of the home improvement retailer’s stock after purchasing an […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/27/signet-investment-advisory-group-inc-buys-88-shares-of-the-home-depot-inc-nysehd.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-27T16:01:04.272Z", "last_update": "2022-10-27T16:01:04.273Z"}}, {"model": "press.post", "pk": 720, "fields": {"title": "Film Room: Terrell Edmunds ‘Proving It’ on His Prove-It Deal", "body": "After Terrell Edmunds was picked by the Pittsburgh Steelers in the first round of the 2018 NFL Draft, he was greeted with obvious expectations. Expectations of any first-round pick are high, but in a football-crazed town like Pittsburgh, the lofty expectations are even higher. If you told me when Edmunds was drafted that he would […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/10/film-room-terrell-edmunds-proving-it-on-his-prove-it-deal/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 341, "category": 2, "creation_date": "2022-10-27T16:01:06.838Z", "last_update": "2022-10-27T16:01:06.838Z"}}, {"model": "press.post", "pk": 721, "fields": {"title": "City's \"Other Sides\" Revealed", "body": "Attorney Mike Jefferson and author Nicholas Dawidoff in conversation at Stetson event Wednesday evening. When Fleming ​“Nick” Norcott Jr. was growing up in the Dwight/Kensington neighborhood in the 1940s and ​’50s, Prospect Hill wasn’t the only ​“other side” of town that was off limits to Black families like his. “There were a lot of ​‘other sides’ then,” the retired former state Supreme Court justice remembered at a Wednesday evening book talk. ​“As a young boy, a pre-teen, a teen, we couldn’t go to Westville. We couldn’t...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.newhavenindependent.org/article/dawidoff_jefferson", "source_label": "newhavenindependent", "status": "PUBLISHED", "author": 342, "category": 2, "creation_date": "2022-10-27T16:01:09.407Z", "last_update": "2022-10-27T16:01:09.408Z"}}, {"model": "press.post", "pk": 722, "fields": {"title": "p.s. noted that Brexit Tories", "body": "In reply to Power Balance Shifts asp.s. noted that Brexit Tories not planning to do the fracking thing to the English countryside (at least for now)Yay!! A result at #PMQs! Yesterday new PM vowed to fix his reckless predecessor's mistakes. So I asked if he'll start by reversing green light she gave to #fracking. And he gave a commitment to stick with manifesto moratorium. And if he backtracks, we’ll never let him forget!— Caroline Lucas (@CarolineLucas) October 26, 2022Number 10 confirms the fracking ban is back in place; you'd assume we weren't currently suffering sky-high energy bills...", "image_link": null, "word_cloud_link": null, "source_link": "http://dagblog.com/comment/321442#comment-321442", "source_label": "dagblog", "status": "PUBLISHED", "author": 343, "category": 2, "creation_date": "2022-10-27T16:01:12.232Z", "last_update": "2022-10-27T16:01:12.232Z"}}, {"model": "press.post", "pk": 723, "fields": {"title": "Pentagon’s Strategy Says China and Russia Pose More Dangerous Challenges", "body": "A new document describes the military’s response to a new era in broad terms and guides Pentagon policy and budget decisions, but it lacks details.", "image_link": "https://static01.nyt.com/images/2022/10/27/us/politics/27DC-PENTAGON-STRATEGY_2/merlin_201292029_4abcfb96-1556-4ae5-a1af-ceec43b85a45-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2022/10/27/us/politics/biden-military-russia-china.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 344, "category": 2, "creation_date": "2022-10-27T16:01:14.840Z", "last_update": "2022-10-27T16:01:14.840Z"}}, {"model": "press.post", "pk": 724, "fields": {"title": "Festival de Cine de Morelia acoge Pinocchio de Guillermo del Toro", "body": "Imagen principal: La versión del mexicano Guillermo del Toro del clásico de la literatura y el cine Pinocchio, prestigia hoy la selección del vigésimo Festival Internacional de Cine de Morelia, que acogió la presentación de esta entrega.Estrenado recientemente durante la cita homónima de Londres, Reino Unido, el filme toma como referencia directa la historia del muñeco de madera que ansía ser niño escrita por el italiano Carlo Collodi (1883), en tanto demuestra el poder de la animación como un arte para todos los públicos, según apuntó el realizador vía telamática.", "image_link": null, "word_cloud_link": null, "source_link": "http://cubasi.cu/en/node/261988", "source_label": "CubaSi.cu", "status": "PUBLISHED", "author": 345, "category": 2, "creation_date": "2022-10-27T16:01:17.534Z", "last_update": "2022-10-27T16:01:17.534Z"}}, {"model": "press.post", "pk": 725, "fields": {"title": "Hollywood sign makeover complete ahead of 100th anniversary", "body": "A makeover for the iconic Hollywood sign in Los Angeles is now complete a crew of 10 local painters scaled steep, rocky terrain to reach the iconic letters.The post Hollywood sign makeover complete ahead of 100th anniversary appeared first on KYMA.", "image_link": null, "word_cloud_link": null, "source_link": "https://kyma.com/play/entertainment/2022/10/27/hollywood-sign-makeover-complete-ahead-of-100th-anniversary/", "source_label": "kswt", "status": "PUBLISHED", "author": 108, "category": 2, "creation_date": "2022-10-27T16:01:18.077Z", "last_update": "2022-10-27T16:01:18.077Z"}}, {"model": "press.post", "pk": 726, "fields": {"title": "After abortion vote, Kansas lawmakers’ power back on ballot", "body": "Kansas voters are being asked to give their legislators greater power over how state government operates", "image_link": null, "word_cloud_link": null, "source_link": "https://www.mymotherlode.com/news/national/general-election/2808402/after-abortion-vote-kansas-lawmakers-power-back-on-ballot.html", "source_label": "mymotherlode", "status": "PUBLISHED", "author": 259, "category": 2, "creation_date": "2022-10-27T16:01:18.216Z", "last_update": "2022-10-27T16:01:18.216Z"}}, {"model": "press.post", "pk": 727, "fields": {"title": "Temporary emergency room opens on Fort Myers Beach", "body": "The Town of Fort Myers Beach opened a temporary emergency room.The post Temporary emergency room opens on Fort Myers Beach appeared first on ABC7 Southwest Florida.", "image_link": null, "word_cloud_link": null, "source_link": "https://abc-7.com/news/local/lee-county/2022/10/27/temporary-emergency-room-opens-on-fort-myers-beach/", "source_label": "abc-7", "status": "PUBLISHED", "author": 346, "category": 2, "creation_date": "2022-10-27T16:01:20.344Z", "last_update": "2022-10-27T16:01:20.344Z"}}, {"model": "press.post", "pk": 728, "fields": {"title": "CAJON VALLEY SCHOOL BOARD RACE: THREE SEATS ARE UP, BUT ONLY TWO WILL BE ON BALLOT – AND ONE HAS ONLY A WRITE-IN CANDIDATE QUALIFIED", "body": "Cajon Valley School Districtelection 2022El CajonEducationPoliticsCommunitiesEl CajonBy Robin N. KendallPhoto: Board President Tamara Otero, the only candidate who returned ECM’s questionnaire of five candidates running in three districts.October 27, 2022 (El Cajon) -- This election year, voters in the Cajon Valley Union School District may or may not see candidates on the ballot for school board trustees, depending on which area they live in. Unlike school districts with “at large” trustees, this big district is divided into five areas, with a balanced number of residents in each area...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.eastcountymagazine.org/cajon-valley-school-board-race-three-seats-are-only-two-will-be-ballot-%E2%80%93-and-one-has-only-write", "source_label": "eastcountymagazine", "status": "PUBLISHED", "author": 347, "category": 2, "creation_date": "2022-10-27T16:01:22.539Z", "last_update": "2022-10-27T16:01:22.539Z"}}, {"model": "press.post", "pk": 729, "fields": {"title": "Rishi Sunak plans to fine people £10 for for every NHS appointment they miss", "body": "Mr. Sunak’s suggestion that patients would be fined everytime they miss an appointment has been condemned by the British Medical Association, the trade union for doctors.", "image_link": "https://www.bucksherald.co.uk/jpim-static/image/2022/10/27/12/GettyImages-1436691411.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.bucksherald.co.uk/read-this/rishi-sunak-plans-to-fine-people-ps10-for-for-every-nhs-appointment-they-miss-3895823", "source_label": "buckinghamtoday", "status": "PUBLISHED", "author": 348, "category": 2, "creation_date": "2022-10-27T16:01:24.440Z", "last_update": "2022-10-27T16:01:24.440Z"}}, {"model": "press.post", "pk": 730, "fields": {"title": "Suitcase killer's mother says daughter who murdered her friend and dumped headless body is INNOCENT", "body": "The mother of Jemma Mitchell, who was jailed for murdering and beheading her friend in Wembley, says she is innocent and a 'loving, thoughtful woman'.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/28/15/63947839-0-image-a-43_1666966982940.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11365687/Suitcase-killers-mother-says-daughter-murdered-friend-dumped-headless-body-INNOCENT.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:12.211Z", "last_update": "2022-10-28T16:01:12.211Z"}}, {"model": "press.post", "pk": 731, "fields": {"title": "Bitcoin price due sub-$20K dip, traders warn amid claim miners ‘capitulating’", "body": "Miners may hit pause on the good times for BTC price action, one theory believes, as the weekend promises support tests. Bitcoin ( BTC) climbed back to $20,500 at the Oct. 28 Wall Street open as … Read Full StoryThe post Bitcoin price due sub-$20K dip, traders warn amid claim miners ‘capitulating’ appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/bitcoin-news/bitcoin-price-due-sub-20k-dip-traders-warn-amid-claim-miners-capitulating/", "source_label": "forextv", "status": "PUBLISHED", "author": 242, "category": 2, "creation_date": "2022-10-28T16:01:12.389Z", "last_update": "2022-10-28T16:01:12.389Z"}}, {"model": "press.post", "pk": 732, "fields": {"title": "EUR/USD back to the 0.9950 zone, up for the week but not that strong", "body": "On a weekly basis, EUR/USD is about to end with a 100-pip gain but the fact that is has pulled back more than 150 pips from the high, is a negative sign for euro bulls. The pair peaked near the … Read Full Story at source (may require registration)The post EUR/USD back to the 0.9950 zone, up for the week but not that strong appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/euro-eur/eur-usd-back-to-the-0-9950-zone-up-for-the-week-but-not-that-strong/", "source_label": "forextv", "status": "PUBLISHED", "author": 349, "category": 2, "creation_date": "2022-10-28T16:01:15.021Z", "last_update": "2022-10-28T16:01:15.021Z"}}, {"model": "press.post", "pk": 733, "fields": {"title": "Miranda Kerr is gorgeous in gold to celebrate with Tiffany & Co", "body": "Miranda Kerr hit the town yesterday in a short gold mini dress to celebrate the new LOCK collection by Tiffany & Co at Sunset Tower Hotel in Los Angeles.  As the very first Australian Victoria’s Secret model, it’s no wonder Miranda skyrocketed to fame and quickly became one of the", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/celebrity/miranda-kerr-is-gorgeous-in-gold-to-celebrate-with-tiffany-co/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 350, "category": 2, "creation_date": "2022-10-28T16:01:17.807Z", "last_update": "2022-10-28T16:01:17.807Z"}}, {"model": "press.post", "pk": 734, "fields": {"title": "Two adults suspected of murder-suicide in Oklahoma house fire that killed them and six children", "body": "Both parents suspected of killing their six children before taking their own lives", "image_link": "https://static.independent.co.uk/2022/10/28/04/newFile.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/world/americas/crime/oklahoma-house-fire-murder-suicide-investigation-b2212927.html", "source_label": "The Independent", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:17.887Z", "last_update": "2022-10-28T16:01:17.887Z"}}, {"model": "press.post", "pk": 735, "fields": {"title": "President and Vice donate GH¢100,000 to Poppy Fund", "body": "President Nana Addo Dankwa Akufo-Addo and his Vice, Dr Mahamudu Bawumia, have donated GH¢100,000 to the Poppy Fund, established by the Veterans Administration, Ghana (VAG) to support the welfare of the veterans and their widows.The post President and Vice donate GH¢100,000 to Poppy Fund appeared first on Ghana Business News.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.ghanabusinessnews.com/2022/10/28/president-and-vice-donate-gh%c2%a2100000-to-poppy-fund/?utm_source=rss&utm_medium=rss&utm_campaign=president-and-vice-donate-gh%25c2%25a2100000-to-poppy-fund", "source_label": "ghanabusinessnews", "status": "PUBLISHED", "author": 351, "category": 2, "creation_date": "2022-10-28T16:01:20.145Z", "last_update": "2022-10-28T16:01:20.145Z"}}, {"model": "press.post", "pk": 736, "fields": {"title": "What next for Twitter under Elon Musk?", "body": "It is the moment nobody was quite sure would actually ever happen: after months of drama, Elon Musk says his $44bn (£38bn) deal to buy Twitter is complete. He announced the big news on Twitter itself, of course, he has changed his bio to read “Chief Twit” and declared “the bird is freed”. Job done, as […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.ghanamma.com/2022/10/28/what-next-for-twitter-under-elon-musk/", "source_label": "Ghana MMA", "status": "PUBLISHED", "author": 194, "category": 2, "creation_date": "2022-10-28T16:01:20.333Z", "last_update": "2022-10-28T16:01:20.333Z"}}, {"model": "press.post", "pk": 737, "fields": {"title": "Airmen Unload Cargo Off A C-5M Galaxy [Image 1 of 4]", "body": "Airmen from the 1st Expeditionary Rescue Group and the 60th Air Mobility Wing, Travis Air Force Base., unload an HH-60 Pave Hawk helicopter along with other cargo from a C-5M Galaxy at an undisclosed location, Southwest Asia, Oct. 11, 2022. The C-5 provides heavy intercontinental-range strategic airlift capabilities and is able to carry oversized loads as one of the largest military aircraft in the world. (U.S. Air Force photo by Tech. Sgt. Jeffery Foster)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7484549/250x141_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7484549/airmen-unload-cargo-off-c-5m-galaxy", "source_label": "dvidshub", "status": "PUBLISHED", "author": 352, "category": 2, "creation_date": "2022-10-28T16:01:22.904Z", "last_update": "2022-10-28T16:01:22.904Z"}}, {"model": "press.post", "pk": 738, "fields": {"title": "Airmen Unload Cargo off A C-5M Galaxy [Image 2 of 4]", "body": "Airmen from the 1st Expeditionary Rescue Group and the 60th Air Mobility Wing, Travis Air Force Base., unload an HH-60 Pave Hawk helicopter from a C-5M Galaxy at an undisclosed location, Southwest Asia, Oct. 11, 2022. The primary mission of the Pave Hawk is to conduct personnel recovery operations into hostile environments to recover isolated personnel during war. (U.S. Air Force photo by Tech. Sgt. Jeffery Foster)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7484550/250x141_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7484550/airmen-unload-cargo-off-c-5m-galaxy", "source_label": "dvidshub", "status": "PUBLISHED", "author": 352, "category": 2, "creation_date": "2022-10-28T16:01:23.048Z", "last_update": "2022-10-28T16:01:23.048Z"}}, {"model": "press.post", "pk": 739, "fields": {"title": "Innofactor Plc: Share Repurchase 28.10.2022", "body": "(marketscreener.com) Innofactor Plc Announcement 28.10.2022      Innofactor Plc: Share Repurchase 28.10.2022    In the Helsinki Stock Exchange     Trade date 28.10.2022 Bourse trade Buy Share IFA1V Amount 12,080SharesAverage price/ share 0.9571EURTotal cost...https://www.marketscreener.com/quote/stock/INNOFACTOR-OYJ-1412558/news/Innofactor-Plc-Share-Repurchase-28-10-2022-42125296/?utm_medium=RSS&utm_content=20221028", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/INNOFACTOR-OYJ-1412558/news/Innofactor-Plc-Share-Repurchase-28-10-2022-42125296/?utm_medium=RSS&utm_content=20221028", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:23.185Z", "last_update": "2022-10-28T16:01:23.185Z"}}, {"model": "press.post", "pk": 740, "fields": {"title": "Pure Storage Named a Leader for Second Consecutive Year in 2022 Gartner® Magic Quadrant™ for Distributed File Systems and Object Storage", "body": "(marketscreener.com) MOUNTAIN VIEW, Calif., Oct. 28, 2022 /PRNewswire/ -- Pure Storage® , the IT pioneer that delivers the world's most advanced data storage technology and services, today announced it has been positioned by Gartner as a Leader in the Magic Quadrant for Distributed File Systems and Object Storage for both its Completeness of Vision and Ability...https://www.marketscreener.com/quote/stock/PURE-STORAGE-INC-24203395/news/Pure-Storage-Named-a-Leader-for-Second-Consecutive-Year-in-2022-Gartner-Magic-Quadrant-trade-for-D-42125297/?utm_medium=RSS&utm_content=20221028", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/PURE-STORAGE-INC-24203395/news/Pure-Storage-Named-a-Leader-for-Second-Consecutive-Year-in-2022-Gartner-Magic-Quadrant-trade-for-D-42125297/?utm_medium=RSS&utm_content=20221028", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:23.304Z", "last_update": "2022-10-28T16:01:23.304Z"}}, {"model": "press.post", "pk": 741, "fields": {"title": "Orion Corporation: Acquisition of Own Shares 28.10.2022", "body": "(marketscreener.com) Orion Corporation NOTIFICATION 28.10.2022 at 18:30 ORION CORPORATION: ACQUISITION OF OWN SHARES 28.10.2022 Date 28.10.2022   Exchange transaction Buy   Share class ORNBV   Amount 16,828     Average price/share 45.3980 EUR Highest price/share ...https://www.marketscreener.com/quote/stock/ORION-OYJ-1412508/news/Orion-Corporation-Acquisition-of-Own-Shares-28-10-2022-42125295/?utm_medium=RSS&utm_content=20221028", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ORION-OYJ-1412508/news/Orion-Corporation-Acquisition-of-Own-Shares-28-10-2022-42125295/?utm_medium=RSS&utm_content=20221028", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:23.441Z", "last_update": "2022-10-28T16:01:23.451Z"}}, {"model": "press.post", "pk": 742, "fields": {"title": "Ålandsbanken Abp: Acquisitions of own shares 28.10.2022", "body": "(marketscreener.com) Ålandsbanken Abp   Changes in company’s own shares28.10.2022 at 18:30 EET Ålandsbanken Abp: Acquisitions of own shares 28.10.2022 Date 28.10.2022   ExchangeBourse trade   Nasdaq Helsinki Oy Buy   Share class ALBBV   ...https://www.marketscreener.com/quote/stock/LANDSBANKEN-ABP-1412425/news/landsbanken-Abp-Acquisitions-of-own-shares-28-10-2022-42125294/?utm_medium=RSS&utm_content=20221028", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/LANDSBANKEN-ABP-1412425/news/landsbanken-Abp-Acquisitions-of-own-shares-28-10-2022-42125294/?utm_medium=RSS&utm_content=20221028", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:23.715Z", "last_update": "2022-10-28T16:01:23.715Z"}}, {"model": "press.post", "pk": 743, "fields": {"title": "Airmen Unload Cargo off A C-5M Galaxy [Image 3 of 4]", "body": "Two HH-60 Pave Hawk helicopters sit inside a C-5M Galaxy at an undisclosed location, Southwest Asia, Oct. 11, 2022. The C-5 provides heavy intercontinental-range strategic airlift capabilities and is able to carry oversized loads as one of the largest military aircraft in the world. (U.S. Air Force photo by Tech. Sgt. Jeffery Foster)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7484551/250x141_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7484551/airmen-unload-cargo-off-c-5m-galaxy", "source_label": "dvidshub", "status": "PUBLISHED", "author": 352, "category": 2, "creation_date": "2022-10-28T16:01:23.877Z", "last_update": "2022-10-28T16:01:23.878Z"}}, {"model": "press.post", "pk": 744, "fields": {"title": "Booz Allen Hamilton Holding Corporation 2023 Q2 - Results - Earnings Call Presentation", "body": "Booz Allen Hamilton Holding Corporation 2023 Q2 - Results - Earnings Call Presentation", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4550383-booz-allen-hamilton-holding-corporation-2023-q2-results-earnings-call-presentation?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:24.036Z", "last_update": "2022-10-28T16:01:24.036Z"}}, {"model": "press.post", "pk": 745, "fields": {"title": "Utah Football Defeats Washington State in Pullman", "body": "  The University of Utah football team (6-2, 4-1 Pac-12)  headed to Pullman this week to face off against Washington State. They came off of a bye week last week, with a victory over No. 7 USC the previous week. And with starting quarterback Cam Rising out with an apparent knee injury, backup Bryson Barnes...", "image_link": null, "word_cloud_link": null, "source_link": "https://dailyutahchronicle.com/2022/10/28/utah-football-washington-state-2/", "source_label": "dailyutahchronicle", "status": "PUBLISHED", "author": 353, "category": 2, "creation_date": "2022-10-28T16:01:26.481Z", "last_update": "2022-10-28T16:01:26.481Z"}}, {"model": "press.post", "pk": 746, "fields": {"title": "Charli XCX is writing a book: “There’s no deadline”", "body": "She's also consulted Nick Grimshaw for advice on the writing processThe post Charli XCX is writing a book: “There’s no deadline” appeared first on NME.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.nme.com/news/music/charli-xcx-writing-book-theres-no-deadline-3338557?utm_source=rss&utm_medium=rss&utm_campaign=charli-xcx-writing-book-theres-no-deadline", "source_label": "nme", "status": "PUBLISHED", "author": 354, "category": 2, "creation_date": "2022-10-28T16:01:28.824Z", "last_update": "2022-10-28T16:01:28.824Z"}}, {"model": "press.post", "pk": 747, "fields": {"title": "Quentin Tarantino lists seven movies he thinks are “perfect”", "body": "The director rates one classic horror film very highlyThe post Quentin Tarantino lists seven movies he thinks are “perfect” appeared first on NME.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.nme.com/news/film/quentin-tarantino-seven-movies-perfect-3338528?utm_source=rss&utm_medium=rss&utm_campaign=quentin-tarantino-seven-movies-perfect", "source_label": "nme", "status": "PUBLISHED", "author": 355, "category": 2, "creation_date": "2022-10-28T16:01:31.318Z", "last_update": "2022-10-28T16:01:31.318Z"}}, {"model": "press.post", "pk": 748, "fields": {"title": "Look: Chloe Bailey releases 'For the Night' featuring Latto", "body": "Chlöe Bailey released \"For the Night,\" featuring Latto, a new song she wrote about her former love interest Gunna.", "image_link": "https://cdnph.upi.com/ph/st/th/3571666968820/2022/upi/f52e360a746ebe1959c8ca536946efb3/v1.5/Chloe-Bailey-releases-For-the-Night-featuring-Latto.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Entertainment_News/Music/2022/10/28/Chloe-Bailey-For-Night-Latto-song/3571666968820/", "source_label": "upi", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:31.451Z", "last_update": "2022-10-28T16:01:31.451Z"}}, {"model": "press.post", "pk": 749, "fields": {"title": "Airmen Unload Cargo Off A C-5M Galaxy [Image 4 of 4]", "body": "Airmen from the 60th Air Mobility Wing, Travis Air Force Base., unload a Utility Terrain Vehicle along with other cargo from a C-5M Galaxy at an undisclosed location, Southwest Asia, Oct. 11, 2022. UTVs are used to haul equipment and supplies in locations that make using larger vehicles impractical or impossible. (U.S. Air Force photo by Tech. Sgt. Jeffery Foster)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2210/7484553/250x200_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7484553/airmen-unload-cargo-off-c-5m-galaxy", "source_label": "dvidshub", "status": "PUBLISHED", "author": 352, "category": 2, "creation_date": "2022-10-28T16:01:31.633Z", "last_update": "2022-10-28T16:01:31.633Z"}}, {"model": "press.post", "pk": 750, "fields": {"title": "Hurricane Ian Hits too Close to Home", "body": "Ahead of Hurricane Ian making landfall, students on campus were told to evacuate their dorms and head home or to FGCU’s storm shelter: Alico Arena. For those that stayed at the shelter on campus, it was an experience like never before, especially if you were someone working for Housing and Residence Life. Osprey Hall Resident...", "image_link": null, "word_cloud_link": null, "source_link": "https://eaglenews.org/27540/news/hurricane-ian-hits-too-close-to-home/", "source_label": "eaglenews", "status": "PUBLISHED", "author": 356, "category": 2, "creation_date": "2022-10-28T16:01:33.723Z", "last_update": "2022-10-28T16:01:33.723Z"}}, {"model": "press.post", "pk": 751, "fields": {"title": "Why are voters in Northern Ireland poised for a return to the polls?", "body": "A deadline for forming a new powersharing executive lapsed on Friday.", "image_link": "https://static.independent.co.uk/2022/10/28/10/afdefad6cd42ff8779256bf820b41bf4Y29udGVudHNlYXJjaGFwaSwxNjY3MDMzMDkw-2.66755122.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/uk/dup-northern-ireland-chris-heatonharris-sinn-fein-martin-mcguinness-b2212611.html", "source_label": "The Independent", "status": "PUBLISHED", "author": 357, "category": 2, "creation_date": "2022-10-28T16:01:36.058Z", "last_update": "2022-10-28T16:01:36.059Z"}}, {"model": "press.post", "pk": 752, "fields": {"title": "Japan to combat inflation with $199 billion economic package", "body": "Japan's Cabinet revealed an economic package worth $199 billion to help combat inflation and help the economy recover from the ongoing effects of COVID-19", "image_link": "https://cdnph.upi.com/ph/st/th/8981666968829/2022/upi/db589fe2e29ba772e9459138c65dae0c/v1.5/Japan-to-combat-inflation-with-199-billion-economic-package.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Top_News/World-News/2022/10/28/Japan-Japan-economic-package-199-billion/8981666968829/", "source_label": "upi", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:36.196Z", "last_update": "2022-10-28T16:01:36.196Z"}}, {"model": "press.post", "pk": 753, "fields": {"title": "Jaelan Phillips named NFLPA Community MVP for Week 8", "body": "Dolphins defensive end Jaelan Phillips has been named the NFL Players Association’s Community MVP for Week Eight of the 2022 season. Phillips invited 18 Dolphins rookies to join him on a visit to the Broward Regional Juvenile Detention Center to speak to spend time with 40 youngsters who are incarcerated at the facility. The players [more]", "image_link": "https://profootballtalk.nbcsports.com/wp-content/uploads/sites/25/2022/10/GettyImages-1436003013-e1666970997986.jpg?w=675&h=381&crop=1", "word_cloud_link": null, "source_link": "https://profootballtalk.nbcsports.com/2022/10/28/jaelan-phillips-named-nflpa-community-mvp-for-week-8/", "source_label": "profootballtalk", "status": "PUBLISHED", "author": 125, "category": 2, "creation_date": "2022-10-28T16:01:36.532Z", "last_update": "2022-10-28T16:01:36.532Z"}}, {"model": "press.post", "pk": 754, "fields": {"title": "Marco Rubio touts endorsement from YouTube influencer with history of racism", "body": "The Florida Republican senator hosted a roundtable event with Alex Otaola, who performed in blackface in 2017. Republican Florida Sen. Marco Rubio recently touted the endorsement of Alex Otaola, a social media \"influencer\" with a history of racism. He also featured the YouTube personality at an Oct. 14 campaign \"Roundtable with Cuban-American Community Leaders.\" Despite […]The post Marco Rubio touts endorsement from YouTube influencer with history of racism appeared first on The American Independent.", "image_link": null, "word_cloud_link": null, "source_link": "https://americanindependent.com/marco-rubio-alex-otaola-blackface-florida-senate-2022-election/", "source_label": "americanindependent", "status": "PUBLISHED", "author": 358, "category": 2, "creation_date": "2022-10-28T16:01:38.970Z", "last_update": "2022-10-28T16:01:38.970Z"}}, {"model": "press.post", "pk": 755, "fields": {"title": "How Talk Radio Unites Ron Johnson and His Wisconsin Voters", "body": "The Republican senator from Wisconsin practically lives on talk radio, with hundreds of appearances in 2022. It keeps him in tune with base voters, and is helping him in his vital Senate race.", "image_link": "https://static01.nyt.com/images/2022/10/21/multimedia/00pol-johnson-radio-1-b9da/00pol-johnson-radio-1-b9da-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2022/10/28/us/politics/ron-johnson-wisconsin-radio.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 359, "category": 2, "creation_date": "2022-10-28T16:01:41.051Z", "last_update": "2022-10-28T16:01:41.051Z"}}, {"model": "press.post", "pk": 756, "fields": {"title": "Canerock Jamaican Spiced Rum Review", "body": "Canerock Jamaican Spiced Rum Review", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pastemagazine.com/drink/rum/canerock-spiced-rum-review-flavors-jamaica-sherry-price-cocktails/", "source_label": "pastemagazine", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:41.254Z", "last_update": "2022-10-28T16:01:41.254Z"}}, {"model": "press.post", "pk": 757, "fields": {"title": "Gisele Bundchen Admits She & Tom Brady ‘Grew Apart’ Before Divorce As She Vows To ‘Prioritize’ Their 2 Children", "body": "Gisele shared a heartbreaking message about her divorce with Tom, saying she wishes 'the best' for him and that they will continue to co-parent their children.", "image_link": "https://hollywoodlife.com/wp-content/uploads/2022/10/gisele-bundchen-admits-her-and-tom-grew-apart-ss-ftr.jpg", "word_cloud_link": null, "source_link": "https://hollywoodlife.com/2022/10/28/gisele-bundchen-statement-tom-brady-divorce-kids/", "source_label": "hollywoodlife", "status": "PUBLISHED", "author": 360, "category": 2, "creation_date": "2022-10-28T16:01:43.496Z", "last_update": "2022-10-28T16:01:43.496Z"}}, {"model": "press.post", "pk": 758, "fields": {"title": "The best sales to shop this weekend: Outdoor Voices, Sephora, Sonos and more", "body": "The best sales to shop this weekend: Outdoor Voices, Sephora, Sonos and more", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cnn.com/2022/10/28/cnn-underscored/deals/best-online-sales-right-now?iid=CNNUnderscoredHPcontainer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-28T16:01:43.561Z", "last_update": "2022-10-28T16:01:43.561Z"}}, {"model": "press.post", "pk": 759, "fields": {"title": "Chilly mornings with warm days over the Halloweekend", "body": "Layer up for the Halloweekend!The post Chilly mornings with warm days over the Halloweekend appeared first on News Channel 3-12.", "image_link": null, "word_cloud_link": null, "source_link": "https://keyt.com/lifestyle/holidays/2022/10/28/chilly-mornings-with-warm-days-over-the-halloweekend/", "source_label": "keyt", "status": "PUBLISHED", "author": 361, "category": 2, "creation_date": "2022-10-28T16:01:45.811Z", "last_update": "2022-10-28T16:01:45.811Z"}}, {"model": "press.post", "pk": 760, "fields": {"title": "‘Real Love Boat’ Moving From CBS To Paramount+ After Just Four Episodes", "body": "The Amazing Race will take its spot and air directly after Survivor on CBS.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/real-love-boat.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/29/real-love-boat-moving-from-cbs-to-paramount-after-just-four-episodes/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-29T16:00:54.339Z", "last_update": "2022-10-29T16:00:54.339Z"}}, {"model": "press.post", "pk": 761, "fields": {"title": "Woodland Opera House set to show “A Christmas Story”", "body": "“A Christmas Story” will soon be playing at The Woodland Opera House, just in time to get in the mood for the holidays.", "image_link": "https://www.dailydemocrat.com/wp-content/uploads/2022/10/WOHCHRISTMAS.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.dailydemocrat.com/2022/10/29/woodland-opera-house-set-to-show-a-christmas-story/", "source_label": "dailydemocrat", "status": "PUBLISHED", "author": 362, "category": 2, "creation_date": "2022-10-29T16:00:55.983Z", "last_update": "2022-10-29T16:00:55.983Z"}}, {"model": "press.post", "pk": 762, "fields": {"title": "Pelosi attacker was immersed in 2020 election conspiracies", "body": "Police haven't disclosed the motive in attack but Democrats point to toxic rhetoric.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.politico.com/news/2022/10/28/pelosi-attacker-online-hints-conspiracy-immersion-00064093?utm_source=RSS_Feed&utm_medium=RSS&utm_campaign=RSS_Syndication", "source_label": "europeanvoice", "status": "PUBLISHED", "author": 363, "category": 2, "creation_date": "2022-10-29T16:00:57.722Z", "last_update": "2022-10-29T16:00:57.722Z"}}, {"model": "press.post", "pk": 763, "fields": {"title": "Stuttgart, Augsburg'u son dakikada yıktı", "body": "Almanya Bundesliga'nın 12. haftasında Stuttgart, Augsburg'u 2-1 mağlup etti. Stuttgart", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sporx.com/futbol/dunya/almanya/stuttgart/stuttgart-augsburg-u-son-dakikada-yikti-SXHBQ994110SXQ?utm_source=icerikPaylas", "source_label": "sporx", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-29T16:00:57.776Z", "last_update": "2022-10-29T16:00:57.776Z"}}, {"model": "press.post", "pk": 764, "fields": {"title": "What Happened To Josh Primo? Young NBA Player Puts Mental Health First After ‘Previous Trauma’", "body": "People are asking what happened after San Antonio Spurs guard Josh Primo was waived before he said it was because of his mental health.The post What Happened To Josh Primo? Young NBA Player Puts Mental Health First After ‘Previous Trauma’ appeared first on NewsOne.", "image_link": "https://newsone.com/wp-content/uploads/sites/22/2022/10/16670521567644.jpg?quality=80&strip=all&w=560&crop=0,0,100,320px", "word_cloud_link": null, "source_link": "https://newsone.com/4436127/josh-primo-mental-health/", "source_label": "newsone", "status": "PUBLISHED", "author": 364, "category": 2, "creation_date": "2022-10-29T16:00:59.418Z", "last_update": "2022-10-29T16:00:59.418Z"}}, {"model": "press.post", "pk": 765, "fields": {"title": "Stat Pack: Five Stats To Look For In Week 8", "body": "As the Pittsburgh Steelers prepare to face the undefeated Philadelphia Eagles, the season may be on the line. Sitting at 2-5 and anxiously awaiting the post-bye week return of linebacker T.J. Watt, a win for the Steelers may just save their season. Sitting at 6-0, the Eagles are having an excellent season with quality play […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/10/stat-pack-five-stats-to-look-for-in-week-8/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 365, "category": 2, "creation_date": "2022-10-29T16:01:01.027Z", "last_update": "2022-10-29T16:01:01.027Z"}}, {"model": "press.post", "pk": 766, "fields": {"title": "The Best New Romance Books of October 2022", "body": "The Best New Romance Books of October 2022", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pastemagazine.com/books/romance-/best-new-romance-books-october-2022/", "source_label": "pastemagazine", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-29T16:01:01.157Z", "last_update": "2022-10-29T16:01:01.157Z"}}, {"model": "press.post", "pk": 767, "fields": {"title": "Iran’s Revolutionary Guards warn protesters: ‘TODAY IS LAST DAY OF RIOTS’", "body": "The head of Iran’s powerful Revolutionary Guards warned protesters that Saturday would be their last day of taking to the streets, in a sign that security forces may intensify their already fierce crackdown on unrest sweeping the country. Iran has been gripped by protests since the death of 22-year-old Kurdish woman Mahsa Amini in the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://torontosun.com/news/world/irans-revolutionary-guards-warn-protesters-today-is-last-day-of-riots", "source_label": "m", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-29T16:01:01.247Z", "last_update": "2022-10-29T16:01:01.247Z"}}, {"model": "press.post", "pk": 768, "fields": {"title": "Pledge of the Freedom Movement", "body": "What does seeking out the truth entail?The post Pledge of the Freedom Movement first appeared on Dissident Voice.", "image_link": null, "word_cloud_link": null, "source_link": "https://dissidentvoice.org/2022/10/pledge-of-the-freedom-movement/", "source_label": "dissidentvoice", "status": "PUBLISHED", "author": 366, "category": 2, "creation_date": "2022-10-29T16:01:03.678Z", "last_update": "2022-10-29T16:01:03.679Z"}}, {"model": "press.post", "pk": 769, "fields": {"title": "8-year-old boy becomes youngest person to climb California’s El Capitan", "body": "By Andy Rose and Aya Elamroussi, CNN An 8-year-old boy became the youngest person to finish climbing El Capitan in California’s Yosemite National Park on Friday, according to his father, who has been by his side and cheering him on since the pair began their journey earlier this week. Sam Adventure Baker achieved the featThe post 8-year-old boy becomes youngest person to climb California’s El Capitan appeared first on KRDO.", "image_link": null, "word_cloud_link": null, "source_link": "https://krdo.com/news/2022/10/29/8-year-old-boy-becomes-youngest-person-to-climb-californias-el-capitan-2/", "source_label": "krdo", "status": "PUBLISHED", "author": 367, "category": 2, "creation_date": "2022-10-29T16:01:05.943Z", "last_update": "2022-10-29T16:01:05.943Z"}}, {"model": "press.post", "pk": 770, "fields": {"title": "Ruaidhri Higgins hoping three points away to Shamrock Rovers can help boost Derry confidence ahead of FAI Cup Final", "body": "Derry City head to champions Shamrock Rovers on Sunday evening with one eye on their FAI Cup Final on November 13th. Rovers who may be in party m0de after they won the league on Monday evening when the Candystripes could only manage a goalless draw away to Sligo Rovers. Candystripes bosss Ruaidhri Higgins hopes a … Ruaidhri Higgins hoping three points away to Shamrock Rovers can help boost Derry confidence ahead of FAI Cup Final Read More »The post Ruaidhri Higgins hoping three points away to Shamrock Rovers can help boost Derry confidence ahead of FAI Cup Final appeared first on...", "image_link": null, "word_cloud_link": null, "source_link": "https://highlandradio.com/2022/10/29/ruaidhri-higgins-hoping-three-points-away-to-shamrock-rovers-can-help-boost-derry-confidence-ahead-of-fai-cup-final/", "source_label": "Highland Radio", "status": "PUBLISHED", "author": 368, "category": 2, "creation_date": "2022-10-29T16:01:08.865Z", "last_update": "2022-10-29T16:01:08.865Z"}}, {"model": "press.post", "pk": 771, "fields": {"title": "Tricky problem: Candy makers grapple with plastic packaging that’s difficult to recycle", "body": "As America loads up on an estimated 600 million pounds of candy for Halloween, a handful of companies are trying to make it easier to recycle all those wrappers.", "image_link": null, "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9236129/candy-makers-plastic-packaging-recycle/", "source_label": "globalwinnipeg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-29T16:01:09.086Z", "last_update": "2022-10-29T16:01:09.086Z"}}, {"model": "press.post", "pk": 772, "fields": {"title": "Women’s basketball: Gophers’ versatility will be tested in exhibition", "body": "Minnesota will play host to Wisconsin-River Falls at 2 p.m. Sunday at Williams Arena.", "image_link": "https://www.twincities.com/wp-content/uploads/2022/10/Zie_WBBPractice_edit-28.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.twincities.com/2022/10/29/womens-basketball-gophers-versatility-will-be-tested-in-exhibition/", "source_label": "twincities", "status": "PUBLISHED", "author": 369, "category": 2, "creation_date": "2022-10-29T16:01:11.786Z", "last_update": "2022-10-29T16:01:11.786Z"}}, {"model": "press.post", "pk": 773, "fields": {"title": "Milica Todorović dobila poseban poklon od tajanstvenog udvarača: Pevačicu oduševio gest nepoznatog momka", "body": "Pevačica Milica Todorović već duže vreme krije svoj privatni i ljubavni život, a sada je mnoge zaintrigirala fotografijom poklona koji je dobila od tajnog udvarača.", "image_link": "https://xdn.tf.rs/2021/05/27/milica-todorovoc-foto-nikola-tomic15.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/jetset/vesti-jetset/3577771-milica-todorovic-dobila-poseban-poklon-od-tajanstvenog-udvaraca-pevacicu-odusevio-gest-nepoznatog-momka", "source_label": "Telegraf", "status": "PUBLISHED", "author": 158, "category": 2, "creation_date": "2022-10-29T16:01:13.694Z", "last_update": "2022-10-29T16:01:13.694Z"}}, {"model": "press.post", "pk": 774, "fields": {"title": "Nancy Pelosi’s Husband Secretly Called 911 & Spoke In Code To Dispatcher During Home Invasion", "body": "New details have emerged about the brutal attack on Nancy Pelosi’s husband. As we previously reported, Paul Pelosi was assaulted in his San Francisco home on Friday morning by an intruder who had been identified as 42-year-old David DePape. New reports have since come out revealing that Paul may have saved his own life as [...]Read More...The post Nancy Pelosi’s Husband Secretly Called 911 & Spoke In Code To Dispatcher During Home Invasion appeared first on Perez Hilton.", "image_link": null, "word_cloud_link": null, "source_link": "https://perezhilton.com/nancy-pelosis-husband-secretly-called-911-spoke-in-code-to-dispatcher-during-home-invasion/", "source_label": "perezhilton", "status": "PUBLISHED", "author": 370, "category": 2, "creation_date": "2022-10-29T16:01:16.419Z", "last_update": "2022-10-29T16:01:16.419Z"}}, {"model": "press.post", "pk": 775, "fields": {"title": "Top 5 boys and girls water polo rankings", "body": "The Monterey Herald's Top 5 boys and girls water polo rankings", "image_link": null, "word_cloud_link": null, "source_link": "https://www.montereyherald.com/2022/10/29/top-5-boys-and-girls-water-polo-rankings-6/", "source_label": "montereyherald", "status": "PUBLISHED", "author": 84, "category": 2, "creation_date": "2022-10-29T16:01:16.573Z", "last_update": "2022-10-29T16:01:16.573Z"}}, {"model": "press.post", "pk": 776, "fields": {"title": "Meta Platforms (NASDAQ:META) PT Lowered to $140.00", "body": "Meta Platforms (NASDAQ:META) PT Lowered to $140.00", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/10/29/meta-platforms-nasdaqmeta-pt-lowered-to-140-00.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-10-29T16:01:16.794Z", "last_update": "2022-10-29T16:01:16.794Z"}}, {"model": "press.post", "pk": 777, "fields": {"title": "Lazareva: \"Böyle devam etmek istiyoruz\"", "body": "Fenerbahçe Opet forması giyen Anna Lazareva, VakıfBank galibiyetinin ardından açıklamalarda bulundu. Voleybol", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sporx.com/voleybol/lazareva-boyle-devam-etmek-istiyoruz-SXHBQ994109SXQ?utm_source=icerikPaylas", "source_label": "sporx", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-29T16:01:16.941Z", "last_update": "2022-10-29T16:01:16.941Z"}}, {"model": "press.post", "pk": 778, "fields": {"title": "Breast Cancer Awareness Month: Can you have a healthy pregnancy with breast cancer?", "body": "According to health experts, pregnancy is possible for women battling cancer. It does not increase the risk of recurrence and does not harm the baby.", "image_link": "https://cdn.dnaindia.com/sites/default/files/styles/third/public/2022/10/29/2550111-breast-cancer-3.jpg", "word_cloud_link": null, "source_link": "https://www.dnaindia.com/health/report-breast-cancer-awareness-month-can-you-have-a-healthy-pregnancy-with-breast-cancer-2997023", "source_label": "dnaindia", "status": "PUBLISHED", "author": 371, "category": 2, "creation_date": "2022-10-29T16:01:19.299Z", "last_update": "2022-10-29T16:01:19.299Z"}}, {"model": "press.post", "pk": 779, "fields": {"title": "Brazil president makes Argentina a campaign boogeyman", "body": "Many of those rumors have been fanned by the presidential election in neighboring Brazil, where incumbent President Jair Bolsonaro has turned Argentina — already a bitter soccer rival — into a sort of political boogeyman, a warning of the horrors his nation could face if it elects leftist former President Luiz Inácio Lula da Silva.The post Brazil president makes Argentina a campaign boogeyman appeared first on ABC7 Southwest Florida.", "image_link": null, "word_cloud_link": null, "source_link": "https://abc-7.com/news/politics/2022/10/29/brazil-president-makes-argentina-a-campaign-boogeyman/", "source_label": "abc-7", "status": "PUBLISHED", "author": 176, "category": 2, "creation_date": "2022-10-29T16:01:19.441Z", "last_update": "2022-10-29T16:01:19.441Z"}}, {"model": "press.post", "pk": 780, "fields": {"title": "New analysis exposes years of far-right GOPers' staging of disturbing attacks against Pelosi", "body": "A new analysis is exposing the real timeline of staged attacks against House Speaker Nancy Pelosi (D-Calif.) while explaining why it should not be a surprise that the lawmaker and her husband were the victims of a home invasion. The report, collectively written by The Washington Post's Ashley Parker, Hannah Allam, and Marianna Sotomayor, sheds light on how far-right Republicans have been depicting the top-ranking Democratic lawmaker as a target for several years. In fact, some have even suggested that she be assassinated. In the report, the writers highlighted how the alleged home invasion...", "image_link": "https://www.alternet.org/media-library/image.jpg?id=29452796&width=980", "word_cloud_link": null, "source_link": "https://www.alternet.org/2022/10/pelosi-gop/", "source_label": "alternet", "status": "PUBLISHED", "author": 372, "category": 2, "creation_date": "2022-10-29T16:01:21.979Z", "last_update": "2022-10-29T16:01:21.979Z"}}, {"model": "press.post", "pk": 781, "fields": {"title": "About 50 people reported hurt in stampede in South Korea - Yonhap", "body": "(marketscreener.com) About 50 people were injured in a stampede in Seoul as a huge crowd flocked into a central district of the South Korean capital to celebrate Halloween, Yonhap news agency reported on Sunday.https://www.marketscreener.com/news/latest/About-50-people-reported-hurt-in-stampede-in-South-Korea-Yonhap--42130925/?utm_medium=RSS&utm_content=20221029", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/About-50-people-reported-hurt-in-stampede-in-South-Korea-Yonhap--42130925/?utm_medium=RSS&utm_content=20221029", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-29T16:01:22.114Z", "last_update": "2022-10-29T16:01:22.114Z"}}, {"model": "press.post", "pk": 782, "fields": {"title": "About 50 people reported hurt in stampede in South Korea – Yonhap", "body": "SEOUL — About 50 people were injured in a stampede in Seoul as a huge crowd flocked into a central district of the South Korean capital to celebrate Halloween, Yonhap news agency reported on Sunday. (Reporting by Soo-hyang Choi, Editing by Angus MacSwan)", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/disaster-pmn/about-50-people-reported-hurt-in-stampede-in-south-korea-yonhap", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-10-29T16:01:22.295Z", "last_update": "2022-10-29T16:01:22.296Z"}}, {"model": "press.post", "pk": 783, "fields": {"title": "Govt set to enter rehab phase in flood-hit areas: Marriyum", "body": "ISLAMABAD: Minister for information and Broadcasting Marriyum Aurangzeb on Saturday stated that the coalition government in collaboration with national institutions and foreign donor agencies had successfully completed relief and rescue operation in flood-hit areas and now all set to enter into rehabilitation phase. Addressing media persons here in Islamabad on Saturday, she appreciated the role […]The post Govt set to enter rehab phase in flood-hit areas: Marriyum appeared first on Pakistan Today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pakistantoday.com.pk/2022/10/29/govt-set-to-enter-rehab-phase-in-flood-hit-areas-marriyum/", "source_label": "Pakistan Today", "status": "PUBLISHED", "author": 177, "category": 2, "creation_date": "2022-10-29T16:01:22.491Z", "last_update": "2022-10-29T16:01:22.507Z"}}, {"model": "press.post", "pk": 784, "fields": {"title": "Imran Khan again blasts Pakistan 'establishment' in Day 2 of long march", "body": "Former Pakistan Prime Minister Imran Khan blasted Pakistan's political \"establishment\" on Saturday during the second day of his \"long march\" to demand early elections.", "image_link": "https://cdnph.upi.com/ph/st/th/2121667053973/2022/upi_com/02aff4cbd3b375cd769fc41ae634f167/v1.5/Imran-Khan-again-blasts-Pakistan-establishment-in-Day-2-of-long-march.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Top_News/World-News/2022/10/29/pakistan-Imran-Khan-establishment-Day-2-long-march/2121667053973/", "source_label": "upiasia", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-29T16:01:22.643Z", "last_update": "2022-10-29T16:01:22.643Z"}}, {"model": "press.post", "pk": 785, "fields": {"title": "Lewis Capaldi tour 2023: Singer urges fans to be 'be careful and safe' as resale tickets listed for £1,000", "body": "Fans of Lewis Capaldi have been outraged to find tickets for his tour sold out in seconds, with tickets being resold for much more than their face value.", "image_link": "https://www.warwickshireworld.com/jpim-static/image/2022/10/18/16/Temp-1200x800%20%2852%29-1.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.warwickshireworld.com/read-this/lewis-capaldi-tour-2023-singer-urges-fans-to-be-be-careful-and-safe-as-resale-tickets-listed-for-ps1000-3898427", "source_label": "warwickcourier", "status": "PUBLISHED", "author": 373, "category": 2, "creation_date": "2022-10-29T16:01:24.989Z", "last_update": "2022-10-29T16:01:24.989Z"}}, {"model": "press.post", "pk": 786, "fields": {"title": "Rihanna Helps Wakanda Mourn Chadwick Boseman with Georgeous 'Lift Me Up' Music Video", "body": "Fans were stunned and moved when Rihanna released her first new song in six years, a gorgeous tribute to Chadwick Boseman for the upcoming \"Black Panther: Wakanda Forever\" film. Over the weekend, she followed its release with the official music video, a subtle and beautiful peek into the world of loss and those who must find a way to carry on. Interspersed with images from the upcoming sequel to the billion-dollar blockbuster \"Black Panther,\" Rihanna herself is a vision in white on a sunset beach as she belts out her beautiful message of loss. The track was written by Tems, Oscar winner Ludwig...", "image_link": "https://images.toofab.com/image/70/o/2022/10/30/70b900c2459144bab832776fed6c6a14_md.jpg", "word_cloud_link": null, "source_link": "https://toofab.com/2022/10/30/rihanna-wakanda-mourn-chadwick-boseman-lift-me-up-music-video/", "source_label": "toofab", "status": "PUBLISHED", "author": 374, "category": 2, "creation_date": "2022-10-30T16:00:59.763Z", "last_update": "2022-10-30T16:00:59.763Z"}}, {"model": "press.post", "pk": 787, "fields": {"title": "George RR Martin says he ‘wanted more’ of House of the Dragon’s most divisive feature", "body": "Author claimed he wanted ‘even more time jumps’ and ‘even more recastings’", "image_link": "https://static.independent.co.uk/2022/10/30/15/newFile-1.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/arts-entertainment/tv/news/house-of-the-dragon-george-rr-martin-b2213801.html", "source_label": "Independent", "status": "PUBLISHED", "author": 375, "category": 2, "creation_date": "2022-10-30T16:01:01.592Z", "last_update": "2022-10-30T16:01:01.592Z"}}, {"model": "press.post", "pk": 788, "fields": {"title": "Broncos take lead as Russell Wilson finally gets going in third quarter", "body": "Broncos quarterback Russell Wilson is finally getting the offense moving. An impressive third-quarter drive saw Wilson march the Broncos’ offense down the field, culminating in a Melvin Gordon one-yard touchdown run that gave Denver a 14-10 lead over Jacksonville. It isn’t all good news for the Broncos’ offense, as center Lloyd Cushenberry has been ruled [more]", "image_link": "https://profootballtalk.nbcsports.com/wp-content/uploads/sites/25/2022/10/GettyImages-1437701149-e1667143825236.jpg?w=711&h=401&crop=1", "word_cloud_link": null, "source_link": "https://profootballtalk.nbcsports.com/2022/10/30/broncos-take-lead-as-russell-wilson-finally-gets-going-in-third-quarter/", "source_label": "profootballtalk", "status": "PUBLISHED", "author": 376, "category": 2, "creation_date": "2022-10-30T16:01:04.341Z", "last_update": "2022-10-30T16:01:04.341Z"}}, {"model": "press.post", "pk": 789, "fields": {"title": "News24.com | Department denies primary school disco rape and shooting claims", "body": "Allegations of rape and a shooting at a primary school disco in Gauteng have been denied by the provincial education department.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/SouthAfrica/News/department-denies-primary-school-disco-rape-and-shooting-claims-20221030", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-30T16:01:04.477Z", "last_update": "2022-10-30T16:01:04.477Z"}}, {"model": "press.post", "pk": 790, "fields": {"title": "18-Year-Old Dies after Shooting in Prattville", "body": "Prattville police say an 18-year-old male has died after being shot.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.alabamanews.net/2022/10/30/18-year-old-dies-after-shooting-in-prattville/", "source_label": "waka", "status": "PUBLISHED", "author": 377, "category": 2, "creation_date": "2022-10-30T16:01:07.036Z", "last_update": "2022-10-30T16:01:07.036Z"}}, {"model": "press.post", "pk": 791, "fields": {"title": "Tributes flood in after Dead Kennedys and Red Hot Chili Peppers drummer D.H. Peligro dies aged 63", "body": "Former punk rock drummer for the Dead Kennedys and Red Hot Chili Peppers, D.H. Peligro, has died at the age of 63.", "image_link": "https://www.glasgowworld.com/jpim-static/image/2022/10/30/15/Untitled%20design%20%283%29.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.glasgowworld.com/read-this/tributes-flood-in-after-dead-kennedys-and-red-hot-chili-peppers-drummer-dh-peligro-dies-aged-63-3898882", "source_label": "bearsdenherald", "status": "PUBLISHED", "author": 373, "category": 2, "creation_date": "2022-10-30T16:01:07.225Z", "last_update": "2022-10-30T16:01:07.225Z"}}, {"model": "press.post", "pk": 792, "fields": {"title": "Career Corner | Scary interviews aren’t just for dreams", "body": "\"When it comes to job interviews, don’t expect everything to go perfectly,\" Angela Copeland writes in this week's Career Corner column.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.times-standard.com/2022/10/30/career-corner-scary-interviews-arent-just-for-dreams-2/", "source_label": "times-standard", "status": "PUBLISHED", "author": 378, "category": 2, "creation_date": "2022-10-30T16:01:10.562Z", "last_update": "2022-10-30T16:01:10.562Z"}}, {"model": "press.post", "pk": 793, "fields": {"title": "NFL Week 8 early game tracker: Eagles put unbeaten record on the line vs. Steelers", "body": "Follow the action live with Yahoo Sports as Pittsburgh tries to hang the first loss on Philadelphia.", "image_link": null, "word_cloud_link": null, "source_link": "https://sports.yahoo.com/nfl-week-8-early-game-live-inactives-scores-news-highlights-pittsburgh-steelers-philadelphia-eagles-153009322.html?src=rss", "source_label": "sports", "status": "PUBLISHED", "author": 379, "category": 2, "creation_date": "2022-10-30T16:01:13.216Z", "last_update": "2022-10-30T16:01:13.217Z"}}, {"model": "press.post", "pk": 794, "fields": {"title": "Cowboys-Bears Game Live Stream: Time, Channel, Where To Watch Bears-Cowboys Live Online", "body": "The 5-2 Cowboys collide with the 3-4 Bears in Week 8.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/dallas-cowboys.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/30/cowboys-game-live-stream-watch-cowboys-bears-game-live-free/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-30T16:01:13.355Z", "last_update": "2022-10-30T16:01:13.355Z"}}, {"model": "press.post", "pk": 795, "fields": {"title": "Letters to the editor | Oct. 30, 2022", "body": "Pick Fullerton for Ward 3 on Eureka council John Fullerton has been an active member in various areas of our community for many years and knows our city well. The first reason to vote for John is his experience of already having served on the Eureka Planning Commission some years back. Second, John has spent […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.times-standard.com/2022/10/30/letters-to-the-editor-oct-30-2022/", "source_label": "times-standard", "status": "PUBLISHED", "author": 380, "category": 2, "creation_date": "2022-10-30T16:01:15.777Z", "last_update": "2022-10-30T16:01:15.777Z"}}, {"model": "press.post", "pk": 796, "fields": {"title": "Caesars Sportsbook Promo Code NPBONUSFULL: Score a massive NFL bonus this weekend", "body": "Get your hands on a huge sports bonus with the Caesars Sportsbook Promo code NPBONUSFULL, ahead of NFL Week 8.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/eddie-jones-packers.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/30/caesars-sportsbook-promo-code-npbonusfull-epic-nfl-week-8-bonus/", "source_label": "Post", "status": "PUBLISHED", "author": 128, "category": 2, "creation_date": "2022-10-30T16:01:15.901Z", "last_update": "2022-10-30T16:01:15.901Z"}}, {"model": "press.post", "pk": 797, "fields": {"title": "Lula faces off with Bolsonaro in Brazil runoff election watched globally", "body": "Brazil's far-right leader Jair Bolsonaro is facing off against former President Luiz Inácio Lula da Silva, a left-wing politician who was previously imprisoned on corruption charges, in a runoff election Sunday.", "image_link": "https://cdnph.upi.com/ph/st/th/5881667141462/2022/upi_com/32ee3f9b7fde30b9c494708c965dce58/v1.5/Lula-faces-off-with-Bolsonaro-in-Brazil-runoff-election-watched-globally.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Top_News/World-News/2022/10/30/lula-faces-off-bolsonaro-brazil-runoff-election-watched-globally/5881667141462/", "source_label": "upiasia", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-30T16:01:16.072Z", "last_update": "2022-10-30T16:01:16.072Z"}}, {"model": "press.post", "pk": 798, "fields": {"title": "Josh Duhamel, 49, and Audra Mari, 28, troll age gap as Anna Nicole Smith, husband", "body": "The \"Transformers\" star and the supermodel were the spitting image of the late Anna Nicole Smith and her husband J. Howard Marshall at a Halloween party.", "image_link": "https://pagesix.com/wp-content/uploads/sites/3/2022/10/duhamel-mari-halloween-comp.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://pagesix.com/2022/10/30/josh-duhamel-audra-mari-dress-as-anna-nicole-smith-husband-for-halloween/", "source_label": "Post", "status": "PUBLISHED", "author": 381, "category": 2, "creation_date": "2022-10-30T16:01:18.624Z", "last_update": "2022-10-30T16:01:18.624Z"}}, {"model": "press.post", "pk": 799, "fields": {"title": "Poll: Have You Ever Landed, Taken Off Or Lined Up On the Wrong Runway?", "body": "Nobody likes to admit it, but navigating around an airport during taxi can be confusing. This week's poll asks if you've ever lined up or taken off on the wrong runway.The post Poll: Have You Ever Landed, Taken Off Or Lined Up On the Wrong Runway? appeared first on AVweb.", "image_link": null, "word_cloud_link": null, "source_link": "https://s30121.pcdn.co/polls-quizzes/poll-have-you-ever-landed-taken-off-or-lined-up-on-the-wrong-runway/#utm_source=rss&utm_medium=rss&utm_campaign=poll-have-you-ever-landed-taken-off-or-lined-up-on-the-wrong-runway", "source_label": "avweb", "status": "PUBLISHED", "author": 382, "category": 2, "creation_date": "2022-10-30T16:01:21.154Z", "last_update": "2022-10-30T16:01:21.154Z"}}, {"model": "press.post", "pk": 800, "fields": {"title": "Ukraine's allies confront a massive reconstruction task", "body": "Western countries have already sent Ukraine billions in weapons and other aid. They also have to think about helping rebuild the country once the war is over.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.dw.com/en/ukraine-s-allies-confront-a-massive-reconstruction-task/a-63588444?maca=en-rss-en-all-1573-rdf", "source_label": "Deutsche Welle", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-30T16:01:21.373Z", "last_update": "2022-10-30T16:01:21.373Z"}}, {"model": "press.post", "pk": 801, "fields": {"title": "Preston North End player ratings gallery: Two players score 8/10 and one scores 5/10", "body": "Preston North End got back to winning ways on Saturday as they beat Middlesbrough 2-1.", "image_link": "https://www.lep.co.uk/webimg/b25lY21zOjg5ZWFjNTI4LTgwZjEtNDUzMC04NTZjLTEzZmZhZDAzYWZiYjowNDQ4NDUzZS0zOWE5LTQ0MzYtYTJlZS0zMDdkYWE3NDdjOGM=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.lep.co.uk/sport/football/preston-north-end/preston-north-end-player-ratings-gallery-two-players-score-810-and-one-scores-510-3898878", "source_label": "lep", "status": "PUBLISHED", "author": 383, "category": 2, "creation_date": "2022-10-30T16:01:23.684Z", "last_update": "2022-10-30T16:01:23.684Z"}}, {"model": "press.post", "pk": 802, "fields": {"title": "Aaron Rodgers is Not and Never Will Be Someone to Root For", "body": "For the Green Bay Packers fans who “get it,” it must be difficult to root for the human being that is Aaron Rodgers. The face of the franchise that they love so much is just so easy to dislike. He’s the new, individual version of the New York Yankees, L.A. Lakers, New England Patriots, Duke and […]The post Aaron Rodgers is Not and Never Will Be Someone to Root For appeared first on The Sports Bank.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thesportsbank.net/nfl/green-bay-packers/aaron-rodgers-awful/?utm_source=rss&utm_medium=rss&utm_campaign=aaron-rodgers-awful", "source_label": "thesportsbank", "status": "PUBLISHED", "author": 384, "category": 2, "creation_date": "2022-10-30T16:01:26.019Z", "last_update": "2022-10-30T16:01:26.020Z"}}, {"model": "press.post", "pk": 803, "fields": {"title": "Erik ten Hag explains why Antony misses Manchester United’s Premier League clash with West Ham", "body": "The Brazilian has had an eventful week...", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/30/man-utd-news-erik-ten-hag-reveals-why-antony-missed-west-ham-clash-17665296/", "source_label": "Metro", "status": "PUBLISHED", "author": 224, "category": 2, "creation_date": "2022-10-30T16:01:26.171Z", "last_update": "2022-10-30T16:01:26.171Z"}}, {"model": "press.post", "pk": 804, "fields": {"title": "Lifelong Learning Communities: Connections And Content", "body": "Business schools are exceptionally well-suited to establishing lifelong learning communities. The two dimensions of successful communities are networks and content.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/62fe40baadccff017f1dbcbd/0x0.jpg", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/tomotoole/2022/10/30/lifelong-learning-communities-connections-and-content/", "source_label": "Leadership", "status": "PUBLISHED", "author": 385, "category": 2, "creation_date": "2022-10-30T16:01:28.348Z", "last_update": "2022-10-30T16:01:28.348Z"}}, {"model": "press.post", "pk": 805, "fields": {"title": "Palakkad district police athletic championship gets under way", "body": "Personnel from nine police subdivisions are attending the two-day championship", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/national/kerala/palakkad-district-police-athletic-championship-gets-under-way/article66074275.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 250, "category": 2, "creation_date": "2022-10-30T16:01:28.415Z", "last_update": "2022-10-30T16:01:28.415Z"}}, {"model": "press.post", "pk": 806, "fields": {"title": "Plea to revoke decision allowing shops in Puducherry to function 24/7", "body": "It will disrupt the culture and result in unbridled liquor and drug use, says A. Anbalagan", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/cities/puducherry/plea-to-revoke-decision-allowing-shops-in-puducherry-to-function-247/article66074112.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 250, "category": 2, "creation_date": "2022-10-30T16:01:28.513Z", "last_update": "2022-10-30T16:01:28.513Z"}}, {"model": "press.post", "pk": 807, "fields": {"title": "Where to Stream Matthew Perry’s Full Tell-All Interview With Diane Sawyer", "body": "The actor reveals just how far his alcoholism and drug addiction took him.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/matthew-perry-2-1.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/10/30/where-to-stream-matthew-perrys-full-tell-all-interview-with-diane-sawyer/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-10-30T16:01:28.611Z", "last_update": "2022-10-30T16:01:28.611Z"}}, {"model": "press.post", "pk": 808, "fields": {"title": "Below Deck Season 10 cast: Meet Captain Lee’s new crew", "body": "Below Deck Season 10 is almost here, meaning it’s time to meet the crew members joining Captain Lee Rosbach’s team. The trailer for the upcoming season was released at BravoCon a couple of weeks ago with a few big surprises. One surprise was chef Rachel Hargrove was back, considering her", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/tv/reality-tv/below-deck-season-10-cast-meet-captain-lees-new-crew/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 208, "category": 2, "creation_date": "2022-10-31T16:00:53.968Z", "last_update": "2022-10-31T16:00:53.969Z"}}, {"model": "press.post", "pk": 809, "fields": {"title": "La movilización contra el bloqueo a Cuba es imparable, afirma Bruno Rodríguez", "body": "Bruno Rodríguez destacó la solidaridad de amigos y cubanos residentes en el exterior, que alzan sus voces para reclamar el derecho del pueblo cubano a vivir sin bloqueo", "image_link": null, "word_cloud_link": null, "source_link": "http://www.escambray.cu/2022/la-movilizacion-contra-el-bloqueo-a-cuba-es-imparable-afirma-bruno-rodriguez/", "source_label": "escambray", "status": "PUBLISHED", "author": 293, "category": 2, "creation_date": "2022-10-31T16:00:54.020Z", "last_update": "2022-10-31T16:00:54.020Z"}}, {"model": "press.post", "pk": 810, "fields": {"title": "Russia recruiting U.S.-trained Afghan commandos, vets say", "body": "Afghan special forces soldiers who fought alongside American troops and fled to Iran after the chaotic U.S. withdrawal are being recruited by the Russian military to fight in Ukraine", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sandiegouniontribune.com/news/nation-world/story/2022-10-31/russia-recruiting-u-s-trained-afghan-commandos-vets-say", "source_label": "signonsandiego", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:00:54.061Z", "last_update": "2022-10-31T16:00:54.061Z"}}, {"model": "press.post", "pk": 811, "fields": {"title": "WWE Raw preview: Roman Reigns and Brock Lesnar advertised for tonight’s Halloween edition", "body": "By Jason Powell, ProWrestling.net Editor...The post WWE Raw preview: Roman Reigns and Brock Lesnar advertised for tonight’s Halloween edition appeared first on Pro Wrestling Dot Net.", "image_link": null, "word_cloud_link": null, "source_link": "https://prowrestling.net/site/2022/10/31/wwe-raw-preview-roman-reigns-and-brock-lesnar-advertised-for-tonights-halloween-edition/", "source_label": "prowrestling", "status": "PUBLISHED", "author": 77, "category": 2, "creation_date": "2022-10-31T16:00:54.103Z", "last_update": "2022-10-31T16:00:54.103Z"}}, {"model": "press.post", "pk": 812, "fields": {"title": "Obistinile se slutnje: Skočila cena pšenice zbog kolapsa sporazuma", "body": "Cena pšenice na terminskom trgovanju skočila je nakon što se Rusija povukla iz sporazuma s Ukrajinom o izvozu žitarica posle napada na brodove koji su učestvovali u obezbeđivanju trgovačke rute preko Crnog mora.", "image_link": "https://xdn.tf.rs/2022/03/11/tan2022-3-111554446281.jpg", "word_cloud_link": null, "source_link": "https://biznis.telegraf.rs/agro-biz/3578625-skocila-cena-psenice", "source_label": "Telegraf", "status": "PUBLISHED", "author": 133, "category": 2, "creation_date": "2022-10-31T16:00:54.191Z", "last_update": "2022-10-31T16:00:54.191Z"}}, {"model": "press.post", "pk": 813, "fields": {"title": "All about Handshake – DNW Podcast #411", "body": "A deep dive into Handshake domain names. I talk to a lot of people who believe blockchain-based domains will solve all of the internet’s problems. They dismiss any counter-arguments and questions. Nole Oppermann of Hey TX is not one of those people. He’s a big believer in blockchain domains (especially Handshake), but he also recognizes […]Post link: All about Handshake – DNW Podcast #411© DomainNameWire.com 2022. This is copyrighted content. Domain Name Wire full-text RSS feeds are made available for personal use only, and may not be published on any site without permission. If you...", "image_link": "https://traffic.libsyn.com/domainnamewire/DNW411.mp3", "word_cloud_link": null, "source_link": "https://domainnamewire.com/2022/10/31/all-about-handshake-dnw-podcast-411/", "source_label": "domainnamewire", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:00:54.243Z", "last_update": "2022-10-31T16:00:54.243Z"}}, {"model": "press.post", "pk": 814, "fields": {"title": "Divyaben Kiritkumar Bhatt Killed in Traffic Accident on South Dale Avenue [Anaheim, CA]", "body": "Orange Avenue Collision Involving Amazon Truck Left One Elderly Woman Dead ANAHEIM, CA (October 31, 2022) – Wednesday evening, a crash on South Dale Avenue involving a truck left Divyaben Kiritkumar Bhatt dead. The fatal incident happened around 8:00 p.m. on South Dale and Orange avenues, per responding officials. According to the report, an Amazon […]The post Divyaben Kiritkumar Bhatt Killed in Traffic Accident on South Dale Avenue [Anaheim, CA] appeared first on LA Weekly.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laweekly.com/divyaben-kiritkumar-bhatt-killed-traffic-accident-south-dale-avenue-anaheim-ca/", "source_label": "laweekly", "status": "PUBLISHED", "author": 386, "category": 2, "creation_date": "2022-10-31T16:00:55.890Z", "last_update": "2022-10-31T16:00:55.890Z"}}, {"model": "press.post", "pk": 815, "fields": {"title": "Financial burden only partially eased for BDU after government’s fund allotment for guest lecturers", "body": "", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/cities/Tiruchirapalli/financial-burden-only-partially-eased-for-bdu-after-governments-fund-allotment-for-guest-lecturers/article66078777.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 250, "category": 2, "creation_date": "2022-10-31T16:00:55.938Z", "last_update": "2022-10-31T16:00:55.938Z"}}, {"model": "press.post", "pk": 816, "fields": {"title": "Bill Belichick Can’t Stop Gushing Over Rhamondre Stevenson", "body": "Forget being the best running back on the Patriots. Rhamondre Stevenson now is one of the top backs in the NFL. And you can bet that Bill Belichick agrees with that claim. Stevenson was the best player on the field for New England in its 22-17 win over the New York Jets at MetLife Stadium […]The post Bill Belichick Can’t Stop Gushing Over Rhamondre Stevenson appeared first on NESN.com.", "image_link": "https://nesn.com/wp-content/uploads/sites/5/2022/10/rhamondre-stevenson-6.jpg", "word_cloud_link": null, "source_link": "https://nesn.com/2022/10/bill-belichick-cant-stop-gusing-over-patriots-star-rhamondre-stevenson/", "source_label": "nesn", "status": "PUBLISHED", "author": 387, "category": 2, "creation_date": "2022-10-31T16:00:57.556Z", "last_update": "2022-10-31T16:00:57.556Z"}}, {"model": "press.post", "pk": 817, "fields": {"title": "Lula's Brazil to Focus on Relations with South America, Africa & BRICS, Analysts Say", "body": "The 2022 presidential election in Brazil ended in the triumph of Luiz Inacio Lula da Silva, who managed to win 50.9 percent of the vote during the runoff on October 30, narrowly defeating his opponent Jair Bolsonaro, who gained 49.1 percent.", "image_link": null, "word_cloud_link": null, "source_link": "https://sputniknews.com/20221031/lulas-brazil-to-focus-on-relations-with-south-america-africa--brics-analysts-say-1102874677.html", "source_label": "en", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:00:57.635Z", "last_update": "2022-10-31T16:00:57.635Z"}}, {"model": "press.post", "pk": 818, "fields": {"title": "MBBS first year textbooks in Tamil getting ready, says Health Minister", "body": "Ma. Subramaniam says Tamil will be introduced in a medical college in Chennai after getting Centre’s approval for the same", "image_link": null, "word_cloud_link": null, "source_link": "https://www.thehindu.com/news/cities/chennai/mbbs-first-year-textbooks-in-tamil-getting-ready-says-health-minister/article66078445.ece", "source_label": "The Hindu", "status": "PUBLISHED", "author": 250, "category": 2, "creation_date": "2022-10-31T16:00:57.680Z", "last_update": "2022-10-31T16:00:57.680Z"}}, {"model": "press.post", "pk": 819, "fields": {"title": "Oil slips on COVID curbs, weak factory activity data", "body": "Oil prices fell on Monday following weaker-than-expected factory activity data out of China and on concerns its widening COVID-19 curbs will curtail demand. Brent crude futures dropped 63 cents, or 0.7 per cent, to $95.14 a barrel by 0420 GMT, after slipping 1.2 per cent on Friday. US West Texas...", "image_link": null, "word_cloud_link": null, "source_link": "https://cyprus-mail.com/2022/10/31/oil-slips-on-covid-curbs-weak-factory-activity-data/", "source_label": "cyprus-mail", "status": "PUBLISHED", "author": 112, "category": 2, "creation_date": "2022-10-31T16:00:57.741Z", "last_update": "2022-10-31T16:00:57.741Z"}}, {"model": "press.post", "pk": 820, "fields": {"title": "Kurtenbach: You can’t count on the 49ers for much, but they’ll always beat the Rams", "body": "The Niners have won eight-straight regular season games against their \"rivals\" from Los Angeles", "image_link": "https://www.thereporter.com/wp-content/uploads/2022/10/BNG-L-49ERS-1031-17-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.thereporter.com/2022/10/31/kurtenbach-you-cant-count-on-the-49ers-for-much-but-theyll-always-beat-the-rams/", "source_label": "thereporter", "status": "PUBLISHED", "author": 388, "category": 2, "creation_date": "2022-10-31T16:00:59.519Z", "last_update": "2022-10-31T16:00:59.519Z"}}, {"model": "press.post", "pk": 821, "fields": {"title": "Don’t you want to say “I voted”?", "body": "I have been waiting for this year’s election since I was a kid. I turned 18 last year, so this is the first election that I can vote for. I have looked forward to casting my ballot for what seems like forever, and I finally had the chance to with the primary election in August....", "image_link": null, "word_cloud_link": null, "source_link": "https://eaglenews.org/27571/opinion/dont-you-want-to-say-i-voted/", "source_label": "eaglenews", "status": "PUBLISHED", "author": 356, "category": 2, "creation_date": "2022-10-31T16:00:59.716Z", "last_update": "2022-10-31T16:00:59.716Z"}}, {"model": "press.post", "pk": 822, "fields": {"title": "CMS: TAKKT AG: Release of a capital market information", "body": "(marketscreener.com) EQS Post-admission Duties announcement: TAKKT AG / Share buybackTAKKT AG: Release of a capital market information 31.10.2022 / 16:29 CET/CESTDissemination of a Post-admission Duties announcement transmitted by EQS News - a service of EQS Group AG.The issuer is solely responsible for the content of this...https://www.marketscreener.com/quote/stock/TAKKT-AG-436668/news/CMS-TAKKT-AG-Release-of-a-capital-market-information-42138592/?utm_medium=RSS&utm_content=20221031", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/TAKKT-AG-436668/news/CMS-TAKKT-AG-Release-of-a-capital-market-information-42138592/?utm_medium=RSS&utm_content=20221031", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:00:59.773Z", "last_update": "2022-10-31T16:00:59.773Z"}}, {"model": "press.post", "pk": 823, "fields": {"title": "4 million NYC workers will now see how much jobs pay before they apply—here's what to know", "body": "Starting Nov. 1, most employers in New York City will be required to list the salary range on all posted job ads, promotions and transfer opportunities. Experts say salary transparency will play a role in closing the wage gap.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cnbc.com/2022/10/31/salary-ranges-are-coming-to-nyc-job-ads-on-nov-1heres-what-to-know.html", "source_label": "CNBC", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:00:59.834Z", "last_update": "2022-10-31T16:00:59.834Z"}}, {"model": "press.post", "pk": 824, "fields": {"title": "Researchers issue fresh appeal to identify WWI troops pictured amid Battle of the Somme", "body": "Amid the Battle of the Somme in 1916, thousands of British, Australian and French soldiers posed for photos that were later sent home to relatives.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/31/13/64024003-0-image-m-63_1667222677212.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11373245/Researchers-issue-fresh-appeal-identify-WWI-troops-pictured-amid-Battle-Somme.html?ns_mchannel=rss&ito=1490&ns_campaign=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:00:59.876Z", "last_update": "2022-10-31T16:00:59.876Z"}}, {"model": "press.post", "pk": 825, "fields": {"title": "Watch: Man slices through apples while bouncing on pogo stick for world record", "body": "An Idaho man broke a Guinness World Record by using a samurai sword to chop through 56 airborne apples while bouncing on a pogo stick.", "image_link": "https://cdnph.upi.com/ph/st/th/3281667229761/2022/i/16672298909845/v1.5/Man-slices-through-apples-while-bouncing-on-pogo-stick-for-world-record.jpg", "word_cloud_link": null, "source_link": "https://www.upi.com/Odd_News/2022/10/31/Guinness-World-Records-David-Rush-pogo-stick-apple-slicing/3281667229761/", "source_label": "upi", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:00:59.934Z", "last_update": "2022-10-31T16:00:59.934Z"}}, {"model": "press.post", "pk": 826, "fields": {"title": "Steve-O regrets ‘ghosting’ Stacey Solomon: ‘I still beat myself up’", "body": "They dated for six months in 2015.", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/10/31/steve-o-still-beats-himself-up-over-how-stacey-solomon-romance-ended-17669220/", "source_label": "Metro", "status": "PUBLISHED", "author": 389, "category": 2, "creation_date": "2022-10-31T16:01:01.645Z", "last_update": "2022-10-31T16:01:01.645Z"}}, {"model": "press.post", "pk": 827, "fields": {"title": "Woman, 21, gives birth on flight, names baby after unbelievable birth story", "body": "A young mother gave birth to her baby boy — 36,000 feet in the air.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/10/plane-baby.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/10/31/woman-21-gives-birth-on-flight-names-baby-after-birth-story/", "source_label": "Post", "status": "PUBLISHED", "author": 390, "category": 2, "creation_date": "2022-10-31T16:01:03.669Z", "last_update": "2022-10-31T16:01:03.669Z"}}, {"model": "press.post", "pk": 828, "fields": {"title": "Russia 'suffers deadliest day of invasion yet with nearly a THOUSAND troops killed'", "body": "In a further blow to Putin's invasion, 950 Russian soldiers were killed in a single day, pushing his force's death toll up to at least 71,200, Kyiv has claimed.", "image_link": "https://i.dailymail.co.uk/1s/2022/10/31/15/64029027-0-image-m-35_1667229043649.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11373661/Russia-suffers-deadliest-day-invasion-nearly-THOUSAND-troops-killed.html?ns_mchannel=rss&ito=1490&ns_campaign=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:01:03.863Z", "last_update": "2022-10-31T16:01:03.863Z"}}, {"model": "press.post", "pk": 829, "fields": {"title": "Brazos County Property Tax Statements Are In The Snail Mail", "body": "Behind schedule by two to four weeks, Brazos County property tax statements are in the snail mail. Tax assessor-collector Kristy Roe says anyone who does not want to wait for their statement to arrive can [Read More...]The post Brazos County Property Tax Statements Are In The Snail Mail appeared first on WTAW | 1620AM & 94.5FM.", "image_link": null, "word_cloud_link": null, "source_link": "https://wtaw.com/brazos-county-property-tax-statements-are-in-the-snail-mail/", "source_label": "wtaw", "status": "PUBLISHED", "author": 391, "category": 2, "creation_date": "2022-10-31T16:01:06.591Z", "last_update": "2022-10-31T16:01:06.591Z"}}, {"model": "press.post", "pk": 830, "fields": {"title": "Zhejiang Expressway Co Ld - 2022 Third Quarterly Results Announcement", "body": "(marketscreener.com) 2022 Third Quarterly Results AnnouncementZhejiang Expressway Co., Ltd. announces 2022 Third Quarterly Results AnnouncementFor details, please visit: https://mma.prnewswire.com/media/1933531/E_3Q_Results___20221031.pdfhttps://www.marketscreener.com/quote/stock/ZHEJIANG-EXPRESSWAY-CO--4007480/news/Zhejiang-Expressway-Co-Ld-2022-Third-Quarterly-Results-Announcement-42138587/?utm_medium=RSS&utm_content=20221031", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ZHEJIANG-EXPRESSWAY-CO--4007480/news/Zhejiang-Expressway-Co-Ld-2022-Third-Quarterly-Results-Announcement-42138587/?utm_medium=RSS&utm_content=20221031", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-10-31T16:01:06.676Z", "last_update": "2022-10-31T16:01:06.676Z"}}, {"model": "press.post", "pk": 831, "fields": {"title": "U.S. planning to address handling ransomware attacks", "body": "U.S. officials - along with three dozen allies - will hold talks this week on the issue of ransomware attacks and their cost to infrastructures and businesses worldwide.The post U.S. planning to address handling ransomware attacks appeared first on KYMA.", "image_link": null, "word_cloud_link": null, "source_link": "https://kyma.com/news/top-stories/2022/10/31/u-s-planning-to-address-handling-ransomware-attacks/", "source_label": "kyma", "status": "PUBLISHED", "author": 392, "category": 2, "creation_date": "2022-10-31T16:01:09.383Z", "last_update": "2022-10-31T16:01:09.383Z"}}, {"model": "press.post", "pk": 832, "fields": {"title": "Moving ahead with EVs, the DOD testing best methods to rollout EV chargers", "body": "Select military bases in the US will have electric charging stations installed, as the DOD continues to expand its efforts in electric. Continue reading at TweakTown >", "image_link": "https://www.tweaktown.com/images/news/8/9/89233_01_moving-ahead-with-evs-the-dod-testing-best-methods-to-rollout-ev-chargers.jpg", "word_cloud_link": null, "source_link": "https://www.tweaktown.com/news/89233/moving-ahead-with-evs-the-dod-testing-best-methods-to-rollout-ev-chargers/index.html", "source_label": "tweaktown", "status": "PUBLISHED", "author": 393, "category": 2, "creation_date": "2022-10-31T16:01:11.968Z", "last_update": "2022-10-31T16:01:11.968Z"}}, {"model": "press.post", "pk": 833, "fields": {"title": "Apple iPhone 15: everything we know about the 2023 iPhone", "body": "Though Apple's iPhone 14 lineup recently came out, that's old news — it's all about the iPhone 15 in 2023! Here's what we know so far.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2022/10/iphone-14-pro-max-review-16.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/mobile/apple-iphone-15-release-date-leaks-price-and-more/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 394, "category": 2, "creation_date": "2022-11-01T16:00:57.245Z", "last_update": "2022-11-01T16:00:57.245Z"}}, {"model": "press.post", "pk": 834, "fields": {"title": "Man gets 50 years for possessing, producing child pornography", "body": "LEE COUNTY, Fla. — A Lehigh Acres man was sentenced to 50 years in federal prison for producing and possessing images and videos depicting the sexual abuse of a child. According to court documents, Heriberto Batista Montijo, 43, produced the images and videos of his sexual abuse against two minors. PREVIOUS COVERAGE: Lee County man […]The post Man gets 50 years for possessing, producing child pornography appeared first on NBC2 News.", "image_link": null, "word_cloud_link": null, "source_link": "https://nbc-2.com/news/crime/2022/11/01/man-gets-50-years-for-possessing-producing-child-pornography/", "source_label": "nbc-2", "status": "PUBLISHED", "author": 395, "category": 2, "creation_date": "2022-11-01T16:00:59.085Z", "last_update": "2022-11-01T16:00:59.085Z"}}, {"model": "press.post", "pk": 835, "fields": {"title": "This Years Halloween Haunts", "body": "The holiday season is finally here and it brings opportunities to spend time with family and the community while still keeping the mission going. Beale Airmen have been hard at work to give the people of Beale a chance to connect with the community.Two community events were held this past Friday: the Exceptional Family Member Program (EFMP) Sensory Friendly Halloween event and the Trick or Treatment.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.dvidshub.net/news/432408/years-halloween-haunts", "source_label": "dvidshub", "status": "PUBLISHED", "author": 396, "category": 2, "creation_date": "2022-11-01T16:01:01.053Z", "last_update": "2022-11-01T16:01:01.053Z"}}, {"model": "press.post", "pk": 836, "fields": {"title": "Enerplus Corporation: More Work To Be Done", "body": "Enerplus Corporation: More Work To Be Done", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4551439-enerplus-corporation-work-to-be-done?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-01T16:01:01.141Z", "last_update": "2022-11-01T16:01:01.141Z"}}, {"model": "press.post", "pk": 837, "fields": {"title": "Steelers Turning Point: Fly Receivers Fly, On the Road to Victory", "body": "Following each game in the 2022 Pittsburgh Steelers season, I will highlight the event or string of events in the game that is the turning point. Not all turning points will be earth-shattering but are meant to give a unique look at how we arrived at the outcome of the game, one that may be […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/11/steelers-turning-point-fly-receivers-fly-on-the-road-to-victory/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 341, "category": 2, "creation_date": "2022-11-01T16:01:01.257Z", "last_update": "2022-11-01T16:01:01.257Z"}}, {"model": "press.post", "pk": 838, "fields": {"title": "This Years Halloween Haunts [Image 5 of 5]", "body": "Col. Geoffrey Church, 9th Reconnaissance Wing commander, and Command Chief Master Sgt. Breana Oliver visited a haunted house at 9th Physiological Support Squadron on Beale Air Force Base, Calif., on Oct. 28, 2022. The haunted house’s theme this year was an escaped dinosaur. (U.S. Air Force photo by Staff Sgt. Coville McFee)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2211/7489858/250x161_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7489858/years-halloween-haunts", "source_label": "dvidshub", "status": "PUBLISHED", "author": 397, "category": 2, "creation_date": "2022-11-01T16:01:04.001Z", "last_update": "2022-11-01T16:01:04.001Z"}}, {"model": "press.post", "pk": 839, "fields": {"title": "Federated Hermes, Inc. (NYSE:FHI) Shares Sold by Northwestern Mutual Investment Management Company LLC", "body": "Federated Hermes, Inc. (NYSE:FHI) Shares Sold by Northwestern Mutual Investment Management Company LLC", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/01/federated-hermes-inc-nysefhi-shares-sold-by-northwestern-mutual-investment-management-company-llc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-01T16:01:04.078Z", "last_update": "2022-11-01T16:01:04.078Z"}}, {"model": "press.post", "pk": 840, "fields": {"title": "This Years Halloween Haunts [Image 4 of 5]", "body": "Children from Team Beale participate in the 9th Medical Group’s Halloween event Oct. 28, 2022, at Beale Air Force Base, Calif. The 9th MDG celebrated Halloween with a “Trick or Treatment” theme for all of Team Beale to partake in the festivities. (U.S. Air Force photo by Master Sgt. Nancy Falcon)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2211/7489857/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7489857/years-halloween-haunts", "source_label": "dvidshub", "status": "PUBLISHED", "author": 398, "category": 2, "creation_date": "2022-11-01T16:01:06.444Z", "last_update": "2022-11-01T16:01:06.444Z"}}, {"model": "press.post", "pk": 841, "fields": {"title": "This Years Halloween Haunts [Image 3 of 5]", "body": "A child reaches for candy at the Community Activity Center on Beale Air Force Base, Calif., on Oct. 28, 2022. The Exceptional Family Member Program Sensory Friendly Halloween event included family friendly activities for children, like a costume contest and building contest. (U.S. Air Force photo by Airman 1st Class Alexis Pentzer)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2211/7489856/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7489856/years-halloween-haunts", "source_label": "dvidshub", "status": "PUBLISHED", "author": 396, "category": 2, "creation_date": "2022-11-01T16:01:06.645Z", "last_update": "2022-11-01T16:01:06.645Z"}}, {"model": "press.post", "pk": 842, "fields": {"title": "This Years Halloween Haunts [Image 2 of 5]", "body": "A family participates in an event at the Community Activity Center on Beale Air Force Base, Calif., on Oct. 28, 2022. The Exceptional Family Member Program Sensory Friendly Halloween event included family friendly activities for children, like a costume contest and building contest. (U.S. Air Force photo by Airman 1st Class Alexis Pentzer)", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2211/7489855/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/image/7489855/years-halloween-haunts", "source_label": "dvidshub", "status": "PUBLISHED", "author": 396, "category": 2, "creation_date": "2022-11-01T16:01:06.816Z", "last_update": "2022-11-01T16:01:06.816Z"}}, {"model": "press.post", "pk": 843, "fields": {"title": "The Cluckery in Mequon to give customers a chance to win free chicken tenders for a year", "body": "MILWAUKEE – The Cluckery, owned by the Milwaukee Bucks, are giving customers the chance to win free chicken tenders and tater tots for an entire year in celebration of their one-year anniversary which is on Friday, Nov. 4, according to a press release. The restaurant is located the Mequon Pavilions at 10944 N. Port Washington […]The post The Cluckery in Mequon to give customers a chance to win free chicken tenders for a year appeared first on WTMJ.", "image_link": null, "word_cloud_link": null, "source_link": "https://wtmj.com/news/2022/11/01/the-cluckery-in-mequon-to-give-customers-a-chance-to-win-free-chicken-tenders-for-a-year/", "source_label": "620wtmj", "status": "PUBLISHED", "author": 399, "category": 2, "creation_date": "2022-11-01T16:01:09.503Z", "last_update": "2022-11-01T16:01:09.503Z"}}, {"model": "press.post", "pk": 844, "fields": {"title": "PRworks managing partner takes full ownership ", "body": "Jason Kirsch has taken full ownership of PRworks, a branding, marketing and public relations firm in Harrisburg. The post PRworks managing partner takes full ownership  appeared first on Central Penn Business Journal.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cpbj.com/prworks-managing-partner-takes-full-ownership/", "source_label": "centralpennbusiness", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-01T16:01:09.651Z", "last_update": "2022-11-01T16:01:09.651Z"}}, {"model": "press.post", "pk": 845, "fields": {"title": "Pittsburg police informant gave detectives information on a cold case homicide, but ended up implicating himself", "body": "Paea Tasini, 46, was charged with murdering 22-year-old Danny Guyse Jr. in 2000 in Pittsburg.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2021/02/EBT-L-PITTCOLD-0219-01-1-e1667253446184.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/11/01/pittsburg-police-informant-gave-detectives-information-on-a-2000-fatal-shooting-but-he-only-ended-up-implicating-himself/", "source_label": "The Mercury News", "status": "PUBLISHED", "author": 170, "category": 2, "creation_date": "2022-11-01T16:01:09.840Z", "last_update": "2022-11-01T16:01:09.840Z"}}, {"model": "press.post", "pk": 846, "fields": {"title": "Police search for 2 after armed highway robbery reported on Mudie Lake First Nation", "body": "Police say the two suspects staged an accident along Highway 21, and allege they robbed a person who had stopped to offer help.", "image_link": "https://globalnews.ca/wp-content/uploads/2018/11/pact-north-battleford-rcmp-mental-health1.jpg?quality=85&strip=all&w=720&h=393&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9241542/highway-robbery-mudie-lake-first-nation-highway-21/", "source_label": "chbcnews", "status": "PUBLISHED", "author": 400, "category": 2, "creation_date": "2022-11-01T16:01:12.560Z", "last_update": "2022-11-01T16:01:12.564Z"}}, {"model": "press.post", "pk": 847, "fields": {"title": "Giancarlo Granda Shares Kinky Details of the Jerry Falwell Jr’s Sex Scandal in Hulu’s ‘God Forbid’ Doc", "body": "The former pool attendant tells all in this juicy documentary.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/11/hulu-jerry_falwell-documentary.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/11/01/god-forbid-falwell-documentary-sex-scandal-hulu/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-11-01T16:01:12.713Z", "last_update": "2022-11-01T16:01:12.713Z"}}, {"model": "press.post", "pk": 848, "fields": {"title": "UPDATE: Dover petrol bomber named as counter-terrorism cops investigate", "body": "A MAN petrol bombed a UK migrant processing centre in the English port of Dover before killing himself. Update November 1, 16.30 – Andrew Leak, aged 66, has been named as the Dover petrol bomber. “Loan wolf” Leak travelled from his home in High Wycombe, Buckinghamshire, to Dover in Kent to “throw incendiary devices at the […]The post UPDATE: Dover petrol bomber named as counter-terrorism cops investigate appeared first on Euro Weekly News.", "image_link": "https://euroweeklynews.com/wp-content/uploads/2022/10/migrantcentre.jpg", "word_cloud_link": null, "source_link": "https://euroweeklynews.com/2022/11/01/man-petrol-bombs-uk-migrant-centre-in-dover-before-killing-himself-not-terrorist-incident/", "source_label": "euroweeklynews", "status": "PUBLISHED", "author": 401, "category": 2, "creation_date": "2022-11-01T16:01:15.084Z", "last_update": "2022-11-01T16:01:15.084Z"}}, {"model": "press.post", "pk": 849, "fields": {"title": "TOTO : Result for the Six Months Ended September 30, 2022", "body": "(marketscreener.com) First Half Results for Fiscal Year Ending March 2023 TOTO LTD. October 28, 2022 Copyright © TOTO LTD. All Rights Reserved. ...https://www.marketscreener.com/quote/stock/TOTO-LTD-6491926/news/TOTO-Result-for-the-Six-Months-Ended-September-30-2022-42167349/?utm_medium=RSS&utm_content=20221101", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/TOTO-LTD-6491926/news/TOTO-Result-for-the-Six-Months-Ended-September-30-2022-42167349/?utm_medium=RSS&utm_content=20221101", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-01T16:01:15.262Z", "last_update": "2022-11-01T16:01:15.262Z"}}, {"model": "press.post", "pk": 850, "fields": {"title": "Burford Capital : Investor Presentation—November 2022", "body": "(marketscreener.com) NOVEMBER 2022 Burford Capital Investor Presentation This presentation is for the use of Burford's public shareholders and is not an offering of any Burford private fund. ...https://www.marketscreener.com/quote/stock/BURFORD-CAPITAL-LIMITED-5668352/news/Burford-Capital-Investor-Presentation-mdash-November-2022-42167348/?utm_medium=RSS&utm_content=20221101", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/BURFORD-CAPITAL-LIMITED-5668352/news/Burford-Capital-Investor-Presentation-mdash-November-2022-42167348/?utm_medium=RSS&utm_content=20221101", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-01T16:01:15.413Z", "last_update": "2022-11-01T16:01:15.413Z"}}, {"model": "press.post", "pk": 851, "fields": {"title": "High adopters of AI-enabled screening tool are more likely to diagnose left ventricular dysfunction than low adopters, Mayo Clinic study finds", "body": "Artificial intelligence can improve diagnosis and treatment for patients, but first the AI-enabled clinical tools have to be easily available and used.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781497/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 402, "category": 2, "creation_date": "2022-11-01T16:01:18.769Z", "last_update": "2022-11-01T16:01:18.769Z"}}, {"model": "press.post", "pk": 852, "fields": {"title": "Simulating the Shear Destruction of Red Blood Cells", "body": "The destruction of red blood cells, or mechanical hemolysis, is an inevitable complication of interventional devices, so scientists want to gain a better understanding of the phenomenon. In Physics of Fluids, researchers develop a red blood cell destruction model based on simulations of dissipative particle dynamics within a high shear flow. The team discovered that acceleration during shearing is a major factor in red blood cell destruction, beyond exposure time and shear stress. They recommend adding a flow buffer structure to the structural design of ventricular assist devices to reduce part...", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781286/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 403, "category": 2, "creation_date": "2022-11-01T16:01:21.048Z", "last_update": "2022-11-01T16:01:21.048Z"}}, {"model": "press.post", "pk": 853, "fields": {"title": "Sites in the Brain Where RNA Is Edited Could Help to Better Understand Neurodevelopment and Disease, Researchers Have Found", "body": "Mount Sinai researchers have catalogued thousands of sites in the brain where RNA is modified throughout the human lifespan in a process known as adenosine-to-inosine (A-to-I) editing, offering important new avenues for understanding the cellular and molecular mechanisms of brain development and how they factor into both health and disease.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781155/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 404, "category": 2, "creation_date": "2022-11-01T16:01:23.119Z", "last_update": "2022-11-01T16:01:23.119Z"}}, {"model": "press.post", "pk": 854, "fields": {"title": "Study Finds Vascular Neck Restraint Used by Law Enforcement Officers Is Safe and Effective", "body": "Many police departments have banned the use of neck restraints, citing safety concerns in the wake of incidents that have received widespread media coverage in recent years. However, new research from Wake Forest University School of Medicine shows that vascular neck restraint (VNR), when applied by trained law enforcement officers, is a successful and safe technique for officers to use when arresting aggressive or violent suspects.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781494/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 405, "category": 2, "creation_date": "2022-11-01T16:01:25.225Z", "last_update": "2022-11-01T16:01:25.225Z"}}, {"model": "press.post", "pk": 855, "fields": {"title": "Silver Cross Collaborates with University of Chicago Medicine to Expand Neuroscience Program", "body": "UChicago Medicine will expand its collaboration with Silver Cross Hospital by adding neuroscience and neurological disorders care to the New Lenox facility.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781491/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 406, "category": 2, "creation_date": "2022-11-01T16:01:27.353Z", "last_update": "2022-11-01T16:01:27.353Z"}}, {"model": "press.post", "pk": 856, "fields": {"title": "Chris Wondolowski, a ‘surreal’ life, and the pivotal World Cup miss that still haunts him", "body": "The last time the U.S. played in a World Cup, Chris Wondolowski had a shot at becoming a legend. He missed it, and it still bothers him to this day. But he's found a way cope to with the moment, which will surely be dragged to the fore again in Qatar this month.", "image_link": null, "word_cloud_link": null, "source_link": "https://sports.yahoo.com/chris-wondolowski-a-surreal-life-and-the-world-cup-miss-that-still-haunts-it-153005216.html?src=rss", "source_label": "sports", "status": "PUBLISHED", "author": 379, "category": 2, "creation_date": "2022-11-01T16:01:27.473Z", "last_update": "2022-11-01T16:01:27.473Z"}}, {"model": "press.post", "pk": 857, "fields": {"title": "Dr. Oz's Research Supervisor Declined His Request to Deny That His Studies Killed Puppies", "body": "In early October, Jezebel reported that medical research led by Pennsylvania Republican Senate nominee Dr. Mehmet Oz resulted in the deaths of 31 pigs, 661 rabbits and rodents, and 329 dogs, including an entire litter of puppies—as well as horrific torture before their deaths. Oz’s team at Columbia University…Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://jezebel.com/dr-ozs-research-supervisor-declined-his-request-to-den-1849727396", "source_label": "jezebel", "status": "PUBLISHED", "author": 407, "category": 2, "creation_date": "2022-11-01T16:01:29.437Z", "last_update": "2022-11-01T16:01:29.437Z"}}, {"model": "press.post", "pk": 858, "fields": {"title": "The Winchesters Star Meg Donnelly's First Comic Con", "body": "Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://gizmodo.com/the-winchesters-star-meg-donnellys-first-comic-con-1849714579", "source_label": "gizmodo", "status": "PUBLISHED", "author": 408, "category": 2, "creation_date": "2022-11-01T16:01:31.457Z", "last_update": "2022-11-01T16:01:31.457Z"}}, {"model": "press.post", "pk": 859, "fields": {"title": "People just aren't switching to Windows 11", "body": "When Microsoft announced Windows 11 a year ago, it also said it would continue to support Windows 10 until (at least) 2025. Knowing this, users have largely opted to stay with Windows 10 -- better the devil you know, right? -- and that’s a trend that doesn’t look set to change any time soon. SEE ALSO: You need much longer to test the new Windows 11 2022 Update (22H2) -- this secret trick will let you massively extend the rollback time StatCounter today issues its latest monthly report on the state of the desktop operating system market and it doesn’t… [Continue Reading]", "image_link": null, "word_cloud_link": null, "source_link": "https://betanews.com/2022/11/01/windows-11-low-share/", "source_label": "betanews", "status": "PUBLISHED", "author": 409, "category": 2, "creation_date": "2022-11-01T16:01:33.265Z", "last_update": "2022-11-01T16:01:33.266Z"}}, {"model": "press.post", "pk": 860, "fields": {"title": "Haiti - Cholera : Beginning of awareness activities and distribution of hygiene kits", "body": "In response to the rapid and dramatic increase in statistics concerning Cholera, the General Directorate of Civil Protection (DPC) in collaboration with the Ministry of Public Health has started community mobilization...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.haitilibre.com/en/news-38029-haiti-cholera-beginning-of-awareness-activities-and-distribution-of-hygiene-kits.html", "source_label": "Haiti Libre", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-01T16:01:33.343Z", "last_update": "2022-11-01T16:01:33.344Z"}}, {"model": "press.post", "pk": 861, "fields": {"title": "Pictured: Petrol bomber, 66, who attacked Dover migrant centre before killing himself", "body": "The petrol bomber who attacked a Dover migrant centre before killing himself was today named as father-of-one Andrew Leak - as terror police officially took over the investigation.", "image_link": "https://i.dailymail.co.uk/1s/2022/11/01/15/64074491-0-image-m-33_1667316099748.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11377961/Pictured-Petrol-bomber-66-attacked-Dover-migrant-centre-killing-himself.html?ns_mchannel=rss&ito=1490&ns_campaign=1490", "source_label": "dailymail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-01T16:01:33.421Z", "last_update": "2022-11-01T16:01:33.421Z"}}, {"model": "press.post", "pk": 862, "fields": {"title": "Industry minister to address Canadian marketers on proposed privacy law", "body": "Speech today will support the Liberal government's second attempt at privacy", "image_link": "https://i.itworldcanada.com/wp-content/uploads/2018/02/GettyImages-656497782-e1518026432223-620x250.jpg", "word_cloud_link": null, "source_link": "https://www.itworldcanada.com/article/industry-minister-to-address-canadian-marketers-on-proposed-privacy-law/511062", "source_label": "itworldcanada", "status": "PUBLISHED", "author": 410, "category": 2, "creation_date": "2022-11-01T16:01:35.277Z", "last_update": "2022-11-01T16:01:35.277Z"}}, {"model": "press.post", "pk": 863, "fields": {"title": "NFL legend Ray Guy dies — dead at 73", "body": "NFL legend and Pro Football Hall of Fame punter Ray Guy has died. Guy died on Wednesday morning following a lengthy illness. He was 73. News: Hall of Fame punter Ray Guy died this morning at 73, following a lengthy illness. He's considered the greatest punter of all time. The Ray Guy Award is given...The post NFL legend Ray Guy dies — dead at 73 appeared first on Larry Brown Sports.", "image_link": null, "word_cloud_link": null, "source_link": "https://larrybrownsports.com/football/nfl-legend-ray-guy-dies-dead/606626", "source_label": "larrybrownsports", "status": "PUBLISHED", "author": 411, "category": 2, "creation_date": "2022-11-03T16:01:12.985Z", "last_update": "2022-11-03T16:01:12.985Z"}}, {"model": "press.post", "pk": 864, "fields": {"title": "Selena Gomez Teases How Many Songs She’s Written For Her Next Album And When She Might Start Recording", "body": "Gomez described how her new music compares to the tone of 'My Mind & Me.'", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/pop/selena-gomez-recording-music-new-album/", "source_label": "hitfix", "status": "PUBLISHED", "author": 412, "category": 2, "creation_date": "2022-11-03T16:01:15.346Z", "last_update": "2022-11-03T16:01:15.346Z"}}, {"model": "press.post", "pk": 865, "fields": {"title": "Joe Cole and Glenn Hoddle hail ‘excellent’ Denis Zakaria after impressive Chelsea debut", "body": "He impressed...", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/11/03/joe-cole-and-glenn-hoddle-hail-excellent-denis-zakaria-after-impressive-chelsea-debut-17690821/", "source_label": "Metro", "status": "PUBLISHED", "author": 413, "category": 2, "creation_date": "2022-11-03T16:01:17.921Z", "last_update": "2022-11-03T16:01:17.921Z"}}, {"model": "press.post", "pk": 866, "fields": {"title": "How To Protect Yourself From The Fed’s Inflation-Fighting, Layoff-Inducing Policies", "body": "Higher interest rates are deliberately meant to cool the economy. It becomes more expensive for businesses to borrow money to build new projects, make acquisitions and hire personnel. The policy weakens growth, which could lead to a recession followed by layoffs.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/6363d9f6e07bb68c8534e70b/0x0.jpg?width=960&precrop=3578%2C2012%2Cx0%2Cy12", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/jackkelly/2022/11/03/how-to-protect-yourself-from-the-feds-inflation-fighting-layoff-inducing-policies/", "source_label": "Leadership", "status": "PUBLISHED", "author": 414, "category": 2, "creation_date": "2022-11-03T16:01:20.124Z", "last_update": "2022-11-03T16:01:20.124Z"}}, {"model": "press.post", "pk": 867, "fields": {"title": "‘A nightmare.’ 11 of the 14 people wounded in East Garfield Park were members of a family who had gathered to remember a loved one", "body": "A woman who only wanted to be identified as Mrs. Patterson, organizer and victim of a vigil that was shot up on Halloween, begins to cry as she speaks to Ald. Jason Ervin before a vigil for the victims of the shooting at West Polk Street and South California Avenue, in the Garfield Park neighborhood, Wednesday, Nov. 2, 2022. Tyler Pasciak LaRiviere/Sun-Times The vigil Monday evening in East Garfield Park was meant to be a brief moment of joy for a family in mourning. Relatives of Shakia Lucas sent red, white and gold balloons into the air just after 8 p.m., then remained on the corner of...", "image_link": null, "word_cloud_link": null, "source_link": "https://chicago.suntimes.com/2022/11/3/23437962/family-traumatized-mass-shooting-wounds-10-relatives-west-side-california-polk", "source_label": "suntimes", "status": "PUBLISHED", "author": 415, "category": 2, "creation_date": "2022-11-03T16:01:22.631Z", "last_update": "2022-11-03T16:01:22.631Z"}}, {"model": "press.post", "pk": 868, "fields": {"title": "Selena Gomez downplays viral photos with Hailey Bieber", "body": "Selena Gomez and Hailey Bieber recently proved there was no bad blood between them by posing for photos.", "image_link": "https://www.music-news.com/images/news/cover/153290.jpg", "word_cloud_link": null, "source_link": "https://www.music-news.com/news/UK/153290/Selena-Gomez-downplays-viral-photos-with-Hailey-Bieber", "source_label": "music-news", "status": "PUBLISHED", "author": 182, "category": 2, "creation_date": "2022-11-03T16:01:22.865Z", "last_update": "2022-11-03T16:01:22.865Z"}}, {"model": "press.post", "pk": 869, "fields": {"title": "Lab worker Googled serial killers after strangling colleague, jury told", "body": "Lab worker Googled serial killers after strangling colleague, jury told", "image_link": "https://media.zenfs.com/en/pa_viral_news_uk_120/409fc1d6e3b72ac9e25bf36247f83ebd", "word_cloud_link": null, "source_link": "https://uk.news.yahoo.com/lab-worker-googled-serial-killers-153128244.html", "source_label": "Yahoo! UK News", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:23.007Z", "last_update": "2022-11-03T16:01:23.007Z"}}, {"model": "press.post", "pk": 870, "fields": {"title": "Today in history: Sputnik 2 launches, the Alaska Highway is completed and Gretzky scores his first goal as an Oiler", "body": "On today’s date, Nov. 3, in history: In 1580, English explorer Sir Francis Drake returned from his voyage around the world. In 1640, England’s Long Parliament — the name given to the fifth and last parliament of Charles I — assembled. The parliament quarrelled bitterly with Charles and was repeatedly purged until it dissolved itself […]", "image_link": null, "word_cloud_link": null, "source_link": "https://calgaryherald.com/news/local-news/today-in-history-sputnik-2-launches-the-alaska-highway-is-completed-and-gretzky-scores-his-first-goal-as-an-oiler", "source_label": "calgaryherald", "status": "PUBLISHED", "author": 32, "category": 2, "creation_date": "2022-11-03T16:01:23.179Z", "last_update": "2022-11-03T16:01:23.179Z"}}, {"model": "press.post", "pk": 871, "fields": {"title": "Third suspect arrested in 2016 killing in Ahuntsic-Cartierville", "body": "Montreal homicide detectives travelled to Saint Vincent and the Grenadines to arrest Shamora Robertson, 35.", "image_link": null, "word_cloud_link": null, "source_link": "https://montrealgazette.com/news/local-news/third-suspect-arrested-in-2016-killing-in-ahuntsic-cartierville", "source_label": "montrealgazette", "status": "PUBLISHED", "author": 416, "category": 2, "creation_date": "2022-11-03T16:01:25.409Z", "last_update": "2022-11-03T16:01:25.409Z"}}, {"model": "press.post", "pk": 872, "fields": {"title": "Pilot project will see some WestJet planes running on sustainable fuel", "body": "For the next three months, anyone flying out of San Francisco to Calgary using WestJet will be part of the airline's commitment to helping the environment.", "image_link": "https://www.ctvnews.ca/polopoly_fs/1.6137381.1667489227!/httpImage/image.jpg_gen/derivatives/landscape_300/image.jpg", "word_cloud_link": null, "source_link": "https://calgary.ctvnews.ca/pilot-project-will-see-some-westjet-planes-running-on-sustainable-fuel-1.6137367", "source_label": "calgary", "status": "PUBLISHED", "author": 417, "category": 2, "creation_date": "2022-11-03T16:01:27.824Z", "last_update": "2022-11-03T16:01:27.824Z"}}, {"model": "press.post", "pk": 873, "fields": {"title": "Magic mushroom compound shows promise as depression treatment in key study", "body": "he main psychoactive ingredient found in magic mushrooms can significantly reduce symptoms of difficult-to-treat depression, data from the largest clinical trial ever to test the keenly-watched compound has found. The mid-stage study, conducted by the London-based and Nasdaq-listed COMPASS Pathways CMPS.O, involved 233 patients with so-called treatment-resistant depression who have...", "image_link": null, "word_cloud_link": null, "source_link": "https://cyprus-mail.com/2022/11/03/magic-mushroom-compound-shows-promise-as-depression-treatment-in-key-study/", "source_label": "cyprus-mail", "status": "PUBLISHED", "author": 112, "category": 2, "creation_date": "2022-11-03T16:01:28.124Z", "last_update": "2022-11-03T16:01:28.124Z"}}, {"model": "press.post", "pk": 874, "fields": {"title": "Brittney Griner faces bleak life in Russian penal colony", "body": "LONDON — Tedious manual work, poor hygiene and lack of access to medical care – such are the conditions awaiting U.S. basketball star Brittney Griner in a Russian penal colony after she lost her appeal last week against a nine-year drug sentence. It’s a world familiar to Maria Alyokhina, a member of feminist art ensemble […]", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/crime-pmn/brittney-griner-faces-bleak-life-in-russian-penal-colony", "source_label": "nationalpost", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-11-03T16:01:28.242Z", "last_update": "2022-11-03T16:01:28.242Z"}}, {"model": "press.post", "pk": 875, "fields": {"title": "BiondVax to present at Recent Advances in Fermentation Technology (RAFT) 14 Conference", "body": "(marketscreener.com) JERUSALEM, Nov. 3, 2022 /PRNewswire/ -- BiondVax Pharmaceuticals Ltd. , a biotechnology company focused on developing, manufacturing, and commercializing innovative products for the prevention and treatment of infectious diseases and other illnesses, announced today that Dr. Dalit Weinstein Fischer, BiondVax's Head of Technical R&D,...https://www.marketscreener.com/quote/stock/BIONDVAX-PHARMACEUTICALS-22054022/news/BiondVax-to-present-at-Recent-Advances-in-Fermentation-Technology-RAFT-14-Conference-42195334/?utm_medium=RSS&utm_content=20221103", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/BIONDVAX-PHARMACEUTICALS-22054022/news/BiondVax-to-present-at-Recent-Advances-in-Fermentation-Technology-RAFT-14-Conference-42195334/?utm_medium=RSS&utm_content=20221103", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:28.471Z", "last_update": "2022-11-03T16:01:28.471Z"}}, {"model": "press.post", "pk": 876, "fields": {"title": "ASM JOINS SEMICONDUCTOR CLIMATE CONSORTIUM AS FOUNDING MEMBER", "body": "(marketscreener.com) Almere, The NetherlandsNovember 03, 2022    ASM International today announced it has joined as a founding member of the Semiconductor Climate Consortium , the first global collaborative of semiconductor companies focused on reducing greenhouse gas emissions. The SCC is formed with other companies across the semiconductor...https://www.marketscreener.com/quote/stock/ASM-INTERNATIONAL-N-V-6312/news/ASM-JOINS-SEMICONDUCTOR-CLIMATE-CONSORTIUM-AS-FOUNDING-MEMBER-42195330/?utm_medium=RSS&utm_content=20221103", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ASM-INTERNATIONAL-N-V-6312/news/ASM-JOINS-SEMICONDUCTOR-CLIMATE-CONSORTIUM-AS-FOUNDING-MEMBER-42195330/?utm_medium=RSS&utm_content=20221103", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:28.630Z", "last_update": "2022-11-03T16:01:28.630Z"}}, {"model": "press.post", "pk": 877, "fields": {"title": "Fly Play hf.: Operating profit for the first time for PLAY in Q3 ", "body": "(marketscreener.com) Operating profit for the first time for PLAY in Q3  PLAY carried around 311 thousand passengers in Q3 and anticipates around 800 thousand passengers this year.Revenues in the quarter were USD 59.9 million compared to USD 32.5 million in Q2.In 2023 PLAY forecasts 1.5 to 1.7 million passengers with a turnover of 310 to 330m USD and a...https://www.marketscreener.com/quote/stock/FLY-PLAY-HF-124598714/news/Fly-Play-hf-Operating-profit-for-the-first-time-for-PLAY-in-Q3-42195329/?utm_medium=RSS&utm_content=20221103", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/FLY-PLAY-HF-124598714/news/Fly-Play-hf-Operating-profit-for-the-first-time-for-PLAY-in-Q3-42195329/?utm_medium=RSS&utm_content=20221103", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:28.833Z", "last_update": "2022-11-03T16:01:28.833Z"}}, {"model": "press.post", "pk": 878, "fields": {"title": "Campaigners threaten legal action over conditions at Manston", "body": "Lawyers on behalf of Detention Action and a woman held at Manston have sent an urgent pre-action letter to the Home Office, the charity said.", "image_link": "https://static.independent.co.uk/2022/11/03/15/0b29d10b0d9a71814a04239bb105e935Y29udGVudHNlYXJjaGFwaSwxNjY3NTcyODEw-2.69543625.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/uk/home-office-manston-home-secretary-lawyers-suella-braverman-b2216995.html", "source_label": "The Independent", "status": "PUBLISHED", "author": 418, "category": 2, "creation_date": "2022-11-03T16:01:31.281Z", "last_update": "2022-11-03T16:01:31.281Z"}}, {"model": "press.post", "pk": 879, "fields": {"title": "Campaigners threaten legal action over conditions at Manston", "body": "Campaigners threaten legal action over conditions at Manston", "image_link": "https://media.zenfs.com/en/pa_viral_news_uk_120/d4622141e4b9658fdf7746fb74c9d3ef", "word_cloud_link": null, "source_link": "https://uk.news.yahoo.com/campaigners-threaten-legal-action-over-150348287.html", "source_label": "Yahoo! UK News", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:31.459Z", "last_update": "2022-11-03T16:01:31.459Z"}}, {"model": "press.post", "pk": 880, "fields": {"title": "Two years after beating Oakland murder case amid allegations of ‘egregious’ police error, Bay Area man sentenced to prison for gun possession", "body": "Franklin Ervin was charged with murder two years ago, but the case was dismissed after the defense accused police of unduly influencing an eyewitness to identify him.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/06/EBT-L-DOAKSHOT-0617-3.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/11/03/two-years-beating-oakland-murder-case-amid-allegations-of-egregious-police-error-bay-area-man-sentenced-to-for-gun-possession/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 170, "category": 2, "creation_date": "2022-11-03T16:01:31.625Z", "last_update": "2022-11-03T16:01:31.625Z"}}, {"model": "press.post", "pk": 881, "fields": {"title": "\"Pasé 8 meses buscando una cita\": Guatemaltecos critican sistema para obtener servicios en el consulado en L.A.", "body": "Los usuarios del consulado guatemalteco se quejan por las dificultades para obtener citas, ante lo cual las autoridades reaccionan con indolencia", "image_link": null, "word_cloud_link": null, "source_link": "https://www.latimes.com/espanol/california/articulo/2022-11-03/pase-8-meses-buscando-una-cita-guatemaltecos-critican-sistema-para-obtener-servicios-en-el-consulado-en-l-a", "source_label": "latimes", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:31.751Z", "last_update": "2022-11-03T16:01:31.751Z"}}, {"model": "press.post", "pk": 882, "fields": {"title": "‘Manifest’ Season 3 Recap: Where We Left Everyone Ahead of Season 4", "body": "Remember when Cal turned into a teen?!", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/11/manifest-season-4-1.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/11/03/manifest-season-3-recap-what-to-remember-season-4-netflix/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-11-03T16:01:31.863Z", "last_update": "2022-11-03T16:01:31.863Z"}}, {"model": "press.post", "pk": 883, "fields": {"title": "Spin transfer and distance-dependent spin coupling in linearly assembled Ag-Cu nanoclusters", "body": "In a recent study published in Nature Communications, a research team led by Prof. Wu Zhikun from the Hefei Institutes of Physical Science (HFIPS) of the Chinese Academy of Sciences discovered spin transfer and spin coupling through the linear assembly of silver-copper (Ag-Cu) alloy nanoclusters with sulfur.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/researchers-find-spin.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-11-distance-dependent-coupling-linearly-ag-cu-nanoclusters.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:32.017Z", "last_update": "2022-11-03T16:01:32.017Z"}}, {"model": "press.post", "pk": 884, "fields": {"title": "Standing for Freedom conference comes to our region", "body": "A get-out-the-vote rally for Christians is taking place tomorrow and Saturday at Thomas Road Baptist Church in Lynchburg. WFIR’s Ian Price has more. 11-3 Standing WRAPThe post Standing for Freedom conference comes to our region first appeared on News/Talk 960-AM & FM-107.3 WFIR.", "image_link": "https://wfirnews.com/wp-content/uploads/2022/11/11-3-Standing-WRAP.mp3", "word_cloud_link": null, "source_link": "https://wfirnews.com/news/standing-for-freedom-conference-comes-to-our-region", "source_label": "wfir960", "status": "PUBLISHED", "author": 419, "category": 2, "creation_date": "2022-11-03T16:01:34.037Z", "last_update": "2022-11-03T16:01:34.037Z"}}, {"model": "press.post", "pk": 885, "fields": {"title": "New study on Fusobacterium nucleatum: Why does this oral cavity germ colonize and accelerate tumors?", "body": "Scientists at the Helmholtz Institute for RNA-based Infection Research (HIRI) and the Institute for Molecular Infection Biology (IMIB) in Würzburg want to better understand how the oral cavity germ Fusobacterium nucleatum is linked to various cancer diseases.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/new-study-on-fusobacte.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-11-fusobacterium-nucleatum-oral-cavity-germ.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:34.180Z", "last_update": "2022-11-03T16:01:34.180Z"}}, {"model": "press.post", "pk": 886, "fields": {"title": "Novi besplatni vođeni obilazak Novog groblja", "body": "\"Dok god ima mraka, biće i svanuća!\"", "image_link": "https://xdn.tf.rs/2022/11/03/vodjeni-obilazak-novog-groblja-800x5202x.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/vesti/beograd/3580173-novi-besplatni-vodjeni-obilazak-novog-groblja", "source_label": "Telegraf", "status": "PUBLISHED", "author": 420, "category": 2, "creation_date": "2022-11-03T16:01:36.089Z", "last_update": "2022-11-03T16:01:36.089Z"}}, {"model": "press.post", "pk": 887, "fields": {"title": "Stevie Nicks and Billy Joel Announce Co-Headlining Show – “Two Icons, One Night”", "body": "Stevie Nicks has announced a co-headlining show with Billy Joel. The two legendary musicians will share the stage for one night only in April at the AT&T Stadium in Arlington, Texas. Nicks took to Instagram to share the news. “Excited to hit the road with the amazing @billyjoel in 2023” alongside a poster for the show billed […]The post Stevie Nicks and Billy Joel Announce Co-Headlining Show – “Two Icons, One Night” appeared first on American Songwriter.", "image_link": "https://americansongwriter.com/americansongwriter.com/wp-content/uploads/2022/11/Stevie-Nicks-GettyImages-1396013758.jpg?fit=662%2C265", "word_cloud_link": null, "source_link": "https://americansongwriter.com/stevie-nicks-and-billy-joel-announce-co-headlining-show-two-icons-one-night/", "source_label": "americansongwriter", "status": "PUBLISHED", "author": 421, "category": 2, "creation_date": "2022-11-03T16:01:37.959Z", "last_update": "2022-11-03T16:01:37.959Z"}}, {"model": "press.post", "pk": 888, "fields": {"title": "In eastern NC battleground, Davis and Smith tangle over country's direction", "body": "Democratic state Sen. Don Davis and Republican businesswoman Sandy Smith are vying to fill the seat of retiring U.S. Rep G.K. Butterfield in the state's newly drawn 1st Congressional District.", "image_link": "https://wwwcache.wral.com/asset/news/state/nccapitol/2022/05/16/20284816/Don_Davis_and_Sandy_Smith_side_by_side-DMID1-5ws2g5lcx-80x60.jpg", "word_cloud_link": null, "source_link": "https://www.wral.com/in-eastern-nc-battleground-davis-and-smith-tangle-over-country-s-direction/20552269/", "source_label": "wral", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:38.004Z", "last_update": "2022-11-03T16:01:38.004Z"}}, {"model": "press.post", "pk": 889, "fields": {"title": "2022 Range Rover Review: Luxury SUV Is Subtly Splendid", "body": "In a world of increasingly ostentatious luxury SUVs, the 2022 Range Rover's comparative subtlety could be its secret weapon.", "image_link": "https://www.slashgear.com/img/gallery/2022-range-rover-review-luxury-suv-is-subtly-splendid/l-intro-1667488965.jpg", "word_cloud_link": null, "source_link": "https://www.slashgear.com/1084366/2022-range-rover-review-luxury-suv-is-subtly-splendid/", "source_label": "slashgear", "status": "PUBLISHED", "author": 422, "category": 2, "creation_date": "2022-11-03T16:01:39.872Z", "last_update": "2022-11-03T16:01:39.872Z"}}, {"model": "press.post", "pk": 890, "fields": {"title": "Investigadores de Mayo Clinic descubren que los antecedentes de cancer o enfermedad de las arterias coronarias pueden reducir el riesgo de padecer demencia", "body": "Los riesgos de padecer demencia, cancer y enfermedades vasculares aumentan con la edad, y la poblacion de los EE. UU. esta envejeciendo. Sin embargo, no se comprende plenamente la conexion entre las afecciones. Ahora, los investigadores de Mayo Clinic informan un hallazgo interesante: tener antecedentes de cancer o enfermedad de las arterias coronarias puede reducir el riesgo de padecer demencia. Los resultados del estudio estan publicados en la revista Journal of Alzheimer's Disease.", "image_link": null, "word_cloud_link": null, "source_link": "http://www.newswise.com/articles/view/781697/?sc=rsmn", "source_label": "newswise", "status": "PUBLISHED", "author": 402, "category": 2, "creation_date": "2022-11-03T16:01:39.913Z", "last_update": "2022-11-03T16:01:39.913Z"}}, {"model": "press.post", "pk": 891, "fields": {"title": "Bacterial armor plating has implications for antibiotics", "body": "A new study published in the journal Science Advances sheds light on how Gram-negative bacteria like E. coli construct their outer membrane to resemble body armor, which has far-reaching implications for the development of antibiotics.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/bacterial-armour-plati.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-11-bacterial-armor-plating-implications-antibiotics.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:39.975Z", "last_update": "2022-11-03T16:01:39.975Z"}}, {"model": "press.post", "pk": 892, "fields": {"title": "Public more likely to support climate action if other countries commit as well", "body": "The public is more willing to bear the costs of climate action if other countries contribute as well. This is the result of a study conducted by Professor Dr. Michael Bechtel, member of the Cluster of Excellence ECONtribute (University of Cologne), Professor Dr. Kenneth Scheve (Yale University), and Dr. Elisabeth van Lieshout (Stanford University), which has recently been published in the journal Nature Communications.", "image_link": "https://scx1.b-cdn.net/csz/news/tmb/2022/public-more-likely-to.jpg", "word_cloud_link": null, "source_link": "https://phys.org/news/2022-11-climate-action-countries-commit.html", "source_label": "physorg", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-03T16:01:40.020Z", "last_update": "2022-11-03T16:01:40.020Z"}}, {"model": "press.post", "pk": 893, "fields": {"title": "Wedding Dress Trends For 2023: 6 Looks That Prove You Can Be Both Timeless & Trendy", "body": "Flowers, feathers and four more trends for your forever.", "image_link": "https://stylecaster.com/wp-content/uploads/2022/11/Untitled-design-6.png", "word_cloud_link": null, "source_link": "https://stylecaster.com/wedding-dress-trends-2023/", "source_label": "stylecaster", "status": "PUBLISHED", "author": 423, "category": 2, "creation_date": "2022-11-04T16:01:04.907Z", "last_update": "2022-11-04T16:01:04.907Z"}}, {"model": "press.post", "pk": 894, "fields": {"title": "International organizations scale up fight against deadly livestock disease", "body": "Rome – Veterinary experts from around the world today attended an event at the Rome headquarters of the Food and Agriculture Organization of the United Nations (FAO) to mark the publication of a book celebrating the eradication of rinderpest and to launch the next phase of the global fight against peste des petits ruminants (PPR), […]", "image_link": null, "word_cloud_link": null, "source_link": "https://orissadiary.com/international-organizations-scale-up-fight-against-deadly-livestock-disease/", "source_label": "orissadiary", "status": "PUBLISHED", "author": 292, "category": 2, "creation_date": "2022-11-04T16:01:05.076Z", "last_update": "2022-11-04T16:01:05.076Z"}}, {"model": "press.post", "pk": 895, "fields": {"title": "USD Snaps Back on NFP After Fed-Fueled Rally: EUR/USD, GBP/USD", "body": "DailyFX is the leading portal for forex trading news, charts, indicators and analysis. Every tool you need to trade in the foreign exchange market. Read Full Story at source (may require registration)The post USD Snaps Back on NFP After Fed-Fueled Rally: EUR/USD, GBP/USD appeared first on ForexTV.", "image_link": null, "word_cloud_link": null, "source_link": "https://forextv.com/euro-eur/usd-snaps-back-on-nfp-after-fed-fueled-rally-eur-usd-gbp-usd/", "source_label": "forextv", "status": "PUBLISHED", "author": 349, "category": 2, "creation_date": "2022-11-04T16:01:05.371Z", "last_update": "2022-11-04T16:01:05.371Z"}}, {"model": "press.post", "pk": 896, "fields": {"title": "‘You Can’t Deny That’: Don Lemon Confronts Gov. Hochul On Surging Crime In New York City", "body": "'They're being dishonest about it'", "image_link": null, "word_cloud_link": null, "source_link": "https://dailycaller.com/2022/11/04/don-lemon-kathy-hochul-crime-new-york-city-lee-zeldin/", "source_label": "dailycaller", "status": "PUBLISHED", "author": 325, "category": 2, "creation_date": "2022-11-04T16:01:05.679Z", "last_update": "2022-11-04T16:01:05.679Z"}}, {"model": "press.post", "pk": 897, "fields": {"title": "Kevin Sinfield to run seven ultra-marathons in seven days for MND charity", "body": "The former Leeds captain will endure seven back-to-back runs inspired by his former teammate Rob Burrow, Doddie Weir, Stephen Darby and others living with MND", "image_link": "https://static.independent.co.uk/2022/11/04/14/64300ed3d5fc334143396730bc6cf391Y29udGVudHNlYXJjaGFwaSwxNjY3NjU5MDQ3-2.69599749.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/sport/kevin-sinfield-leeds-motor-neurone-disease-rob-burrow-england-b2217871.html", "source_label": "Independent", "status": "PUBLISHED", "author": 424, "category": 2, "creation_date": "2022-11-04T16:01:08.781Z", "last_update": "2022-11-04T16:01:08.781Z"}}, {"model": "press.post", "pk": 898, "fields": {"title": "This Young Entrepreneur Is Going to Take Your Company to New Heights, and Here’s How", "body": "According to recent data, the average person spends nearly 5 hours on their phone daily, either on social media or the internet. This has been linked to several factors, including the global rise of technology and FOMO. People want to be abreast of current happenings, and with your phone, you can get all this information […]The post This Young Entrepreneur Is Going to Take Your Company to New Heights, and Here’s How appeared first on LA Weekly.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laweekly.com/this-young-entrepreneur-is-going-to-take-your-company-to-new-heights-and-heres-how/", "source_label": "laweekly", "status": "PUBLISHED", "author": 425, "category": 2, "creation_date": "2022-11-04T16:01:11.905Z", "last_update": "2022-11-04T16:01:11.905Z"}}, {"model": "press.post", "pk": 899, "fields": {"title": "Daughter of Filipino immigrants runs for Community College Board of Trustee", "body": "Judy Patacsil, a candidate for Palomar College’s District 1 seat, was born and raised in San Diego to pioneering immigrant parents and is a community college graduate, a current community college professor of Filipino Studies, a Trustee and President Emerita of the Filipino American National Historic Society (FANHS), and a fierce advocate for student success…The post Daughter of Filipino immigrants runs for Community College Board of Trustee appeared first on Asian Journal News.", "image_link": null, "word_cloud_link": null, "source_link": "https://asianjournal.com/usa/southerncalifornia/san-diego-county/daughter-of-filipino-immigrants-runs-for-community-college-board-of-trustee/", "source_label": "asianjournal", "status": "PUBLISHED", "author": 426, "category": 2, "creation_date": "2022-11-04T16:01:14.639Z", "last_update": "2022-11-04T16:01:14.639Z"}}, {"model": "press.post", "pk": 900, "fields": {"title": "Bein útsending: Bjarni setur spennuþrunginn landsfund í Laugardalshöll", "body": "Landsfundur Sjálfstæðisflokksins í Laugardalshöll verður settur klukkan 16:30 í dag með ræðu formanns Bjarna Benediktssonar. Innan við tveir sólarhringar eru í að niðurstaða liggur fyrir um hvort Bjarni sitji áfram á formannsstól.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.visir.is/g/20222334544d/bein-utsending-bjarni-setur-spennuthrunginn-landsfund-i-laugardalsholl", "source_label": "Visir", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:14.900Z", "last_update": "2022-11-04T16:01:14.900Z"}}, {"model": "press.post", "pk": 901, "fields": {"title": "Best new series and films on Netflix UK: 10 of highest rated new releases on Netflix this week in November", "body": "Here are 10 of the best new release films and television series we recommend you watch on Netflix UK this weekend – including The Stranger, Blockbuster and Inside Man starring David Tennant.", "image_link": "https://www.scotsman.com/webimg/b25lY21zOjI5NTgwOGNjLWE4NGYtNDhmZi1iMDkyLTY2YmI0YTE2ZjNiNDoyN2U0NWMzOS02MjliLTRiNzctOTE1Ny1kNTYyMmNiYWZiZDI=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.scotsman.com/arts-and-culture/film-and-tv/best-new-series-and-films-on-netflix-uk-10-of-highest-rated-new-releases-on-netflix-this-week-in-november-3906457", "source_label": "scotsman", "status": "PUBLISHED", "author": 427, "category": 2, "creation_date": "2022-11-04T16:01:17.376Z", "last_update": "2022-11-04T16:01:17.376Z"}}, {"model": "press.post", "pk": 902, "fields": {"title": "Brittney Griner faces bleak life in Russian penal colony", "body": "Tedious manual work, poor hygiene and lack of access to medical care – such are the conditions awaiting U.S. basketball star Brittney Griner in a Russian penal colony after she lost her appeal last week against a nine-year drug sentence. It’s a world familiar to Maria Alyokhina, a member of...", "image_link": null, "word_cloud_link": null, "source_link": "https://cyprus-mail.com/2022/11/04/brittney-griner-faces-bleak-life-in-russian-penal-colony/", "source_label": "cyprus-mail", "status": "PUBLISHED", "author": 112, "category": 2, "creation_date": "2022-11-04T16:01:17.576Z", "last_update": "2022-11-04T16:01:17.576Z"}}, {"model": "press.post", "pk": 903, "fields": {"title": "Dana Air resumes flights November 9", "body": "Tribune OnlineDana Air resumes flights November 9Nigeria’s Dana Air has announced that it will resume flight operations on the 9th of November after a successful conclusion of the audit organised by the Nigerian Civil Aviation Authority (NCAA). The airline in a statement said: “We are pleased to announce that we will resume flight operations on November 9th, having successfully concluded an […]Dana Air resumes flights November 9Tribune Online", "image_link": null, "word_cloud_link": null, "source_link": "https://tribuneonlineng.com/dana-air-resumes-flights-november-9/", "source_label": "tribune", "status": "PUBLISHED", "author": 428, "category": 2, "creation_date": "2022-11-04T16:01:20.348Z", "last_update": "2022-11-04T16:01:20.348Z"}}, {"model": "press.post", "pk": 904, "fields": {"title": "Residents of Irish town Abbeyfeale in County Limerick strip off for naked calendar", "body": "The calendar, titled 'Abbeyfeale - The Bare Essentials' depicts more than 100 volunteers posing nude across the town of Abbeyfeale in County Limerick.", "image_link": "https://i.dailymail.co.uk/1s/2022/11/04/15/64198465-0-image-m-36_1667575488453.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11390769/Residents-Irish-town-Abbeyfeale-County-Limerick-strip-naked-calendar.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:20.556Z", "last_update": "2022-11-04T16:01:20.556Z"}}, {"model": "press.post", "pk": 905, "fields": {"title": "Adidas Eyes Puma Boss Bjorn Gulden as New CEO -- Update", "body": "(marketscreener.com) By Joshua Kirby Adidas AG said Friday that it is in talks with Puma Chief Executive Bjorn Gulden as a potential successor, as the German sportswear company looks to move on from a series of recent travails. Earlier Friday, Adidas's smaller rival Puma said Mr. Gulden would leave at the end of the year, with Germany's Manager Magazin...https://www.marketscreener.com/quote/stock/ADIDAS-AG-6714534/news/Adidas-Eyes-Puma-Boss-Bjorn-Gulden-as-New-CEO-Update-42209689/?utm_medium=RSS&utm_content=20221104", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ADIDAS-AG-6714534/news/Adidas-Eyes-Puma-Boss-Bjorn-Gulden-as-New-CEO-Update-42209689/?utm_medium=RSS&utm_content=20221104", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:20.768Z", "last_update": "2022-11-04T16:01:20.768Z"}}, {"model": "press.post", "pk": 906, "fields": {"title": "93-year-old Ontario man 'feels fantastic' after huge Lotto Max win", "body": "A 93-year-old Ontario man who just won a huge Lotto Max prize is sharing his plans on how he’ll spend the money.", "image_link": "https://www.ctvnews.ca/polopoly_fs/1.6139193.1667575598!/httpImage/image.jpg_gen/derivatives/landscape_300/image.jpg", "word_cloud_link": null, "source_link": "https://toronto.ctvnews.ca/93-year-old-ontario-man-feels-fantastic-after-huge-lotto-max-win-1.6139189", "source_label": "CTV Toronto News", "status": "PUBLISHED", "author": 429, "category": 2, "creation_date": "2022-11-04T16:01:23.091Z", "last_update": "2022-11-04T16:01:23.091Z"}}, {"model": "press.post", "pk": 907, "fields": {"title": "‘The Great British Baking Show’ Brings Back a Classic: Vol-Au-Vents", "body": "Flashback to Tamal Ray's moment in the sun.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/11/gbbs-vol-au-vents.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/11/04/the-great-british-baking-show-vol-au-vents/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-11-04T16:01:24.395Z", "last_update": "2022-11-04T16:01:24.395Z"}}, {"model": "press.post", "pk": 908, "fields": {"title": "As Protests Rage, Iran Marks Anniversary of US Embassy Takeover", "body": "State-backed demonstrations to mark the 1979 event, a touchstone of the Iranian Revolution, were widely broadcast on TV and come as anti-government protests have rocked the country.", "image_link": "https://static01.nyt.com/images/2022/12/03/world/04iran-protests-1/04iran-protests-1-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2022/11/04/world/middleeast/iran-protests-anniversary-us-embassy.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 430, "category": 2, "creation_date": "2022-11-04T16:01:26.425Z", "last_update": "2022-11-04T16:01:26.425Z"}}, {"model": "press.post", "pk": 909, "fields": {"title": "Cricket fans! Get ready for India vs. Pakistan with Sling TV’s $7-per-month deal", "body": "Catch every second of the ICC Men’s T20 World Cup when you sign up today", "image_link": "https://static.independent.co.uk/2022/11/04/15/LIVING_ROOM_1234.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/sport/cricket-fans-get-ready-for-india-vs-pakistan-with-sling-tv-s-7-deal-b2213014.html", "source_label": "Independent", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:26.589Z", "last_update": "2022-11-04T16:01:26.589Z"}}, {"model": "press.post", "pk": 910, "fields": {"title": "Jake Paul To Be In Logan Paul's Corner At WWE Crown Jewel", "body": "At today's press conference heading into WWE Crown Jewel in Saudi Arabia, it was confirmed that Jake Paul will be in the corner of his brother Logan as he challenges Roman Reigns for the WWE Undisputed Championship.You can see the video below..@jakepaul IS HERE!!!@LoganPaul has some serious backup", "image_link": null, "word_cloud_link": null, "source_link": "http://www.wrestlingnewssource.com/news/79274/Jake-Paul-To-Be-In-Logan-Pauls-Corner-At/", "source_label": "wrestlingnewssource", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:26.705Z", "last_update": "2022-11-04T16:01:26.705Z"}}, {"model": "press.post", "pk": 911, "fields": {"title": "The role of immigrants in the market for elder care", "body": "The U.S. population is aging. By 2034, the U.S. Census Bureau projects that people aged 65 years and older will outnumber those aged 18 years and younger for the first time in U.S. history; by 2050, demographics across the U.S. will mirror those in the oldest areas in Florida today. The vast majority of elderly…", "image_link": "https://www.brookings.edu/wp-content/uploads/2022/11/shutterstock_1290675760.jpg?w=270", "word_cloud_link": null, "source_link": "https://www.brookings.edu/blog/up-front/2022/11/04/the-role-of-immigrants-in-the-market-for-elder-care/", "source_label": "brookings", "status": "PUBLISHED", "author": 431, "category": 2, "creation_date": "2022-11-04T16:01:28.777Z", "last_update": "2022-11-04T16:01:28.777Z"}}, {"model": "press.post", "pk": 912, "fields": {"title": "Tetrad directors application struck off urgent matters roll", "body": "Business Reporter Tetrad Investment Bank (TIB) directors and managers’ urgent chamber application has been struck off the High Court roll of urgent matters after they failed to show reasonable cause. Through its lawyers, Gill, Godlonton & Gerrans, TIB and The Trustees of the Vincent Trust had filed an urgent chamber application for an interdict against […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.herald.co.zw/tetrad-directors-application-struck-off-urgent-matters-roll-2/", "source_label": "Herald", "status": "PUBLISHED", "author": 432, "category": 2, "creation_date": "2022-11-04T16:01:30.750Z", "last_update": "2022-11-04T16:01:30.750Z"}}, {"model": "press.post", "pk": 913, "fields": {"title": "Cruising Aboard the Norwegian Prima", "body": "Cruising Aboard the Norwegian Prima", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pastemagazine.com/travel/cruises/cruising-aboard-the-norwegian-prima/", "source_label": "pastemagazine", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:30.840Z", "last_update": "2022-11-04T16:01:30.840Z"}}, {"model": "press.post", "pk": 914, "fields": {"title": "Film Room: Is The Steelers’ Offense Close?", "body": "Film Room: Is The Steelers’ Offense Close?", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/11/film-room-is-the-steelers-offense-close/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 433, "category": 2, "creation_date": "2022-11-04T16:01:32.773Z", "last_update": "2022-11-04T16:01:32.773Z"}}, {"model": "press.post", "pk": 915, "fields": {"title": "Adidas Credit Outlook Cut on Mounting Challenges", "body": "(marketscreener.com) By Joshua Kirby A fresh profit warning and a damaging split from Kanye West are among the factors endangering Adidas AG's ability to meet credit metrics ahead, Moody's Investor Service said Friday, cutting its credit outlook on the German sporting-goods company to negative from stable. Ratings agency Moody's said it is keeping an A2...https://www.marketscreener.com/quote/stock/ADIDAS-AG-6714534/news/Adidas-Credit-Outlook-Cut-on-Mounting-Challenges-42209685/?utm_medium=RSS&utm_content=20221104", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ADIDAS-AG-6714534/news/Adidas-Credit-Outlook-Cut-on-Mounting-Challenges-42209685/?utm_medium=RSS&utm_content=20221104", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:32.830Z", "last_update": "2022-11-04T16:01:32.830Z"}}, {"model": "press.post", "pk": 916, "fields": {"title": "CSE Bulletin: Suspensions (ORCD, POKO)", "body": "(marketscreener.com) Effective immediately, the following companies are suspended pursuant to CSE Policy 3. The suspensions are considered Regulatory Halts as defined in National Instrument 23-101 Trading Rules. Cease Trade Orders have been issued by one or more securities commissions. For more information about Cease Trade Orders, visit the Canadian...https://www.marketscreener.com/quote/stock/ORCHID-VENTURES-INC-56049235/news/CSE-Bulletin-Suspensions-ORCD-POKO-42209682/?utm_medium=RSS&utm_content=20221104", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/ORCHID-VENTURES-INC-56049235/news/CSE-Bulletin-Suspensions-ORCD-POKO-42209682/?utm_medium=RSS&utm_content=20221104", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:32.884Z", "last_update": "2022-11-04T16:01:32.884Z"}}, {"model": "press.post", "pk": 917, "fields": {"title": "Nomura Holdings Up Over 8%, On Pace for Largest Percent Increase Since July 2020 -- Data Talk", "body": "(marketscreener.com) Nomura Holdings, Inc. Sponsored ADR is currently at $3.26, up $0.25 or 8.31% --On pace for largest percent increase since July 29, 2020, when it rose 9.91% --Currently up three of the past four days --Currently up two consecutive days; up 8.67% over this period --Best two day stretch since the two days ending July...https://www.marketscreener.com/quote/stock/NOMURA-HOLDINGS-INC-6492527/news/Nomura-Holdings-Up-Over-8-On-Pace-for-Largest-Percent-Increase-Since-July-2020-Data-Talk-42209684/?utm_medium=RSS&utm_content=20221104", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/NOMURA-HOLDINGS-INC-6492527/news/Nomura-Holdings-Up-Over-8-On-Pace-for-Largest-Percent-Increase-Since-July-2020-Data-Talk-42209684/?utm_medium=RSS&utm_content=20221104", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-04T16:01:32.931Z", "last_update": "2022-11-04T16:01:32.932Z"}}, {"model": "press.post", "pk": 918, "fields": {"title": "Putin says evacuation of civilians from Kherson is ‘necessary’", "body": "Moscow, Nov 4 (EFE).- Russian president Vladimir Putin on Friday urged civilians to evacuate from dangerous areas in Kherson, the southern Ukrainian region that was recently illegally annexed by the Kremlin. “Now it is, of course, necessary to relocate those who live in Kherson from the most dangerous zone because civilians should not suffer from …The post Putin says evacuation of civilians from Kherson is ‘necessary’ appeared first on La Prensa Latina Media.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laprensalatina.com/putin-says-evacuation-of-civilians-from-kherson-is-necessary/", "source_label": "Prensa latina", "status": "PUBLISHED", "author": 102, "category": 2, "creation_date": "2022-11-04T16:01:32.992Z", "last_update": "2022-11-04T16:01:32.992Z"}}, {"model": "press.post", "pk": 919, "fields": {"title": "The 2023 Mitsubishi Delica Mini Is Arriving to Cash In on the Delica Craze", "body": "The Mitsubishi Delica has evidently been appointed as the importer’s JDM van of choice, given how many of them I happen to pass on the road on a monthly basis. The Delica is having a moment globally. Maybe that’s why Mitsubishi has seen fit to shrink its popular van to kei scale for its Japanese customers. Meet the…Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://jalopnik.com/the-2023-mitsubishi-delica-mini-is-arriving-to-cash-in-1849742556", "source_label": "jalopnik", "status": "PUBLISHED", "author": 434, "category": 2, "creation_date": "2022-11-04T16:01:34.785Z", "last_update": "2022-11-04T16:01:34.785Z"}}, {"model": "press.post", "pk": 920, "fields": {"title": "5 Ways to Create Treasured Family Memories During the Holidays", "body": "As the temperatures dip, holiday excitement begins to soar. Kids start making wish lists, and adults plan time off, respond to party invitations, and get the house in order. It’s a festive time, but sometimes it can be a bit much. Fortunately, the most wonderful time of the year doesn’t need to be stressful or […]The post 5 Ways to Create Treasured Family Memories During the Holidays appeared first on LA Weekly.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laweekly.com/5-ways-to-create-treasured-family-memories-during-the-holidays/", "source_label": "laweekly", "status": "PUBLISHED", "author": 435, "category": 2, "creation_date": "2022-11-04T16:01:36.538Z", "last_update": "2022-11-04T16:01:36.538Z"}}, {"model": "press.post", "pk": 921, "fields": {"title": "The Winner Of Our New Blind Rye Whiskey Test Was… A Rock Band", "body": "iStockphoto/UPROXX It's another week and there are more new rye whiskeys on the shelf. Here's how eight new bottles stack up in a blind taste test.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/life/best-rye-whiskey-blind-tasted-and-ranked-november-2022/", "source_label": "hitfix", "status": "PUBLISHED", "author": 436, "category": 2, "creation_date": "2022-11-04T16:01:38.381Z", "last_update": "2022-11-04T16:01:38.381Z"}}, {"model": "press.post", "pk": 922, "fields": {"title": "Sources: Trump eyeing November campaign launch", "body": "(CNN NEWSOURCE) — Gov. Ron DeSantis is apparently not the only Floridian considering a possible White House run. Former president Donald Trump is reportedly preparing to announce a presidential bid for 2024 later this month. That’s according to two sources close to Trump, who say Nov. 14 (shortly after the mid-term elections) is a possible date. One source says the...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.wtvq.com/sources-trump-eyeing-november-campaign-launch/", "source_label": "wtvq", "status": "PUBLISHED", "author": 437, "category": 2, "creation_date": "2022-11-04T16:01:40.411Z", "last_update": "2022-11-04T16:01:40.411Z"}}, {"model": "press.post", "pk": 923, "fields": {"title": "Montreal's Felix Auger-Aliassime has win streak end in semifinal of Paris Masters", "body": "Felix Auger-Aliassime's win streak has come to an end.", "image_link": "https://www.ctvnews.ca/polopoly_fs/1.6140536.1667662018!/httpImage/image.jpg_gen/derivatives/landscape_300/image.jpg", "word_cloud_link": null, "source_link": "https://montreal.ctvnews.ca/montreal-s-felix-auger-aliassime-has-win-streak-end-in-semifinal-of-paris-masters-1.6140533", "source_label": " CTV Montreal", "status": "PUBLISHED", "author": 32, "category": 2, "creation_date": "2022-11-05T16:01:01.560Z", "last_update": "2022-11-05T16:01:01.560Z"}}, {"model": "press.post", "pk": 924, "fields": {"title": "Tapas, jamon and sherry with a side of history: Pioneer Press travel group does Spain in a big way", "body": "We visited seven cities in 12 days, giving us a great sample of the southern region of the country. Here’s the rundown on what we saw, ate and experienced.", "image_link": "https://www.twincities.com/wp-content/uploads/2022/11/stp-L-spain-04-e1667618070803.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.twincities.com/2022/11/05/pioneer-press-travel-group-spain-trip/", "source_label": "twincities", "status": "PUBLISHED", "author": 438, "category": 2, "creation_date": "2022-11-05T16:01:04.342Z", "last_update": "2022-11-05T16:01:04.342Z"}}, {"model": "press.post", "pk": 925, "fields": {"title": "Germany, other EU members plan to expand Iran sanctions -Der Spiegel", "body": "(marketscreener.com) Germany and eight other EU member states are planning to expand sanctions on Iran to include individuals and organisations linked to violence against protesters in the Islamic Republic, magazine Der Spiegel reported, without disclosing its sources.https://www.marketscreener.com/news/latest/Germany-other-EU-members-plan-to-expand-Iran-sanctions-Der-Spiegel--42214934/?utm_medium=RSS&utm_content=20221105", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/Germany-other-EU-members-plan-to-expand-Iran-sanctions-Der-Spiegel--42214934/?utm_medium=RSS&utm_content=20221105", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-05T16:01:04.507Z", "last_update": "2022-11-05T16:01:04.507Z"}}, {"model": "press.post", "pk": 926, "fields": {"title": "Swanson: The Kyrie Irving dream could’ve been a nightmare for Lakers", "body": "The point guard so many Lakers fans wanted to see in L.A. this season has been busy willfully burying himself beneath an avalanche of criticism after he promoted an antisemitic movie on social media last week.", "image_link": "https://www.redlandsdailyfacts.com/wp-content/uploads/2022/11/AP22301482196033.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.redlandsdailyfacts.com/2022/11/05/swanson-when-kyrie-irving-becomes-available-lakers-should-pass/", "source_label": "redlandsdailyfacts", "status": "PUBLISHED", "author": 91, "category": 2, "creation_date": "2022-11-05T16:01:04.636Z", "last_update": "2022-11-05T16:01:04.636Z"}}, {"model": "press.post", "pk": 927, "fields": {"title": "Kosovo’s ethnic Serb police, lawmakers resign en masse", "body": "PRISTINA, Kosovo (AP) — Representatives of the ethnic Serb minority in Kosovo on Saturday resigned from their posts in protest…", "image_link": "https://wtop.com/wp-content/uploads/2022/11/Kosovo_Serbia_60743-1024x643.jpg", "word_cloud_link": null, "source_link": "https://wtop.com/europe/2022/11/kosovos-ethnic-serb-police-lawmakers-resign-en-masse/", "source_label": "wtop", "status": "PUBLISHED", "author": 249, "category": 2, "creation_date": "2022-11-05T16:01:05.514Z", "last_update": "2022-11-05T16:01:05.514Z"}}, {"model": "press.post", "pk": 928, "fields": {"title": "Fieldpoint Private Securities LLC Buys 377 Shares of The Estée Lauder Companies Inc. (NYSE:EL)", "body": "Fieldpoint Private Securities LLC grew its stake in The Estée Lauder Companies Inc. (NYSE:EL – Get Rating) by 283.5% during the second quarter, according to its most recent Form 13F filing with the Securities & Exchange Commission. The institutional investor owned 510 shares of the company’s stock after purchasing an additional 377 shares during the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/05/fieldpoint-private-securities-llc-buys-377-shares-of-the-estee-lauder-companies-inc-nyseel.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-05T16:01:05.650Z", "last_update": "2022-11-05T16:01:05.650Z"}}, {"model": "press.post", "pk": 929, "fields": {"title": "Pinebridge Investments L.P. Trims Stock Holdings in The Estée Lauder Companies Inc. (NYSE:EL)", "body": "Pinebridge Investments L.P. reduced its stake in The Estée Lauder Companies Inc. (NYSE:EL – Get Rating) by 49.1% during the 2nd quarter, according to the company in its most recent filing with the Securities and Exchange Commission. The firm owned 36,985 shares of the company’s stock after selling 35,708 shares during the period. Pinebridge Investments […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/05/pinebridge-investments-l-p-trims-stock-holdings-in-the-estee-lauder-companies-inc-nyseel.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-05T16:01:05.769Z", "last_update": "2022-11-05T16:01:05.769Z"}}, {"model": "press.post", "pk": 930, "fields": {"title": "Estée Lauder Companies (NYSE:EL) Price Target Cut to $287.00", "body": "Estée Lauder Companies (NYSE:EL – Get Rating) had its price objective cut by investment analysts at Royal Bank of Canada from $313.00 to $287.00 in a research report issued on Thursday, Benzinga reports. The firm currently has an “outperform” rating on the stock. Royal Bank of Canada’s price target indicates a potential upside of 36.32% […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/05/estee-lauder-companies-nyseel-price-target-cut-to-287-00.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-05T16:01:05.952Z", "last_update": "2022-11-05T16:01:05.952Z"}}, {"model": "press.post", "pk": 931, "fields": {"title": "Citizens Financial Group Inc RI Acquires Shares of 1,064 The Estée Lauder Companies Inc. (NYSE:EL)", "body": "Citizens Financial Group Inc RI bought a new position in The Estée Lauder Companies Inc. (NYSE:EL – Get Rating) during the 2nd quarter, according to its most recent filing with the Securities & Exchange Commission. The firm bought 1,064 shares of the company’s stock, valued at approximately $271,000. Other hedge funds also recently bought and […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/05/citizens-financial-group-inc-ri-acquires-shares-of-1064-the-estee-lauder-companies-inc-nyseel.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-05T16:01:06.189Z", "last_update": "2022-11-05T16:01:06.189Z"}}, {"model": "press.post", "pk": 932, "fields": {"title": "Robbers sweep Jewellery shop in Karachi", "body": "KARACHI: Four armed robbers looted gold and cash worth millions or rupees from a jeweller’s shop on Tariq road in Karachi on Saturday. In the CCTV footage of the robbery went viral on social media, four robbers looted a jeweller’s shop in Karachi’s Tariq Road area. According to details, the robbery took place at 7pm […]The post Robbers sweep Jewellery shop in Karachi appeared first on Pakistan Today.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.pakistantoday.com.pk/2022/11/05/robbers-sweep-jewellery-shop-in-karachi/", "source_label": "Pakistan Today", "status": "PUBLISHED", "author": 177, "category": 2, "creation_date": "2022-11-05T16:01:06.342Z", "last_update": "2022-11-05T16:01:06.346Z"}}, {"model": "press.post", "pk": 933, "fields": {"title": "Sports on TV for Sunday, November 6", "body": "(All times Eastern) Schedule subject to change and/or blackouts Sunday, November 6 AUTO RACING 12 p.m. NBC — FIM MotoGP:…", "image_link": null, "word_cloud_link": null, "source_link": "https://wtop.com/europe/2022/11/sports-on-tv-for-sunday-november-6/", "source_label": "wtop", "status": "PUBLISHED", "author": 249, "category": 2, "creation_date": "2022-11-05T16:01:06.543Z", "last_update": "2022-11-05T16:01:06.543Z"}}, {"model": "press.post", "pk": 934, "fields": {"title": "Matthew Perry ‘knew’ Jennifer Aniston and David Schwimmer had feelings for each other and it helped him get over his own crush", "body": "Matthew Perry ‘knew’ Jennifer Aniston and David Schwimmer had feelings for each other and it helped him get over his own crush", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/11/05/matthew-perry-knew-jennifer-aniston-fancied-david-schwimmer-17704726/", "source_label": "Metro", "status": "PUBLISHED", "author": 439, "category": 2, "creation_date": "2022-11-05T16:01:08.949Z", "last_update": "2022-11-05T16:01:08.949Z"}}, {"model": "press.post", "pk": 935, "fields": {"title": "Brentwood man sentenced probation in homicide during Fremont bar fight", "body": "Matthew Jardine, 40, was sentenced to probation plus four days he has already spent in jail in the 2019 incident.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/08/OP17REFERSpic1-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/11/05/brentwood-man-sentenced-probation-in-homicide-during-fremont-bar-fight/", "source_label": "The Mercury News", "status": "PUBLISHED", "author": 170, "category": 2, "creation_date": "2022-11-05T16:01:09.234Z", "last_update": "2022-11-05T16:01:09.234Z"}}, {"model": "press.post", "pk": 936, "fields": {"title": "Man, 37, dies after two-vehicle crash in New Brunswick", "body": "New Brunswick RCMP say a 37-year-old man has died after a two-vehicle collision in Florenceville. The driver and passenger of the second car were seriously injured.", "image_link": "https://globalnews.ca/wp-content/uploads/2022/10/rcmp-logo.jpg?quality=85&strip=all&w=720&h=480&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9255249/nb-fatal-crash-florenceville/", "source_label": "globalwinnipeg", "status": "PUBLISHED", "author": 440, "category": 2, "creation_date": "2022-11-05T16:01:11.673Z", "last_update": "2022-11-05T16:01:11.673Z"}}, {"model": "press.post", "pk": 937, "fields": {"title": "Parkland Corporation (PKIUF) Q3 2022 Earnings Call Transcript", "body": "Parkland Corporation (PKIUF) Q3 2022 Earnings Call Transcript", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4553642-parkland-corporation-pkiuf-q3-2022-earnings-call-transcript?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-05T16:01:11.927Z", "last_update": "2022-11-05T16:01:11.927Z"}}, {"model": "press.post", "pk": 938, "fields": {"title": "Irina Shayk Sits On Bradley Cooper’s Lap As He Rocks Bear Costume Amid Speculation They’ve Reunited", "body": "The former couple fueled reunion rumors once again by posing at a Halloween bash together, with Bradley in a bear costume and Irina rocking lingerie.", "image_link": "https://hollywoodlife.com/wp-content/uploads/2022/11/Irina-Shayk-Bradley-cooper-ss-ft.jpg", "word_cloud_link": null, "source_link": "https://hollywoodlife.com/2022/11/05/irina-shayk-bradley-cooper-lap-bear-costume-photos/", "source_label": "hollywoodlife", "status": "PUBLISHED", "author": 360, "category": 2, "creation_date": "2022-11-05T16:01:12.156Z", "last_update": "2022-11-05T16:01:12.156Z"}}, {"model": "press.post", "pk": 939, "fields": {"title": "HMWF Condemns Comparisons to Mineta and JA Incarceration During Trial", "body": "The Heart Mountain Wyoming Foundation appreciates any mention of the Japanese American incarceration as a historic injustice founded on racism, suspicion, and hysteria. However, we strongly condemn the comparison of Tom Barrack, on trial for acting as an unregistered foreign agent, to the late Secretary Norman Mineta and the more than 120,000 people of Japanese […]", "image_link": null, "word_cloud_link": null, "source_link": "https://rafu.com/2022/11/hmwf-condemns-comparisons-to-mineta-and-ja-incarceration-during-trial/", "source_label": "rafu", "status": "PUBLISHED", "author": 441, "category": 2, "creation_date": "2022-11-05T16:01:15.029Z", "last_update": "2022-11-05T16:01:15.029Z"}}, {"model": "press.post", "pk": 940, "fields": {"title": "Big personal best for Greenfield’s Meza at cross-country championships", "body": "Greenfield graduate Evelin Meza became the sixth fastest cross-country runner ever over 6k for UC Irvine", "image_link": null, "word_cloud_link": null, "source_link": "https://www.montereyherald.com/2022/11/05/big-personal-best-for-greenfields-meza-at-cross-country-championships/", "source_label": "montereyherald", "status": "PUBLISHED", "author": 84, "category": 2, "creation_date": "2022-11-05T16:01:15.181Z", "last_update": "2022-11-05T16:01:15.181Z"}}, {"model": "press.post", "pk": 941, "fields": {"title": "History created as 945 candidates vie for parliamentary seats in GE15", "body": "PUTRAJAYA (Nov 5): A new chapter was written in the country’s history books when 945 candidates from various parties submitted their nomination papers, the highest in the election history, to contest the 222 parliamentary seats in the 15th General Election (GE15). Based on the data displayed at the Media Centre of the Election Commission (EC) [...]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.theborneopost.com/2022/11/05/history-created-as-945-candidates-vie-for-parliamentary-seats-in-ge15/", "source_label": "theborneopost", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-05T16:01:15.325Z", "last_update": "2022-11-05T16:01:15.325Z"}}, {"model": "press.post", "pk": 942, "fields": {"title": "In bankrupt Lebanon, locals mine bitcoin and buy groceries with tether, as $1 is now worth 15 cents", "body": "As Lebanon's economy spirals into hyperinflation, locals explain how cryptocurrency has replaced a financial system that no longer makes sense.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.cnbc.com/2022/11/05/-in-bankrupt-lebanon-locals-mine-bitcoin-and-buy-groceries-with-tether.html", "source_label": "CNBC", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-05T16:01:15.527Z", "last_update": "2022-11-05T16:01:15.527Z"}}, {"model": "press.post", "pk": 943, "fields": {"title": "African Development Bank Raises $31Bln at Investment Forum, as Africa Warned Not to Sell Out to West", "body": "Friday concluded the African Investment Forum, which this year was held in in Abidjan, Côte d'Ivoire; there Africa's leaders asked for an end to the prejudice against the continent's investment potential in the hopes of a better future.", "image_link": null, "word_cloud_link": null, "source_link": "https://sputniknews.com/20221105/african-development-bank-raises-31bln-at-investment-forum-as-africa-warned-not-to-sell-out-to-west-1103818957.html", "source_label": "en", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-05T16:01:15.730Z", "last_update": "2022-11-05T16:01:15.730Z"}}, {"model": "press.post", "pk": 944, "fields": {"title": "Two dead after wild grocery store shootout in Maryland", "body": "Two people were killed in a wild grocery store shootout in Maryland when a security guard confronted a shoplifter -- and both opened fire.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/11/maryland-shooting-comp.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/11/05/two-dead-after-wild-giant-grocery-store-shootout-in-maryland/", "source_label": "Post", "status": "PUBLISHED", "author": 442, "category": 2, "creation_date": "2022-11-05T16:01:18.385Z", "last_update": "2022-11-05T16:01:18.385Z"}}, {"model": "press.post", "pk": 945, "fields": {"title": "Los Gatos brings back United Against Hate events — but no march", "body": "This year's events include a movie screening, art contest and one-year anniversary event.", "image_link": "https://www.mercurynews.com/wp-content/uploads/2021/11/SJM-L-CLOWALK-1116-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/11/06/los-gatos-brings-back-united-against-hate-events-but-no-march/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 443, "category": 2, "creation_date": "2022-11-06T16:01:04.815Z", "last_update": "2022-11-06T16:01:04.815Z"}}, {"model": "press.post", "pk": 946, "fields": {"title": "Srbi guraju Stankovića u Seriju B: Milenković pogodio, Sampdorija u sve većim problemima", "body": "Stigao je Dejan Stanković u Sampdoriju da \"gasi požar\" i pokuša da ih ostavi u ligi, ali čini se da to u ovom trenutku nije moguće, pošto ekipa iz Đenove trenutno gubi od Fiorentine sa 2:0 na svom terenu, da stvar bude gora, jedan Srbin je postigao gol za Violu.", "image_link": "https://xdn.tf.rs/2022/05/17/profimedia-0689991076.jpg?ver=982531", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/sport/fudbal/3581607-srbi-guraju-dejana-stankovica-u-seriju-b", "source_label": "Telegraf", "status": "PUBLISHED", "author": 444, "category": 2, "creation_date": "2022-11-06T16:01:07.373Z", "last_update": "2022-11-06T16:01:07.373Z"}}, {"model": "press.post", "pk": 947, "fields": {"title": "XSVM: A Good Idea With Unconvincing Results", "body": "XSVM: A Good Idea With Unconvincing Results", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4554032-xsvm-a-good-idea-with-unconvincing-results?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-06T16:01:07.639Z", "last_update": "2022-11-06T16:01:07.639Z"}}, {"model": "press.post", "pk": 948, "fields": {"title": "Miljana pobesnela na Marinkovića, pa spomenula njegovu bivšu ženu! Ivan: Mariji da se podigne spomenik u Nišu", "body": "Rijaliti učesnikIvan Marinković je sledeći dobio reč na nominacijama kako bi birao između majke svog deteta Miljane Kulići Lazara Čolića Zole.", "image_link": "https://xdn.tf.rs/2022/09/16/goca-ivan-miljana.jpg", "word_cloud_link": null, "source_link": "https://www.telegraf.rs/jetset/zadruga/3581363-miljana-pobesnela-na-marinkovica-pa-spomenula-njegovu-bivsu-zenu-ivan-mariji-da-se-podigne-spomenik-u-nisu", "source_label": "Telegraf", "status": "PUBLISHED", "author": 142, "category": 2, "creation_date": "2022-11-06T16:01:07.764Z", "last_update": "2022-11-06T16:01:07.764Z"}}, {"model": "press.post", "pk": 949, "fields": {"title": "Strictly Come Dancing’s Dianne Buswell urges viewers to ‘be kind’ after trolling of Shirley Ballas for getting pro’s name wrong", "body": "Shirley called her 'Diana.'", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/11/06/strictlys-dianne-buswell-urges-fans-to-be-kind-to-shirley-ballas-17707910/", "source_label": "Metro", "status": "PUBLISHED", "author": 96, "category": 2, "creation_date": "2022-11-06T16:01:07.984Z", "last_update": "2022-11-06T16:01:07.984Z"}}, {"model": "press.post", "pk": 950, "fields": {"title": "Tecnoglass Inc. 2022 Q3 - Results - Earnings Call Presentation", "body": "Tecnoglass Inc. 2022 Q3 - Results - Earnings Call Presentation", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4554054-tecnoglass-inc-2022-q3-results-earnings-call-presentation?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-06T16:01:08.112Z", "last_update": "2022-11-06T16:01:08.112Z"}}, {"model": "press.post", "pk": 951, "fields": {"title": "Demolition of Carousel Mall on hold as San Bernardino debates details", "body": "Council asks for more details on demolition bids and environmental impact. Columnist David Allen wonders what's going on.", "image_link": "https://www.pressenterprise.com/wp-content/uploads/2022/11/IDB-L-ALLEN-COL-1106-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.pressenterprise.com/2022/11/06/demolition-of-carousel-mall-on-hold-as-san-bernardino-debates-details/", "source_label": "pe", "status": "PUBLISHED", "author": 445, "category": 2, "creation_date": "2022-11-06T16:01:10.829Z", "last_update": "2022-11-06T16:01:10.829Z"}}, {"model": "press.post", "pk": 952, "fields": {"title": "Dying in Orange County: COVID-19, fentanyl struck lethal blows in recent years", "body": "Column: Deaths spiked 20% over the COVID years here. Fentanyl doubled the deaths of young people.", "image_link": "https://www.ocregister.com/wp-content/uploads/2022/11/OCR-L-DIA-1031.07.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.ocregister.com/2022/11/06/dying-in-orange-county-covid-19-fentanyl-struck-lethal-blows-in-recent-years/", "source_label": "ocregister", "status": "PUBLISHED", "author": 446, "category": 2, "creation_date": "2022-11-06T16:01:13.985Z", "last_update": "2022-11-06T16:01:13.985Z"}}, {"model": "press.post", "pk": 953, "fields": {"title": "With deep roots, Longmont Florist stays in the family", "body": "Longmont Florist, a community staple for 53 years, has entered a third generation of family ownership with Nate Golter, new co-owner of the business alongside his mother, Lisa.", "image_link": "https://www.dailycamera.com/wp-content/uploads/2022/11/DCC-L-LongFlor41-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.dailycamera.com/2022/11/06/with-deep-roots-longmont-florist-stays-in-the-family/", "source_label": "dailycamera", "status": "PUBLISHED", "author": 447, "category": 2, "creation_date": "2022-11-06T16:01:16.861Z", "last_update": "2022-11-06T16:01:16.861Z"}}, {"model": "press.post", "pk": 954, "fields": {"title": "Freiburg vs Köln LIVE: Bundesliga team news, line-ups and more", "body": "Follow all the action from Europa-Park Stadion", "image_link": "https://static.independent.co.uk/2022/03/09/17/newFile-18.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/sport/football/freiburg-koln-live-stream-bundesliga-2022-b2218917.html", "source_label": "Independent", "status": "PUBLISHED", "author": 263, "category": 2, "creation_date": "2022-11-06T16:01:17.067Z", "last_update": "2022-11-06T16:01:17.067Z"}}, {"model": "press.post", "pk": 955, "fields": {"title": "President arrives in Egypt", "body": "PRESIDENT Mnangagwa has arrived here for the UN Climate Change Conference (COP27).", "image_link": null, "word_cloud_link": null, "source_link": "https://www.herald.co.zw/president-arrives-in-egypt/", "source_label": "Herald", "status": "PUBLISHED", "author": 448, "category": 2, "creation_date": "2022-11-06T16:01:19.719Z", "last_update": "2022-11-06T16:01:19.719Z"}}, {"model": "press.post", "pk": 956, "fields": {"title": "2022 NFL Week 9 Picks & Predictions: Dave Bryan & Alex Kozora", "body": "2022 NFL Week 9 Picks & Predictions: Dave Bryan & Alex Kozora", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/11/2022-nfl-week-9-picks-predictions-dave-bryan-alex-kozora/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 449, "category": 2, "creation_date": "2022-11-06T16:01:22.068Z", "last_update": "2022-11-06T16:01:22.068Z"}}, {"model": "press.post", "pk": 957, "fields": {"title": "Tottenham Hotspur vs Liverpool LIVE: Premier League team news, line-ups and more", "body": "Follow all the action from Tottenham Hotspur Stadium", "image_link": "https://static.independent.co.uk/2022/01/21/17/GettyImages-1361012095.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/sport/football/tottenham-hotspur-liverpool-live-stream-premier-league-2022-b2218916.html", "source_label": "Independent", "status": "PUBLISHED", "author": 263, "category": 2, "creation_date": "2022-11-06T16:01:22.223Z", "last_update": "2022-11-06T16:01:22.224Z"}}, {"model": "press.post", "pk": 958, "fields": {"title": "Steelers 2022 Offensive Charting – First Eight Games", "body": "Steelers 2022 Offensive Charting – First Eight Games", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/11/steelers-2022-offensive-charting-first-eight-games/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 433, "category": 2, "creation_date": "2022-11-06T16:01:22.478Z", "last_update": "2022-11-06T16:01:22.478Z"}}, {"model": "press.post", "pk": 959, "fields": {"title": "This week in Loveland history for the week of Nov. 6-12, 2022", "body": "A look back at 10, 25, 50 and 120 years ago in Loveland-area news, from the archives of the Loveland Reporter-Herald.", "image_link": "https://www.reporterherald.com/wp-content/uploads/migration/2018/0428/20180428_091702_RHVolumes.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.reporterherald.com/2022/11/06/this-week-in-loveland-history-for-the-week-of-nov-6-12-2022/", "source_label": "reporterherald", "status": "PUBLISHED", "author": 450, "category": 2, "creation_date": "2022-11-06T16:01:25.481Z", "last_update": "2022-11-06T16:01:25.481Z"}}, {"model": "press.post", "pk": 960, "fields": {"title": "90 Day Fiance: Pregnant Kara Bass in crop top and overalls shows off her ‘mom whip’", "body": "Kara Bass has a lot to celebrate as she patiently waits for her baby boy or girl to arrive, but now she’s excited about her new “mom whip.” The 90 Day Fiance star and her husband, Guillermo Rojer, had some fun in a video posted on social media as they", "image_link": null, "word_cloud_link": null, "source_link": "https://www.monstersandcritics.com/tv/reality-tv/90-day-fiance-pregnant-kara-bass-in-crop-top-and-overalls-shows-off-her-mom-whip/", "source_label": "monstersandcritics", "status": "PUBLISHED", "author": 313, "category": 2, "creation_date": "2022-11-06T16:01:25.544Z", "last_update": "2022-11-06T16:01:25.544Z"}}, {"model": "press.post", "pk": 961, "fields": {"title": "African Community Center of Lowell celebrates 6th anniversary", "body": "LOWELL — When the African Community Center of Lowell launched in 2016, Gordon Halm, the nonprofit's founder and executive director, recalls questioning the organization's ability to survive long term. ", "image_link": "https://www.lowellsun.com/wp-content/uploads/2022/11/LOW-L-ACCL-110522-1.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.lowellsun.com/2022/11/06/african-community-center-of-lowell-celebrates-6th-anniversary/", "source_label": "Lowell Sun", "status": "PUBLISHED", "author": 451, "category": 2, "creation_date": "2022-11-06T16:01:27.785Z", "last_update": "2022-11-06T16:01:27.785Z"}}, {"model": "press.post", "pk": 962, "fields": {"title": "European clubs insist there’s no change in opposing revived Super League plans", "body": "The Super League proposal resurfaced after being shot down last year.", "image_link": "https://static.independent.co.uk/2022/11/06/15/GettyImages-1244041349.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/sport/football/european-super-league-real-madrid-florentino-perez-b2218914.html", "source_label": "Independent", "status": "PUBLISHED", "author": 452, "category": 2, "creation_date": "2022-11-06T16:01:30.112Z", "last_update": "2022-11-06T16:01:30.112Z"}}, {"model": "press.post", "pk": 963, "fields": {"title": "Letterkenny Gaels advance to Ulster JFC semi final", "body": "Letterkenny Gaels are into the semi finals of the Ulster Junior Club Football Championship after they claimed a one point victory over Armagh champions, Derrynoose. 1-13 to 1-12 was how it finished with Brendan O’Brien scoring their crucial goal as their historic year continues. The Gaels had trailed 1-07 to 0-03 at half time but … Letterkenny Gaels advance to Ulster JFC semi final Read More »The post Letterkenny Gaels advance to Ulster JFC semi final appeared first on Highland Radio - Latest Donegal News and Sport.", "image_link": null, "word_cloud_link": null, "source_link": "https://highlandradio.com/2022/11/06/letterkenny-gaels-advance-to-ulster-jfc-semi-final/", "source_label": "Highland Radio", "status": "PUBLISHED", "author": 368, "category": 2, "creation_date": "2022-11-06T16:01:30.324Z", "last_update": "2022-11-06T16:01:30.324Z"}}, {"model": "press.post", "pk": 964, "fields": {"title": "When Will Supersonic Passenger Planes Come Back?", "body": "Last week, we delved into the history of supersonic passenger planes — how they were developed, when and where they flew, and ultimately, what killed them. We also enumerated the many challenges facing the future of faster-than-sound passenger travel: noise, fuel consumption, and potentially outrageous per-passenger…Read more...", "image_link": null, "word_cloud_link": null, "source_link": "https://jalopnik.com/new-supersonic-passenger-plane-future-concorde-1849748957", "source_label": "jalopnik", "status": "PUBLISHED", "author": 453, "category": 2, "creation_date": "2022-11-06T16:01:32.593Z", "last_update": "2022-11-06T16:01:32.593Z"}}, {"model": "press.post", "pk": 965, "fields": {"title": "Milpitas residents remember loved ones at Dia de los Muertos event", "body": "Milpitas residents turned out Oct. 29 for the city’s first Dia de los Muertos celebration at Cardoza Park, where families, friends and neighbors displayed their altars honoring deceased loved ones at the Community Altar de Ofrenda Showcase. Entertainment was provided by Mariachi Mexico de Gilroy, Bay Area Aztec Dancers and the Randall Elementary School Folkloric Dancers. Orlando […]", "image_link": "https://www.mercurynews.com/wp-content/uploads/2022/11/MPO-L-MUERTOS-1111-1.jpeg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.mercurynews.com/2022/11/06/milpitas-residents-remember-loved-ones-at-dia-de-los-muertos-event/", "source_label": "mercurynews", "status": "PUBLISHED", "author": 454, "category": 2, "creation_date": "2022-11-06T16:01:34.575Z", "last_update": "2022-11-06T16:01:34.575Z"}}, {"model": "press.post", "pk": 966, "fields": {"title": "AAPI voters emerge as critical bloc in Nevada battleground", "body": "Asian Americans have emerged as a critical constituency for Republicans and Democrats in electoral battlegrounds", "image_link": null, "word_cloud_link": null, "source_link": "https://www.sandiegouniontribune.com/news/nation-world/story/2022-11-06/aapi-voters-emerge-as-critical-bloc-in-nevada-battleground", "source_label": "signonsandiego", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-06T16:01:34.634Z", "last_update": "2022-11-06T16:01:34.634Z"}}, {"model": "press.post", "pk": 967, "fields": {"title": "Crowd boos Liz Truss and the lettuce effigy as it parades through street on Bonfire Night", "body": "An effigy of Liz Truss and the lettuce was paraded through streets ahead of Lewes Bonfire Night on Saturday.", "image_link": "https://static.independent.co.uk/2022/11/06/10/poster.jpgwidth720?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/tv/news/bonfire-night-liz-truss-lettuce-b2218770.html", "source_label": "Independent", "status": "PUBLISHED", "author": 455, "category": 2, "creation_date": "2022-11-06T16:01:36.688Z", "last_update": "2022-11-06T16:01:36.688Z"}}, {"model": "press.post", "pk": 968, "fields": {"title": "Something’s Brewing In The Tropics That Might Affect Florida This Week", "body": "According to weather experts, Florida could be dealing with a subtropical or tropical system this election week.", "image_link": "https://imageio.forbes.com/specials-images/imageserve/6367cf77813bb55739aecc35/0x0.jpg?width=960", "word_cloud_link": null, "source_link": "https://www.forbes.com/sites/marshallshepherd/2022/11/06/somethings-brewing-in-the-tropics-that-might-affect-florida-this-week/", "source_label": "Forbes", "status": "PUBLISHED", "author": 456, "category": 2, "creation_date": "2022-11-06T16:01:38.386Z", "last_update": "2022-11-06T16:01:38.386Z"}}, {"model": "press.post", "pk": 969, "fields": {"title": "Cardinals' James Conner Expected to Play vs. Seahawks", "body": "The Arizona Cardinals have failed to live up to expectations in the NFC West this year. Will the return of James Conner help them get back in the win columnThe post Cardinals' James Conner Expected to Play vs. Seahawks appeared first on NESN.com.", "image_link": "https://nesn.com/wp-content/uploads/sites/5/2022/11/USATSI_19169985-scaled-e1667747492963.jpg", "word_cloud_link": null, "source_link": "https://nesn.com/bets/2022/11/cardinals-james-conner-expected-to-play-vs-seahawks/", "source_label": "nesn", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-06T16:01:38.425Z", "last_update": "2022-11-06T16:01:38.425Z"}}, {"model": "press.post", "pk": 970, "fields": {"title": "M65 closed in both directions due to 'police incident'", "body": "Police are urging motorists to avoid a large section of the M65 due to an ongoing incident.", "image_link": "https://www.lep.co.uk/webimg/b25lY21zOjE5NzgzZWIyLTExNmMtNDg0NC04ZjAxLWJmNzVlNTRhM2I1MDoyYTEyYTk0Yy0yZjY4LTRmOGItYTZkNi0xNzdlYTk3ODA3ODY=.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.lep.co.uk/news/transport/m65-closed-in-both-directions-due-to-police-incident-3907600", "source_label": "chorley-guardian", "status": "PUBLISHED", "author": 457, "category": 2, "creation_date": "2022-11-06T16:01:40.174Z", "last_update": "2022-11-06T16:01:40.174Z"}}, {"model": "press.post", "pk": 971, "fields": {"title": "Orthofix Medical Inc. 2022 Q3 - Results - Earnings Call Presentation", "body": "Orthofix Medical Inc. 2022 Q3 - Results - Earnings Call Presentation", "image_link": null, "word_cloud_link": null, "source_link": "https://seekingalpha.com/article/4554051-orthofix-medical-inc-2022-q3-results-earnings-call-presentation?source=feed_all_articles", "source_label": "Seeking Alpha", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-06T16:01:40.255Z", "last_update": "2022-11-06T16:01:40.255Z"}}, {"model": "press.post", "pk": 974, "fields": {"title": "Great news", "body": "jjkjs dflkjs diuf sku", "image_link": null, "word_cloud_link": null, "source_link": null, "source_label": null, "status": "PUBLISHED", "author": 459, "category": 1, "creation_date": "2022-11-07T12:40:13.221Z", "last_update": "2022-11-07T12:40:13.221Z"}}, {"model": "press.post", "pk": 975, "fields": {"title": "5 movie villains like Elon Musk", "body": "Twitter owner Elon Musk is more unpopular than ever, and his many similarities to these movie bad guys prove how close he is to being a real-life supervillain.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2022/04/elon-musk-image-01.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/movies/5-movie-villains-like-elon-musk/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 460, "category": 2, "creation_date": "2022-11-07T16:01:03.621Z", "last_update": "2022-11-07T16:01:03.621Z"}}, {"model": "press.post", "pk": 976, "fields": {"title": "Met Police officer jailed for stealing £1,500 from safe at London police station to pay off debts", "body": "Bradley Francis, 35, of Bishop's Stortford, 'threw away his career' when he chose to carry out the 'ridiculous' crime at Stoke Newington police station in April.", "image_link": "https://i.dailymail.co.uk/1s/2022/11/07/15/64275665-0-image-m-4_1667835014700.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11398995/Met-Police-officer-jailed-stealing-1-500-safe-London-police-station-pay-debts.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "mailonsunday", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-07T16:01:03.815Z", "last_update": "2022-11-07T16:01:03.815Z"}}, {"model": "press.post", "pk": 977, "fields": {"title": "Mexican president says at least three bidders remain for Banamex", "body": "(marketscreener.com) Mexican President AndresManuel Lopez Obrador said on Monday there are at least threeremaining bidders for Citi's local retail arm Banamex. Speaking at a regular news conference, Lopez Obrador said abuyer could be determined before the year ends. \"There are three or four... three candidates to buy thebank,\" he said...https://www.marketscreener.com/news/latest/Mexican-president-says-at-least-three-bidders-remain-for-Banamex--42230233/?utm_medium=RSS&utm_content=20221107", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/news/latest/Mexican-president-says-at-least-three-bidders-remain-for-Banamex--42230233/?utm_medium=RSS&utm_content=20221107", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-07T16:01:04.178Z", "last_update": "2022-11-07T16:01:04.178Z"}}, {"model": "press.post", "pk": 978, "fields": {"title": "Aliyah Boston, Caitlin Clark lead 2022-23 season's must-watch women's college basketball players", "body": "Here are top women's college basketball players to watch from each major conference.", "image_link": null, "word_cloud_link": null, "source_link": "https://sports.yahoo.com/aliyah-boston-caitlin-clark-lead-2022-23-seasons-must-watch-womens-college-basketball-players-153127940.html?src=rss", "source_label": "sports", "status": "PUBLISHED", "author": 379, "category": 2, "creation_date": "2022-11-07T16:01:04.358Z", "last_update": "2022-11-07T16:01:04.358Z"}}, {"model": "press.post", "pk": 979, "fields": {"title": "The White Lotus has 'done it again' with 'fresh' second season", "body": "Binge or Bin’s Annabel Nugent praises the “fresh” second season of HBO black comedy drama The White Lotus.", "image_link": "https://static.independent.co.uk/2022/11/07/14/poster-2.jpgwidth720?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/tv/culture/white-lotus-sky-now-tv-streaming-b2219509.html", "source_label": "Independent", "status": "PUBLISHED", "author": 461, "category": 2, "creation_date": "2022-11-07T16:01:06.953Z", "last_update": "2022-11-07T16:01:06.953Z"}}, {"model": "press.post", "pk": 980, "fields": {"title": "Amherst police detain adult, 3 youths after witnesses report firearm incident", "body": "Amherst Police said witnesses reported on Thursday that four males in a white Ford vehicle 'appeared to be in possession of a firearm.'", "image_link": "https://globalnews.ca/wp-content/uploads/2020/04/police-board.jpg?quality=85&strip=all&w=450&h=300&crop=1", "word_cloud_link": null, "source_link": "https://globalnews.ca/news/9257683/amherst-police-firearms-incident/", "source_label": "globalmontreal", "status": "PUBLISHED", "author": 462, "category": 2, "creation_date": "2022-11-07T16:01:09.232Z", "last_update": "2022-11-07T16:01:09.232Z"}}, {"model": "press.post", "pk": 981, "fields": {"title": "CP NewsAlert: Judge rules Ford, Jones immune from testifying at Emergencies inquiry", "body": "A Federal Court judge has decided Ontario’s premier and a top minister will not have to testify at the Emergencies Act inquiry in Ottawa due to immunity provided to them by parliamentary privilege. More coming.", "image_link": null, "word_cloud_link": null, "source_link": "https://nationalpost.com/pmn/news-pmn/canada-news-pmn/cp-newsalert-judge-rules-ford-jones-immune-from-testifying-at-emergencies-inquiry", "source_label": "nationalpost", "status": "PUBLISHED", "author": 32, "category": 2, "creation_date": "2022-11-07T16:01:09.412Z", "last_update": "2022-11-07T16:01:09.412Z"}}, {"model": "press.post", "pk": 982, "fields": {"title": "Cash bail set at $500,000 for Janesville man accused of stabbing woman", "body": "The 19-year-old Janesville man accused of stabbing a woman multiple times last month makes his initial appearance in Rock County Court. Last Friday, Court Commissioner Stephen Meyer set cash bond at $500,000 for Asher J. Spitz on", "image_link": "https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/446/2022/04/19103132/gavel.jpg", "word_cloud_link": null, "source_link": "https://www.wclo.com/2022/11/07/cash-bail-set-at-500000-for-janesville-man-accused-of-stabbing-woman/", "source_label": "wclo", "status": "PUBLISHED", "author": 463, "category": 2, "creation_date": "2022-11-07T16:01:11.917Z", "last_update": "2022-11-07T16:01:11.917Z"}}, {"model": "press.post", "pk": 983, "fields": {"title": "what a superb last sentence:", "body": "In reply to Woke & cancel culture gone wildwhat a superb last sentence:When did people in universities, media and politics start uncritically believing things just because they were written by some author or professor?Just because something is written, does not make it true.Information became especially suspect when academia embraced activism.— David Krae ~ notthecartoonvillaininyourhead (@DavidKrae) November 7, 2022", "image_link": null, "word_cloud_link": null, "source_link": "http://dagblog.com/comment/321793#comment-321793", "source_label": "dagblog", "status": "PUBLISHED", "author": 343, "category": 2, "creation_date": "2022-11-07T16:01:12.067Z", "last_update": "2022-11-07T16:01:12.067Z"}}, {"model": "press.post", "pk": 984, "fields": {"title": "Michael Basman, Chess Master Known for ‘Bad’ Openings, Dies at 76", "body": "His opening repertoire was often successful. But it should have carried a label: “Do not try these at home (or at least not in important competitions).”", "image_link": "https://static01.nyt.com/images/2022/11/04/obituaries/04basman-03/04basman-03-moth.jpg", "word_cloud_link": null, "source_link": "https://www.nytimes.com/2022/11/06/world/europe/michael-basman-dead.html", "source_label": "The New York Times", "status": "PUBLISHED", "author": 464, "category": 2, "creation_date": "2022-11-07T16:01:14.868Z", "last_update": "2022-11-07T16:01:14.868Z"}}, {"model": "press.post", "pk": 985, "fields": {"title": "Air Products to Highlight Gas-based Technologies for Laser Cutting, 3D Printing and Welding at Fabtech 2022", "body": "(marketscreener.com) LEHIGH VALLEY, Pa., Nov. 7, 2022 /PRNewswire/ -- Air Products will feature its latest fuel and assist gas technologies that can help lower costs, increase productivity and enhance laser cutting, 3D printing and welding applications at Fabtech 2022 from November 8-10 at the World Congress Center in Atlanta.Application specialists will be...https://www.marketscreener.com/quote/stock/AIR-PRODUCTS-CHEMICALS-11666/news/Air-Products-to-Highlight-Gas-based-Technologies-for-Laser-Cutting-3D-Printing-and-Welding-at-Fabte-42230222/?utm_medium=RSS&utm_content=20221107", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/AIR-PRODUCTS-CHEMICALS-11666/news/Air-Products-to-Highlight-Gas-based-Technologies-for-Laser-Cutting-3D-Printing-and-Welding-at-Fabte-42230222/?utm_medium=RSS&utm_content=20221107", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-07T16:01:15.046Z", "last_update": "2022-11-07T16:01:15.047Z"}}, {"model": "press.post", "pk": 986, "fields": {"title": "Nykode Therapeutics presents additional efficacy analysis in Phase 2 study of VB10.16 in combination with atezolizumab in advanced cervical cancer", "body": "(marketscreener.com) Results show strong signals of clinical responses in patients with advanced cervical cancer who received up to 2 prior lines of therapyOSLO, Norway, Nov. 07, 2022 -- Nykode Therapeutics ASA , a clinical-stage biopharmaceutical company dedicated to the discovery and development of novel immunotherapies, today announced results of additional...https://www.marketscreener.com/quote/stock/NYKODE-THERAPEUTICS-AS-113523482/news/Nykode-Therapeutics-presents-additional-efficacy-analysis-in-Phase-2-study-of-VB10-16-in-combination-42230218/?utm_medium=RSS&utm_content=20221107", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/NYKODE-THERAPEUTICS-AS-113523482/news/Nykode-Therapeutics-presents-additional-efficacy-analysis-in-Phase-2-study-of-VB10-16-in-combination-42230218/?utm_medium=RSS&utm_content=20221107", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-07T16:01:15.288Z", "last_update": "2022-11-07T16:01:15.288Z"}}, {"model": "press.post", "pk": 987, "fields": {"title": "Harvia divests its ownership in EOS Group's Russian operations", "body": "(marketscreener.com) Harvia Plc                                    Inside information                   November 7, 2022 at 5:30 p.m. EET ...https://www.marketscreener.com/quote/stock/HARVIA-OYJ-42470799/news/Harvia-divests-its-ownership-in-EOS-Group-s-Russian-operations-42230215/?utm_medium=RSS&utm_content=20221107", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/HARVIA-OYJ-42470799/news/Harvia-divests-its-ownership-in-EOS-Group-s-Russian-operations-42230215/?utm_medium=RSS&utm_content=20221107", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-07T16:01:15.473Z", "last_update": "2022-11-07T16:01:15.473Z"}}, {"model": "press.post", "pk": 988, "fields": {"title": "Tivic Health Takes Bioelectronic Medicine to HTLH", "body": "(marketscreener.com) Will Demo FDA-Approved ClearUP that Treats Sinus Pain and Congestion from Colds, Flu, and Allergieshttps://www.marketscreener.com/quote/stock/TIVIC-HEALTH-SYSTEMS-INC-129226105/news/Tivic-Health-Takes-Bioelectronic-Medicine-to-HTLH-42230216/?utm_medium=RSS&utm_content=20221107", "image_link": null, "word_cloud_link": null, "source_link": "https://www.marketscreener.com/quote/stock/TIVIC-HEALTH-SYSTEMS-INC-129226105/news/Tivic-Health-Takes-Bioelectronic-Medicine-to-HTLH-42230216/?utm_medium=RSS&utm_content=20221107", "source_label": "4-traders", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-07T16:01:15.695Z", "last_update": "2022-11-07T16:01:15.695Z"}}, {"model": "press.post", "pk": 989, "fields": {"title": "Vaccine Clinic Resurges After Ian", "body": "Despite Hurricane Ian disrupting vaccine clinics, FGCU is still committed to making vaccines accessible to their students, faculty and staff. A vaccine clinic scheduled for Sept. 29 was canceled due to the impact of Hurricane Ian on Southwest Florida. According to FGCU Student Health Educator Kristin Phillipine, approximately 150 people had signed up to take part...", "image_link": null, "word_cloud_link": null, "source_link": "https://eaglenews.org/27715/news/vaccine-clinic-resurges-after-ian/", "source_label": "eaglenews", "status": "PUBLISHED", "author": 465, "category": 2, "creation_date": "2022-11-07T16:01:18.146Z", "last_update": "2022-11-07T16:01:18.146Z"}}, {"model": "press.post", "pk": 990, "fields": {"title": "Missing person: Waiehu man last seen Oct. 31 loading kayak and fishing gear into his truck", "body": "Joseph Magaoay, 52, was reported missing on the evening of Saturday, Nov. 5, 2022, by family members who last saw him on Monday, Oct. 31, 2022, loading up a green Pelican brand kayak and fishing gear into his truck in Waiehu.", "image_link": "https://media.mauinow.com/file/mauinow/2022/11/missing-person-4-300x169.jpg", "word_cloud_link": null, "source_link": "https://mauinow.com/2022/11/07/missing-person-waiehu-man-last-seen-oct-31-loading-kayak-and-fishing-gear-into-his-truck/", "source_label": "mauinow", "status": "PUBLISHED", "author": 466, "category": 2, "creation_date": "2022-11-07T16:01:21.353Z", "last_update": "2022-11-07T16:01:21.353Z"}}, {"model": "press.post", "pk": 991, "fields": {"title": "AMC resource managers set standards of excellence", "body": "REDSTONE ARSENAL, Ala. – Resource management professionals from across the materiel enterprise met at the Army Materiel Command headquarters Nov. 1-2 to synchronize, share best practices and network.During the annual G-8 Forum, the professionals joined in person and virtually to discuss ongoing challenges and level set expectations.", "image_link": "https://cdn.dvidshub.net/media/thumbs/photos/2211/7499907/250x167_q75.jpg", "word_cloud_link": null, "source_link": "https://www.dvidshub.net/news/432774/amc-resource-managers-set-standards-excellence", "source_label": "dvidshub", "status": "PUBLISHED", "author": 467, "category": 2, "creation_date": "2022-11-07T16:01:23.529Z", "last_update": "2022-11-07T16:01:23.529Z"}}, {"model": "press.post", "pk": 992, "fields": {"title": "DeSantis’ students speak out about ‘hostile’ behaviour towards Black people, partying and inaccurate lessons", "body": "The governor allegedly debated the cause of the Civil War and partied with the school’s seniors during his year as a teacher", "image_link": "https://static.independent.co.uk/2022/10/25/20/newFile.jpg?width=1200&auto=webp", "word_cloud_link": null, "source_link": "https://www.independent.co.uk/news/world/americas/us-politics/ron-desantis-teacher-florida-high-school-b2219556.html", "source_label": "The Independent", "status": "PUBLISHED", "author": 468, "category": 2, "creation_date": "2022-11-07T16:01:25.693Z", "last_update": "2022-11-07T16:01:25.693Z"}}, {"model": "press.post", "pk": 993, "fields": {"title": "Keybank National Association OH Decreases Stock Position in The Hershey Company (NYSE:HSY)", "body": "Keybank National Association OH cut its holdings in The Hershey Company (NYSE:HSY – Get Rating) by 6.3% in the second quarter, according to the company in its most recent disclosure with the SEC. The fund owned 12,604 shares of the company’s stock after selling 846 shares during the quarter. Keybank National Association OH’s holdings in […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/07/keybank-national-association-oh-decreases-stock-position-in-the-hershey-company-nysehsy.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-07T16:01:25.820Z", "last_update": "2022-11-07T16:01:25.820Z"}}, {"model": "press.post", "pk": 994, "fields": {"title": "Baillie Gifford & Co. Takes $3.38 Million Position in Charles River Laboratories International, Inc. (NYSE:CRL)", "body": "Baillie Gifford & Co. purchased a new stake in Charles River Laboratories International, Inc. (NYSE:CRL – Get Rating) during the 2nd quarter, according to the company in its most recent filing with the Securities & Exchange Commission. The firm purchased 15,796 shares of the medical research company’s stock, valued at approximately $3,380,000. A number of […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/07/baillie-gifford-co-takes-3-38-million-position-in-charles-river-laboratories-international-inc-nysecrl.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-07T16:01:25.938Z", "last_update": "2022-11-07T16:01:25.938Z"}}, {"model": "press.post", "pk": 995, "fields": {"title": "Keybank National Association OH Buys 4,388 Shares of WEC Energy Group, Inc. (NYSE:WEC)", "body": "Keybank National Association OH grew its stake in shares of WEC Energy Group, Inc. (NYSE:WEC – Get Rating) by 18.2% during the 2nd quarter, according to the company in its most recent Form 13F filing with the Securities and Exchange Commission (SEC). The fund owned 28,536 shares of the utilities provider’s stock after buying an […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/07/keybank-national-association-oh-buys-4388-shares-of-wec-energy-group-inc-nysewec.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-07T16:01:26.106Z", "last_update": "2022-11-07T16:01:26.106Z"}}, {"model": "press.post", "pk": 996, "fields": {"title": "Hancock Whitney Corp Has $1.19 Million Stock Position in eBay Inc. (NASDAQ:EBAY)", "body": "Hancock Whitney Corp cut its position in eBay Inc. (NASDAQ:EBAY – Get Rating) by 24.1% during the second quarter, according to the company in its most recent disclosure with the Securities & Exchange Commission. The institutional investor owned 28,637 shares of the e-commerce company’s stock after selling 9,101 shares during the period. Hancock Whitney Corp’s […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/07/hancock-whitney-corp-has-1-19-million-stock-position-in-ebay-inc-nasdaqebay.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-07T16:01:26.230Z", "last_update": "2022-11-07T16:01:26.230Z"}}, {"model": "press.post", "pk": 997, "fields": {"title": "Banco Bilbao Vizcaya Argentaria S.A. Buys 3,340 Shares of The Estée Lauder Companies Inc. (NYSE:EL)", "body": "Banco Bilbao Vizcaya Argentaria S.A. boosted its stake in shares of The Estée Lauder Companies Inc. (NYSE:EL – Get Rating) by 23.4% during the second quarter, according to the company in its most recent Form 13F filing with the Securities & Exchange Commission. The firm owned 17,610 shares of the company’s stock after purchasing an […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/07/banco-bilbao-vizcaya-argentaria-s-a-buys-3340-shares-of-the-estee-lauder-companies-inc-nyseel.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-07T16:01:26.363Z", "last_update": "2022-11-07T16:01:26.363Z"}}, {"model": "press.post", "pk": 998, "fields": {"title": "Multiple neighborhoods are evacuated as explosions rip through chemical plant in Georgia", "body": "An uncontrolled fire broke out at the Symrise chemical plant in Brunswick on Monday morning and multiple explosions have been reported.", "image_link": "https://i.dailymail.co.uk/1s/2022/11/07/15/64276487-0-image-a-18_1667834455383.jpg", "word_cloud_link": null, "source_link": "https://www.dailymail.co.uk/news/article-11398977/Homes-two-schools-evacuated-fire-rips-chemical-plant-Georgia.html?ns_mchannel=rss&ns_campaign=1490&ito=1490", "source_label": "Mail", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-07T16:01:26.459Z", "last_update": "2022-11-07T16:01:26.459Z"}}, {"model": "press.post", "pk": 999, "fields": {"title": "John Oliver Jokingly Suspects That ‘White Lotus’ Viewers Are Only Watching Him After Deciding Not To Change The Channel", "body": "HBO John Oliver knows exactly where his audience comes from.", "image_link": null, "word_cloud_link": null, "source_link": "https://uproxx.com/viral/john-oliver-white-lotus-kari-lake-last-week-tonight/", "source_label": "hitfix", "status": "PUBLISHED", "author": 469, "category": 2, "creation_date": "2022-11-07T16:01:28.510Z", "last_update": "2022-11-07T16:01:28.510Z"}}, {"model": "press.post", "pk": 1000, "fields": {"title": "Man sentenced to life in prison for shooting and killing woman walking her dog", "body": "Michael Close fired 24 rounds from an AK-47, killing Isabella Thallas and injuring her boyfriend.", "image_link": null, "word_cloud_link": null, "source_link": "https://metro.co.uk/2022/11/07/man-sentenced-to-life-in-prison-for-killing-woman-walking-dog-17713145/", "source_label": "Metro", "status": "PUBLISHED", "author": 470, "category": 2, "creation_date": "2022-11-07T16:01:30.604Z", "last_update": "2022-11-07T16:01:30.604Z"}}, {"model": "press.post", "pk": 1001, "fields": {"title": "Marine Corps body composition study leads to modernization of policies", "body": "The military is well known for its physical fitness and body composition standards – standards that were set more than 40 years ago when President Jimmy Carter directed a review of physical fitness for military services. These standards were developed intending to promote the physical readiness of military troops and to prevent obesity. While the Marine Corps is no stranger to modernizing human performance policies and standards, this is the most comprehensive assessment of body composition methods since President Carter directed the review in 1980. In 2017, the Marines further emphasized...", "image_link": null, "word_cloud_link": null, "source_link": "https://www.dvidshub.net/news/432771/marine-corps-body-composition-study-leads-modernization-policies", "source_label": "dvidshub", "status": "PUBLISHED", "author": 471, "category": 2, "creation_date": "2022-11-07T16:01:32.583Z", "last_update": "2022-11-07T16:01:32.583Z"}}, {"model": "press.post", "pk": 1002, "fields": {"title": "Biden funds largest community air pollution monitoring program in EPA history", "body": "Studies show minority communities suffer disproportionately high negative effects from air pollution. The Environmental Protection Agency on Nov. 3 announced $53.4 million in grants to fund 132 community air pollution monitoring projects in 37 states. The EPA described the awards as the \"largest investment for community air monitoring in EPA history.\" The projects will be […]The post Biden funds largest community air pollution monitoring program in EPA history appeared first on The American Independent.", "image_link": null, "word_cloud_link": null, "source_link": "https://americanindependent.com/biden-epa-air-pollution-funding/", "source_label": "americanindependent", "status": "PUBLISHED", "author": 472, "category": 2, "creation_date": "2022-11-07T16:01:34.371Z", "last_update": "2022-11-07T16:01:34.371Z"}}, {"model": "press.post", "pk": 1003, "fields": {"title": "Alaa Abdel Fattah: British-Egyptian activist's life at acute risk - UN", "body": "The UN rights chief urges Egypt to release Alaa Abdel Fattah, who stopped drinking water on Sunday.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.bbc.co.uk/news/world-middle-east-63554313?at_medium=RSS&at_campaign=KARANGA", "source_label": "BBC", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:00:59.296Z", "last_update": "2022-11-08T16:00:59.296Z"}}, {"model": "press.post", "pk": 1004, "fields": {"title": "abrdn plc Reduces Stock Position in Celanese Co. (NYSE:CE)", "body": "abrdn plc lessened its position in Celanese Co. (NYSE:CE – Get Rating) by 4.2% in the 2nd quarter, according to its most recent 13F filing with the Securities and Exchange Commission. The fund owned 25,900 shares of the basic materials company’s stock after selling 1,131 shares during the quarter. abrdn plc’s holdings in Celanese were […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.etfdailynews.com/2022/11/08/abrdn-plc-reduces-stock-position-in-celanese-co-nysece/", "source_label": "etfdailynews", "status": "PUBLISHED", "author": 28, "category": 2, "creation_date": "2022-11-08T16:00:59.444Z", "last_update": "2022-11-08T16:00:59.444Z"}}, {"model": "press.post", "pk": 1005, "fields": {"title": "Meeder Asset Management Inc. Acquires 4,320 Shares of Targa Resources Corp. (NYSE:TRGP)", "body": "Meeder Asset Management Inc. boosted its stake in Targa Resources Corp. (NYSE:TRGP – Get Rating) by 41.1% during the 2nd quarter, according to the company in its most recent disclosure with the Securities & Exchange Commission. The institutional investor owned 14,829 shares of the pipeline company’s stock after acquiring an additional 4,320 shares during the […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/08/meeder-asset-management-inc-acquires-4320-shares-of-targa-resources-corp-nysetrgp.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-08T16:00:59.524Z", "last_update": "2022-11-08T16:00:59.524Z"}}, {"model": "press.post", "pk": 1006, "fields": {"title": "Meeder Asset Management Inc. Sells 9,284 Shares of NortonLifeLock Inc. (NASDAQ:NLOK)", "body": "Meeder Asset Management Inc. decreased its holdings in NortonLifeLock Inc. (NASDAQ:NLOK – Get Rating) by 17.3% during the 2nd quarter, according to the company in its most recent filing with the SEC. The institutional investor owned 44,386 shares of the company’s stock after selling 9,284 shares during the quarter. Meeder Asset Management Inc.’s holdings in […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/08/meeder-asset-management-inc-sells-9284-shares-of-nortonlifelock-inc-nasdaqnlok.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-08T16:00:59.593Z", "last_update": "2022-11-08T16:00:59.593Z"}}, {"model": "press.post", "pk": 1007, "fields": {"title": "Y Intercept Hong Kong Ltd Acquires Shares of 2,207 MSCI Inc. (NYSE:MSCI)", "body": "Y Intercept Hong Kong Ltd acquired a new stake in shares of MSCI Inc. (NYSE:MSCI – Get Rating) in the 2nd quarter, Holdings Channel.com reports. The fund acquired 2,207 shares of the technology company’s stock, valued at approximately $910,000. Several other hedge funds and other institutional investors have also made changes to their positions in […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/08/y-intercept-hong-kong-ltd-acquires-shares-of-2207-msci-inc-nysemsci.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-08T16:00:59.639Z", "last_update": "2022-11-08T16:00:59.639Z"}}, {"model": "press.post", "pk": 1008, "fields": {"title": "Hancock Whitney Corp Cuts Stock Position in Dominion Energy, Inc. (NYSE:D)", "body": "Hancock Whitney Corp decreased its stake in shares of Dominion Energy, Inc. (NYSE:D – Get Rating) by 8.7% during the 2nd quarter, according to the company in its most recent filing with the Securities and Exchange Commission (SEC). The firm owned 5,693 shares of the utilities provider’s stock after selling 544 shares during the quarter. […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/08/hancock-whitney-corp-cuts-stock-position-in-dominion-energy-inc-nysed.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-08T16:00:59.749Z", "last_update": "2022-11-08T16:00:59.749Z"}}, {"model": "press.post", "pk": 1009, "fields": {"title": "Meeder Asset Management Inc. Boosts Holdings in Charter Communications, Inc. (NASDAQ:CHTR)", "body": "Meeder Asset Management Inc. lifted its position in shares of Charter Communications, Inc. (NASDAQ:CHTR – Get Rating) by 29.1% during the 2nd quarter, according to its most recent disclosure with the Securities & Exchange Commission. The institutional investor owned 1,979 shares of the company’s stock after purchasing an additional 446 shares during the quarter. Meeder […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/08/meeder-asset-management-inc-boosts-holdings-in-charter-communications-inc-nasdaqchtr.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-08T16:00:59.805Z", "last_update": "2022-11-08T16:00:59.805Z"}}, {"model": "press.post", "pk": 1010, "fields": {"title": "APA Co. (NASDAQ:APA) Shares Sold by Meeder Asset Management Inc.", "body": "Meeder Asset Management Inc. reduced its position in APA Co. (NASDAQ:APA – Get Rating) by 8.0% in the 2nd quarter, HoldingsChannel.com reports. The firm owned 28,644 shares of the company’s stock after selling 2,488 shares during the quarter. Meeder Asset Management Inc.’s holdings in APA were worth $1,000,000 as of its most recent filing with […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/08/apa-co-nasdaqapa-shares-sold-by-meeder-asset-management-inc.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-08T16:00:59.886Z", "last_update": "2022-11-08T16:00:59.886Z"}}, {"model": "press.post", "pk": 1011, "fields": {"title": "Banco Bilbao Vizcaya Argentaria S.A. Grows Stock Holdings in Twilio Inc. (NYSE:TWLO)", "body": "Banco Bilbao Vizcaya Argentaria S.A. boosted its holdings in shares of Twilio Inc. (NYSE:TWLO – Get Rating) by 114.8% during the second quarter, according to the company in its most recent disclosure with the Securities & Exchange Commission. The institutional investor owned 20,469 shares of the technology company’s stock after purchasing an additional 10,941 shares […]", "image_link": null, "word_cloud_link": null, "source_link": "https://www.americanbankingnews.com/2022/11/08/banco-bilbao-vizcaya-argentaria-s-a-grows-stock-holdings-in-twilio-inc-nysetwlo.html", "source_label": "americanbankingnews", "status": "PUBLISHED", "author": 23, "category": 2, "creation_date": "2022-11-08T16:00:59.938Z", "last_update": "2022-11-08T16:00:59.938Z"}}, {"model": "press.post", "pk": 1012, "fields": {"title": "Steelers Open Week 10 As 2.5-Point Consensus Home Underdogs To Saints", "body": "The Pittsburgh Steelers will look to win their third game of the 2022 season by beating the (3-6) New Orleans Saints on Sunday at Acrisure Stadium. The Steelers, who were on a bye in Week 9, opened Week 10 on Tuesday as a 2.5-point consensus home underdog to the Saints, according to vegasinsider.com. The Saints […]", "image_link": null, "word_cloud_link": null, "source_link": "https://steelersdepot.com/2022/11/steelers-open-week-10-as-2-5-point-consensus-home-underdogs-to-saints/", "source_label": "steelersdepot", "status": "PUBLISHED", "author": 449, "category": 2, "creation_date": "2022-11-08T16:01:00.029Z", "last_update": "2022-11-08T16:01:00.029Z"}}, {"model": "press.post", "pk": 1013, "fields": {"title": "Local Church Aids Fort Myers Community After Ian", "body": "A local church spent the last three weeks teaming up with a national disaster relief organization to provide thousands of hot meals for people affected by Hurricane Ian.  Yolie Brito, originally from San Antonio, Texas, moved to Fort Myers in 2012. Brito started to attend Next Level Church in April of the same year and...", "image_link": null, "word_cloud_link": null, "source_link": "https://eaglenews.org/27661/news/local-church-aids-fort-myers-community-after-ian/", "source_label": "eaglenews", "status": "PUBLISHED", "author": 473, "category": 2, "creation_date": "2022-11-08T16:01:02.162Z", "last_update": "2022-11-08T16:01:02.162Z"}}, {"model": "press.post", "pk": 1014, "fields": {"title": "News24.com | Meghan Cremer’s ‘dear friend’ paints her as a lying drug addict – State", "body": "Linda Mohr during cross-examination in the Western Cape High Court on Tuesday vehemently denied this, saying the slain horse rider who rented one of her cottages on Vaderlandsche Rietvlei Farm was “dear to us”.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/SouthAfrica/News/meghan-cremers-dear-friend-paints-her-as-a-lying-drug-addict-state-20221108", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:02.312Z", "last_update": "2022-11-08T16:01:02.312Z"}}, {"model": "press.post", "pk": 1015, "fields": {"title": "News24.com | WATCH | Man jumps out of car and flees from curious elephant in Big 5 reserve", "body": "A man was caught on camera jumping out of his vehicle in the Hluhluwe Game Reserve north of Durban when an elephant ventured too close for comfort. The man ran into the nearby bushes of the reserve, which is home to the Big 5.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/Video/SouthAfrica/News/watch-man-jumps-out-of-car-and-flees-from-curious-elephant-in-big-5-reserve-20221108", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:02.476Z", "last_update": "2022-11-08T16:01:02.476Z"}}, {"model": "press.post", "pk": 1016, "fields": {"title": "News24.com | IN-DEPTH | Major SAMRC study sheds light on causes of disease, death in SA", "body": "Unsafe sex, interpersonal violence, high body mass index, high systolic blood pressure, and alcohol consumption are the top risk factors for disease and death in South Africa, according to the Second Comparative Risk Assessment study conducted by the South African Medical Research Council’s Burden of Disease Research Unit. Nthusang Lefafa spoke to some of the researchers to unpack the findings.", "image_link": "https://scripts.24.co.za/img/sites/news24.png", "word_cloud_link": null, "source_link": "https://www.news24.com/news24/Health/in-depth-major-samrc-study-sheds-light-on-causes-of-disease-death-in-sa-20221108", "source_label": "News24", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:02.616Z", "last_update": "2022-11-08T16:01:02.616Z"}}, {"model": "press.post", "pk": 1017, "fields": {"title": "Is ‘Bachelor in Paradise’ on Tonight? ‘Bachelor in Paradise’ Return Date", "body": "Gabby and Rachel are hitting the beach. But when?", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/11/bachelor-in-paradise-rachel-gabby.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://decider.com/2022/11/08/bachelor-in-paradise-on-tonight-bachelor-in-paradise-season-8-return-date-abc/", "source_label": "Post", "status": "PUBLISHED", "author": 57, "category": 2, "creation_date": "2022-11-08T16:01:02.771Z", "last_update": "2022-11-08T16:01:02.771Z"}}, {"model": "press.post", "pk": 1018, "fields": {"title": "How costly is federal paperwork? Well, this is costly.", "body": "Digital services and modernization are pillars of the Biden administration's management agenda. These efforts don't just matter to federal agencies, though, business is thoroughly behind efforts to streamline government services.", "image_link": "https://federalnewsnetwork.com/wp-content/uploads/2022/11/GettyImages-1010690668.jpg", "word_cloud_link": null, "source_link": "https://federalnewsnetwork.com/automation/2022/11/how-costly-is-federal-paperwork-well-this-is-costly/", "source_label": "federalnewsradio", "status": "PUBLISHED", "author": 226, "category": 2, "creation_date": "2022-11-08T16:01:02.952Z", "last_update": "2022-11-08T16:01:02.952Z"}}, {"model": "press.post", "pk": 1019, "fields": {"title": "Voters deciding between Paul Angulo, Ben Benoit for Riverside County auditor-controller", "body": "The election to be the county's top fiscal watchdog has been heated and uncharacteristically hard fought.", "image_link": "https://www.pressenterprise.com/wp-content/uploads/2022/11/RPE-L-BENOIT-0112-panel_1050999648.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.pressenterprise.com/2022/11/08/voters-deciding-between-paul-angulo-ben-benoit-for-riverside-county-auditor-controller/", "source_label": "pe", "status": "PUBLISHED", "author": 474, "category": 2, "creation_date": "2022-11-08T16:01:05.833Z", "last_update": "2022-11-08T16:01:05.833Z"}}, {"model": "press.post", "pk": 1020, "fields": {"title": "BeFootball, the company developing a VR metaverse of football, organizes the first Immersive Football World Cup", "body": "BeFootball launches SuperPlayer VR game and announces the first Immersive World Cup. It awards $3,000", "image_link": "https://mma.prnewswire.com/media/1938784/SUPERPLAYER_V2.mp4", "word_cloud_link": null, "source_link": "http://digitalmedianet.com/befootball-the-company-developing-a-vr-metaverse-of-football-organizes-the-first-immersive-football-world-cup/", "source_label": "miranda", "status": "PUBLISHED", "author": 219, "category": 2, "creation_date": "2022-11-08T16:01:06.131Z", "last_update": "2022-11-08T16:01:06.131Z"}}, {"model": "press.post", "pk": 1021, "fields": {"title": "Dollar flat as traders eye U.S. midterms, potential partisan gridlock", "body": "WASHINGTON/LONDON — The dollar was flat on Tuesday as traders looked ahead to U.S. midterm elections and hopes of China relaxing coronavirus restrictions faded, after initial optimism that boosted investor sentiment and weighed on the safe haven U.S. currency. A conclusive result to Tuesday’s midterms could take days, but forecasts are for a Republican victory, […]", "image_link": null, "word_cloud_link": null, "source_link": "https://financialpost.com/pmn/business-pmn/dollar-flat-as-traders-eye-u-s-midterms-potential-partisan-gridlock", "source_label": "business", "status": "PUBLISHED", "author": 104, "category": 2, "creation_date": "2022-11-08T16:01:06.269Z", "last_update": "2022-11-08T16:01:06.270Z"}}, {"model": "press.post", "pk": 1022, "fields": {"title": "Nina Hoss is cheated on in 'Tár.' But here's why she's not a victim", "body": "The actress plays wife to Cate Blanchett's orchestra conductor. It's a weathered love affair that’s showing signs of fraying.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.latimes.com/entertainment-arts/awards/story/2022-11-08/nina-hoss-tar-cate-blanchett", "source_label": "latimes", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:06.441Z", "last_update": "2022-11-08T16:01:06.441Z"}}, {"model": "press.post", "pk": 1023, "fields": {"title": "Schneider Electric Marks Start of COP27 With New Plea and Pledge to Strengthen Public-Private Collaboration", "body": "CEO Jean-Pascal Tricoire signs open letter to world’s climate leaders and peers CSSO on-site to support launch of Action Declaration on Climate Policy Engagement MISSISSAUGA, Ontario — Schneider Electric, the leader in the digital transformation of energy management and industrial automation, has announced today two key steps to substantiate its earlier call for increased public […]", "image_link": null, "word_cloud_link": null, "source_link": "https://financialpost.com/pmn/press-releases-pmn/business-wire-news-releases-pmn/schneider-electric-marks-start-of-cop27-with-new-plea-and-pledge-to-strengthen-public-private-collaboration", "source_label": "business", "status": "PUBLISHED", "author": 475, "category": 2, "creation_date": "2022-11-08T16:01:09.138Z", "last_update": "2022-11-08T16:01:09.138Z"}}, {"model": "press.post", "pk": 1024, "fields": {"title": "Gov. Whitmer mocked after audio ‘mysteriously’ drops when asked about COVID regrets", "body": "Michigan Gov. Gretchen Whitmer was asked during a remote FOX 2 Detroit appearance on Monday if she had any regrets about the controversial pandemic measures she put in place.", "image_link": "https://nypost.com/wp-content/uploads/sites/2/2022/11/gretchen-whitmer-tudor-dixon-comp.jpg?quality=90&strip=all", "word_cloud_link": null, "source_link": "https://nypost.com/2022/11/08/gov-whitmers-audio-drops-out-after-asked-about-covid-regrets/", "source_label": "Post", "status": "PUBLISHED", "author": 476, "category": 2, "creation_date": "2022-11-08T16:01:11.991Z", "last_update": "2022-11-08T16:01:11.991Z"}}, {"model": "press.post", "pk": 1025, "fields": {"title": "Top ways smart tech can save Thanksgiving dinner", "body": "Stressed about hosting a Thanksgiving dinner? We share the tech and gadgets (you probably already have some) that can help make it the best holiday ever.", "image_link": "https://www.digitaltrends.com/wp-content/uploads/2020/11/zoom_thanksgiving.jpg?resize=440%2C292&p=1", "word_cloud_link": null, "source_link": "https://www.digitaltrends.com/home/top-ways-smart-tech-can-save-thanksgiving-dinner/", "source_label": "digitaltrends", "status": "PUBLISHED", "author": 477, "category": 2, "creation_date": "2022-11-08T16:01:14.781Z", "last_update": "2022-11-08T16:01:14.781Z"}}, {"model": "press.post", "pk": 1026, "fields": {"title": "Yolo County Elections Office continues processing and counting mail-in ballots ahead of tonights election", "body": "“The processing and counting of vote-by-mail ballots is open to the public and we welcome anyone who is interested in observing,” Jesse Salinas, Yolo County accessor/clerk-recorder/registrar of voters, said. “It is strongly recommended that all persons, regardless of vaccination status, continue indoor masking at events such as this. If you are interested in observing, please email elections@yolocounty.org.”", "image_link": "https://www.dailydemocrat.com/wp-content/uploads/2022/11/ELECTIONS.jpg?w=1400px&strip=all", "word_cloud_link": null, "source_link": "https://www.dailydemocrat.com/2022/11/08/yolo-county-elections-office-continues-processing-and-counting-mail-in-ballots-ahead-of-tonights-election/", "source_label": "dailydemocrat", "status": "PUBLISHED", "author": 478, "category": 2, "creation_date": "2022-11-08T16:01:17.395Z", "last_update": "2022-11-08T16:01:17.395Z"}}, {"model": "press.post", "pk": 1027, "fields": {"title": "We spoke with makeup, skin, hair and nail experts to find the best beauty gift sets this holiday season", "body": "We spoke with makeup, skin, hair and nail experts to find the best beauty gift sets this holiday season", "image_link": "https://cdn.cnn.com/cnnnext/dam/assets/211118100045-cyber-week-target-lead-image-cnnu-super-169.jpg", "word_cloud_link": null, "source_link": "https://www.cnn.com/cnn-underscored/gifts/best-makeup-beauty-gift-sets?iid=CNNUnderscoredHPcontainer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:17.507Z", "last_update": "2022-11-08T16:01:17.507Z"}}, {"model": "press.post", "pk": 1028, "fields": {"title": "45 of the best gifts for the frequent traveler in your life", "body": "45 of the best gifts for the frequent traveler in your life", "image_link": "https://cdn.cnn.com/cnnnext/dam/assets/210623113108-best-inflatable-hot-tubs-lead-super-169.jpg", "word_cloud_link": null, "source_link": "https://www.cnn.com/cnn-underscored/gifts/best-travel-gifts?iid=CNNUnderscoredHPcontainer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:17.620Z", "last_update": "2022-11-08T16:01:17.620Z"}}, {"model": "press.post", "pk": 1029, "fields": {"title": "Shopping for someone you don't know well? These gifts under $50 will do the trick", "body": "Shopping for someone you don't know well? These gifts under $50 will do the trick", "image_link": "https://cdn.cnn.com/cnnnext/dam/assets/221101111456-oprah-favorite-things-2022-lead-super-169.jpg", "word_cloud_link": null, "source_link": "https://www.cnn.com/cnn-underscored/gifts/best-gifts-for-people-you-dont-know-well?iid=CNNUnderscoredHPcontainer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:17.739Z", "last_update": "2022-11-08T16:01:17.739Z"}}, {"model": "press.post", "pk": 1030, "fields": {"title": "This Thanksgiving will be weird: Green bean casserole seltzer is now a thing", "body": "This Thanksgiving will be weird: Green bean casserole seltzer is now a thing", "image_link": "https://cdn.cnn.com/cnnnext/dam/assets/221108091725-fn-green-bean-front-food-network-bin-only-super-169.jpeg", "word_cloud_link": null, "source_link": "https://www.foodnetwork.com/fn-dish/news/aura-bora-green-bean-casserole-seltzer", "source_label": "CNN", "status": "PUBLISHED", "author": 9, "category": 2, "creation_date": "2022-11-08T16:01:17.936Z", "last_update": "2022-11-08T16:01:17.936Z"}}, {"model": "press.post", "pk": 1031, "fields": {"title": "Pakistan says military-critic scribe killed in ‘targeted attack’ in Kenya", "body": "Islamabad, Nov 8 (EFE).- The government Tuesday said a prominent Pakistani journalist who had fled the country was killed in a “targeted attack” in Kenya. Interior Minister Rana Sanaullah debunked the Kenyan police’s claim that the military-critic TV presenter facing sedition charges in Pakistan was shot dead in a mistaken identity. Sanaullah told reporters that …The post Pakistan says military-critic scribe killed in ‘targeted attack’ in Kenya appeared first on La Prensa Latina Media.", "image_link": null, "word_cloud_link": null, "source_link": "https://www.laprensalatina.com/pakistan-says-military-critic-scribe-killed-in-targeted-attack-in-kenya/", "source_label": "Prensa latina", "status": "PUBLISHED", "author": 102, "category": 2, "creation_date": "2022-11-08T16:01:18.068Z", "last_update": "2022-11-08T16:01:18.068Z"}}, {"model": "press.post", "pk": 1032, "fields": {"title": "Google and Renault Working on an Automotive Software Platform", "body": "WebProNewsGoogle and Renault Working on an Automotive Software PlatformGoogle and Renault are working on a software platform for future vehicles that is based on Google's platforms.Google and Renault Working on an Automotive Software PlatformMatt Milano", "image_link": null, "word_cloud_link": null, "source_link": "https://www.webpronews.com/google-and-renault-working-on-an-automotive-software-platform/", "source_label": "webpronews", "status": "PUBLISHED", "author": 252, "category": 2, "creation_date": "2022-11-08T16:01:18.200Z", "last_update": "2022-11-08T16:01:18.200Z"}}] \ No newline at end of file diff --git a/coolpress/press/serializers.py b/coolpress/press/serializers.py new file mode 100644 index 0000000..c2db863 --- /dev/null +++ b/coolpress/press/serializers.py @@ -0,0 +1,32 @@ +from django.contrib.auth.models import User +from rest_framework import serializers + +from press.models import Post, Category, CoolUser + + +class CategorySerializer(serializers.HyperlinkedModelSerializer): + class Meta: + model = Category + fields = '__all__' + + +class PostSerializer(serializers.ModelSerializer): + class Meta: + model = Post + fields = ['id', 'title', 'body', 'category', 'author', 'creation_date'] + read_only_fields = ('author',) + ordering = ['-creation_date'] + + +class UserSerializer(serializers.HyperlinkedModelSerializer): + class Meta: + model = User + fields = ['id', 'username'] + + +class AuthorSerializer(serializers.HyperlinkedModelSerializer): + user = UserSerializer(many=False, read_only=True) + + class Meta: + model = CoolUser + fields = ['id', 'user', 'github_profile'] diff --git a/coolpress/press/static/bootstrap-dist/css/bootstrap.css b/coolpress/press/static/bootstrap-dist/css/bootstrap.css new file mode 100644 index 0000000..8f47589 --- /dev/null +++ b/coolpress/press/static/bootstrap-dist/css/bootstrap.css @@ -0,0 +1,10038 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: left; + background-color: #fff; +} + +[tabindex="-1"]:focus { + outline: 0 !important; +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; +} + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: .5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 80%; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { + color: inherit; + text-decoration: none; +} + +a:not([href]):not([tabindex]):focus { + outline: 0; +} + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; +} + +figure { + margin: 0 0 1rem; +} + +img { + vertical-align: middle; + border-style: none; +} + +svg { + overflow: hidden; + vertical-align: middle; +} + +table { + border-collapse: collapse; +} + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #6c757d; + text-align: left; + caption-side: bottom; +} + +th { + text-align: inherit; +} + +label { + display: inline-block; + margin-bottom: 0.5rem; +} + +button { + border-radius: 0; +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +input { + overflow: visible; +} + +button, +select { + text-transform: none; +} + +select { + word-wrap: normal; +} + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; +} + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; +} + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; +} + +input[type="date"], +input[type="time"], +input[type="datetime-local"], +input[type="month"] { + -webkit-appearance: listbox; +} + +textarea { + overflow: auto; + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; +} + +progress { + vertical-align: baseline; +} + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; +} + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +summary { + display: list-item; + cursor: pointer; +} + +template { + display: none; +} + +[hidden] { + display: none !important; +} + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} + +h1, .h1 { + font-size: 2.5rem; +} + +h2, .h2 { + font-size: 2rem; +} + +h3, .h3 { + font-size: 1.75rem; +} + +h4, .h4 { + font-size: 1.5rem; +} + +h5, .h5 { + font-size: 1.25rem; +} + +h6, .h6 { + font-size: 1rem; +} + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); +} + +small, +.small { + font-size: 80%; + font-weight: 400; +} + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; +} + +.list-unstyled { + padding-left: 0; + list-style: none; +} + +.list-inline { + padding-left: 0; + list-style: none; +} + +.list-inline-item { + display: inline-block; +} + +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} + +.initialism { + font-size: 90%; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; +} + +.blockquote-footer::before { + content: "\2014\00A0"; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 90%; + color: #6c757d; +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word; +} + +a > code { + color: inherit; +} + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; +} + +pre { + display: block; + font-size: 87.5%; + color: #212529; +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +.container { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container { + max-width: 540px; + } +} + +@media (min-width: 768px) { + .container { + max-width: 720px; + } +} + +@media (min-width: 992px) { + .container { + max-width: 960px; + } +} + +@media (min-width: 1200px) { + .container { + max-width: 1140px; + } +} + +.container-fluid { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} + +.row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; +} + +.no-gutters { + margin-right: 0; + margin-left: 0; +} + +.no-gutters > .col, +.no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; +} + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; +} + +.col-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; +} + +.col-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; +} + +.col-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; +} + +.col-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} + +.col-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; +} + +.col-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; +} + +.col-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} + +.col-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; +} + +.col-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; +} + +.col-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; +} + +.col-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; +} + +.col-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; +} + +.col-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; +} + +.order-first { + -ms-flex-order: -1; + order: -1; +} + +.order-last { + -ms-flex-order: 13; + order: 13; +} + +.order-0 { + -ms-flex-order: 0; + order: 0; +} + +.order-1 { + -ms-flex-order: 1; + order: 1; +} + +.order-2 { + -ms-flex-order: 2; + order: 2; +} + +.order-3 { + -ms-flex-order: 3; + order: 3; +} + +.order-4 { + -ms-flex-order: 4; + order: 4; +} + +.order-5 { + -ms-flex-order: 5; + order: 5; +} + +.order-6 { + -ms-flex-order: 6; + order: 6; +} + +.order-7 { + -ms-flex-order: 7; + order: 7; +} + +.order-8 { + -ms-flex-order: 8; + order: 8; +} + +.order-9 { + -ms-flex-order: 9; + order: 9; +} + +.order-10 { + -ms-flex-order: 10; + order: 10; +} + +.order-11 { + -ms-flex-order: 11; + order: 11; +} + +.order-12 { + -ms-flex-order: 12; + order: 12; +} + +.offset-1 { + margin-left: 8.333333%; +} + +.offset-2 { + margin-left: 16.666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.333333%; +} + +.offset-5 { + margin-left: 41.666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.333333%; +} + +.offset-8 { + margin-left: 66.666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.333333%; +} + +.offset-11 { + margin-left: 91.666667%; +} + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-sm-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-sm-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-sm-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-sm-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-sm-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-sm-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-sm-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-sm-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-sm-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-sm-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-sm-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-sm-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-sm-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-sm-first { + -ms-flex-order: -1; + order: -1; + } + .order-sm-last { + -ms-flex-order: 13; + order: 13; + } + .order-sm-0 { + -ms-flex-order: 0; + order: 0; + } + .order-sm-1 { + -ms-flex-order: 1; + order: 1; + } + .order-sm-2 { + -ms-flex-order: 2; + order: 2; + } + .order-sm-3 { + -ms-flex-order: 3; + order: 3; + } + .order-sm-4 { + -ms-flex-order: 4; + order: 4; + } + .order-sm-5 { + -ms-flex-order: 5; + order: 5; + } + .order-sm-6 { + -ms-flex-order: 6; + order: 6; + } + .order-sm-7 { + -ms-flex-order: 7; + order: 7; + } + .order-sm-8 { + -ms-flex-order: 8; + order: 8; + } + .order-sm-9 { + -ms-flex-order: 9; + order: 9; + } + .order-sm-10 { + -ms-flex-order: 10; + order: 10; + } + .order-sm-11 { + -ms-flex-order: 11; + order: 11; + } + .order-sm-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.333333%; + } + .offset-sm-2 { + margin-left: 16.666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.333333%; + } + .offset-sm-5 { + margin-left: 41.666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.333333%; + } + .offset-sm-8 { + margin-left: 66.666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.333333%; + } + .offset-sm-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-md-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-md-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-md-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-md-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-md-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-md-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-md-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-md-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-md-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-md-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-md-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-md-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-md-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-md-first { + -ms-flex-order: -1; + order: -1; + } + .order-md-last { + -ms-flex-order: 13; + order: 13; + } + .order-md-0 { + -ms-flex-order: 0; + order: 0; + } + .order-md-1 { + -ms-flex-order: 1; + order: 1; + } + .order-md-2 { + -ms-flex-order: 2; + order: 2; + } + .order-md-3 { + -ms-flex-order: 3; + order: 3; + } + .order-md-4 { + -ms-flex-order: 4; + order: 4; + } + .order-md-5 { + -ms-flex-order: 5; + order: 5; + } + .order-md-6 { + -ms-flex-order: 6; + order: 6; + } + .order-md-7 { + -ms-flex-order: 7; + order: 7; + } + .order-md-8 { + -ms-flex-order: 8; + order: 8; + } + .order-md-9 { + -ms-flex-order: 9; + order: 9; + } + .order-md-10 { + -ms-flex-order: 10; + order: 10; + } + .order-md-11 { + -ms-flex-order: 11; + order: 11; + } + .order-md-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.333333%; + } + .offset-md-2 { + margin-left: 16.666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.333333%; + } + .offset-md-5 { + margin-left: 41.666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.333333%; + } + .offset-md-8 { + margin-left: 66.666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.333333%; + } + .offset-md-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-lg-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-lg-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-lg-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-lg-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-lg-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-lg-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-lg-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-lg-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-lg-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-lg-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-lg-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-lg-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-lg-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-lg-first { + -ms-flex-order: -1; + order: -1; + } + .order-lg-last { + -ms-flex-order: 13; + order: 13; + } + .order-lg-0 { + -ms-flex-order: 0; + order: 0; + } + .order-lg-1 { + -ms-flex-order: 1; + order: 1; + } + .order-lg-2 { + -ms-flex-order: 2; + order: 2; + } + .order-lg-3 { + -ms-flex-order: 3; + order: 3; + } + .order-lg-4 { + -ms-flex-order: 4; + order: 4; + } + .order-lg-5 { + -ms-flex-order: 5; + order: 5; + } + .order-lg-6 { + -ms-flex-order: 6; + order: 6; + } + .order-lg-7 { + -ms-flex-order: 7; + order: 7; + } + .order-lg-8 { + -ms-flex-order: 8; + order: 8; + } + .order-lg-9 { + -ms-flex-order: 9; + order: 9; + } + .order-lg-10 { + -ms-flex-order: 10; + order: 10; + } + .order-lg-11 { + -ms-flex-order: 11; + order: 11; + } + .order-lg-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.333333%; + } + .offset-lg-2 { + margin-left: 16.666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.333333%; + } + .offset-lg-5 { + margin-left: 41.666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.333333%; + } + .offset-lg-8 { + margin-left: 66.666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.333333%; + } + .offset-lg-11 { + margin-left: 91.666667%; + } +} + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .col-xl-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; + } + .col-xl-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-xl-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xl-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-xl-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-xl-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-xl-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-xl-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-xl-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-xl-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-xl-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-xl-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-xl-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .order-xl-first { + -ms-flex-order: -1; + order: -1; + } + .order-xl-last { + -ms-flex-order: 13; + order: 13; + } + .order-xl-0 { + -ms-flex-order: 0; + order: 0; + } + .order-xl-1 { + -ms-flex-order: 1; + order: 1; + } + .order-xl-2 { + -ms-flex-order: 2; + order: 2; + } + .order-xl-3 { + -ms-flex-order: 3; + order: 3; + } + .order-xl-4 { + -ms-flex-order: 4; + order: 4; + } + .order-xl-5 { + -ms-flex-order: 5; + order: 5; + } + .order-xl-6 { + -ms-flex-order: 6; + order: 6; + } + .order-xl-7 { + -ms-flex-order: 7; + order: 7; + } + .order-xl-8 { + -ms-flex-order: 8; + order: 8; + } + .order-xl-9 { + -ms-flex-order: 9; + order: 9; + } + .order-xl-10 { + -ms-flex-order: 10; + order: 10; + } + .order-xl-11 { + -ms-flex-order: 11; + order: 11; + } + .order-xl-12 { + -ms-flex-order: 12; + order: 12; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.333333%; + } + .offset-xl-2 { + margin-left: 16.666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.333333%; + } + .offset-xl-5 { + margin-left: 41.666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.333333%; + } + .offset-xl-8 { + margin-left: 66.666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.333333%; + } + .offset-xl-11 { + margin-left: 91.666667%; + } +} + +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; +} + +.table th, +.table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #dee2e6; +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6; +} + +.table tbody + tbody { + border-top: 2px solid #dee2e6; +} + +.table-sm th, +.table-sm td { + padding: 0.3rem; +} + +.table-bordered { + border: 1px solid #dee2e6; +} + +.table-bordered th, +.table-bordered td { + border: 1px solid #dee2e6; +} + +.table-bordered thead th, +.table-bordered thead td { + border-bottom-width: 2px; +} + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); +} + +.table-hover tbody tr:hover { + color: #212529; + background-color: rgba(0, 0, 0, 0.075); +} + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #b8daff; +} + +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #7abaff; +} + +.table-hover .table-primary:hover { + background-color: #9fcdff; +} + +.table-hover .table-primary:hover > td, +.table-hover .table-primary:hover > th { + background-color: #9fcdff; +} + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d6d8db; +} + +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b3b7bb; +} + +.table-hover .table-secondary:hover { + background-color: #c8cbcf; +} + +.table-hover .table-secondary:hover > td, +.table-hover .table-secondary:hover > th { + background-color: #c8cbcf; +} + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c3e6cb; +} + +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #8fd19e; +} + +.table-hover .table-success:hover { + background-color: #b1dfbb; +} + +.table-hover .table-success:hover > td, +.table-hover .table-success:hover > th { + background-color: #b1dfbb; +} + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; +} + +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; +} + +.table-hover .table-info:hover { + background-color: #abdde5; +} + +.table-hover .table-info:hover > td, +.table-hover .table-info:hover > th { + background-color: #abdde5; +} + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; +} + +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1; +} + +.table-hover .table-warning:hover > td, +.table-hover .table-warning:hover > th { + background-color: #ffe8a1; +} + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; +} + +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ed969e; +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7; +} + +.table-hover .table-danger:hover > td, +.table-hover .table-danger:hover > th { + background-color: #f1b0b7; +} + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; +} + +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; +} + +.table-hover .table-light:hover { + background-color: #ececf6; +} + +.table-hover .table-light:hover > td, +.table-hover .table-light:hover > th { + background-color: #ececf6; +} + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c6c8ca; +} + +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #95999c; +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe; +} + +.table-hover .table-dark:hover > td, +.table-hover .table-dark:hover > th { + background-color: #b9bbbe; +} + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); +} + +.table-hover .table-active:hover > td, +.table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); +} + +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; +} + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.table-dark { + color: #fff; + background-color: #343a40; +} + +.table-dark th, +.table-dark td, +.table-dark thead th { + border-color: #454d55; +} + +.table-dark.table-bordered { + border: 0; +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); +} + +.table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); +} + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-sm > .table-bordered { + border: 0; + } +} + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-md > .table-bordered { + border: 0; + } +} + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-lg > .table-bordered { + border: 0; + } +} + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } + .table-responsive-xl > .table-bordered { + border: 0; + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} + +.table-responsive > .table-bordered { + border: 0; +} + +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} + +.form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; +} + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; + line-height: 1.5; +} + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} + +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +select.form-control[size], select.form-control[multiple] { + height: auto; +} + +textarea.form-control { + height: auto; +} + +.form-group { + margin-bottom: 1rem; +} + +.form-text { + display: block; + margin-top: 0.25rem; +} + +.form-row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; +} + +.form-row > .col, +.form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; +} + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; +} + +.form-check-input:disabled ~ .form-check-label { + color: #6c757d; +} + +.form-check-label { + margin-bottom: 0; +} + +.form-check-inline { + display: -ms-inline-flexbox; + display: inline-flex; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; +} + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #28a745; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .form-control:valid ~ .valid-feedback, +.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, +.form-control.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28a745; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .custom-select:valid ~ .valid-feedback, +.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, +.custom-select.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-control-file:valid ~ .valid-feedback, +.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, +.form-control-file.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; +} + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; +} + +.was-validated .custom-control-input:valid ~ .valid-feedback, +.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, +.custom-control-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; +} + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; +} + +.was-validated .custom-file-input:valid ~ .valid-feedback, +.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, +.custom-file-input.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + background-repeat: no-repeat; + background-position: center right calc(0.375em + 0.1875rem); + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .form-control:invalid ~ .invalid-feedback, +.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, +.form-control.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #dc3545; + padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} + +.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .custom-select:invalid ~ .invalid-feedback, +.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, +.custom-select.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-control-file:invalid ~ .invalid-feedback, +.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, +.form-control-file.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; +} + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; +} + +.was-validated .custom-control-input:invalid ~ .invalid-feedback, +.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, +.custom-control-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; +} + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; +} + +.was-validated .custom-file-input:invalid ~ .invalid-feedback, +.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, +.custom-file-input.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); +} + +.form-inline { + display: -ms-flexbox; + display: flex; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; +} + +.form-inline .form-check { + width: 100%; +} + +@media (min-width: 576px) { + .form-inline label { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; + } + .form-inline .form-group { + display: -ms-flexbox; + display: flex; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-plaintext { + display: inline-block; + } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; + } + .form-inline .form-check { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; + } + .form-inline .form-check-input { + position: relative; + -ms-flex-negative: 0; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; + } + .form-inline .custom-control { + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + } + .form-inline .custom-control-label { + margin-bottom: 0; + } +} + +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} + +.btn:hover { + color: #212529; + text-decoration: none; +} + +.btn:focus, .btn.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.btn.disabled, .btn:disabled { + opacity: 0.65; +} + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; +} + +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc; +} + +.btn-primary:focus, .btn-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +.btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf; +} + +.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); +} + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62; +} + +.btn-secondary:focus, .btn-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +.btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b; +} + +.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34; +} + +.btn-success:focus, .btn-success.focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +.btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430; +} + +.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; +} + +.btn-info:focus, .btn-info.focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +.btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, +.show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; +} + +.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00; +} + +.btn-warning:focus, .btn-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +.btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, +.show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500; +} + +.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; +} + +.btn-danger:focus, .btn-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +.btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; +} + +.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; +} + +.btn-light:focus, .btn-light.focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +.btn-light.disabled, .btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, +.show > .btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df; +} + +.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124; +} + +.btn-dark:focus, .btn-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +.btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d; +} + +.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); +} + +.btn-outline-primary { + color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #007bff; + background-color: transparent; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, +.show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, +.show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} + +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.btn-outline-success { + color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-success.disabled, .btn-outline-success:disabled { + color: #28a745; + background-color: transparent; +} + +.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, +.show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745; +} + +.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; +} + +.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, +.show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; +} + +.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, +.show > .btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107; +} + +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, +.show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} + +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} + +.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, +.show > .btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; +} + +.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.btn-outline-dark { + color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #343a40; + background-color: transparent; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, +.show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40; +} + +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.btn-link { + font-weight: 400; + color: #007bff; + text-decoration: none; +} + +.btn-link:hover { + color: #0056b3; + text-decoration: underline; +} + +.btn-link:focus, .btn-link.focus { + text-decoration: underline; + box-shadow: none; +} + +.btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; +} + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.btn-block { + display: block; + width: 100%; +} + +.btn-block + .btn-block { + margin-top: 0.5rem; +} + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} + +.fade { + transition: opacity 0.15s linear; +} + +@media (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} + +.fade:not(.show) { + opacity: 0; +} + +.collapse:not(.show) { + display: none; +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} + +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} + +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} + +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} + +.dropdown-menu-left { + right: auto; + left: 0; +} + +.dropdown-menu-right { + right: 0; + left: auto; +} + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; + } + .dropdown-menu-sm-right { + right: 0; + left: auto; + } +} + +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; + } + .dropdown-menu-md-right { + right: 0; + left: auto; + } +} + +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; + } + .dropdown-menu-lg-right { + right: 0; + left: auto; + } +} + +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; + } + .dropdown-menu-xl-right { + right: 0; + left: auto; + } +} + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropright .dropdown-toggle::after { + vertical-align: 0; +} + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} + +.dropleft .dropdown-toggle::after { + display: none; +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; +} + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef; +} + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; +} + +.dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +.dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; +} + +.dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #212529; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; +} + +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; +} + +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover { + z-index: 1; +} + +.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-toolbar { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.btn-toolbar .input-group { + width: auto; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; +} + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} + +.dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after { + margin-left: 0; +} + +.dropleft .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} + +.btn-group-vertical { + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: center; + justify-content: center; +} + +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; +} + +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.btn-group-vertical > .btn:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; +} + +.btn-group-toggle > .btn input[type="radio"], +.btn-group-toggle > .btn input[type="checkbox"], +.btn-group-toggle > .btn-group > .btn input[type="radio"], +.btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} + +.input-group { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; +} + +.input-group > .form-control, +.input-group > .form-control-plaintext, +.input-group > .custom-select, +.input-group > .custom-file { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0; +} + +.input-group > .form-control + .form-control, +.input-group > .form-control + .custom-select, +.input-group > .form-control + .custom-file, +.input-group > .form-control-plaintext + .form-control, +.input-group > .form-control-plaintext + .custom-select, +.input-group > .form-control-plaintext + .custom-file, +.input-group > .custom-select + .form-control, +.input-group > .custom-select + .custom-select, +.input-group > .custom-select + .custom-file, +.input-group > .custom-file + .form-control, +.input-group > .custom-file + .custom-select, +.input-group > .custom-file + .custom-file { + margin-left: -1px; +} + +.input-group > .form-control:focus, +.input-group > .custom-select:focus, +.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; +} + +.input-group > .custom-file .custom-file-input:focus { + z-index: 4; +} + +.input-group > .form-control:not(:last-child), +.input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .form-control:not(:first-child), +.input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group > .custom-file { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; +} + +.input-group > .custom-file:not(:last-child) .custom-file-label, +.input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.input-group-prepend, +.input-group-append { + display: -ms-flexbox; + display: flex; +} + +.input-group-prepend .btn, +.input-group-append .btn { + position: relative; + z-index: 2; +} + +.input-group-prepend .btn:focus, +.input-group-append .btn:focus { + z-index: 3; +} + +.input-group-prepend .btn + .btn, +.input-group-prepend .btn + .input-group-text, +.input-group-prepend .input-group-text + .input-group-text, +.input-group-prepend .input-group-text + .btn, +.input-group-append .btn + .btn, +.input-group-append .btn + .input-group-text, +.input-group-append .input-group-text + .input-group-text, +.input-group-append .input-group-text + .btn { + margin-left: -1px; +} + +.input-group-prepend { + margin-right: -1px; +} + +.input-group-append { + margin-left: -1px; +} + +.input-group-text { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.input-group-text input[type="radio"], +.input-group-text input[type="checkbox"] { + margin-top: 0; +} + +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); +} + +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; +} + +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); +} + +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; +} + +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; +} + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; +} + +.custom-control-inline { + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; +} + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0; +} + +.custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #007bff; + background-color: #007bff; +} + +.custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #80bdff; +} + +.custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; + border-color: #b3d7ff; +} + +.custom-control-input:disabled ~ .custom-control-label { + color: #6c757d; +} + +.custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e9ecef; +} + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; +} + +.custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; +} + +.custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; +} + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; +} + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #007bff; + background-color: #007bff; +} + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); +} + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-radio .custom-control-label::before { + border-radius: 50%; +} + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-switch { + padding-left: 2.25rem; +} + +.custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; +} + +.custom-switch .custom-control-label::after { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + transition: none; + } +} + +.custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(0.75rem); + transform: translateX(0.75rem); +} + +.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff; +} + +.custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; +} + +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; +} + +.custom-select::-ms-expand { + display: none; +} + +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} + +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; +} + +.custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; +} + +.custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; +} + +.custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); +} + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} + +.custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; +} + +.custom-range { + width: 100%; + height: calc(1rem + 0.4rem); + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.custom-range:focus { + outline: none; +} + +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.custom-range::-moz-focus-outer { + border: 0; +} + +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + transition: none; + } +} + +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + transition: none; + } +} + +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} + +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; +} + +@media (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + transition: none; + } +} + +.custom-range::-ms-thumb:active { + background-color: #b3d7ff; +} + +.custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; +} + +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; +} + +.custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; +} + +.custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} + +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; +} + +.custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} + +.custom-range:disabled::-moz-range-track { + cursor: default; +} + +.custom-range:disabled::-ms-thumb { + background-color: #adb5bd; +} + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none; + } +} + +.nav { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: 0.5rem 1rem; +} + +.nav-link:hover, .nav-link:focus { + text-decoration: none; +} + +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} + +.nav-tabs .nav-item { + margin-bottom: -1px; +} + +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; +} + +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} + +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills .nav-link { + border-radius: 0.25rem; +} + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; +} + +.nav-fill .nav-item { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; +} + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; +} + +.tab-content > .tab-pane { + display: none; +} + +.tab-content > .active { + display: block; +} + +.navbar { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 0.5rem 1rem; +} + +.navbar > .container, +.navbar > .container-fluid { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; +} + +.navbar-nav { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} + +.navbar-nav .dropdown-menu { + position: static; + float: none; +} + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-align: center; + align-items: center; +} + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; +} + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 576px) { + .navbar-expand-sm { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-sm .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } +} + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 768px) { + .navbar-expand-md { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-md .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } +} + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 992px) { + .navbar-expand-lg { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-lg .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } +} + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + padding-right: 0; + padding-left: 0; + } +} + +@media (min-width: 1200px) { + .navbar-expand-xl { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + } + .navbar-expand-xl .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } +} + +.navbar-expand { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + padding-right: 0; + padding-left: 0; +} + +.navbar-expand .navbar-nav { + -ms-flex-direction: row; + flex-direction: row; +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} + +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} + +.navbar-expand > .container, +.navbar-expand > .container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; +} + +.navbar-expand .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; +} + +.navbar-expand .navbar-toggler { + display: none; +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); +} + +.navbar-dark .navbar-brand { + color: #fff; +} + +.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); +} + +.navbar-dark .navbar-text a { + color: #fff; +} + +.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; +} + +.card { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} + +.card > hr { + margin-right: 0; + margin-left: 0; +} + +.card > .list-group:first-child .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.card > .list-group:last-child .list-group-item:last-child { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.card-body { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem; +} + +.card-title { + margin-bottom: 0.75rem; +} + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link:hover { + text-decoration: none; +} + +.card-link + .card-link { + margin-left: 1.25rem; +} + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} + +.card-header + .list-group .list-group-item:first-child { + border-top: 0; +} + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} + +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; +} + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; +} + +.card-img { + width: 100%; + border-radius: calc(0.25rem - 1px); +} + +.card-img-top { + width: 100%; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} + +.card-img-bottom { + width: 100%; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} + +.card-deck { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-deck .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-deck { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; + } + .card-deck .card { + display: -ms-flexbox; + display: flex; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -ms-flex-direction: column; + flex-direction: column; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; + } +} + +.card-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; +} + +.card-group > .card { + margin-bottom: 15px; +} + +@media (min-width: 576px) { + .card-group { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + } + .card-group > .card { + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +.card-columns .card { + margin-bottom: 0.75rem; +} + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; + } + .card-columns .card { + display: inline-block; + width: 100%; + } +} + +.accordion > .card { + overflow: hidden; +} + +.accordion > .card:not(:first-of-type) .card-header:first-child { + border-radius: 0; +} + +.accordion > .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0; +} + +.accordion > .card:first-of-type { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} + +.accordion > .card:last-of-type { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.accordion > .card .card-header { + margin-bottom: -1px; +} + +.breadcrumb { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} + +.breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; +} + +.breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; +} + +.breadcrumb-item.active { + color: #6c757d; +} + +.pagination { + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; +} + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; +} + +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; +} + +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); +} + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; +} + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; +} + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; +} + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .badge { + transition: none; + } +} + +a.badge:hover, a.badge:focus { + text-decoration: none; +} + +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; +} + +.badge-primary { + color: #fff; + background-color: #007bff; +} + +a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #0062cc; +} + +a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); +} + +.badge-secondary { + color: #fff; + background-color: #6c757d; +} + +a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #545b62; +} + +a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); +} + +.badge-success { + color: #fff; + background-color: #28a745; +} + +a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #1e7e34; +} + +a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); +} + +.badge-info { + color: #fff; + background-color: #17a2b8; +} + +a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #117a8b; +} + +a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); +} + +.badge-warning { + color: #212529; + background-color: #ffc107; +} + +a.badge-warning:hover, a.badge-warning:focus { + color: #212529; + background-color: #d39e00; +} + +a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); +} + +.badge-danger { + color: #fff; + background-color: #dc3545; +} + +a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #bd2130; +} + +a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); +} + +.badge-light { + color: #212529; + background-color: #f8f9fa; +} + +a.badge-light:hover, a.badge-light:focus { + color: #212529; + background-color: #dae0e5; +} + +a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); +} + +.badge-dark { + color: #fff; + background-color: #343a40; +} + +a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #1d2124; +} + +a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; +} + +@media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; + } +} + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; +} + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; +} + +.alert-dismissible { + padding-right: 4rem; +} + +.alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +.alert-primary hr { + border-top-color: #9fcdff; +} + +.alert-primary .alert-link { + color: #002752; +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +.alert-secondary hr { + border-top-color: #c8cbcf; +} + +.alert-secondary .alert-link { + color: #202326; +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +.alert-success hr { + border-top-color: #b1dfbb; +} + +.alert-success .alert-link { + color: #0b2e13; +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +.alert-info hr { + border-top-color: #abdde5; +} + +.alert-info .alert-link { + color: #062c33; +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +.alert-warning hr { + border-top-color: #ffe8a1; +} + +.alert-warning .alert-link { + color: #533f03; +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +.alert-danger hr { + border-top-color: #f1b0b7; +} + +.alert-danger .alert-link { + color: #491217; +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +.alert-light hr { + border-top-color: #ececf6; +} + +.alert-light .alert-link { + color: #686868; +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +.alert-dark hr { + border-top-color: #b9bbbe; +} + +.alert-dark .alert-link { + color: #040505; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; + } + to { + background-position: 0 0; + } +} + +.progress { + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} + +.progress-bar { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + transition: width 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; +} + +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} + +.media { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; +} + +.media-body { + -ms-flex: 1; + flex: 1; +} + +.list-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} + +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} + +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} + +.list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; +} + +.list-group-horizontal { + -ms-flex-direction: row; + flex-direction: row; +} + +.list-group-horizontal .list-group-item { + margin-right: -1px; + margin-bottom: 0; +} + +.list-group-horizontal .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} + +.list-group-horizontal .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} + +@media (min-width: 576px) { + .list-group-horizontal-sm { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-sm .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-sm .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-sm .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 768px) { + .list-group-horizontal-md { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-md .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-md .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-md .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 992px) { + .list-group-horizontal-lg { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-lg .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-lg .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-lg .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + -ms-flex-direction: row; + flex-direction: row; + } + .list-group-horizontal-xl .list-group-item { + margin-right: -1px; + margin-bottom: 0; + } + .list-group-horizontal-xl .list-group-item:first-child { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xl .list-group-item:last-child { + margin-right: 0; + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } +} + +.list-group-flush .list-group-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} + +.list-group-flush .list-group-item:last-child { + margin-bottom: -1px; +} + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0; +} + +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +.list-group-item-primary { + color: #004085; + background-color: #b8daff; +} + +.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #004085; + background-color: #9fcdff; +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085; +} + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db; +} + +.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #383d41; + background-color: #c8cbcf; +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41; +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb; +} + +.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #155724; + background-color: #b1dfbb; +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724; +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; +} + +.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; +} + +.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; +} + +.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe; +} + +.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #818182; + background-color: #ececf6; +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182; +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca; +} + +.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1b1e21; + background-color: #b9bbbe; +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21; +} + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; +} + +.close:hover { + color: #000; + text-decoration: none; +} + +.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +a.close.disabled { + pointer-events: none; +} + +.toast { + max-width: 350px; + overflow: hidden; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0; + border-radius: 0.25rem; +} + +.toast:not(:last-child) { + margin-bottom: 0.75rem; +} + +.toast.showing { + opacity: 1; +} + +.toast.show { + display: block; + opacity: 1; +} + +.toast.hide { + display: none; +} + +.toast-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); +} + +.toast-body { + padding: 0.75rem; +} + +.modal-open { + overflow: hidden; +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; +} + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} + +.modal.fade .modal-dialog { + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; + -webkit-transform: translate(0, -50px); + transform: translate(0, -50px); +} + +@media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; + } +} + +.modal.show .modal-dialog { + -webkit-transform: none; + transform: none; +} + +.modal-dialog-scrollable { + display: -ms-flexbox; + display: flex; + max-height: calc(100% - 1rem); +} + +.modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; +} + +.modal-dialog-scrollable .modal-header, +.modal-dialog-scrollable .modal-footer { + -ms-flex-negative: 0; + flex-shrink: 0; +} + +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} + +.modal-dialog-centered { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - 1rem); +} + +.modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + content: ""; +} + +.modal-dialog-centered.modal-dialog-scrollable { + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: center; + justify-content: center; + height: 100%; +} + +.modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; +} + +.modal-dialog-centered.modal-dialog-scrollable::before { + content: none; +} + +.modal-content { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop.show { + opacity: 0.5; +} + +.modal-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: 0.3rem; + border-top-right-radius: 0.3rem; +} + +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} + +.modal-body { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem; +} + +.modal-footer { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} + +.modal-footer > :not(:first-child) { + margin-left: .25rem; +} + +.modal-footer > :not(:last-child) { + margin-right: .25rem; +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; + } + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); + } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); + } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + } + .modal-sm { + max-width: 300px; + } +} + +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; + } +} + +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} + +.tooltip.show { + opacity: 0.9; +} + +.tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; +} + +.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; +} + +.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; +} + +.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; +} + +.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; +} + +.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; +} + +.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} + +.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; +} + +.popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; +} + +.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc((0.5rem + 1px) * -1); +} + +.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; +} + +.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; +} + +.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc((0.5rem + 1px) * -1); +} + +.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} + +.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; +} + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; +} + +.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc((0.5rem + 1px) * -1); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; +} + +.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} + +.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} + +.popover-header:empty { + display: none; +} + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; +} + +.carousel { + position: relative; +} + +.carousel.pointer-event { + -ms-touch-action: pan-y; + touch-action: pan-y; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transition: -webkit-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + -webkit-transform: none; + transform: none; +} + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: 0s 0.6s opacity; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + transition: none; + } +} + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + transition: opacity 0.15s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; + } +} + +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); +} + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; +} + +.carousel-indicators li { + box-sizing: content-box; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity 0.6s ease; +} + +@media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + transition: none; + } +} + +.carousel-indicators .active { + opacity: 1; +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; +} + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite; +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); + } + 50% { + opacity: 1; + } +} + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite; +} + +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} + +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.bg-primary { + background-color: #007bff !important; +} + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0062cc !important; +} + +.bg-secondary { + background-color: #6c757d !important; +} + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #545b62 !important; +} + +.bg-success { + background-color: #28a745 !important; +} + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #1e7e34 !important; +} + +.bg-info { + background-color: #17a2b8 !important; +} + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; +} + +.bg-warning { + background-color: #ffc107 !important; +} + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; +} + +.bg-danger { + background-color: #dc3545 !important; +} + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; +} + +.bg-light { + background-color: #f8f9fa !important; +} + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; +} + +.bg-dark { + background-color: #343a40 !important; +} + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #1d2124 !important; +} + +.bg-white { + background-color: #fff !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +.border { + border: 1px solid #dee2e6 !important; +} + +.border-top { + border-top: 1px solid #dee2e6 !important; +} + +.border-right { + border-right: 1px solid #dee2e6 !important; +} + +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} + +.border-left { + border-left: 1px solid #dee2e6 !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-right-0 { + border-right: 0 !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-left-0 { + border-left: 0 !important; +} + +.border-primary { + border-color: #007bff !important; +} + +.border-secondary { + border-color: #6c757d !important; +} + +.border-success { + border-color: #28a745 !important; +} + +.border-info { + border-color: #17a2b8 !important; +} + +.border-warning { + border-color: #ffc107 !important; +} + +.border-danger { + border-color: #dc3545 !important; +} + +.border-light { + border-color: #f8f9fa !important; +} + +.border-dark { + border-color: #343a40 !important; +} + +.border-white { + border-color: #fff !important; +} + +.rounded-sm { + border-radius: 0.2rem !important; +} + +.rounded { + border-radius: 0.25rem !important; +} + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} + +.rounded-lg { + border-radius: 0.3rem !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-pill { + border-radius: 50rem !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.d-none { + display: none !important; +} + +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: -ms-flexbox !important; + display: flex !important; +} + +.d-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; +} + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-sm-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 768px) { + .d-md-none { + display: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-md-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-lg-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-xl-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +@media print { + .d-print-none { + display: none !important; + } + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: -ms-flexbox !important; + display: flex !important; + } + .d-print-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important; + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; +} + +.embed-responsive::before { + display: block; + content: ""; +} + +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.embed-responsive-21by9::before { + padding-top: 42.857143%; +} + +.embed-responsive-16by9::before { + padding-top: 56.25%; +} + +.embed-responsive-4by3::before { + padding-top: 75%; +} + +.embed-responsive-1by1::before { + padding-top: 100%; +} + +.flex-row { + -ms-flex-direction: row !important; + flex-direction: row !important; +} + +.flex-column { + -ms-flex-direction: column !important; + flex-direction: column !important; +} + +.flex-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; +} + +.flex-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; +} + +.flex-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; +} + +.flex-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; +} + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; +} + +.justify-content-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; +} + +.justify-content-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; +} + +.justify-content-center { + -ms-flex-pack: center !important; + justify-content: center !important; +} + +.justify-content-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; +} + +.align-items-start { + -ms-flex-align: start !important; + align-items: flex-start !important; +} + +.align-items-end { + -ms-flex-align: end !important; + align-items: flex-end !important; +} + +.align-items-center { + -ms-flex-align: center !important; + align-items: center !important; +} + +.align-items-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; +} + +.align-items-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; +} + +@media (min-width: 576px) { + .flex-sm-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-sm-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-sm-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-sm-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-sm-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-sm-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-sm-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-sm-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-sm-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-sm-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-sm-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-sm-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-sm-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-sm-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 768px) { + .flex-md-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-md-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-md-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-md-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-md-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-md-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-md-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-md-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-md-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-md-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-md-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-md-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-md-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-md-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-md-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 992px) { + .flex-lg-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-lg-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-lg-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-lg-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-lg-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-lg-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-lg-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-lg-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-lg-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-lg-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-lg-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-lg-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-lg-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-lg-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +@media (min-width: 1200px) { + .flex-xl-row { + -ms-flex-direction: row !important; + flex-direction: row !important; + } + .flex-xl-column { + -ms-flex-direction: column !important; + flex-direction: column !important; + } + .flex-xl-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; + } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; + } + .flex-xl-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; + } + .flex-xl-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; + } + .justify-content-xl-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important; + } + .justify-content-xl-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important; + } + .justify-content-xl-center { + -ms-flex-pack: center !important; + justify-content: center !important; + } + .justify-content-xl-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important; + } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; + } + .align-items-xl-start { + -ms-flex-align: start !important; + align-items: flex-start !important; + } + .align-items-xl-end { + -ms-flex-align: end !important; + align-items: flex-end !important; + } + .align-items-xl-center { + -ms-flex-align: center !important; + align-items: center !important; + } + .align-items-xl-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important; + } + .align-items-xl-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important; + } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; + } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; + } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; + } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; + } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; + } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; + } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; + } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; + } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; + } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; + } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; + } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; + } +} + +.float-left { + float: left !important; +} + +.float-right { + float: right !important; +} + +.float-none { + float: none !important; +} + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; + } + .float-sm-right { + float: right !important; + } + .float-sm-none { + float: none !important; + } +} + +@media (min-width: 768px) { + .float-md-left { + float: left !important; + } + .float-md-right { + float: right !important; + } + .float-md-none { + float: none !important; + } +} + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; + } + .float-lg-right { + float: right !important; + } + .float-lg-none { + float: none !important; + } +} + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; + } + .float-xl-right { + float: right !important; + } + .float-xl-none { + float: none !important; + } +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} + +@supports ((position: -webkit-sticky) or (position: sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; +} + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} + +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} + +.shadow-none { + box-shadow: none !important; +} + +.w-25 { + width: 25% !important; +} + +.w-50 { + width: 50% !important; +} + +.w-75 { + width: 75% !important; +} + +.w-100 { + width: 100% !important; +} + +.w-auto { + width: auto !important; +} + +.h-25 { + height: 25% !important; +} + +.h-50 { + height: 50% !important; +} + +.h-75 { + height: 75% !important; +} + +.h-100 { + height: 100% !important; +} + +.h-auto { + height: auto !important; +} + +.mw-100 { + max-width: 100% !important; +} + +.mh-100 { + max-height: 100% !important; +} + +.min-vw-100 { + min-width: 100vw !important; +} + +.min-vh-100 { + min-height: 100vh !important; +} + +.vw-100 { + width: 100vw !important; +} + +.vh-100 { + height: 100vh !important; +} + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); +} + +.m-0 { + margin: 0 !important; +} + +.mt-0, +.my-0 { + margin-top: 0 !important; +} + +.mr-0, +.mx-0 { + margin-right: 0 !important; +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important; +} + +.ml-0, +.mx-0 { + margin-left: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; +} + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; +} + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; +} + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; +} + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; +} + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; +} + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.mt-3, +.my-3 { + margin-top: 1rem !important; +} + +.mr-3, +.mx-3 { + margin-right: 1rem !important; +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; +} + +.ml-3, +.mx-3 { + margin-left: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; +} + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; +} + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.mt-5, +.my-5 { + margin-top: 3rem !important; +} + +.mr-5, +.mx-5 { + margin-right: 3rem !important; +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; +} + +.ml-5, +.mx-5 { + margin-left: 3rem !important; +} + +.p-0 { + padding: 0 !important; +} + +.pt-0, +.py-0 { + padding-top: 0 !important; +} + +.pr-0, +.px-0 { + padding-right: 0 !important; +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important; +} + +.pl-0, +.px-0 { + padding-left: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; +} + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; +} + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; +} + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; +} + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; +} + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; +} + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.pt-3, +.py-3 { + padding-top: 1rem !important; +} + +.pr-3, +.px-3 { + padding-right: 1rem !important; +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; +} + +.pl-3, +.px-3 { + padding-left: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; +} + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; +} + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.pt-5, +.py-5 { + padding-top: 3rem !important; +} + +.pr-5, +.px-5 { + padding-right: 3rem !important; +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; +} + +.pl-5, +.px-5 { + padding-left: 3rem !important; +} + +.m-n1 { + margin: -0.25rem !important; +} + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; +} + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; +} + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; +} + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; +} + +.m-n2 { + margin: -0.5rem !important; +} + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; +} + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; +} + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; +} + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; +} + +.m-n3 { + margin: -1rem !important; +} + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; +} + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; +} + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; +} + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; +} + +.m-n4 { + margin: -1.5rem !important; +} + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; +} + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; +} + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; +} + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; +} + +.m-n5 { + margin: -3rem !important; +} + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; +} + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; +} + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; +} + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mt-auto, +.my-auto { + margin-top: auto !important; +} + +.mr-auto, +.mx-auto { + margin-right: auto !important; +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important; +} + +.ml-auto, +.mx-auto { + margin-left: auto !important; +} + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; + } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; + } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; + } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; + } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; + } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; + } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; + } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; + } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; + } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; + } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; + } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; + } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; + } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; + } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; + } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; + } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; + } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; + } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; + } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; + } + .p-sm-0 { + padding: 0 !important; + } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; + } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; + } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; + } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; + } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; + } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; + } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; + } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; + } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; + } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; + } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; + } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; + } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; + } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; + } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; + } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; + } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; + } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; + } + .m-sm-n1 { + margin: -0.25rem !important; + } + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; + } + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; + } + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; + } + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; + } + .m-sm-n2 { + margin: -0.5rem !important; + } + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; + } + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; + } + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; + } + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; + } + .m-sm-n3 { + margin: -1rem !important; + } + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; + } + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; + } + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; + } + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; + } + .m-sm-n4 { + margin: -1.5rem !important; + } + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; + } + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; + } + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; + } + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; + } + .m-sm-n5 { + margin: -3rem !important; + } + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; + } + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; + } + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; + } + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; + } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; + } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; + } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; + } +} + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; + } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; + } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; + } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; + } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; + } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; + } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; + } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; + } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; + } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; + } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; + } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; + } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; + } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; + } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; + } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; + } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; + } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; + } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; + } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; + } + .p-md-0 { + padding: 0 !important; + } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; + } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; + } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; + } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; + } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; + } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; + } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; + } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; + } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; + } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; + } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; + } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; + } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; + } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; + } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; + } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; + } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; + } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; + } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; + } + .m-md-n1 { + margin: -0.25rem !important; + } + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; + } + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; + } + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; + } + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; + } + .m-md-n2 { + margin: -0.5rem !important; + } + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; + } + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; + } + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; + } + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; + } + .m-md-n3 { + margin: -1rem !important; + } + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; + } + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; + } + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; + } + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; + } + .m-md-n4 { + margin: -1.5rem !important; + } + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; + } + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; + } + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; + } + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; + } + .m-md-n5 { + margin: -3rem !important; + } + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; + } + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; + } + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; + } + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; + } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; + } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; + } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; + } +} + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; + } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; + } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; + } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; + } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; + } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; + } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; + } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; + } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; + } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; + } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; + } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; + } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; + } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; + } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; + } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; + } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; + } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; + } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; + } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; + } + .p-lg-0 { + padding: 0 !important; + } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; + } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; + } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; + } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; + } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; + } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; + } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; + } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; + } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; + } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; + } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; + } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; + } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; + } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; + } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; + } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; + } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; + } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; + } + .m-lg-n1 { + margin: -0.25rem !important; + } + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; + } + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; + } + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; + } + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; + } + .m-lg-n2 { + margin: -0.5rem !important; + } + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; + } + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; + } + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; + } + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; + } + .m-lg-n3 { + margin: -1rem !important; + } + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; + } + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; + } + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; + } + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; + } + .m-lg-n4 { + margin: -1.5rem !important; + } + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; + } + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; + } + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; + } + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; + } + .m-lg-n5 { + margin: -3rem !important; + } + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; + } + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; + } + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; + } + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; + } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; + } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; + } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; + } +} + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; + } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; + } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; + } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; + } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; + } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; + } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; + } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; + } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; + } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; + } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; + } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; + } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; + } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; + } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; + } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; + } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; + } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; + } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; + } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; + } + .p-xl-0 { + padding: 0 !important; + } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; + } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; + } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; + } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; + } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; + } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; + } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; + } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; + } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; + } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; + } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; + } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; + } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; + } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; + } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; + } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; + } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; + } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; + } + .m-xl-n1 { + margin: -0.25rem !important; + } + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; + } + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; + } + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; + } + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; + } + .m-xl-n2 { + margin: -0.5rem !important; + } + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; + } + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; + } + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; + } + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; + } + .m-xl-n3 { + margin: -1rem !important; + } + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; + } + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; + } + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; + } + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; + } + .m-xl-n4 { + margin: -1.5rem !important; + } + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; + } + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; + } + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; + } + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; + } + .m-xl-n5 { + margin: -3rem !important; + } + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; + } + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; + } + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; + } + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; + } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; + } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; + } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; + } +} + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +.text-justify { + text-align: justify !important; +} + +.text-wrap { + white-space: normal !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; + } + .text-sm-right { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; + } + .text-md-right { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; + } + .text-lg-right { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; + } + .text-xl-right { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} + +.text-lowercase { + text-transform: lowercase !important; +} + +.text-uppercase { + text-transform: uppercase !important; +} + +.text-capitalize { + text-transform: capitalize !important; +} + +.font-weight-light { + font-weight: 300 !important; +} + +.font-weight-lighter { + font-weight: lighter !important; +} + +.font-weight-normal { + font-weight: 400 !important; +} + +.font-weight-bold { + font-weight: 700 !important; +} + +.font-weight-bolder { + font-weight: bolder !important; +} + +.font-italic { + font-style: italic !important; +} + +.text-white { + color: #fff !important; +} + +.text-primary { + color: #007bff !important; +} + +a.text-primary:hover, a.text-primary:focus { + color: #0056b3 !important; +} + +.text-secondary { + color: #6c757d !important; +} + +a.text-secondary:hover, a.text-secondary:focus { + color: #494f54 !important; +} + +.text-success { + color: #28a745 !important; +} + +a.text-success:hover, a.text-success:focus { + color: #19692c !important; +} + +.text-info { + color: #17a2b8 !important; +} + +a.text-info:hover, a.text-info:focus { + color: #0f6674 !important; +} + +.text-warning { + color: #ffc107 !important; +} + +a.text-warning:hover, a.text-warning:focus { + color: #ba8b00 !important; +} + +.text-danger { + color: #dc3545 !important; +} + +a.text-danger:hover, a.text-danger:focus { + color: #a71d2a !important; +} + +.text-light { + color: #f8f9fa !important; +} + +a.text-light:hover, a.text-light:focus { + color: #cbd3da !important; +} + +.text-dark { + color: #343a40 !important; +} + +a.text-dark:hover, a.text-dark:focus { + color: #121416 !important; +} + +.text-body { + color: #212529 !important; +} + +.text-muted { + color: #6c757d !important; +} + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.text-decoration-none { + text-decoration: none !important; +} + +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; +} + +.text-reset { + color: inherit !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; + } + a:not(.btn) { + text-decoration: underline; + } + abbr[title]::after { + content: " (" attr(title) ")"; + } + pre { + white-space: pre-wrap !important; + } + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + @page { + size: a3; + } + body { + min-width: 992px !important; + } + .container { + min-width: 992px !important; + } + .navbar { + display: none; + } + .badge { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; + } + .table-dark { + color: inherit; + } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #dee2e6; + } + .table .thead-dark th { + color: inherit; + border-color: #dee2e6; + } +} +/*# sourceMappingURL=bootstrap.css.map */ \ No newline at end of file diff --git a/coolpress/press/static/bootstrap-dist/css/bootstrap.min.css b/coolpress/press/static/bootstrap-dist/css/bootstrap.min.css new file mode 100644 index 0000000..92e3fe8 --- /dev/null +++ b/coolpress/press/static/bootstrap-dist/css/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/coolpress/press/static/bootstrap-dist/js/bootstrap.js b/coolpress/press/static/bootstrap-dist/js/bootstrap.js new file mode 100644 index 0000000..da59f0e --- /dev/null +++ b/coolpress/press/static/bootstrap-dist/js/bootstrap.js @@ -0,0 +1,4435 @@ +/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('jquery'), require('popper.js')) : + typeof define === 'function' && define.amd ? define(['exports', 'jquery', 'popper.js'], factory) : + (global = global || self, factory(global.bootstrap = {}, global.jQuery, global.Popper)); +}(this, function (exports, $, Popper) { 'use strict'; + + $ = $ && $.hasOwnProperty('default') ? $['default'] : $; + Popper = Popper && Popper.hasOwnProperty('default') ? Popper['default'] : Popper; + + function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; + } + + function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + } + + function _objectSpread(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? arguments[i] : {}; + var ownKeys = Object.keys(source); + + if (typeof Object.getOwnPropertySymbols === 'function') { + ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { + return Object.getOwnPropertyDescriptor(source, sym).enumerable; + })); + } + + ownKeys.forEach(function (key) { + _defineProperty(target, key, source[key]); + }); + } + + return target; + } + + function _inheritsLoose(subClass, superClass) { + subClass.prototype = Object.create(superClass.prototype); + subClass.prototype.constructor = subClass; + subClass.__proto__ = superClass; + } + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.3.1): util.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + /** + * ------------------------------------------------------------------------ + * Private TransitionEnd Helpers + * ------------------------------------------------------------------------ + */ + + var TRANSITION_END = 'transitionend'; + var MAX_UID = 1000000; + var MILLISECONDS_MULTIPLIER = 1000; // Shoutout AngusCroll (https://goo.gl/pxwQGp) + + function toType(obj) { + return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase(); + } + + function getSpecialTransitionEndEvent() { + return { + bindType: TRANSITION_END, + delegateType: TRANSITION_END, + handle: function handle(event) { + if ($(event.target).is(this)) { + return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params + } + + return undefined; // eslint-disable-line no-undefined + } + }; + } + + function transitionEndEmulator(duration) { + var _this = this; + + var called = false; + $(this).one(Util.TRANSITION_END, function () { + called = true; + }); + setTimeout(function () { + if (!called) { + Util.triggerTransitionEnd(_this); + } + }, duration); + return this; + } + + function setTransitionEndSupport() { + $.fn.emulateTransitionEnd = transitionEndEmulator; + $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent(); + } + /** + * -------------------------------------------------------------------------- + * Public Util Api + * -------------------------------------------------------------------------- + */ + + + var Util = { + TRANSITION_END: 'bsTransitionEnd', + getUID: function getUID(prefix) { + do { + // eslint-disable-next-line no-bitwise + prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here + } while (document.getElementById(prefix)); + + return prefix; + }, + getSelectorFromElement: function getSelectorFromElement(element) { + var selector = element.getAttribute('data-target'); + + if (!selector || selector === '#') { + var hrefAttr = element.getAttribute('href'); + selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''; + } + + try { + return document.querySelector(selector) ? selector : null; + } catch (err) { + return null; + } + }, + getTransitionDurationFromElement: function getTransitionDurationFromElement(element) { + if (!element) { + return 0; + } // Get transition-duration of the element + + + var transitionDuration = $(element).css('transition-duration'); + var transitionDelay = $(element).css('transition-delay'); + var floatTransitionDuration = parseFloat(transitionDuration); + var floatTransitionDelay = parseFloat(transitionDelay); // Return 0 if element or transition duration is not found + + if (!floatTransitionDuration && !floatTransitionDelay) { + return 0; + } // If multiple durations are defined, take the first + + + transitionDuration = transitionDuration.split(',')[0]; + transitionDelay = transitionDelay.split(',')[0]; + return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER; + }, + reflow: function reflow(element) { + return element.offsetHeight; + }, + triggerTransitionEnd: function triggerTransitionEnd(element) { + $(element).trigger(TRANSITION_END); + }, + // TODO: Remove in v5 + supportsTransitionEnd: function supportsTransitionEnd() { + return Boolean(TRANSITION_END); + }, + isElement: function isElement(obj) { + return (obj[0] || obj).nodeType; + }, + typeCheckConfig: function typeCheckConfig(componentName, config, configTypes) { + for (var property in configTypes) { + if (Object.prototype.hasOwnProperty.call(configTypes, property)) { + var expectedTypes = configTypes[property]; + var value = config[property]; + var valueType = value && Util.isElement(value) ? 'element' : toType(value); + + if (!new RegExp(expectedTypes).test(valueType)) { + throw new Error(componentName.toUpperCase() + ": " + ("Option \"" + property + "\" provided type \"" + valueType + "\" ") + ("but expected type \"" + expectedTypes + "\".")); + } + } + } + }, + findShadowRoot: function findShadowRoot(element) { + if (!document.documentElement.attachShadow) { + return null; + } // Can find the shadow root otherwise it'll return the document + + + if (typeof element.getRootNode === 'function') { + var root = element.getRootNode(); + return root instanceof ShadowRoot ? root : null; + } + + if (element instanceof ShadowRoot) { + return element; + } // when we don't find a shadow root + + + if (!element.parentNode) { + return null; + } + + return Util.findShadowRoot(element.parentNode); + } + }; + setTransitionEndSupport(); + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME = 'alert'; + var VERSION = '4.3.1'; + var DATA_KEY = 'bs.alert'; + var EVENT_KEY = "." + DATA_KEY; + var DATA_API_KEY = '.data-api'; + var JQUERY_NO_CONFLICT = $.fn[NAME]; + var Selector = { + DISMISS: '[data-dismiss="alert"]' + }; + var Event = { + CLOSE: "close" + EVENT_KEY, + CLOSED: "closed" + EVENT_KEY, + CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY + }; + var ClassName = { + ALERT: 'alert', + FADE: 'fade', + SHOW: 'show' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Alert = + /*#__PURE__*/ + function () { + function Alert(element) { + this._element = element; + } // Getters + + + var _proto = Alert.prototype; + + // Public + _proto.close = function close(element) { + var rootElement = this._element; + + if (element) { + rootElement = this._getRootElement(element); + } + + var customEvent = this._triggerCloseEvent(rootElement); + + if (customEvent.isDefaultPrevented()) { + return; + } + + this._removeElement(rootElement); + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY); + this._element = null; + } // Private + ; + + _proto._getRootElement = function _getRootElement(element) { + var selector = Util.getSelectorFromElement(element); + var parent = false; + + if (selector) { + parent = document.querySelector(selector); + } + + if (!parent) { + parent = $(element).closest("." + ClassName.ALERT)[0]; + } + + return parent; + }; + + _proto._triggerCloseEvent = function _triggerCloseEvent(element) { + var closeEvent = $.Event(Event.CLOSE); + $(element).trigger(closeEvent); + return closeEvent; + }; + + _proto._removeElement = function _removeElement(element) { + var _this = this; + + $(element).removeClass(ClassName.SHOW); + + if (!$(element).hasClass(ClassName.FADE)) { + this._destroyElement(element); + + return; + } + + var transitionDuration = Util.getTransitionDurationFromElement(element); + $(element).one(Util.TRANSITION_END, function (event) { + return _this._destroyElement(element, event); + }).emulateTransitionEnd(transitionDuration); + }; + + _proto._destroyElement = function _destroyElement(element) { + $(element).detach().trigger(Event.CLOSED).remove(); + } // Static + ; + + Alert._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var $element = $(this); + var data = $element.data(DATA_KEY); + + if (!data) { + data = new Alert(this); + $element.data(DATA_KEY, data); + } + + if (config === 'close') { + data[config](this); + } + }); + }; + + Alert._handleDismiss = function _handleDismiss(alertInstance) { + return function (event) { + if (event) { + event.preventDefault(); + } + + alertInstance.close(this); + }; + }; + + _createClass(Alert, null, [{ + key: "VERSION", + get: function get() { + return VERSION; + } + }]); + + return Alert; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert())); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME] = Alert._jQueryInterface; + $.fn[NAME].Constructor = Alert; + + $.fn[NAME].noConflict = function () { + $.fn[NAME] = JQUERY_NO_CONFLICT; + return Alert._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$1 = 'button'; + var VERSION$1 = '4.3.1'; + var DATA_KEY$1 = 'bs.button'; + var EVENT_KEY$1 = "." + DATA_KEY$1; + var DATA_API_KEY$1 = '.data-api'; + var JQUERY_NO_CONFLICT$1 = $.fn[NAME$1]; + var ClassName$1 = { + ACTIVE: 'active', + BUTTON: 'btn', + FOCUS: 'focus' + }; + var Selector$1 = { + DATA_TOGGLE_CARROT: '[data-toggle^="button"]', + DATA_TOGGLE: '[data-toggle="buttons"]', + INPUT: 'input:not([type="hidden"])', + ACTIVE: '.active', + BUTTON: '.btn' + }; + var Event$1 = { + CLICK_DATA_API: "click" + EVENT_KEY$1 + DATA_API_KEY$1, + FOCUS_BLUR_DATA_API: "focus" + EVENT_KEY$1 + DATA_API_KEY$1 + " " + ("blur" + EVENT_KEY$1 + DATA_API_KEY$1) + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Button = + /*#__PURE__*/ + function () { + function Button(element) { + this._element = element; + } // Getters + + + var _proto = Button.prototype; + + // Public + _proto.toggle = function toggle() { + var triggerChangeEvent = true; + var addAriaPressed = true; + var rootElement = $(this._element).closest(Selector$1.DATA_TOGGLE)[0]; + + if (rootElement) { + var input = this._element.querySelector(Selector$1.INPUT); + + if (input) { + if (input.type === 'radio') { + if (input.checked && this._element.classList.contains(ClassName$1.ACTIVE)) { + triggerChangeEvent = false; + } else { + var activeElement = rootElement.querySelector(Selector$1.ACTIVE); + + if (activeElement) { + $(activeElement).removeClass(ClassName$1.ACTIVE); + } + } + } + + if (triggerChangeEvent) { + if (input.hasAttribute('disabled') || rootElement.hasAttribute('disabled') || input.classList.contains('disabled') || rootElement.classList.contains('disabled')) { + return; + } + + input.checked = !this._element.classList.contains(ClassName$1.ACTIVE); + $(input).trigger('change'); + } + + input.focus(); + addAriaPressed = false; + } + } + + if (addAriaPressed) { + this._element.setAttribute('aria-pressed', !this._element.classList.contains(ClassName$1.ACTIVE)); + } + + if (triggerChangeEvent) { + $(this._element).toggleClass(ClassName$1.ACTIVE); + } + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$1); + this._element = null; + } // Static + ; + + Button._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$1); + + if (!data) { + data = new Button(this); + $(this).data(DATA_KEY$1, data); + } + + if (config === 'toggle') { + data[config](); + } + }); + }; + + _createClass(Button, null, [{ + key: "VERSION", + get: function get() { + return VERSION$1; + } + }]); + + return Button; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$1.CLICK_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) { + event.preventDefault(); + var button = event.target; + + if (!$(button).hasClass(ClassName$1.BUTTON)) { + button = $(button).closest(Selector$1.BUTTON); + } + + Button._jQueryInterface.call($(button), 'toggle'); + }).on(Event$1.FOCUS_BLUR_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) { + var button = $(event.target).closest(Selector$1.BUTTON)[0]; + $(button).toggleClass(ClassName$1.FOCUS, /^focus(in)?$/.test(event.type)); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$1] = Button._jQueryInterface; + $.fn[NAME$1].Constructor = Button; + + $.fn[NAME$1].noConflict = function () { + $.fn[NAME$1] = JQUERY_NO_CONFLICT$1; + return Button._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$2 = 'carousel'; + var VERSION$2 = '4.3.1'; + var DATA_KEY$2 = 'bs.carousel'; + var EVENT_KEY$2 = "." + DATA_KEY$2; + var DATA_API_KEY$2 = '.data-api'; + var JQUERY_NO_CONFLICT$2 = $.fn[NAME$2]; + var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key + + var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key + + var TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch + + var SWIPE_THRESHOLD = 40; + var Default = { + interval: 5000, + keyboard: true, + slide: false, + pause: 'hover', + wrap: true, + touch: true + }; + var DefaultType = { + interval: '(number|boolean)', + keyboard: 'boolean', + slide: '(boolean|string)', + pause: '(string|boolean)', + wrap: 'boolean', + touch: 'boolean' + }; + var Direction = { + NEXT: 'next', + PREV: 'prev', + LEFT: 'left', + RIGHT: 'right' + }; + var Event$2 = { + SLIDE: "slide" + EVENT_KEY$2, + SLID: "slid" + EVENT_KEY$2, + KEYDOWN: "keydown" + EVENT_KEY$2, + MOUSEENTER: "mouseenter" + EVENT_KEY$2, + MOUSELEAVE: "mouseleave" + EVENT_KEY$2, + TOUCHSTART: "touchstart" + EVENT_KEY$2, + TOUCHMOVE: "touchmove" + EVENT_KEY$2, + TOUCHEND: "touchend" + EVENT_KEY$2, + POINTERDOWN: "pointerdown" + EVENT_KEY$2, + POINTERUP: "pointerup" + EVENT_KEY$2, + DRAG_START: "dragstart" + EVENT_KEY$2, + LOAD_DATA_API: "load" + EVENT_KEY$2 + DATA_API_KEY$2, + CLICK_DATA_API: "click" + EVENT_KEY$2 + DATA_API_KEY$2 + }; + var ClassName$2 = { + CAROUSEL: 'carousel', + ACTIVE: 'active', + SLIDE: 'slide', + RIGHT: 'carousel-item-right', + LEFT: 'carousel-item-left', + NEXT: 'carousel-item-next', + PREV: 'carousel-item-prev', + ITEM: 'carousel-item', + POINTER_EVENT: 'pointer-event' + }; + var Selector$2 = { + ACTIVE: '.active', + ACTIVE_ITEM: '.active.carousel-item', + ITEM: '.carousel-item', + ITEM_IMG: '.carousel-item img', + NEXT_PREV: '.carousel-item-next, .carousel-item-prev', + INDICATORS: '.carousel-indicators', + DATA_SLIDE: '[data-slide], [data-slide-to]', + DATA_RIDE: '[data-ride="carousel"]' + }; + var PointerType = { + TOUCH: 'touch', + PEN: 'pen' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Carousel = + /*#__PURE__*/ + function () { + function Carousel(element, config) { + this._items = null; + this._interval = null; + this._activeElement = null; + this._isPaused = false; + this._isSliding = false; + this.touchTimeout = null; + this.touchStartX = 0; + this.touchDeltaX = 0; + this._config = this._getConfig(config); + this._element = element; + this._indicatorsElement = this._element.querySelector(Selector$2.INDICATORS); + this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0; + this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent); + + this._addEventListeners(); + } // Getters + + + var _proto = Carousel.prototype; + + // Public + _proto.next = function next() { + if (!this._isSliding) { + this._slide(Direction.NEXT); + } + }; + + _proto.nextWhenVisible = function nextWhenVisible() { + // Don't call next when the page isn't visible + // or the carousel or its parent isn't visible + if (!document.hidden && $(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden') { + this.next(); + } + }; + + _proto.prev = function prev() { + if (!this._isSliding) { + this._slide(Direction.PREV); + } + }; + + _proto.pause = function pause(event) { + if (!event) { + this._isPaused = true; + } + + if (this._element.querySelector(Selector$2.NEXT_PREV)) { + Util.triggerTransitionEnd(this._element); + this.cycle(true); + } + + clearInterval(this._interval); + this._interval = null; + }; + + _proto.cycle = function cycle(event) { + if (!event) { + this._isPaused = false; + } + + if (this._interval) { + clearInterval(this._interval); + this._interval = null; + } + + if (this._config.interval && !this._isPaused) { + this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval); + } + }; + + _proto.to = function to(index) { + var _this = this; + + this._activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); + + var activeIndex = this._getItemIndex(this._activeElement); + + if (index > this._items.length - 1 || index < 0) { + return; + } + + if (this._isSliding) { + $(this._element).one(Event$2.SLID, function () { + return _this.to(index); + }); + return; + } + + if (activeIndex === index) { + this.pause(); + this.cycle(); + return; + } + + var direction = index > activeIndex ? Direction.NEXT : Direction.PREV; + + this._slide(direction, this._items[index]); + }; + + _proto.dispose = function dispose() { + $(this._element).off(EVENT_KEY$2); + $.removeData(this._element, DATA_KEY$2); + this._items = null; + this._config = null; + this._element = null; + this._interval = null; + this._isPaused = null; + this._isSliding = null; + this._activeElement = null; + this._indicatorsElement = null; + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default, config); + Util.typeCheckConfig(NAME$2, config, DefaultType); + return config; + }; + + _proto._handleSwipe = function _handleSwipe() { + var absDeltax = Math.abs(this.touchDeltaX); + + if (absDeltax <= SWIPE_THRESHOLD) { + return; + } + + var direction = absDeltax / this.touchDeltaX; // swipe left + + if (direction > 0) { + this.prev(); + } // swipe right + + + if (direction < 0) { + this.next(); + } + }; + + _proto._addEventListeners = function _addEventListeners() { + var _this2 = this; + + if (this._config.keyboard) { + $(this._element).on(Event$2.KEYDOWN, function (event) { + return _this2._keydown(event); + }); + } + + if (this._config.pause === 'hover') { + $(this._element).on(Event$2.MOUSEENTER, function (event) { + return _this2.pause(event); + }).on(Event$2.MOUSELEAVE, function (event) { + return _this2.cycle(event); + }); + } + + if (this._config.touch) { + this._addTouchEventListeners(); + } + }; + + _proto._addTouchEventListeners = function _addTouchEventListeners() { + var _this3 = this; + + if (!this._touchSupported) { + return; + } + + var start = function start(event) { + if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { + _this3.touchStartX = event.originalEvent.clientX; + } else if (!_this3._pointerEvent) { + _this3.touchStartX = event.originalEvent.touches[0].clientX; + } + }; + + var move = function move(event) { + // ensure swiping with one touch and not pinching + if (event.originalEvent.touches && event.originalEvent.touches.length > 1) { + _this3.touchDeltaX = 0; + } else { + _this3.touchDeltaX = event.originalEvent.touches[0].clientX - _this3.touchStartX; + } + }; + + var end = function end(event) { + if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) { + _this3.touchDeltaX = event.originalEvent.clientX - _this3.touchStartX; + } + + _this3._handleSwipe(); + + if (_this3._config.pause === 'hover') { + // If it's a touch-enabled device, mouseenter/leave are fired as + // part of the mouse compatibility events on first tap - the carousel + // would stop cycling until user tapped out of it; + // here, we listen for touchend, explicitly pause the carousel + // (as if it's the second time we tap on it, mouseenter compat event + // is NOT fired) and after a timeout (to allow for mouse compatibility + // events to fire) we explicitly restart cycling + _this3.pause(); + + if (_this3.touchTimeout) { + clearTimeout(_this3.touchTimeout); + } + + _this3.touchTimeout = setTimeout(function (event) { + return _this3.cycle(event); + }, TOUCHEVENT_COMPAT_WAIT + _this3._config.interval); + } + }; + + $(this._element.querySelectorAll(Selector$2.ITEM_IMG)).on(Event$2.DRAG_START, function (e) { + return e.preventDefault(); + }); + + if (this._pointerEvent) { + $(this._element).on(Event$2.POINTERDOWN, function (event) { + return start(event); + }); + $(this._element).on(Event$2.POINTERUP, function (event) { + return end(event); + }); + + this._element.classList.add(ClassName$2.POINTER_EVENT); + } else { + $(this._element).on(Event$2.TOUCHSTART, function (event) { + return start(event); + }); + $(this._element).on(Event$2.TOUCHMOVE, function (event) { + return move(event); + }); + $(this._element).on(Event$2.TOUCHEND, function (event) { + return end(event); + }); + } + }; + + _proto._keydown = function _keydown(event) { + if (/input|textarea/i.test(event.target.tagName)) { + return; + } + + switch (event.which) { + case ARROW_LEFT_KEYCODE: + event.preventDefault(); + this.prev(); + break; + + case ARROW_RIGHT_KEYCODE: + event.preventDefault(); + this.next(); + break; + + default: + } + }; + + _proto._getItemIndex = function _getItemIndex(element) { + this._items = element && element.parentNode ? [].slice.call(element.parentNode.querySelectorAll(Selector$2.ITEM)) : []; + return this._items.indexOf(element); + }; + + _proto._getItemByDirection = function _getItemByDirection(direction, activeElement) { + var isNextDirection = direction === Direction.NEXT; + var isPrevDirection = direction === Direction.PREV; + + var activeIndex = this._getItemIndex(activeElement); + + var lastItemIndex = this._items.length - 1; + var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex; + + if (isGoingToWrap && !this._config.wrap) { + return activeElement; + } + + var delta = direction === Direction.PREV ? -1 : 1; + var itemIndex = (activeIndex + delta) % this._items.length; + return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex]; + }; + + _proto._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) { + var targetIndex = this._getItemIndex(relatedTarget); + + var fromIndex = this._getItemIndex(this._element.querySelector(Selector$2.ACTIVE_ITEM)); + + var slideEvent = $.Event(Event$2.SLIDE, { + relatedTarget: relatedTarget, + direction: eventDirectionName, + from: fromIndex, + to: targetIndex + }); + $(this._element).trigger(slideEvent); + return slideEvent; + }; + + _proto._setActiveIndicatorElement = function _setActiveIndicatorElement(element) { + if (this._indicatorsElement) { + var indicators = [].slice.call(this._indicatorsElement.querySelectorAll(Selector$2.ACTIVE)); + $(indicators).removeClass(ClassName$2.ACTIVE); + + var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)]; + + if (nextIndicator) { + $(nextIndicator).addClass(ClassName$2.ACTIVE); + } + } + }; + + _proto._slide = function _slide(direction, element) { + var _this4 = this; + + var activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM); + + var activeElementIndex = this._getItemIndex(activeElement); + + var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement); + + var nextElementIndex = this._getItemIndex(nextElement); + + var isCycling = Boolean(this._interval); + var directionalClassName; + var orderClassName; + var eventDirectionName; + + if (direction === Direction.NEXT) { + directionalClassName = ClassName$2.LEFT; + orderClassName = ClassName$2.NEXT; + eventDirectionName = Direction.LEFT; + } else { + directionalClassName = ClassName$2.RIGHT; + orderClassName = ClassName$2.PREV; + eventDirectionName = Direction.RIGHT; + } + + if (nextElement && $(nextElement).hasClass(ClassName$2.ACTIVE)) { + this._isSliding = false; + return; + } + + var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName); + + if (slideEvent.isDefaultPrevented()) { + return; + } + + if (!activeElement || !nextElement) { + // Some weirdness is happening, so we bail + return; + } + + this._isSliding = true; + + if (isCycling) { + this.pause(); + } + + this._setActiveIndicatorElement(nextElement); + + var slidEvent = $.Event(Event$2.SLID, { + relatedTarget: nextElement, + direction: eventDirectionName, + from: activeElementIndex, + to: nextElementIndex + }); + + if ($(this._element).hasClass(ClassName$2.SLIDE)) { + $(nextElement).addClass(orderClassName); + Util.reflow(nextElement); + $(activeElement).addClass(directionalClassName); + $(nextElement).addClass(directionalClassName); + var nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10); + + if (nextElementInterval) { + this._config.defaultInterval = this._config.defaultInterval || this._config.interval; + this._config.interval = nextElementInterval; + } else { + this._config.interval = this._config.defaultInterval || this._config.interval; + } + + var transitionDuration = Util.getTransitionDurationFromElement(activeElement); + $(activeElement).one(Util.TRANSITION_END, function () { + $(nextElement).removeClass(directionalClassName + " " + orderClassName).addClass(ClassName$2.ACTIVE); + $(activeElement).removeClass(ClassName$2.ACTIVE + " " + orderClassName + " " + directionalClassName); + _this4._isSliding = false; + setTimeout(function () { + return $(_this4._element).trigger(slidEvent); + }, 0); + }).emulateTransitionEnd(transitionDuration); + } else { + $(activeElement).removeClass(ClassName$2.ACTIVE); + $(nextElement).addClass(ClassName$2.ACTIVE); + this._isSliding = false; + $(this._element).trigger(slidEvent); + } + + if (isCycling) { + this.cycle(); + } + } // Static + ; + + Carousel._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$2); + + var _config = _objectSpread({}, Default, $(this).data()); + + if (typeof config === 'object') { + _config = _objectSpread({}, _config, config); + } + + var action = typeof config === 'string' ? config : _config.slide; + + if (!data) { + data = new Carousel(this, _config); + $(this).data(DATA_KEY$2, data); + } + + if (typeof config === 'number') { + data.to(config); + } else if (typeof action === 'string') { + if (typeof data[action] === 'undefined') { + throw new TypeError("No method named \"" + action + "\""); + } + + data[action](); + } else if (_config.interval && _config.ride) { + data.pause(); + data.cycle(); + } + }); + }; + + Carousel._dataApiClickHandler = function _dataApiClickHandler(event) { + var selector = Util.getSelectorFromElement(this); + + if (!selector) { + return; + } + + var target = $(selector)[0]; + + if (!target || !$(target).hasClass(ClassName$2.CAROUSEL)) { + return; + } + + var config = _objectSpread({}, $(target).data(), $(this).data()); + + var slideIndex = this.getAttribute('data-slide-to'); + + if (slideIndex) { + config.interval = false; + } + + Carousel._jQueryInterface.call($(target), config); + + if (slideIndex) { + $(target).data(DATA_KEY$2).to(slideIndex); + } + + event.preventDefault(); + }; + + _createClass(Carousel, null, [{ + key: "VERSION", + get: function get() { + return VERSION$2; + } + }, { + key: "Default", + get: function get() { + return Default; + } + }]); + + return Carousel; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$2.CLICK_DATA_API, Selector$2.DATA_SLIDE, Carousel._dataApiClickHandler); + $(window).on(Event$2.LOAD_DATA_API, function () { + var carousels = [].slice.call(document.querySelectorAll(Selector$2.DATA_RIDE)); + + for (var i = 0, len = carousels.length; i < len; i++) { + var $carousel = $(carousels[i]); + + Carousel._jQueryInterface.call($carousel, $carousel.data()); + } + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$2] = Carousel._jQueryInterface; + $.fn[NAME$2].Constructor = Carousel; + + $.fn[NAME$2].noConflict = function () { + $.fn[NAME$2] = JQUERY_NO_CONFLICT$2; + return Carousel._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$3 = 'collapse'; + var VERSION$3 = '4.3.1'; + var DATA_KEY$3 = 'bs.collapse'; + var EVENT_KEY$3 = "." + DATA_KEY$3; + var DATA_API_KEY$3 = '.data-api'; + var JQUERY_NO_CONFLICT$3 = $.fn[NAME$3]; + var Default$1 = { + toggle: true, + parent: '' + }; + var DefaultType$1 = { + toggle: 'boolean', + parent: '(string|element)' + }; + var Event$3 = { + SHOW: "show" + EVENT_KEY$3, + SHOWN: "shown" + EVENT_KEY$3, + HIDE: "hide" + EVENT_KEY$3, + HIDDEN: "hidden" + EVENT_KEY$3, + CLICK_DATA_API: "click" + EVENT_KEY$3 + DATA_API_KEY$3 + }; + var ClassName$3 = { + SHOW: 'show', + COLLAPSE: 'collapse', + COLLAPSING: 'collapsing', + COLLAPSED: 'collapsed' + }; + var Dimension = { + WIDTH: 'width', + HEIGHT: 'height' + }; + var Selector$3 = { + ACTIVES: '.show, .collapsing', + DATA_TOGGLE: '[data-toggle="collapse"]' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Collapse = + /*#__PURE__*/ + function () { + function Collapse(element, config) { + this._isTransitioning = false; + this._element = element; + this._config = this._getConfig(config); + this._triggerArray = [].slice.call(document.querySelectorAll("[data-toggle=\"collapse\"][href=\"#" + element.id + "\"]," + ("[data-toggle=\"collapse\"][data-target=\"#" + element.id + "\"]"))); + var toggleList = [].slice.call(document.querySelectorAll(Selector$3.DATA_TOGGLE)); + + for (var i = 0, len = toggleList.length; i < len; i++) { + var elem = toggleList[i]; + var selector = Util.getSelectorFromElement(elem); + var filterElement = [].slice.call(document.querySelectorAll(selector)).filter(function (foundElem) { + return foundElem === element; + }); + + if (selector !== null && filterElement.length > 0) { + this._selector = selector; + + this._triggerArray.push(elem); + } + } + + this._parent = this._config.parent ? this._getParent() : null; + + if (!this._config.parent) { + this._addAriaAndCollapsedClass(this._element, this._triggerArray); + } + + if (this._config.toggle) { + this.toggle(); + } + } // Getters + + + var _proto = Collapse.prototype; + + // Public + _proto.toggle = function toggle() { + if ($(this._element).hasClass(ClassName$3.SHOW)) { + this.hide(); + } else { + this.show(); + } + }; + + _proto.show = function show() { + var _this = this; + + if (this._isTransitioning || $(this._element).hasClass(ClassName$3.SHOW)) { + return; + } + + var actives; + var activesData; + + if (this._parent) { + actives = [].slice.call(this._parent.querySelectorAll(Selector$3.ACTIVES)).filter(function (elem) { + if (typeof _this._config.parent === 'string') { + return elem.getAttribute('data-parent') === _this._config.parent; + } + + return elem.classList.contains(ClassName$3.COLLAPSE); + }); + + if (actives.length === 0) { + actives = null; + } + } + + if (actives) { + activesData = $(actives).not(this._selector).data(DATA_KEY$3); + + if (activesData && activesData._isTransitioning) { + return; + } + } + + var startEvent = $.Event(Event$3.SHOW); + $(this._element).trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + if (actives) { + Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide'); + + if (!activesData) { + $(actives).data(DATA_KEY$3, null); + } + } + + var dimension = this._getDimension(); + + $(this._element).removeClass(ClassName$3.COLLAPSE).addClass(ClassName$3.COLLAPSING); + this._element.style[dimension] = 0; + + if (this._triggerArray.length) { + $(this._triggerArray).removeClass(ClassName$3.COLLAPSED).attr('aria-expanded', true); + } + + this.setTransitioning(true); + + var complete = function complete() { + $(_this._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).addClass(ClassName$3.SHOW); + _this._element.style[dimension] = ''; + + _this.setTransitioning(false); + + $(_this._element).trigger(Event$3.SHOWN); + }; + + var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1); + var scrollSize = "scroll" + capitalizedDimension; + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + this._element.style[dimension] = this._element[scrollSize] + "px"; + }; + + _proto.hide = function hide() { + var _this2 = this; + + if (this._isTransitioning || !$(this._element).hasClass(ClassName$3.SHOW)) { + return; + } + + var startEvent = $.Event(Event$3.HIDE); + $(this._element).trigger(startEvent); + + if (startEvent.isDefaultPrevented()) { + return; + } + + var dimension = this._getDimension(); + + this._element.style[dimension] = this._element.getBoundingClientRect()[dimension] + "px"; + Util.reflow(this._element); + $(this._element).addClass(ClassName$3.COLLAPSING).removeClass(ClassName$3.COLLAPSE).removeClass(ClassName$3.SHOW); + var triggerArrayLength = this._triggerArray.length; + + if (triggerArrayLength > 0) { + for (var i = 0; i < triggerArrayLength; i++) { + var trigger = this._triggerArray[i]; + var selector = Util.getSelectorFromElement(trigger); + + if (selector !== null) { + var $elem = $([].slice.call(document.querySelectorAll(selector))); + + if (!$elem.hasClass(ClassName$3.SHOW)) { + $(trigger).addClass(ClassName$3.COLLAPSED).attr('aria-expanded', false); + } + } + } + } + + this.setTransitioning(true); + + var complete = function complete() { + _this2.setTransitioning(false); + + $(_this2._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).trigger(Event$3.HIDDEN); + }; + + this._element.style[dimension] = ''; + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + }; + + _proto.setTransitioning = function setTransitioning(isTransitioning) { + this._isTransitioning = isTransitioning; + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$3); + this._config = null; + this._parent = null; + this._element = null; + this._triggerArray = null; + this._isTransitioning = null; + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default$1, config); + config.toggle = Boolean(config.toggle); // Coerce string values + + Util.typeCheckConfig(NAME$3, config, DefaultType$1); + return config; + }; + + _proto._getDimension = function _getDimension() { + var hasWidth = $(this._element).hasClass(Dimension.WIDTH); + return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT; + }; + + _proto._getParent = function _getParent() { + var _this3 = this; + + var parent; + + if (Util.isElement(this._config.parent)) { + parent = this._config.parent; // It's a jQuery object + + if (typeof this._config.parent.jquery !== 'undefined') { + parent = this._config.parent[0]; + } + } else { + parent = document.querySelector(this._config.parent); + } + + var selector = "[data-toggle=\"collapse\"][data-parent=\"" + this._config.parent + "\"]"; + var children = [].slice.call(parent.querySelectorAll(selector)); + $(children).each(function (i, element) { + _this3._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]); + }); + return parent; + }; + + _proto._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) { + var isOpen = $(element).hasClass(ClassName$3.SHOW); + + if (triggerArray.length) { + $(triggerArray).toggleClass(ClassName$3.COLLAPSED, !isOpen).attr('aria-expanded', isOpen); + } + } // Static + ; + + Collapse._getTargetFromElement = function _getTargetFromElement(element) { + var selector = Util.getSelectorFromElement(element); + return selector ? document.querySelector(selector) : null; + }; + + Collapse._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var $this = $(this); + var data = $this.data(DATA_KEY$3); + + var _config = _objectSpread({}, Default$1, $this.data(), typeof config === 'object' && config ? config : {}); + + if (!data && _config.toggle && /show|hide/.test(config)) { + _config.toggle = false; + } + + if (!data) { + data = new Collapse(this, _config); + $this.data(DATA_KEY$3, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Collapse, null, [{ + key: "VERSION", + get: function get() { + return VERSION$3; + } + }, { + key: "Default", + get: function get() { + return Default$1; + } + }]); + + return Collapse; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$3.CLICK_DATA_API, Selector$3.DATA_TOGGLE, function (event) { + // preventDefault only for elements (which change the URL) not inside the collapsible element + if (event.currentTarget.tagName === 'A') { + event.preventDefault(); + } + + var $trigger = $(this); + var selector = Util.getSelectorFromElement(this); + var selectors = [].slice.call(document.querySelectorAll(selector)); + $(selectors).each(function () { + var $target = $(this); + var data = $target.data(DATA_KEY$3); + var config = data ? 'toggle' : $trigger.data(); + + Collapse._jQueryInterface.call($target, config); + }); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$3] = Collapse._jQueryInterface; + $.fn[NAME$3].Constructor = Collapse; + + $.fn[NAME$3].noConflict = function () { + $.fn[NAME$3] = JQUERY_NO_CONFLICT$3; + return Collapse._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$4 = 'dropdown'; + var VERSION$4 = '4.3.1'; + var DATA_KEY$4 = 'bs.dropdown'; + var EVENT_KEY$4 = "." + DATA_KEY$4; + var DATA_API_KEY$4 = '.data-api'; + var JQUERY_NO_CONFLICT$4 = $.fn[NAME$4]; + var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key + + var SPACE_KEYCODE = 32; // KeyboardEvent.which value for space key + + var TAB_KEYCODE = 9; // KeyboardEvent.which value for tab key + + var ARROW_UP_KEYCODE = 38; // KeyboardEvent.which value for up arrow key + + var ARROW_DOWN_KEYCODE = 40; // KeyboardEvent.which value for down arrow key + + var RIGHT_MOUSE_BUTTON_WHICH = 3; // MouseEvent.which value for the right button (assuming a right-handed mouse) + + var REGEXP_KEYDOWN = new RegExp(ARROW_UP_KEYCODE + "|" + ARROW_DOWN_KEYCODE + "|" + ESCAPE_KEYCODE); + var Event$4 = { + HIDE: "hide" + EVENT_KEY$4, + HIDDEN: "hidden" + EVENT_KEY$4, + SHOW: "show" + EVENT_KEY$4, + SHOWN: "shown" + EVENT_KEY$4, + CLICK: "click" + EVENT_KEY$4, + CLICK_DATA_API: "click" + EVENT_KEY$4 + DATA_API_KEY$4, + KEYDOWN_DATA_API: "keydown" + EVENT_KEY$4 + DATA_API_KEY$4, + KEYUP_DATA_API: "keyup" + EVENT_KEY$4 + DATA_API_KEY$4 + }; + var ClassName$4 = { + DISABLED: 'disabled', + SHOW: 'show', + DROPUP: 'dropup', + DROPRIGHT: 'dropright', + DROPLEFT: 'dropleft', + MENURIGHT: 'dropdown-menu-right', + MENULEFT: 'dropdown-menu-left', + POSITION_STATIC: 'position-static' + }; + var Selector$4 = { + DATA_TOGGLE: '[data-toggle="dropdown"]', + FORM_CHILD: '.dropdown form', + MENU: '.dropdown-menu', + NAVBAR_NAV: '.navbar-nav', + VISIBLE_ITEMS: '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)' + }; + var AttachmentMap = { + TOP: 'top-start', + TOPEND: 'top-end', + BOTTOM: 'bottom-start', + BOTTOMEND: 'bottom-end', + RIGHT: 'right-start', + RIGHTEND: 'right-end', + LEFT: 'left-start', + LEFTEND: 'left-end' + }; + var Default$2 = { + offset: 0, + flip: true, + boundary: 'scrollParent', + reference: 'toggle', + display: 'dynamic' + }; + var DefaultType$2 = { + offset: '(number|string|function)', + flip: 'boolean', + boundary: '(string|element)', + reference: '(string|element)', + display: 'string' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Dropdown = + /*#__PURE__*/ + function () { + function Dropdown(element, config) { + this._element = element; + this._popper = null; + this._config = this._getConfig(config); + this._menu = this._getMenuElement(); + this._inNavbar = this._detectNavbar(); + + this._addEventListeners(); + } // Getters + + + var _proto = Dropdown.prototype; + + // Public + _proto.toggle = function toggle() { + if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED)) { + return; + } + + var parent = Dropdown._getParentFromElement(this._element); + + var isActive = $(this._menu).hasClass(ClassName$4.SHOW); + + Dropdown._clearMenus(); + + if (isActive) { + return; + } + + var relatedTarget = { + relatedTarget: this._element + }; + var showEvent = $.Event(Event$4.SHOW, relatedTarget); + $(parent).trigger(showEvent); + + if (showEvent.isDefaultPrevented()) { + return; + } // Disable totally Popper.js for Dropdown in Navbar + + + if (!this._inNavbar) { + /** + * Check for Popper dependency + * Popper - https://popper.js.org + */ + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap\'s dropdowns require Popper.js (https://popper.js.org/)'); + } + + var referenceElement = this._element; + + if (this._config.reference === 'parent') { + referenceElement = parent; + } else if (Util.isElement(this._config.reference)) { + referenceElement = this._config.reference; // Check if it's jQuery element + + if (typeof this._config.reference.jquery !== 'undefined') { + referenceElement = this._config.reference[0]; + } + } // If boundary is not `scrollParent`, then set position to `static` + // to allow the menu to "escape" the scroll parent's boundaries + // https://github.com/twbs/bootstrap/issues/24251 + + + if (this._config.boundary !== 'scrollParent') { + $(parent).addClass(ClassName$4.POSITION_STATIC); + } + + this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig()); + } // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + + + if ('ontouchstart' in document.documentElement && $(parent).closest(Selector$4.NAVBAR_NAV).length === 0) { + $(document.body).children().on('mouseover', null, $.noop); + } + + this._element.focus(); + + this._element.setAttribute('aria-expanded', true); + + $(this._menu).toggleClass(ClassName$4.SHOW); + $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.SHOWN, relatedTarget)); + }; + + _proto.show = function show() { + if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || $(this._menu).hasClass(ClassName$4.SHOW)) { + return; + } + + var relatedTarget = { + relatedTarget: this._element + }; + var showEvent = $.Event(Event$4.SHOW, relatedTarget); + + var parent = Dropdown._getParentFromElement(this._element); + + $(parent).trigger(showEvent); + + if (showEvent.isDefaultPrevented()) { + return; + } + + $(this._menu).toggleClass(ClassName$4.SHOW); + $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.SHOWN, relatedTarget)); + }; + + _proto.hide = function hide() { + if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || !$(this._menu).hasClass(ClassName$4.SHOW)) { + return; + } + + var relatedTarget = { + relatedTarget: this._element + }; + var hideEvent = $.Event(Event$4.HIDE, relatedTarget); + + var parent = Dropdown._getParentFromElement(this._element); + + $(parent).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + return; + } + + $(this._menu).toggleClass(ClassName$4.SHOW); + $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget)); + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$4); + $(this._element).off(EVENT_KEY$4); + this._element = null; + this._menu = null; + + if (this._popper !== null) { + this._popper.destroy(); + + this._popper = null; + } + }; + + _proto.update = function update() { + this._inNavbar = this._detectNavbar(); + + if (this._popper !== null) { + this._popper.scheduleUpdate(); + } + } // Private + ; + + _proto._addEventListeners = function _addEventListeners() { + var _this = this; + + $(this._element).on(Event$4.CLICK, function (event) { + event.preventDefault(); + event.stopPropagation(); + + _this.toggle(); + }); + }; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, this.constructor.Default, $(this._element).data(), config); + Util.typeCheckConfig(NAME$4, config, this.constructor.DefaultType); + return config; + }; + + _proto._getMenuElement = function _getMenuElement() { + if (!this._menu) { + var parent = Dropdown._getParentFromElement(this._element); + + if (parent) { + this._menu = parent.querySelector(Selector$4.MENU); + } + } + + return this._menu; + }; + + _proto._getPlacement = function _getPlacement() { + var $parentDropdown = $(this._element.parentNode); + var placement = AttachmentMap.BOTTOM; // Handle dropup + + if ($parentDropdown.hasClass(ClassName$4.DROPUP)) { + placement = AttachmentMap.TOP; + + if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) { + placement = AttachmentMap.TOPEND; + } + } else if ($parentDropdown.hasClass(ClassName$4.DROPRIGHT)) { + placement = AttachmentMap.RIGHT; + } else if ($parentDropdown.hasClass(ClassName$4.DROPLEFT)) { + placement = AttachmentMap.LEFT; + } else if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) { + placement = AttachmentMap.BOTTOMEND; + } + + return placement; + }; + + _proto._detectNavbar = function _detectNavbar() { + return $(this._element).closest('.navbar').length > 0; + }; + + _proto._getOffset = function _getOffset() { + var _this2 = this; + + var offset = {}; + + if (typeof this._config.offset === 'function') { + offset.fn = function (data) { + data.offsets = _objectSpread({}, data.offsets, _this2._config.offset(data.offsets, _this2._element) || {}); + return data; + }; + } else { + offset.offset = this._config.offset; + } + + return offset; + }; + + _proto._getPopperConfig = function _getPopperConfig() { + var popperConfig = { + placement: this._getPlacement(), + modifiers: { + offset: this._getOffset(), + flip: { + enabled: this._config.flip + }, + preventOverflow: { + boundariesElement: this._config.boundary + } + } // Disable Popper.js if we have a static display + + }; + + if (this._config.display === 'static') { + popperConfig.modifiers.applyStyle = { + enabled: false + }; + } + + return popperConfig; + } // Static + ; + + Dropdown._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$4); + + var _config = typeof config === 'object' ? config : null; + + if (!data) { + data = new Dropdown(this, _config); + $(this).data(DATA_KEY$4, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + Dropdown._clearMenus = function _clearMenus(event) { + if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH || event.type === 'keyup' && event.which !== TAB_KEYCODE)) { + return; + } + + var toggles = [].slice.call(document.querySelectorAll(Selector$4.DATA_TOGGLE)); + + for (var i = 0, len = toggles.length; i < len; i++) { + var parent = Dropdown._getParentFromElement(toggles[i]); + + var context = $(toggles[i]).data(DATA_KEY$4); + var relatedTarget = { + relatedTarget: toggles[i] + }; + + if (event && event.type === 'click') { + relatedTarget.clickEvent = event; + } + + if (!context) { + continue; + } + + var dropdownMenu = context._menu; + + if (!$(parent).hasClass(ClassName$4.SHOW)) { + continue; + } + + if (event && (event.type === 'click' && /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) && $.contains(parent, event.target)) { + continue; + } + + var hideEvent = $.Event(Event$4.HIDE, relatedTarget); + $(parent).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + continue; + } // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + + + if ('ontouchstart' in document.documentElement) { + $(document.body).children().off('mouseover', null, $.noop); + } + + toggles[i].setAttribute('aria-expanded', 'false'); + $(dropdownMenu).removeClass(ClassName$4.SHOW); + $(parent).removeClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget)); + } + }; + + Dropdown._getParentFromElement = function _getParentFromElement(element) { + var parent; + var selector = Util.getSelectorFromElement(element); + + if (selector) { + parent = document.querySelector(selector); + } + + return parent || element.parentNode; + } // eslint-disable-next-line complexity + ; + + Dropdown._dataApiKeydownHandler = function _dataApiKeydownHandler(event) { + // If not input/textarea: + // - And not a key in REGEXP_KEYDOWN => not a dropdown command + // If input/textarea: + // - If space key => not a dropdown command + // - If key is other than escape + // - If key is not up or down => not a dropdown command + // - If trigger inside the menu => not a dropdown command + if (/input|textarea/i.test(event.target.tagName) ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE && (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE || $(event.target).closest(Selector$4.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) { + return; + } + + event.preventDefault(); + event.stopPropagation(); + + if (this.disabled || $(this).hasClass(ClassName$4.DISABLED)) { + return; + } + + var parent = Dropdown._getParentFromElement(this); + + var isActive = $(parent).hasClass(ClassName$4.SHOW); + + if (!isActive || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) { + if (event.which === ESCAPE_KEYCODE) { + var toggle = parent.querySelector(Selector$4.DATA_TOGGLE); + $(toggle).trigger('focus'); + } + + $(this).trigger('click'); + return; + } + + var items = [].slice.call(parent.querySelectorAll(Selector$4.VISIBLE_ITEMS)); + + if (items.length === 0) { + return; + } + + var index = items.indexOf(event.target); + + if (event.which === ARROW_UP_KEYCODE && index > 0) { + // Up + index--; + } + + if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { + // Down + index++; + } + + if (index < 0) { + index = 0; + } + + items[index].focus(); + }; + + _createClass(Dropdown, null, [{ + key: "VERSION", + get: function get() { + return VERSION$4; + } + }, { + key: "Default", + get: function get() { + return Default$2; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType$2; + } + }]); + + return Dropdown; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$4.KEYDOWN_DATA_API, Selector$4.DATA_TOGGLE, Dropdown._dataApiKeydownHandler).on(Event$4.KEYDOWN_DATA_API, Selector$4.MENU, Dropdown._dataApiKeydownHandler).on(Event$4.CLICK_DATA_API + " " + Event$4.KEYUP_DATA_API, Dropdown._clearMenus).on(Event$4.CLICK_DATA_API, Selector$4.DATA_TOGGLE, function (event) { + event.preventDefault(); + event.stopPropagation(); + + Dropdown._jQueryInterface.call($(this), 'toggle'); + }).on(Event$4.CLICK_DATA_API, Selector$4.FORM_CHILD, function (e) { + e.stopPropagation(); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$4] = Dropdown._jQueryInterface; + $.fn[NAME$4].Constructor = Dropdown; + + $.fn[NAME$4].noConflict = function () { + $.fn[NAME$4] = JQUERY_NO_CONFLICT$4; + return Dropdown._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$5 = 'modal'; + var VERSION$5 = '4.3.1'; + var DATA_KEY$5 = 'bs.modal'; + var EVENT_KEY$5 = "." + DATA_KEY$5; + var DATA_API_KEY$5 = '.data-api'; + var JQUERY_NO_CONFLICT$5 = $.fn[NAME$5]; + var ESCAPE_KEYCODE$1 = 27; // KeyboardEvent.which value for Escape (Esc) key + + var Default$3 = { + backdrop: true, + keyboard: true, + focus: true, + show: true + }; + var DefaultType$3 = { + backdrop: '(boolean|string)', + keyboard: 'boolean', + focus: 'boolean', + show: 'boolean' + }; + var Event$5 = { + HIDE: "hide" + EVENT_KEY$5, + HIDDEN: "hidden" + EVENT_KEY$5, + SHOW: "show" + EVENT_KEY$5, + SHOWN: "shown" + EVENT_KEY$5, + FOCUSIN: "focusin" + EVENT_KEY$5, + RESIZE: "resize" + EVENT_KEY$5, + CLICK_DISMISS: "click.dismiss" + EVENT_KEY$5, + KEYDOWN_DISMISS: "keydown.dismiss" + EVENT_KEY$5, + MOUSEUP_DISMISS: "mouseup.dismiss" + EVENT_KEY$5, + MOUSEDOWN_DISMISS: "mousedown.dismiss" + EVENT_KEY$5, + CLICK_DATA_API: "click" + EVENT_KEY$5 + DATA_API_KEY$5 + }; + var ClassName$5 = { + SCROLLABLE: 'modal-dialog-scrollable', + SCROLLBAR_MEASURER: 'modal-scrollbar-measure', + BACKDROP: 'modal-backdrop', + OPEN: 'modal-open', + FADE: 'fade', + SHOW: 'show' + }; + var Selector$5 = { + DIALOG: '.modal-dialog', + MODAL_BODY: '.modal-body', + DATA_TOGGLE: '[data-toggle="modal"]', + DATA_DISMISS: '[data-dismiss="modal"]', + FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top', + STICKY_CONTENT: '.sticky-top' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Modal = + /*#__PURE__*/ + function () { + function Modal(element, config) { + this._config = this._getConfig(config); + this._element = element; + this._dialog = element.querySelector(Selector$5.DIALOG); + this._backdrop = null; + this._isShown = false; + this._isBodyOverflowing = false; + this._ignoreBackdropClick = false; + this._isTransitioning = false; + this._scrollbarWidth = 0; + } // Getters + + + var _proto = Modal.prototype; + + // Public + _proto.toggle = function toggle(relatedTarget) { + return this._isShown ? this.hide() : this.show(relatedTarget); + }; + + _proto.show = function show(relatedTarget) { + var _this = this; + + if (this._isShown || this._isTransitioning) { + return; + } + + if ($(this._element).hasClass(ClassName$5.FADE)) { + this._isTransitioning = true; + } + + var showEvent = $.Event(Event$5.SHOW, { + relatedTarget: relatedTarget + }); + $(this._element).trigger(showEvent); + + if (this._isShown || showEvent.isDefaultPrevented()) { + return; + } + + this._isShown = true; + + this._checkScrollbar(); + + this._setScrollbar(); + + this._adjustDialog(); + + this._setEscapeEvent(); + + this._setResizeEvent(); + + $(this._element).on(Event$5.CLICK_DISMISS, Selector$5.DATA_DISMISS, function (event) { + return _this.hide(event); + }); + $(this._dialog).on(Event$5.MOUSEDOWN_DISMISS, function () { + $(_this._element).one(Event$5.MOUSEUP_DISMISS, function (event) { + if ($(event.target).is(_this._element)) { + _this._ignoreBackdropClick = true; + } + }); + }); + + this._showBackdrop(function () { + return _this._showElement(relatedTarget); + }); + }; + + _proto.hide = function hide(event) { + var _this2 = this; + + if (event) { + event.preventDefault(); + } + + if (!this._isShown || this._isTransitioning) { + return; + } + + var hideEvent = $.Event(Event$5.HIDE); + $(this._element).trigger(hideEvent); + + if (!this._isShown || hideEvent.isDefaultPrevented()) { + return; + } + + this._isShown = false; + var transition = $(this._element).hasClass(ClassName$5.FADE); + + if (transition) { + this._isTransitioning = true; + } + + this._setEscapeEvent(); + + this._setResizeEvent(); + + $(document).off(Event$5.FOCUSIN); + $(this._element).removeClass(ClassName$5.SHOW); + $(this._element).off(Event$5.CLICK_DISMISS); + $(this._dialog).off(Event$5.MOUSEDOWN_DISMISS); + + if (transition) { + var transitionDuration = Util.getTransitionDurationFromElement(this._element); + $(this._element).one(Util.TRANSITION_END, function (event) { + return _this2._hideModal(event); + }).emulateTransitionEnd(transitionDuration); + } else { + this._hideModal(); + } + }; + + _proto.dispose = function dispose() { + [window, this._element, this._dialog].forEach(function (htmlElement) { + return $(htmlElement).off(EVENT_KEY$5); + }); + /** + * `document` has 2 events `Event.FOCUSIN` and `Event.CLICK_DATA_API` + * Do not move `document` in `htmlElements` array + * It will remove `Event.CLICK_DATA_API` event that should remain + */ + + $(document).off(Event$5.FOCUSIN); + $.removeData(this._element, DATA_KEY$5); + this._config = null; + this._element = null; + this._dialog = null; + this._backdrop = null; + this._isShown = null; + this._isBodyOverflowing = null; + this._ignoreBackdropClick = null; + this._isTransitioning = null; + this._scrollbarWidth = null; + }; + + _proto.handleUpdate = function handleUpdate() { + this._adjustDialog(); + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default$3, config); + Util.typeCheckConfig(NAME$5, config, DefaultType$3); + return config; + }; + + _proto._showElement = function _showElement(relatedTarget) { + var _this3 = this; + + var transition = $(this._element).hasClass(ClassName$5.FADE); + + if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) { + // Don't move modal's DOM position + document.body.appendChild(this._element); + } + + this._element.style.display = 'block'; + + this._element.removeAttribute('aria-hidden'); + + this._element.setAttribute('aria-modal', true); + + if ($(this._dialog).hasClass(ClassName$5.SCROLLABLE)) { + this._dialog.querySelector(Selector$5.MODAL_BODY).scrollTop = 0; + } else { + this._element.scrollTop = 0; + } + + if (transition) { + Util.reflow(this._element); + } + + $(this._element).addClass(ClassName$5.SHOW); + + if (this._config.focus) { + this._enforceFocus(); + } + + var shownEvent = $.Event(Event$5.SHOWN, { + relatedTarget: relatedTarget + }); + + var transitionComplete = function transitionComplete() { + if (_this3._config.focus) { + _this3._element.focus(); + } + + _this3._isTransitioning = false; + $(_this3._element).trigger(shownEvent); + }; + + if (transition) { + var transitionDuration = Util.getTransitionDurationFromElement(this._dialog); + $(this._dialog).one(Util.TRANSITION_END, transitionComplete).emulateTransitionEnd(transitionDuration); + } else { + transitionComplete(); + } + }; + + _proto._enforceFocus = function _enforceFocus() { + var _this4 = this; + + $(document).off(Event$5.FOCUSIN) // Guard against infinite focus loop + .on(Event$5.FOCUSIN, function (event) { + if (document !== event.target && _this4._element !== event.target && $(_this4._element).has(event.target).length === 0) { + _this4._element.focus(); + } + }); + }; + + _proto._setEscapeEvent = function _setEscapeEvent() { + var _this5 = this; + + if (this._isShown && this._config.keyboard) { + $(this._element).on(Event$5.KEYDOWN_DISMISS, function (event) { + if (event.which === ESCAPE_KEYCODE$1) { + event.preventDefault(); + + _this5.hide(); + } + }); + } else if (!this._isShown) { + $(this._element).off(Event$5.KEYDOWN_DISMISS); + } + }; + + _proto._setResizeEvent = function _setResizeEvent() { + var _this6 = this; + + if (this._isShown) { + $(window).on(Event$5.RESIZE, function (event) { + return _this6.handleUpdate(event); + }); + } else { + $(window).off(Event$5.RESIZE); + } + }; + + _proto._hideModal = function _hideModal() { + var _this7 = this; + + this._element.style.display = 'none'; + + this._element.setAttribute('aria-hidden', true); + + this._element.removeAttribute('aria-modal'); + + this._isTransitioning = false; + + this._showBackdrop(function () { + $(document.body).removeClass(ClassName$5.OPEN); + + _this7._resetAdjustments(); + + _this7._resetScrollbar(); + + $(_this7._element).trigger(Event$5.HIDDEN); + }); + }; + + _proto._removeBackdrop = function _removeBackdrop() { + if (this._backdrop) { + $(this._backdrop).remove(); + this._backdrop = null; + } + }; + + _proto._showBackdrop = function _showBackdrop(callback) { + var _this8 = this; + + var animate = $(this._element).hasClass(ClassName$5.FADE) ? ClassName$5.FADE : ''; + + if (this._isShown && this._config.backdrop) { + this._backdrop = document.createElement('div'); + this._backdrop.className = ClassName$5.BACKDROP; + + if (animate) { + this._backdrop.classList.add(animate); + } + + $(this._backdrop).appendTo(document.body); + $(this._element).on(Event$5.CLICK_DISMISS, function (event) { + if (_this8._ignoreBackdropClick) { + _this8._ignoreBackdropClick = false; + return; + } + + if (event.target !== event.currentTarget) { + return; + } + + if (_this8._config.backdrop === 'static') { + _this8._element.focus(); + } else { + _this8.hide(); + } + }); + + if (animate) { + Util.reflow(this._backdrop); + } + + $(this._backdrop).addClass(ClassName$5.SHOW); + + if (!callback) { + return; + } + + if (!animate) { + callback(); + return; + } + + var backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); + $(this._backdrop).one(Util.TRANSITION_END, callback).emulateTransitionEnd(backdropTransitionDuration); + } else if (!this._isShown && this._backdrop) { + $(this._backdrop).removeClass(ClassName$5.SHOW); + + var callbackRemove = function callbackRemove() { + _this8._removeBackdrop(); + + if (callback) { + callback(); + } + }; + + if ($(this._element).hasClass(ClassName$5.FADE)) { + var _backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop); + + $(this._backdrop).one(Util.TRANSITION_END, callbackRemove).emulateTransitionEnd(_backdropTransitionDuration); + } else { + callbackRemove(); + } + } else if (callback) { + callback(); + } + } // ---------------------------------------------------------------------- + // the following methods are used to handle overflowing modals + // todo (fat): these should probably be refactored out of modal.js + // ---------------------------------------------------------------------- + ; + + _proto._adjustDialog = function _adjustDialog() { + var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight; + + if (!this._isBodyOverflowing && isModalOverflowing) { + this._element.style.paddingLeft = this._scrollbarWidth + "px"; + } + + if (this._isBodyOverflowing && !isModalOverflowing) { + this._element.style.paddingRight = this._scrollbarWidth + "px"; + } + }; + + _proto._resetAdjustments = function _resetAdjustments() { + this._element.style.paddingLeft = ''; + this._element.style.paddingRight = ''; + }; + + _proto._checkScrollbar = function _checkScrollbar() { + var rect = document.body.getBoundingClientRect(); + this._isBodyOverflowing = rect.left + rect.right < window.innerWidth; + this._scrollbarWidth = this._getScrollbarWidth(); + }; + + _proto._setScrollbar = function _setScrollbar() { + var _this9 = this; + + if (this._isBodyOverflowing) { + // Note: DOMNode.style.paddingRight returns the actual value or '' if not set + // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set + var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT)); + var stickyContent = [].slice.call(document.querySelectorAll(Selector$5.STICKY_CONTENT)); // Adjust fixed content padding + + $(fixedContent).each(function (index, element) { + var actualPadding = element.style.paddingRight; + var calculatedPadding = $(element).css('padding-right'); + $(element).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + _this9._scrollbarWidth + "px"); + }); // Adjust sticky content margin + + $(stickyContent).each(function (index, element) { + var actualMargin = element.style.marginRight; + var calculatedMargin = $(element).css('margin-right'); + $(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) - _this9._scrollbarWidth + "px"); + }); // Adjust body padding + + var actualPadding = document.body.style.paddingRight; + var calculatedPadding = $(document.body).css('padding-right'); + $(document.body).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px"); + } + + $(document.body).addClass(ClassName$5.OPEN); + }; + + _proto._resetScrollbar = function _resetScrollbar() { + // Restore fixed content padding + var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT)); + $(fixedContent).each(function (index, element) { + var padding = $(element).data('padding-right'); + $(element).removeData('padding-right'); + element.style.paddingRight = padding ? padding : ''; + }); // Restore sticky content + + var elements = [].slice.call(document.querySelectorAll("" + Selector$5.STICKY_CONTENT)); + $(elements).each(function (index, element) { + var margin = $(element).data('margin-right'); + + if (typeof margin !== 'undefined') { + $(element).css('margin-right', margin).removeData('margin-right'); + } + }); // Restore body padding + + var padding = $(document.body).data('padding-right'); + $(document.body).removeData('padding-right'); + document.body.style.paddingRight = padding ? padding : ''; + }; + + _proto._getScrollbarWidth = function _getScrollbarWidth() { + // thx d.walsh + var scrollDiv = document.createElement('div'); + scrollDiv.className = ClassName$5.SCROLLBAR_MEASURER; + document.body.appendChild(scrollDiv); + var scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth; + document.body.removeChild(scrollDiv); + return scrollbarWidth; + } // Static + ; + + Modal._jQueryInterface = function _jQueryInterface(config, relatedTarget) { + return this.each(function () { + var data = $(this).data(DATA_KEY$5); + + var _config = _objectSpread({}, Default$3, $(this).data(), typeof config === 'object' && config ? config : {}); + + if (!data) { + data = new Modal(this, _config); + $(this).data(DATA_KEY$5, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](relatedTarget); + } else if (_config.show) { + data.show(relatedTarget); + } + }); + }; + + _createClass(Modal, null, [{ + key: "VERSION", + get: function get() { + return VERSION$5; + } + }, { + key: "Default", + get: function get() { + return Default$3; + } + }]); + + return Modal; + }(); + /** + * ------------------------------------------------------------------------ + * Data Api implementation + * ------------------------------------------------------------------------ + */ + + + $(document).on(Event$5.CLICK_DATA_API, Selector$5.DATA_TOGGLE, function (event) { + var _this10 = this; + + var target; + var selector = Util.getSelectorFromElement(this); + + if (selector) { + target = document.querySelector(selector); + } + + var config = $(target).data(DATA_KEY$5) ? 'toggle' : _objectSpread({}, $(target).data(), $(this).data()); + + if (this.tagName === 'A' || this.tagName === 'AREA') { + event.preventDefault(); + } + + var $target = $(target).one(Event$5.SHOW, function (showEvent) { + if (showEvent.isDefaultPrevented()) { + // Only register focus restorer if modal will actually get shown + return; + } + + $target.one(Event$5.HIDDEN, function () { + if ($(_this10).is(':visible')) { + _this10.focus(); + } + }); + }); + + Modal._jQueryInterface.call($(target), config, this); + }); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + $.fn[NAME$5] = Modal._jQueryInterface; + $.fn[NAME$5].Constructor = Modal; + + $.fn[NAME$5].noConflict = function () { + $.fn[NAME$5] = JQUERY_NO_CONFLICT$5; + return Modal._jQueryInterface; + }; + + /** + * -------------------------------------------------------------------------- + * Bootstrap (v4.3.1): tools/sanitizer.js + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * -------------------------------------------------------------------------- + */ + var uriAttrs = ['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href']; + var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i; + var DefaultWhitelist = { + // Global attributes allowed on any supplied element below. + '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], + a: ['target', 'href', 'title', 'rel'], + area: [], + b: [], + br: [], + col: [], + code: [], + div: [], + em: [], + hr: [], + h1: [], + h2: [], + h3: [], + h4: [], + h5: [], + h6: [], + i: [], + img: ['src', 'alt', 'title', 'width', 'height'], + li: [], + ol: [], + p: [], + pre: [], + s: [], + small: [], + span: [], + sub: [], + sup: [], + strong: [], + u: [], + ul: [] + /** + * A pattern that recognizes a commonly useful subset of URLs that are safe. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + + }; + var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi; + /** + * A pattern that matches safe data URLs. Only matches image, video and audio types. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + + var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i; + + function allowedAttribute(attr, allowedAttributeList) { + var attrName = attr.nodeName.toLowerCase(); + + if (allowedAttributeList.indexOf(attrName) !== -1) { + if (uriAttrs.indexOf(attrName) !== -1) { + return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)); + } + + return true; + } + + var regExp = allowedAttributeList.filter(function (attrRegex) { + return attrRegex instanceof RegExp; + }); // Check if a regular expression validates the attribute. + + for (var i = 0, l = regExp.length; i < l; i++) { + if (attrName.match(regExp[i])) { + return true; + } + } + + return false; + } + + function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { + if (unsafeHtml.length === 0) { + return unsafeHtml; + } + + if (sanitizeFn && typeof sanitizeFn === 'function') { + return sanitizeFn(unsafeHtml); + } + + var domParser = new window.DOMParser(); + var createdDocument = domParser.parseFromString(unsafeHtml, 'text/html'); + var whitelistKeys = Object.keys(whiteList); + var elements = [].slice.call(createdDocument.body.querySelectorAll('*')); + + var _loop = function _loop(i, len) { + var el = elements[i]; + var elName = el.nodeName.toLowerCase(); + + if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) { + el.parentNode.removeChild(el); + return "continue"; + } + + var attributeList = [].slice.call(el.attributes); + var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []); + attributeList.forEach(function (attr) { + if (!allowedAttribute(attr, whitelistedAttributes)) { + el.removeAttribute(attr.nodeName); + } + }); + }; + + for (var i = 0, len = elements.length; i < len; i++) { + var _ret = _loop(i, len); + + if (_ret === "continue") continue; + } + + return createdDocument.body.innerHTML; + } + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$6 = 'tooltip'; + var VERSION$6 = '4.3.1'; + var DATA_KEY$6 = 'bs.tooltip'; + var EVENT_KEY$6 = "." + DATA_KEY$6; + var JQUERY_NO_CONFLICT$6 = $.fn[NAME$6]; + var CLASS_PREFIX = 'bs-tooltip'; + var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g'); + var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn']; + var DefaultType$4 = { + animation: 'boolean', + template: 'string', + title: '(string|element|function)', + trigger: 'string', + delay: '(number|object)', + html: 'boolean', + selector: '(string|boolean)', + placement: '(string|function)', + offset: '(number|string|function)', + container: '(string|element|boolean)', + fallbackPlacement: '(string|array)', + boundary: '(string|element)', + sanitize: 'boolean', + sanitizeFn: '(null|function)', + whiteList: 'object' + }; + var AttachmentMap$1 = { + AUTO: 'auto', + TOP: 'top', + RIGHT: 'right', + BOTTOM: 'bottom', + LEFT: 'left' + }; + var Default$4 = { + animation: true, + template: '', + trigger: 'hover focus', + title: '', + delay: 0, + html: false, + selector: false, + placement: 'top', + offset: 0, + container: false, + fallbackPlacement: 'flip', + boundary: 'scrollParent', + sanitize: true, + sanitizeFn: null, + whiteList: DefaultWhitelist + }; + var HoverState = { + SHOW: 'show', + OUT: 'out' + }; + var Event$6 = { + HIDE: "hide" + EVENT_KEY$6, + HIDDEN: "hidden" + EVENT_KEY$6, + SHOW: "show" + EVENT_KEY$6, + SHOWN: "shown" + EVENT_KEY$6, + INSERTED: "inserted" + EVENT_KEY$6, + CLICK: "click" + EVENT_KEY$6, + FOCUSIN: "focusin" + EVENT_KEY$6, + FOCUSOUT: "focusout" + EVENT_KEY$6, + MOUSEENTER: "mouseenter" + EVENT_KEY$6, + MOUSELEAVE: "mouseleave" + EVENT_KEY$6 + }; + var ClassName$6 = { + FADE: 'fade', + SHOW: 'show' + }; + var Selector$6 = { + TOOLTIP: '.tooltip', + TOOLTIP_INNER: '.tooltip-inner', + ARROW: '.arrow' + }; + var Trigger = { + HOVER: 'hover', + FOCUS: 'focus', + CLICK: 'click', + MANUAL: 'manual' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Tooltip = + /*#__PURE__*/ + function () { + function Tooltip(element, config) { + /** + * Check for Popper dependency + * Popper - https://popper.js.org + */ + if (typeof Popper === 'undefined') { + throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)'); + } // private + + + this._isEnabled = true; + this._timeout = 0; + this._hoverState = ''; + this._activeTrigger = {}; + this._popper = null; // Protected + + this.element = element; + this.config = this._getConfig(config); + this.tip = null; + + this._setListeners(); + } // Getters + + + var _proto = Tooltip.prototype; + + // Public + _proto.enable = function enable() { + this._isEnabled = true; + }; + + _proto.disable = function disable() { + this._isEnabled = false; + }; + + _proto.toggleEnabled = function toggleEnabled() { + this._isEnabled = !this._isEnabled; + }; + + _proto.toggle = function toggle(event) { + if (!this._isEnabled) { + return; + } + + if (event) { + var dataKey = this.constructor.DATA_KEY; + var context = $(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $(event.currentTarget).data(dataKey, context); + } + + context._activeTrigger.click = !context._activeTrigger.click; + + if (context._isWithActiveTrigger()) { + context._enter(null, context); + } else { + context._leave(null, context); + } + } else { + if ($(this.getTipElement()).hasClass(ClassName$6.SHOW)) { + this._leave(null, this); + + return; + } + + this._enter(null, this); + } + }; + + _proto.dispose = function dispose() { + clearTimeout(this._timeout); + $.removeData(this.element, this.constructor.DATA_KEY); + $(this.element).off(this.constructor.EVENT_KEY); + $(this.element).closest('.modal').off('hide.bs.modal'); + + if (this.tip) { + $(this.tip).remove(); + } + + this._isEnabled = null; + this._timeout = null; + this._hoverState = null; + this._activeTrigger = null; + + if (this._popper !== null) { + this._popper.destroy(); + } + + this._popper = null; + this.element = null; + this.config = null; + this.tip = null; + }; + + _proto.show = function show() { + var _this = this; + + if ($(this.element).css('display') === 'none') { + throw new Error('Please use show on visible elements'); + } + + var showEvent = $.Event(this.constructor.Event.SHOW); + + if (this.isWithContent() && this._isEnabled) { + $(this.element).trigger(showEvent); + var shadowRoot = Util.findShadowRoot(this.element); + var isInTheDom = $.contains(shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement, this.element); + + if (showEvent.isDefaultPrevented() || !isInTheDom) { + return; + } + + var tip = this.getTipElement(); + var tipId = Util.getUID(this.constructor.NAME); + tip.setAttribute('id', tipId); + this.element.setAttribute('aria-describedby', tipId); + this.setContent(); + + if (this.config.animation) { + $(tip).addClass(ClassName$6.FADE); + } + + var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement; + + var attachment = this._getAttachment(placement); + + this.addAttachmentClass(attachment); + + var container = this._getContainer(); + + $(tip).data(this.constructor.DATA_KEY, this); + + if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) { + $(tip).appendTo(container); + } + + $(this.element).trigger(this.constructor.Event.INSERTED); + this._popper = new Popper(this.element, tip, { + placement: attachment, + modifiers: { + offset: this._getOffset(), + flip: { + behavior: this.config.fallbackPlacement + }, + arrow: { + element: Selector$6.ARROW + }, + preventOverflow: { + boundariesElement: this.config.boundary + } + }, + onCreate: function onCreate(data) { + if (data.originalPlacement !== data.placement) { + _this._handlePopperPlacementChange(data); + } + }, + onUpdate: function onUpdate(data) { + return _this._handlePopperPlacementChange(data); + } + }); + $(tip).addClass(ClassName$6.SHOW); // If this is a touch-enabled device we add extra + // empty mouseover listeners to the body's immediate children; + // only needed because of broken event delegation on iOS + // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html + + if ('ontouchstart' in document.documentElement) { + $(document.body).children().on('mouseover', null, $.noop); + } + + var complete = function complete() { + if (_this.config.animation) { + _this._fixTransition(); + } + + var prevHoverState = _this._hoverState; + _this._hoverState = null; + $(_this.element).trigger(_this.constructor.Event.SHOWN); + + if (prevHoverState === HoverState.OUT) { + _this._leave(null, _this); + } + }; + + if ($(this.tip).hasClass(ClassName$6.FADE)) { + var transitionDuration = Util.getTransitionDurationFromElement(this.tip); + $(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + } else { + complete(); + } + } + }; + + _proto.hide = function hide(callback) { + var _this2 = this; + + var tip = this.getTipElement(); + var hideEvent = $.Event(this.constructor.Event.HIDE); + + var complete = function complete() { + if (_this2._hoverState !== HoverState.SHOW && tip.parentNode) { + tip.parentNode.removeChild(tip); + } + + _this2._cleanTipClass(); + + _this2.element.removeAttribute('aria-describedby'); + + $(_this2.element).trigger(_this2.constructor.Event.HIDDEN); + + if (_this2._popper !== null) { + _this2._popper.destroy(); + } + + if (callback) { + callback(); + } + }; + + $(this.element).trigger(hideEvent); + + if (hideEvent.isDefaultPrevented()) { + return; + } + + $(tip).removeClass(ClassName$6.SHOW); // If this is a touch-enabled device we remove the extra + // empty mouseover listeners we added for iOS support + + if ('ontouchstart' in document.documentElement) { + $(document.body).children().off('mouseover', null, $.noop); + } + + this._activeTrigger[Trigger.CLICK] = false; + this._activeTrigger[Trigger.FOCUS] = false; + this._activeTrigger[Trigger.HOVER] = false; + + if ($(this.tip).hasClass(ClassName$6.FADE)) { + var transitionDuration = Util.getTransitionDurationFromElement(tip); + $(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration); + } else { + complete(); + } + + this._hoverState = ''; + }; + + _proto.update = function update() { + if (this._popper !== null) { + this._popper.scheduleUpdate(); + } + } // Protected + ; + + _proto.isWithContent = function isWithContent() { + return Boolean(this.getTitle()); + }; + + _proto.addAttachmentClass = function addAttachmentClass(attachment) { + $(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment); + }; + + _proto.getTipElement = function getTipElement() { + this.tip = this.tip || $(this.config.template)[0]; + return this.tip; + }; + + _proto.setContent = function setContent() { + var tip = this.getTipElement(); + this.setElementContent($(tip.querySelectorAll(Selector$6.TOOLTIP_INNER)), this.getTitle()); + $(tip).removeClass(ClassName$6.FADE + " " + ClassName$6.SHOW); + }; + + _proto.setElementContent = function setElementContent($element, content) { + if (typeof content === 'object' && (content.nodeType || content.jquery)) { + // Content is a DOM node or a jQuery + if (this.config.html) { + if (!$(content).parent().is($element)) { + $element.empty().append(content); + } + } else { + $element.text($(content).text()); + } + + return; + } + + if (this.config.html) { + if (this.config.sanitize) { + content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn); + } + + $element.html(content); + } else { + $element.text(content); + } + }; + + _proto.getTitle = function getTitle() { + var title = this.element.getAttribute('data-original-title'); + + if (!title) { + title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title; + } + + return title; + } // Private + ; + + _proto._getOffset = function _getOffset() { + var _this3 = this; + + var offset = {}; + + if (typeof this.config.offset === 'function') { + offset.fn = function (data) { + data.offsets = _objectSpread({}, data.offsets, _this3.config.offset(data.offsets, _this3.element) || {}); + return data; + }; + } else { + offset.offset = this.config.offset; + } + + return offset; + }; + + _proto._getContainer = function _getContainer() { + if (this.config.container === false) { + return document.body; + } + + if (Util.isElement(this.config.container)) { + return $(this.config.container); + } + + return $(document).find(this.config.container); + }; + + _proto._getAttachment = function _getAttachment(placement) { + return AttachmentMap$1[placement.toUpperCase()]; + }; + + _proto._setListeners = function _setListeners() { + var _this4 = this; + + var triggers = this.config.trigger.split(' '); + triggers.forEach(function (trigger) { + if (trigger === 'click') { + $(_this4.element).on(_this4.constructor.Event.CLICK, _this4.config.selector, function (event) { + return _this4.toggle(event); + }); + } else if (trigger !== Trigger.MANUAL) { + var eventIn = trigger === Trigger.HOVER ? _this4.constructor.Event.MOUSEENTER : _this4.constructor.Event.FOCUSIN; + var eventOut = trigger === Trigger.HOVER ? _this4.constructor.Event.MOUSELEAVE : _this4.constructor.Event.FOCUSOUT; + $(_this4.element).on(eventIn, _this4.config.selector, function (event) { + return _this4._enter(event); + }).on(eventOut, _this4.config.selector, function (event) { + return _this4._leave(event); + }); + } + }); + $(this.element).closest('.modal').on('hide.bs.modal', function () { + if (_this4.element) { + _this4.hide(); + } + }); + + if (this.config.selector) { + this.config = _objectSpread({}, this.config, { + trigger: 'manual', + selector: '' + }); + } else { + this._fixTitle(); + } + }; + + _proto._fixTitle = function _fixTitle() { + var titleType = typeof this.element.getAttribute('data-original-title'); + + if (this.element.getAttribute('title') || titleType !== 'string') { + this.element.setAttribute('data-original-title', this.element.getAttribute('title') || ''); + this.element.setAttribute('title', ''); + } + }; + + _proto._enter = function _enter(event, context) { + var dataKey = this.constructor.DATA_KEY; + context = context || $(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $(event.currentTarget).data(dataKey, context); + } + + if (event) { + context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true; + } + + if ($(context.getTipElement()).hasClass(ClassName$6.SHOW) || context._hoverState === HoverState.SHOW) { + context._hoverState = HoverState.SHOW; + return; + } + + clearTimeout(context._timeout); + context._hoverState = HoverState.SHOW; + + if (!context.config.delay || !context.config.delay.show) { + context.show(); + return; + } + + context._timeout = setTimeout(function () { + if (context._hoverState === HoverState.SHOW) { + context.show(); + } + }, context.config.delay.show); + }; + + _proto._leave = function _leave(event, context) { + var dataKey = this.constructor.DATA_KEY; + context = context || $(event.currentTarget).data(dataKey); + + if (!context) { + context = new this.constructor(event.currentTarget, this._getDelegateConfig()); + $(event.currentTarget).data(dataKey, context); + } + + if (event) { + context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false; + } + + if (context._isWithActiveTrigger()) { + return; + } + + clearTimeout(context._timeout); + context._hoverState = HoverState.OUT; + + if (!context.config.delay || !context.config.delay.hide) { + context.hide(); + return; + } + + context._timeout = setTimeout(function () { + if (context._hoverState === HoverState.OUT) { + context.hide(); + } + }, context.config.delay.hide); + }; + + _proto._isWithActiveTrigger = function _isWithActiveTrigger() { + for (var trigger in this._activeTrigger) { + if (this._activeTrigger[trigger]) { + return true; + } + } + + return false; + }; + + _proto._getConfig = function _getConfig(config) { + var dataAttributes = $(this.element).data(); + Object.keys(dataAttributes).forEach(function (dataAttr) { + if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) { + delete dataAttributes[dataAttr]; + } + }); + config = _objectSpread({}, this.constructor.Default, dataAttributes, typeof config === 'object' && config ? config : {}); + + if (typeof config.delay === 'number') { + config.delay = { + show: config.delay, + hide: config.delay + }; + } + + if (typeof config.title === 'number') { + config.title = config.title.toString(); + } + + if (typeof config.content === 'number') { + config.content = config.content.toString(); + } + + Util.typeCheckConfig(NAME$6, config, this.constructor.DefaultType); + + if (config.sanitize) { + config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn); + } + + return config; + }; + + _proto._getDelegateConfig = function _getDelegateConfig() { + var config = {}; + + if (this.config) { + for (var key in this.config) { + if (this.constructor.Default[key] !== this.config[key]) { + config[key] = this.config[key]; + } + } + } + + return config; + }; + + _proto._cleanTipClass = function _cleanTipClass() { + var $tip = $(this.getTipElement()); + var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX); + + if (tabClass !== null && tabClass.length) { + $tip.removeClass(tabClass.join('')); + } + }; + + _proto._handlePopperPlacementChange = function _handlePopperPlacementChange(popperData) { + var popperInstance = popperData.instance; + this.tip = popperInstance.popper; + + this._cleanTipClass(); + + this.addAttachmentClass(this._getAttachment(popperData.placement)); + }; + + _proto._fixTransition = function _fixTransition() { + var tip = this.getTipElement(); + var initConfigAnimation = this.config.animation; + + if (tip.getAttribute('x-placement') !== null) { + return; + } + + $(tip).removeClass(ClassName$6.FADE); + this.config.animation = false; + this.hide(); + this.show(); + this.config.animation = initConfigAnimation; + } // Static + ; + + Tooltip._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$6); + + var _config = typeof config === 'object' && config; + + if (!data && /dispose|hide/.test(config)) { + return; + } + + if (!data) { + data = new Tooltip(this, _config); + $(this).data(DATA_KEY$6, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Tooltip, null, [{ + key: "VERSION", + get: function get() { + return VERSION$6; + } + }, { + key: "Default", + get: function get() { + return Default$4; + } + }, { + key: "NAME", + get: function get() { + return NAME$6; + } + }, { + key: "DATA_KEY", + get: function get() { + return DATA_KEY$6; + } + }, { + key: "Event", + get: function get() { + return Event$6; + } + }, { + key: "EVENT_KEY", + get: function get() { + return EVENT_KEY$6; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType$4; + } + }]); + + return Tooltip; + }(); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + + $.fn[NAME$6] = Tooltip._jQueryInterface; + $.fn[NAME$6].Constructor = Tooltip; + + $.fn[NAME$6].noConflict = function () { + $.fn[NAME$6] = JQUERY_NO_CONFLICT$6; + return Tooltip._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$7 = 'popover'; + var VERSION$7 = '4.3.1'; + var DATA_KEY$7 = 'bs.popover'; + var EVENT_KEY$7 = "." + DATA_KEY$7; + var JQUERY_NO_CONFLICT$7 = $.fn[NAME$7]; + var CLASS_PREFIX$1 = 'bs-popover'; + var BSCLS_PREFIX_REGEX$1 = new RegExp("(^|\\s)" + CLASS_PREFIX$1 + "\\S+", 'g'); + + var Default$5 = _objectSpread({}, Tooltip.Default, { + placement: 'right', + trigger: 'click', + content: '', + template: '' + }); + + var DefaultType$5 = _objectSpread({}, Tooltip.DefaultType, { + content: '(string|element|function)' + }); + + var ClassName$7 = { + FADE: 'fade', + SHOW: 'show' + }; + var Selector$7 = { + TITLE: '.popover-header', + CONTENT: '.popover-body' + }; + var Event$7 = { + HIDE: "hide" + EVENT_KEY$7, + HIDDEN: "hidden" + EVENT_KEY$7, + SHOW: "show" + EVENT_KEY$7, + SHOWN: "shown" + EVENT_KEY$7, + INSERTED: "inserted" + EVENT_KEY$7, + CLICK: "click" + EVENT_KEY$7, + FOCUSIN: "focusin" + EVENT_KEY$7, + FOCUSOUT: "focusout" + EVENT_KEY$7, + MOUSEENTER: "mouseenter" + EVENT_KEY$7, + MOUSELEAVE: "mouseleave" + EVENT_KEY$7 + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var Popover = + /*#__PURE__*/ + function (_Tooltip) { + _inheritsLoose(Popover, _Tooltip); + + function Popover() { + return _Tooltip.apply(this, arguments) || this; + } + + var _proto = Popover.prototype; + + // Overrides + _proto.isWithContent = function isWithContent() { + return this.getTitle() || this._getContent(); + }; + + _proto.addAttachmentClass = function addAttachmentClass(attachment) { + $(this.getTipElement()).addClass(CLASS_PREFIX$1 + "-" + attachment); + }; + + _proto.getTipElement = function getTipElement() { + this.tip = this.tip || $(this.config.template)[0]; + return this.tip; + }; + + _proto.setContent = function setContent() { + var $tip = $(this.getTipElement()); // We use append for html objects to maintain js events + + this.setElementContent($tip.find(Selector$7.TITLE), this.getTitle()); + + var content = this._getContent(); + + if (typeof content === 'function') { + content = content.call(this.element); + } + + this.setElementContent($tip.find(Selector$7.CONTENT), content); + $tip.removeClass(ClassName$7.FADE + " " + ClassName$7.SHOW); + } // Private + ; + + _proto._getContent = function _getContent() { + return this.element.getAttribute('data-content') || this.config.content; + }; + + _proto._cleanTipClass = function _cleanTipClass() { + var $tip = $(this.getTipElement()); + var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX$1); + + if (tabClass !== null && tabClass.length > 0) { + $tip.removeClass(tabClass.join('')); + } + } // Static + ; + + Popover._jQueryInterface = function _jQueryInterface(config) { + return this.each(function () { + var data = $(this).data(DATA_KEY$7); + + var _config = typeof config === 'object' ? config : null; + + if (!data && /dispose|hide/.test(config)) { + return; + } + + if (!data) { + data = new Popover(this, _config); + $(this).data(DATA_KEY$7, data); + } + + if (typeof config === 'string') { + if (typeof data[config] === 'undefined') { + throw new TypeError("No method named \"" + config + "\""); + } + + data[config](); + } + }); + }; + + _createClass(Popover, null, [{ + key: "VERSION", + // Getters + get: function get() { + return VERSION$7; + } + }, { + key: "Default", + get: function get() { + return Default$5; + } + }, { + key: "NAME", + get: function get() { + return NAME$7; + } + }, { + key: "DATA_KEY", + get: function get() { + return DATA_KEY$7; + } + }, { + key: "Event", + get: function get() { + return Event$7; + } + }, { + key: "EVENT_KEY", + get: function get() { + return EVENT_KEY$7; + } + }, { + key: "DefaultType", + get: function get() { + return DefaultType$5; + } + }]); + + return Popover; + }(Tooltip); + /** + * ------------------------------------------------------------------------ + * jQuery + * ------------------------------------------------------------------------ + */ + + + $.fn[NAME$7] = Popover._jQueryInterface; + $.fn[NAME$7].Constructor = Popover; + + $.fn[NAME$7].noConflict = function () { + $.fn[NAME$7] = JQUERY_NO_CONFLICT$7; + return Popover._jQueryInterface; + }; + + /** + * ------------------------------------------------------------------------ + * Constants + * ------------------------------------------------------------------------ + */ + + var NAME$8 = 'scrollspy'; + var VERSION$8 = '4.3.1'; + var DATA_KEY$8 = 'bs.scrollspy'; + var EVENT_KEY$8 = "." + DATA_KEY$8; + var DATA_API_KEY$6 = '.data-api'; + var JQUERY_NO_CONFLICT$8 = $.fn[NAME$8]; + var Default$6 = { + offset: 10, + method: 'auto', + target: '' + }; + var DefaultType$6 = { + offset: 'number', + method: 'string', + target: '(string|element)' + }; + var Event$8 = { + ACTIVATE: "activate" + EVENT_KEY$8, + SCROLL: "scroll" + EVENT_KEY$8, + LOAD_DATA_API: "load" + EVENT_KEY$8 + DATA_API_KEY$6 + }; + var ClassName$8 = { + DROPDOWN_ITEM: 'dropdown-item', + DROPDOWN_MENU: 'dropdown-menu', + ACTIVE: 'active' + }; + var Selector$8 = { + DATA_SPY: '[data-spy="scroll"]', + ACTIVE: '.active', + NAV_LIST_GROUP: '.nav, .list-group', + NAV_LINKS: '.nav-link', + NAV_ITEMS: '.nav-item', + LIST_ITEMS: '.list-group-item', + DROPDOWN: '.dropdown', + DROPDOWN_ITEMS: '.dropdown-item', + DROPDOWN_TOGGLE: '.dropdown-toggle' + }; + var OffsetMethod = { + OFFSET: 'offset', + POSITION: 'position' + /** + * ------------------------------------------------------------------------ + * Class Definition + * ------------------------------------------------------------------------ + */ + + }; + + var ScrollSpy = + /*#__PURE__*/ + function () { + function ScrollSpy(element, config) { + var _this = this; + + this._element = element; + this._scrollElement = element.tagName === 'BODY' ? window : element; + this._config = this._getConfig(config); + this._selector = this._config.target + " " + Selector$8.NAV_LINKS + "," + (this._config.target + " " + Selector$8.LIST_ITEMS + ",") + (this._config.target + " " + Selector$8.DROPDOWN_ITEMS); + this._offsets = []; + this._targets = []; + this._activeTarget = null; + this._scrollHeight = 0; + $(this._scrollElement).on(Event$8.SCROLL, function (event) { + return _this._process(event); + }); + this.refresh(); + + this._process(); + } // Getters + + + var _proto = ScrollSpy.prototype; + + // Public + _proto.refresh = function refresh() { + var _this2 = this; + + var autoMethod = this._scrollElement === this._scrollElement.window ? OffsetMethod.OFFSET : OffsetMethod.POSITION; + var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method; + var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0; + this._offsets = []; + this._targets = []; + this._scrollHeight = this._getScrollHeight(); + var targets = [].slice.call(document.querySelectorAll(this._selector)); + targets.map(function (element) { + var target; + var targetSelector = Util.getSelectorFromElement(element); + + if (targetSelector) { + target = document.querySelector(targetSelector); + } + + if (target) { + var targetBCR = target.getBoundingClientRect(); + + if (targetBCR.width || targetBCR.height) { + // TODO (fat): remove sketch reliance on jQuery position/offset + return [$(target)[offsetMethod]().top + offsetBase, targetSelector]; + } + } + + return null; + }).filter(function (item) { + return item; + }).sort(function (a, b) { + return a[0] - b[0]; + }).forEach(function (item) { + _this2._offsets.push(item[0]); + + _this2._targets.push(item[1]); + }); + }; + + _proto.dispose = function dispose() { + $.removeData(this._element, DATA_KEY$8); + $(this._scrollElement).off(EVENT_KEY$8); + this._element = null; + this._scrollElement = null; + this._config = null; + this._selector = null; + this._offsets = null; + this._targets = null; + this._activeTarget = null; + this._scrollHeight = null; + } // Private + ; + + _proto._getConfig = function _getConfig(config) { + config = _objectSpread({}, Default$6, typeof config === 'object' && config ? config : {}); + + if (typeof config.target !== 'string') { + var id = $(config.target).attr('id'); + + if (!id) { + id = Util.getUID(NAME$8); + $(config.target).attr('id', id); + } + + config.target = "#" + id; + } + + Util.typeCheckConfig(NAME$8, config, DefaultType$6); + return config; + }; + + _proto._getScrollTop = function _getScrollTop() { + return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop; + }; + + _proto._getScrollHeight = function _getScrollHeight() { + return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); + }; + + _proto._getOffsetHeight = function _getOffsetHeight() { + return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height; + }; + + _proto._process = function _process() { + var scrollTop = this._getScrollTop() + this._config.offset; + + var scrollHeight = this._getScrollHeight(); + + var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight(); + + if (this._scrollHeight !== scrollHeight) { + this.refresh(); + } + + if (scrollTop >= maxScroll) { + var target = this._targets[this._targets.length - 1]; + + if (this._activeTarget !== target) { + this._activate(target); + } + + return; + } + + if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) { + this._activeTarget = null; + + this._clear(); + + return; + } + + var offsetLength = this._offsets.length; + + for (var i = offsetLength; i--;) { + var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]); + + if (isActiveTarget) { + this._activate(this._targets[i]); + } + } + }; + + _proto._activate = function _activate(target) { + this._activeTarget = target; + + this._clear(); + + var queries = this._selector.split(',').map(function (selector) { + return selector + "[data-target=\"" + target + "\"]," + selector + "[href=\"" + target + "\"]"; + }); + + var $link = $([].slice.call(document.querySelectorAll(queries.join(',')))); + + if ($link.hasClass(ClassName$8.DROPDOWN_ITEM)) { + $link.closest(Selector$8.DROPDOWN).find(Selector$8.DROPDOWN_TOGGLE).addClass(ClassName$8.ACTIVE); + $link.addClass(ClassName$8.ACTIVE); + } else { + // Set triggered link as active + $link.addClass(ClassName$8.ACTIVE); // Set triggered links parents as active + // With both